GCC Code Coverage Report
Directory: ./ Exec Total Coverage
File: node_options.h Lines: 35 37 94.6 %
Date: 2022-08-06 04:16:36 Branches: 8 10 80.0 %

Line Branch Exec Source
1
#ifndef SRC_NODE_OPTIONS_H_
2
#define SRC_NODE_OPTIONS_H_
3
4
#if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
5
6
#include <memory>
7
#include <string>
8
#include <unordered_map>
9
#include <vector>
10
#include "node_constants.h"
11
#include "node_mutex.h"
12
#include "util.h"
13
14
#if HAVE_OPENSSL
15
#include "openssl/opensslv.h"
16
#endif
17
18
namespace node {
19
20
6088
class HostPort {
21
 public:
22
5786
  HostPort(const std::string& host_name, int port)
23
5786
      : host_name_(host_name), port_(port) {}
24
18282
  HostPort(const HostPort&) = default;
25
  HostPort& operator=(const HostPort&) = default;
26
  HostPort(HostPort&&) = default;
27
  HostPort& operator=(HostPort&&) = default;
28
29
  void set_host(const std::string& host) { host_name_ = host; }
30
31
96
  void set_port(int port) { port_ = port; }
32
33
6737
  const std::string& host() const { return host_name_; }
34
35
6930
  int port() const {
36
    // TODO(joyeecheung): make port a uint16_t
37
6930
    CHECK_GE(port_, 0);
38
6930
    return port_;
39
  }
40
41
100
  void Update(const HostPort& other) {
42
100
    if (!other.host_name_.empty()) host_name_ = other.host_name_;
43
100
    if (other.port_ >= 0) port_ = other.port_;
44
100
  }
45
46
 private:
47
  std::string host_name_;
48
  int port_;
49
};
50
51
class Options {
52
 public:
53
  virtual void CheckOptions(std::vector<std::string>* errors) {}
54
87282
  virtual ~Options() = default;
55
};
56
57
struct InspectPublishUid {
58
  bool console;
59
  bool http;
60
};
61
62
// These options are currently essentially per-Environment, but it can be nice
63
// to keep them separate since they are a group of options applying to a very
64
// specific part of Node. It might also make more sense for them to be
65
// per-Isolate, rather than per-Environment.
66
6088
class DebugOptions : public Options {
67
 public:
68
5686
  DebugOptions() = default;
69
12188
  DebugOptions(const DebugOptions&) = default;
70
  DebugOptions& operator=(const DebugOptions&) = default;
71
  DebugOptions(DebugOptions&&) = default;
72
  DebugOptions& operator=(DebugOptions&&) = default;
73
74
  // --inspect
75
  bool inspector_enabled = false;
76
  // --debug
77
  bool deprecated_debug = false;
78
  // --inspect-brk
79
  bool break_first_line = false;
80
  // --inspect-brk-node
81
  bool break_node_first_line = false;
82
  // --inspect-publish-uid
83
  std::string inspect_publish_uid_string = "stderr,http";
84
85
  InspectPublishUid inspect_publish_uid;
86
87
  enum { kDefaultInspectorPort = 9229 };
88
89
  HostPort host_port{"127.0.0.1", kDefaultInspectorPort};
90
91
  // Used to patch the options as if --inspect-brk is passed.
92
38
  void EnableBreakFirstLine() {
93
38
    inspector_enabled = true;
94
38
    break_first_line = true;
95
38
  }
96
97
6088
  bool wait_for_connect() const {
98

6088
    return break_first_line || break_node_first_line;
99
  }
100
101
  void CheckOptions(std::vector<std::string>* errors) override;
102
};
103
104
class EnvironmentOptions : public Options {
105
 public:
106
  bool abort_on_uncaught_exception = false;
107
  std::vector<std::string> conditions;
108
  std::string dns_result_order;
109
  bool enable_source_maps = false;
110
  bool experimental_fetch = true;
111
  bool experimental_global_customevent = false;
112
  bool experimental_global_web_crypto = false;
113
  bool experimental_https_modules = false;
114
  std::string experimental_specifier_resolution;
115
  bool experimental_wasm_modules = false;
116
  bool experimental_import_meta_resolve = false;
117
  std::string module_type;
118
  std::string experimental_policy;
119
  std::string experimental_policy_integrity;
120
  bool has_policy_integrity_string = false;
121
  bool experimental_repl_await = true;
122
  bool experimental_vm_modules = false;
123
  bool expose_internals = false;
124
  bool force_node_api_uncaught_exceptions_policy = false;
125
  bool frozen_intrinsics = false;
126
  int64_t heap_snapshot_near_heap_limit = 0;
127
  std::string heap_snapshot_signal;
128
  uint64_t max_http_header_size = 16 * 1024;
129
  bool deprecation = true;
130
  bool force_async_hooks_checks = true;
131
  bool allow_native_addons = true;
132
  bool global_search_paths = true;
133
  bool warnings = true;
134
  bool force_context_aware = false;
135
  bool pending_deprecation = false;
136
  bool preserve_symlinks = false;
137
  bool preserve_symlinks_main = false;
138
  bool prof_process = false;
139
#if HAVE_INSPECTOR
140
  std::string cpu_prof_dir;
141
  static const uint64_t kDefaultCpuProfInterval = 1000;
142
  uint64_t cpu_prof_interval = kDefaultCpuProfInterval;
143
  std::string cpu_prof_name;
144
  bool cpu_prof = false;
145
  std::string heap_prof_dir;
146
  std::string heap_prof_name;
147
  static const uint64_t kDefaultHeapProfInterval = 512 * 1024;
148
  uint64_t heap_prof_interval = kDefaultHeapProfInterval;
149
  bool heap_prof = false;
150
#endif  // HAVE_INSPECTOR
151
  std::string redirect_warnings;
152
  std::string diagnostic_dir;
153
  bool test_runner = false;
154
  bool test_only = false;
155
  bool test_udp_no_try_send = false;
156
  bool throw_deprecation = false;
157
  bool trace_atomics_wait = false;
158
  bool trace_deprecation = false;
159
  bool trace_exit = false;
160
  bool trace_sync_io = false;
161
  bool trace_tls = false;
162
  bool trace_uncaught = false;
163
  bool trace_warnings = false;
164
  bool extra_info_on_fatal_exception = true;
165
  std::string unhandled_rejections;
166
  std::vector<std::string> userland_loaders;
167
  bool verify_base_objects =
168
#ifdef DEBUG
169
      true;
170
#else
171
      false;
172
#endif  // DEBUG
173
174
  bool syntax_check_only = false;
175
  bool has_eval_string = false;
176
  bool experimental_wasi = false;
177
  std::string eval_string;
178
  bool print_eval = false;
179
  bool force_repl = false;
180
181
  bool insecure_http_parser = false;
182
183
  bool tls_min_v1_0 = false;
184
  bool tls_min_v1_1 = false;
185
  bool tls_min_v1_2 = false;
186
  bool tls_min_v1_3 = false;
187
  bool tls_max_v1_2 = false;
188
  bool tls_max_v1_3 = false;
189
  std::string tls_keylog;
190
191
  std::vector<std::string> preload_cjs_modules;
192
193
  std::vector<std::string> preload_esm_modules;
194
195
  std::vector<std::string> user_argv;
196
197
46802
  inline DebugOptions* get_debug_options() { return &debug_options_; }
198
24364
  inline const DebugOptions& debug_options() const { return debug_options_; }
199
200
  void CheckOptions(std::vector<std::string>* errors) override;
201
202
 private:
203
  DebugOptions debug_options_;
204
};
205
206
class PerIsolateOptions : public Options {
207
 public:
208
  std::shared_ptr<EnvironmentOptions> per_env { new EnvironmentOptions() };
209
  bool track_heap_objects = false;
210
  bool report_uncaught_exception = false;
211
  bool report_on_signal = false;
212
  bool experimental_shadow_realm = false;
213
  std::string report_signal = "SIGUSR2";
214
  inline EnvironmentOptions* get_per_env_options();
215
  void CheckOptions(std::vector<std::string>* errors) override;
216
};
217
218
class PerProcessOptions : public Options {
219
 public:
220
  // Options shouldn't be here unless they affect the entire process scope, and
221
  // that should avoided when possible.
222
  //
223
  // When an option is used during process initialization, it does not need
224
  // protection, but any use after that will likely require synchronization
225
  // using the node::per_process::cli_options_mutex, typically:
226
  //
227
  //     Mutex::ScopedLock lock(node::per_process::cli_options_mutex);
228
  std::shared_ptr<PerIsolateOptions> per_isolate { new PerIsolateOptions() };
229
230
  std::string title;
231
  std::string trace_event_categories;
232
  std::string trace_event_file_pattern = "node_trace.${rotation}.log";
233
  int64_t v8_thread_pool_size = 4;
234
  bool zero_fill_all_buffers = false;
235
  bool debug_arraybuffer_allocations = false;
236
  std::string disable_proto;
237
  bool build_snapshot = false;
238
  // We enable the shared read-only heap which currently requires that the
239
  // snapshot used in different isolates in the same process to be the same.
240
  // Therefore --node-snapshot is a per-process option.
241
  bool node_snapshot = true;
242
  std::string snapshot_blob;
243
244
  std::vector<std::string> security_reverts;
245
  bool print_bash_completion = false;
246
  bool print_help = false;
247
  bool print_v8_help = false;
248
  bool print_version = false;
249
250
#ifdef NODE_HAVE_I18N_SUPPORT
251
  std::string icu_data_dir;
252
#endif
253
254
  // Per-process because they affect singleton OpenSSL shared library state,
255
  // or are used once during process initialization.
256
#if HAVE_OPENSSL
257
  std::string openssl_config;
258
  std::string tls_cipher_list = DEFAULT_CIPHER_LIST_CORE;
259
  int64_t secure_heap = 0;
260
  int64_t secure_heap_min = 2;
261
#ifdef NODE_OPENSSL_CERT_STORE
262
  bool ssl_openssl_cert_store = true;
263
#else
264
  bool ssl_openssl_cert_store = false;
265
#endif
266
  bool use_openssl_ca = false;
267
  bool use_bundled_ca = false;
268
  bool enable_fips_crypto = false;
269
  bool force_fips_crypto = false;
270
#endif
271
#if OPENSSL_VERSION_MAJOR >= 3
272
  bool openssl_legacy_provider = false;
273
  bool openssl_shared_config = false;
274
#endif
275
276
  // Per-process because reports can be triggered outside a known V8 context.
277
  bool report_on_fatalerror = false;
278
  bool report_compact = false;
279
  std::string report_directory;
280
  std::string report_filename;
281
282
  // TODO(addaleax): Some of these could probably be per-Environment.
283
  std::string use_largepages = "off";
284
  bool trace_sigint = false;
285
  std::vector<std::string> cmdline;
286
287
  inline PerIsolateOptions* get_per_isolate_options();
288
  void CheckOptions(std::vector<std::string>* errors) override;
289
};
290
291
// The actual options parser, as opposed to the structs containing them:
292
293
namespace options_parser {
294
295
HostPort SplitHostPort(const std::string& arg,
296
    std::vector<std::string>* errors);
297
void GetOptions(const v8::FunctionCallbackInfo<v8::Value>& args);
298
std::string GetBashCompletion();
299
300
enum OptionType {
301
  kNoOp,
302
  kV8Option,
303
  kBoolean,
304
  kInteger,
305
  kUInteger,
306
  kString,
307
  kHostPort,
308
  kStringList,
309
};
310
311
template <typename Options>
312
class OptionsParser {
313
 public:
314
43136
  virtual ~OptionsParser() = default;
315
316
  typedef Options TargetType;
317
318
  struct NoOp {};
319
  struct V8Option {};
320
321
  // These methods add a single option to the parser. Optionally, it can be
322
  // specified whether the option should be allowed from environment variable
323
  // sources (i.e. NODE_OPTIONS).
324
  void AddOption(const char* name,
325
                 const char* help_text,
326
                 bool Options::* field,
327
                 OptionEnvvarSettings env_setting = kDisallowedInEnvironment,
328
                 bool default_is_true = false);
329
  void AddOption(const char* name,
330
                 const char* help_text,
331
                 uint64_t Options::* field,
332
                 OptionEnvvarSettings env_setting = kDisallowedInEnvironment);
333
  void AddOption(const char* name,
334
                 const char* help_text,
335
                 int64_t Options::* field,
336
                 OptionEnvvarSettings env_setting = kDisallowedInEnvironment);
337
  void AddOption(const char* name,
338
                 const char* help_text,
339
                 std::string Options::* field,
340
                 OptionEnvvarSettings env_setting = kDisallowedInEnvironment);
341
  void AddOption(const char* name,
342
                 const char* help_text,
343
                 std::vector<std::string> Options::* field,
344
                 OptionEnvvarSettings env_setting = kDisallowedInEnvironment);
345
  void AddOption(const char* name,
346
                 const char* help_text,
347
                 HostPort Options::* field,
348
                 OptionEnvvarSettings env_setting = kDisallowedInEnvironment);
349
  void AddOption(const char* name,
350
                 const char* help_text,
351
                 NoOp no_op_tag,
352
                 OptionEnvvarSettings env_setting = kDisallowedInEnvironment);
353
  void AddOption(const char* name,
354
                 const char* help_text,
355
                 V8Option v8_option_tag,
356
                 OptionEnvvarSettings env_setting = kDisallowedInEnvironment);
357
358
  // Adds aliases. An alias can be of the form "--option-a" -> "--option-b",
359
  // or have a more complex group expansion, like
360
  //   "--option-a" -> { "--option-b", "--harmony-foobar", "--eval", "42" }
361
  // If `from` has the form "--option-a=", the alias will only be expanded if
362
  // the option is presented in that form (i.e. with a '=').
363
  // If `from` has the form "--option-a <arg>", the alias will only be expanded
364
  // if the option has a non-option argument (not starting with -) following it.
365
  void AddAlias(const char* from, const char* to);
366
  void AddAlias(const char* from, const std::vector<std::string>& to);
367
  void AddAlias(const char* from,
368
                const std::initializer_list<std::string>& to);
369
370
  // Add implications from some arbitrary option to a boolean one, either
371
  // in a way that makes `from` set `to` to true or to false.
372
  void Implies(const char* from, const char* to);
373
  void ImpliesNot(const char* from, const char* to);
374
375
  // Insert options from another options parser into this one, along with
376
  // a method that yields the target options type from this parser's options
377
  // type.
378
  template <typename ChildOptions>
379
  void Insert(const OptionsParser<ChildOptions>& child_options_parser,
380
              ChildOptions* (Options::* get_child)());
381
382
  // Parse a sequence of options into an options struct, a list of
383
  // arguments that were parsed as options, a list of unknown/JS engine options,
384
  // and leave the remainder in the input `args` vector.
385
  //
386
  // For example, an `args` input of
387
  //
388
  //   node --foo --harmony-bar --fizzle=42 -- /path/to/cow moo
389
  //
390
  // expands as
391
  //
392
  // - `args` -> { "node", "/path/to/cow", "moo" }
393
  // - `exec_args` -> { "--foo", "--harmony-bar", "--fizzle=42" }
394
  // - `v8_args` -> `{ "node", "--harmony-bar" }
395
  // - `options->foo == true`, `options->fizzle == 42`.
396
  //
397
  // If `*error` is set, the result of the parsing should be discarded and the
398
  // contents of any of the argument vectors should be considered undefined.
399
  void Parse(std::vector<std::string>* const args,
400
             std::vector<std::string>* const exec_args,
401
             std::vector<std::string>* const v8_args,
402
             Options* const options,
403
             OptionEnvvarSettings required_env_settings,
404
             std::vector<std::string>* const errors) const;
405
406
 private:
407
  // We support the wide variety of different option types by remembering
408
  // how to access them, given a certain `Options` struct.
409
410
  // Represents a field within `Options`.
411
  class BaseOptionField {
412
   public:
413
3591072
    virtual ~BaseOptionField() = default;
414
    virtual void* LookupImpl(Options* options) const = 0;
415
416
    template <typename T>
417
1575842
    inline T* Lookup(Options* options) const {
418
1575842
      return static_cast<T*>(LookupImpl(options));
419
    }
420
  };
421
422
  // Represents a field of type T within `Options` that can be looked up
423
  // as a C++ member field.
424
  template <typename T>
425
  class SimpleOptionField : public BaseOptionField {
426
   public:
427
1272512
    explicit SimpleOptionField(T Options::* field) : field_(field) {}
428
787921
    void* LookupImpl(Options* options) const override {
429
1575842
      return static_cast<void*>(&(options->*field_));
430
    }
431
432
   private:
433
    T Options::* field_;
434
  };
435
436
  template <typename T>
437
1574816
  inline T* Lookup(std::shared_ptr<BaseOptionField> field,
438
                   Options* options) const {
439
1574816
    return field->template Lookup<T>(options);
440
  }
441
442
  // An option consists of:
443
  // - A type.
444
  // - A way to store/access the property value.
445
  // - The information of whether it may occur in an env var or not.
446
  struct OptionInfo {
447
    OptionType type;
448
    std::shared_ptr<BaseOptionField> field;
449
    OptionEnvvarSettings env_setting;
450
    std::string help_text;
451
    bool default_is_true = false;
452
  };
453
454
  // An implied option is composed of the information on where to store a
455
  // specific boolean value (if another specific option is encountered).
456
  struct Implication {
457
    OptionType type;
458
    std::string name;
459
    std::shared_ptr<BaseOptionField> target_field;
460
    bool target_value;
461
  };
462
463
  // These are helpers that make `Insert()` support properties of other
464
  // options structs, if we know how to access them.
465
  template <typename OriginalField, typename ChildOptions>
466
  static auto Convert(
467
      std::shared_ptr<OriginalField> original,
468
      ChildOptions* (Options::* get_child)());
469
  template <typename ChildOptions>
470
  static auto Convert(
471
      typename OptionsParser<ChildOptions>::OptionInfo original,
472
      ChildOptions* (Options::* get_child)());
473
  template <typename ChildOptions>
474
  static auto Convert(
475
      typename OptionsParser<ChildOptions>::Implication original,
476
      ChildOptions* (Options::* get_child)());
477
478
  std::unordered_map<std::string, OptionInfo> options_;
479
  std::unordered_map<std::string, std::vector<std::string>> aliases_;
480
  std::unordered_multimap<std::string, Implication> implications_;
481
482
  template <typename OtherOptions>
483
  friend class OptionsParser;
484
485
6654
  friend void GetCLIOptions(const v8::FunctionCallbackInfo<v8::Value>& args);
486
  friend std::string GetBashCompletion();
487
};
488
489
using StringVector = std::vector<std::string>;
490
template <class OptionsType, class = Options>
491
void Parse(
492
  StringVector* const args, StringVector* const exec_args,
493
  StringVector* const v8_args, OptionsType* const options,
494
  OptionEnvvarSettings required_env_settings, StringVector* const errors);
495
496
}  // namespace options_parser
497
498
namespace per_process {
499
500
extern Mutex cli_options_mutex;
501
extern NODE_EXTERN_PRIVATE std::shared_ptr<PerProcessOptions> cli_options;
502
503
}  // namespace per_process
504
505
void HandleEnvOptions(std::shared_ptr<EnvironmentOptions> env_options);
506
void HandleEnvOptions(std::shared_ptr<EnvironmentOptions> env_options,
507
                      std::function<std::string(const char*)> opt_getter);
508
509
std::vector<std::string> ParseNodeOptionsEnvVar(
510
    const std::string& node_options, std::vector<std::string>* errors);
511
}  // namespace node
512
513
#endif  // defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
514
515
#endif  // SRC_NODE_OPTIONS_H_