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