Nan Zhou | 307386e | 2022-10-12 20:29:34 +0000 | [diff] [blame] | 1 | # Gather the Configuration data |
| 2 | |
| 3 | conf_data = configuration_data() |
Ed Tanous | 25b54db | 2024-04-17 15:40:31 -0700 | [diff] [blame] | 4 | |
| 5 | feature_options = [ |
| 6 | 'basic-auth', |
| 7 | 'cookie-auth', |
Ed Tanous | 25b54db | 2024-04-17 15:40:31 -0700 | [diff] [blame] | 8 | 'experimental-http2', |
| 9 | 'experimental-redfish-multi-computer-system', |
| 10 | 'google-api', |
| 11 | 'host-serial-socket', |
Gunnar Mills | 6889620 | 2024-08-21 11:34:20 -0500 | [diff] [blame] | 12 | 'hypervisor-computer-system', |
Ed Tanous | 25b54db | 2024-04-17 15:40:31 -0700 | [diff] [blame] | 13 | 'ibm-management-console', |
| 14 | 'insecure-disable-auth', |
| 15 | 'insecure-disable-csrf', |
| 16 | 'insecure-disable-ssl', |
| 17 | 'insecure-enable-redfish-query', |
| 18 | 'insecure-ignore-content-type', |
| 19 | 'insecure-push-style-notification', |
Ed Tanous | 25b54db | 2024-04-17 15:40:31 -0700 | [diff] [blame] | 20 | 'kvm', |
Ed Tanous | 3ce3688 | 2024-06-09 10:58:16 -0700 | [diff] [blame] | 21 | 'meta-tls-common-name-parsing', |
Ed Tanous | 25b54db | 2024-04-17 15:40:31 -0700 | [diff] [blame] | 22 | 'mutual-tls-auth', |
Ed Tanous | 25b54db | 2024-04-17 15:40:31 -0700 | [diff] [blame] | 23 | 'redfish-aggregation', |
| 24 | 'redfish-allow-deprecated-power-thermal', |
| 25 | 'redfish-bmc-journal', |
| 26 | 'redfish-cpu-log', |
| 27 | 'redfish-dbus-log', |
| 28 | 'redfish-dump-log', |
| 29 | 'redfish-host-logger', |
| 30 | 'redfish-new-powersubsystem-thermalsubsystem', |
| 31 | 'redfish-oem-manager-fan-data', |
| 32 | 'redfish-provisioning-feature', |
Jagpal Singh Gill | 5785566 | 2024-04-17 10:44:27 -0700 | [diff] [blame] | 33 | 'redfish-updateservice-use-dbus', |
Ed Tanous | 25b54db | 2024-04-17 15:40:31 -0700 | [diff] [blame] | 34 | 'redfish', |
| 35 | 'rest', |
| 36 | 'session-auth', |
| 37 | 'static-hosting', |
| 38 | 'tests', |
| 39 | 'vm-websocket', |
| 40 | 'xtoken-auth', |
| 41 | ] |
| 42 | |
| 43 | string_options = [ |
| 44 | 'dns-resolver', |
Ed Tanous | 3ce3688 | 2024-06-09 10:58:16 -0700 | [diff] [blame] | 45 | 'mutual-tls-common-name-parsing-default', |
Ed Tanous | 253f11b | 2024-05-16 09:38:31 -0700 | [diff] [blame] | 46 | 'redfish-manager-uri-name', |
| 47 | 'redfish-system-uri-name', |
Ed Tanous | 25b54db | 2024-04-17 15:40:31 -0700 | [diff] [blame] | 48 | ] |
| 49 | |
Ed Tanous | 92e26be | 2024-08-21 13:39:14 -0700 | [diff] [blame^] | 50 | int_options = ['http-body-limit'] |
Ed Tanous | 25b54db | 2024-04-17 15:40:31 -0700 | [diff] [blame] | 51 | |
Ed Tanous | fe907df | 2024-05-07 16:37:09 -0700 | [diff] [blame] | 52 | feature_options_string = '\n//Feature options\n' |
| 53 | string_options_string = '\n// String options\n' |
| 54 | int_options_string = '\n// Integer options\n' |
Ed Tanous | 25b54db | 2024-04-17 15:40:31 -0700 | [diff] [blame] | 55 | |
Ed Tanous | fe907df | 2024-05-07 16:37:09 -0700 | [diff] [blame] | 56 | foreach option_key : feature_options + string_options + int_options |
| 57 | option_key_config = 'BMCWEB_' + option_key.to_upper() |
Ed Tanous | 25b54db | 2024-04-17 15:40:31 -0700 | [diff] [blame] | 58 | option_key_config = option_key_config.replace('-', '_') |
| 59 | |
| 60 | message(option_key_config) |
Ed Tanous | fe907df | 2024-05-07 16:37:09 -0700 | [diff] [blame] | 61 | |
Ed Tanous | 25b54db | 2024-04-17 15:40:31 -0700 | [diff] [blame] | 62 | opt = get_option(option_key) |
| 63 | if string_options.contains(option_key) |
Ed Tanous | fe907df | 2024-05-07 16:37:09 -0700 | [diff] [blame] | 64 | string_options_string += 'constexpr std::string_view ' + option_key_config + ' = "' + opt + '";\n' |
Ed Tanous | 25b54db | 2024-04-17 15:40:31 -0700 | [diff] [blame] | 65 | elif int_options.contains(option_key) |
Ed Tanous | fe907df | 2024-05-07 16:37:09 -0700 | [diff] [blame] | 66 | int_options_string += 'constexpr const int ' + option_key_config + ' = ' + opt.to_string() + ';\n' |
Ed Tanous | 25b54db | 2024-04-17 15:40:31 -0700 | [diff] [blame] | 67 | else |
Ed Tanous | fe907df | 2024-05-07 16:37:09 -0700 | [diff] [blame] | 68 | feature_options_string += 'constexpr const bool ' + option_key_config + ' = ' + opt.allowed().to_string() + ';\n' |
Ed Tanous | 25b54db | 2024-04-17 15:40:31 -0700 | [diff] [blame] | 69 | opt = opt.allowed().to_string() |
| 70 | endif |
Ed Tanous | 25b54db | 2024-04-17 15:40:31 -0700 | [diff] [blame] | 71 | summary(option_key, opt, section: 'Features') |
| 72 | endforeach |
| 73 | |
Myung Bae | 662aa6e | 2023-01-10 14:20:28 -0600 | [diff] [blame] | 74 | # Logging level |
| 75 | loglvlopt = get_option('bmcweb-logging') |
| 76 | if get_option('buildtype').startswith('debug') and loglvlopt == 'disabled' |
Ed Tanous | 25b54db | 2024-04-17 15:40:31 -0700 | [diff] [blame] | 77 | # Override logging level as 'debug' if 'bmcweb-logging' is set as 'disabled' |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 78 | loglvlopt = 'debug' |
Myung Bae | 662aa6e | 2023-01-10 14:20:28 -0600 | [diff] [blame] | 79 | endif |
Ed Tanous | e7245fe | 2023-07-24 17:01:38 -0700 | [diff] [blame] | 80 | loglvlopt = loglvlopt.to_upper() |
Ed Tanous | fe907df | 2024-05-07 16:37:09 -0700 | [diff] [blame] | 81 | string_options_string += 'constexpr std::string_view BMCWEB_LOGGING_LEVEL' + ' = "' + loglvlopt + '";\n' |
| 82 | |
| 83 | # NBD proxy is disabled due to lack of maintenance. See meson_options.txt |
| 84 | feature_options_string += 'constexpr const bool BMCWEB_VM_NBDPROXY = false;\n' |
| 85 | |
| 86 | conf_data.set( |
| 87 | 'BMCWEB_OPTIONS', |
| 88 | string_options_string + int_options_string + feature_options_string, |
| 89 | ) |
Myung Bae | 662aa6e | 2023-01-10 14:20:28 -0600 | [diff] [blame] | 90 | |
Nan Zhou | 307386e | 2022-10-12 20:29:34 +0000 | [diff] [blame] | 91 | conf_h_dep = declare_dependency( |
| 92 | include_directories: include_directories('.'), |
| 93 | sources: configure_file( |
| 94 | input: 'bmcweb_config.h.in', |
| 95 | output: 'bmcweb_config.h', |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 96 | configuration: conf_data, |
| 97 | ), |
Nan Zhou | 307386e | 2022-10-12 20:29:34 +0000 | [diff] [blame] | 98 | ) |
| 99 | |
| 100 | # Configure and install systemd unit files |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 101 | configure_file( |
| 102 | input: 'bmcweb.socket.in', |
| 103 | output: 'bmcweb.socket', |
| 104 | install_dir: systemd_system_unit_dir, |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 105 | install: true, |
Ed Tanous | 92e26be | 2024-08-21 13:39:14 -0700 | [diff] [blame^] | 106 | configuration: configuration_data( |
| 107 | {'BMCWEB_HTTPS_PORT': get_option('https_port')}, |
| 108 | ), |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 109 | ) |
Nan Zhou | 307386e | 2022-10-12 20:29:34 +0000 | [diff] [blame] | 110 | |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 111 | configure_file( |
| 112 | input: 'bmcweb.service.in', |
| 113 | output: 'bmcweb.service', |
| 114 | install_dir: systemd_system_unit_dir, |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 115 | install: true, |
Ed Tanous | 92e26be | 2024-08-21 13:39:14 -0700 | [diff] [blame^] | 116 | configuration: configuration_data( |
| 117 | {'MESON_INSTALL_PREFIX': get_option('prefix')}, |
| 118 | ), |
Ed Tanous | f2caadc | 2024-01-02 18:34:36 -0800 | [diff] [blame] | 119 | ) |
Nan Zhou | 307386e | 2022-10-12 20:29:34 +0000 | [diff] [blame] | 120 | |
| 121 | # Copy pam-webserver to etc/pam.d |
Ed Tanous | 92e26be | 2024-08-21 13:39:14 -0700 | [diff] [blame^] | 122 | install_data('pam-webserver', install_dir: '/etc/pam.d/', rename: 'webserver') |