blob: 29f58e288f129346bd2505d7e562ae8ba3923929 [file] [log] [blame]
Matthew Barth3cff7ed2016-07-27 14:50:51 -05001# Initialization
2AC_PREREQ([2.69])
3AC_INIT([phosphor-host-ipmid], [1.0], [https://github.com/openbmc/phosphor-host-ipmid/issues])
4AC_CONFIG_HEADERS([config.h])
William A. Kennington III5023aa92019-04-04 18:00:09 -07005AM_INIT_AUTOMAKE([subdir-objects -Wall -Wno-portability -Werror foreign dist-xz])
Matthew Barth00b1e5b2016-09-09 12:15:46 -05006AM_SILENT_RULES([yes])
Patrick Venture98c7bfc2018-10-29 18:43:35 -07007AC_LANG([C++])
Matthew Barth3cff7ed2016-07-27 14:50:51 -05008
William A. Kennington III5023aa92019-04-04 18:00:09 -07009# Make sure the default CFLAGS of `-O2 -g` don't override CODE_COVERAGE_CFLAGS
10# It is important that this comes before AC_PROG_C{C,XX}, as we are attempting
11# to stop them from populating default CFLAGS and CXXFLAGS.
12AS_IF([test "x$enable_code_coverage" != "xno"], [
13 AS_IF([test "x${CXXFLAGS+set}" != "xset"], [
14 AC_SUBST(CXXFLAGS, [""])
15 ])
16 AS_IF([test "x${CFLAGS+set}" != "xset"], [
17 AC_SUBST(CFLAGS, [""])
18 ])
19])
20
Matthew Barth3cff7ed2016-07-27 14:50:51 -050021# Checks for programs.
22AC_PROG_CXX
Matthew Barth3cff7ed2016-07-27 14:50:51 -050023AC_PROG_CC
Patrick Williams686df742016-09-02 17:52:59 -050024AM_PROG_AR
Matthew Barth3cff7ed2016-07-27 14:50:51 -050025AC_PROG_INSTALL
26AC_PROG_MAKE_SET
27
Yong Li5833cb62019-10-30 13:27:12 +080028# Add an option to enable/disable safe mode in boot flags
29AC_ARG_ENABLE([boot-flag-safe-mode-support],
30 AS_HELP_STRING([--disable-boot-flag-safe-mode-support], [Disable safe mode option in boot flags. [default=enable]])
31)
32AS_IF([test "x$enable_boot_flag_safe_mode_support" != "xno"],
33 AC_MSG_NOTICE([Enabling safe mode option in boot flags])
34 [cpp_flags="-DENABLE_BOOT_FLAG_SAFE_MODE_SUPPORT"]
35 AC_SUBST([CPPFLAGS], [$cpp_flags]),
36 AC_MSG_WARN([Disabling safe mode option in boot flags])
37)
38
Yong Libd0503a2019-08-22 17:17:17 +080039# Add an option to enable/disable i2c master write read command white list checking
40AC_ARG_ENABLE([i2c-whitelist-check],
41 AS_HELP_STRING([--disable-i2c-whitelist-check], [Disable I2C master write read command white list check. [default=enable]])
42)
43AS_IF([test "x$enable_i2c_whitelist_check" != "xno"],
44 AC_MSG_NOTICE([Enabling I2C master write read command white list check])
45 [cpp_flags="-DENABLE_I2C_WHITELIST_CHECK"]
46 AC_SUBST([CPPFLAGS], [$cpp_flags]),
47 AC_MSG_WARN([Disabling I2C master write read command white list check])
48)
49
Vishwanatha Subbanna506aa0f2017-01-24 14:58:25 +053050# softoff dir specific ones
51AC_ARG_ENABLE([softoff],
52 AS_HELP_STRING([--enable-softoff], [Builds soft power off])
53)
54AS_IF([test "x$enable_softoff" != "xno"],
55 [AC_PROG_MKDIR_P]
56 [AC_CHECK_PROG([DIRNAME], dirname, dirname)]
57)
58
William A. Kennington III194375f2018-12-14 02:14:33 -080059# Make sure the pkgconfigdata is configured for automake
60PKG_INSTALLDIR
61
Matthew Barth3cff7ed2016-07-27 14:50:51 -050062# Checks for libraries.
Patrick Venture15bc9182018-12-03 12:22:50 -080063AC_CHECK_LIB([pam], [pam_start], [], [AC_MSG_ERROR([libpam not found])])
Matthew Barth80f714b2016-11-09 15:04:48 -060064AC_CHECK_LIB([mapper], [mapper_get_service], ,[AC_MSG_ERROR([Could not find libmapper...openbmc/phosphor-objmgr package required])])
Vishwanatha Subbanna506aa0f2017-01-24 14:58:25 +053065PKG_CHECK_MODULES([SYSTEMD], [libsystemd >= 221], [], [AC_MSG_ERROR(["systemd required and not found"])])
Richard Marian Thomaiyar4654d992018-04-19 05:38:37 +053066PKG_CHECK_MODULES([CRYPTO], [libcrypto >= 1.0.2g], ,[AC_MSG_ERROR([can't find openssl libcrypto])])
Patrick Venture67195862019-02-13 08:24:00 -080067PKG_CHECK_MODULES([PHOSPHOR_LOGGING], [phosphor-logging])
68PKG_CHECK_MODULES([PHOSPHOR_DBUS_INTERFACES], [phosphor-dbus-interfaces])
69PKG_CHECK_MODULES([SDBUSPLUS], [sdbusplus])
Patrick Venture97c22e12019-02-12 07:39:02 -080070AC_CHECK_HEADER(nlohmann/json.hpp, [], [AC_MSG_ERROR([Could not find nlohmann/json.hpp])])
Matthew Barth3cff7ed2016-07-27 14:50:51 -050071
William A. Kennington III047412c2018-12-10 15:26:19 -080072AS_IF([test "x$enable_softoff" != "xno"], [
Patrick Venture67195862019-02-13 08:24:00 -080073 PKG_CHECK_MODULES([SDEVENTPLUS], [sdeventplus])
William A. Kennington III4f67cc32018-10-18 15:24:49 -070074
Vishwanatha Subbanna506aa0f2017-01-24 14:58:25 +053075 # Check for sdbus++ tool
William A. Kennington III047412c2018-12-10 15:26:19 -080076 AC_PATH_PROG([SDBUSPLUSPLUS], [sdbus++])
Vishwanatha Subbanna506aa0f2017-01-24 14:58:25 +053077 AS_IF([test "x$SDBUSPLUSPLUS" == "x"],
78 AC_MSG_ERROR([Cannot find sdbus++]))
William A. Kennington III047412c2018-12-10 15:26:19 -080079])
Matthew Barth3cff7ed2016-07-27 14:50:51 -050080
81# Checks for typedefs, structures, and compiler characteristics.
William A. Kennington III687a4362018-10-18 15:22:43 -070082AX_CXX_COMPILE_STDCXX([17], [noext], [mandatory])
Matthew Barth00b1e5b2016-09-09 12:15:46 -050083AX_APPEND_COMPILE_FLAGS([-Wall -Werror], [CFLAGS])
84AX_APPEND_COMPILE_FLAGS([-Wall -Werror], [CXXFLAGS])
Matthew Barth3cff7ed2016-07-27 14:50:51 -050085
86# Checks for library functions.
Patrick Williams686df742016-09-02 17:52:59 -050087LT_INIT([dlopen disable-static shared])
Matthew Barth3cff7ed2016-07-27 14:50:51 -050088LT_LIB_DLLOAD
Matthew Barth3cff7ed2016-07-27 14:50:51 -050089
Matthew Barth00b1e5b2016-09-09 12:15:46 -050090# Check/set gtest specific functions.
Peter Hanson4a589852017-06-07 17:40:45 -070091PKG_CHECK_MODULES([GTEST], [gtest], [], [AC_MSG_NOTICE([gtest not found, tests will not build])])
92PKG_CHECK_MODULES([GTEST_MAIN], [gtest_main], [], [AC_MSG_NOTICE([gtest_main not found, tests will not build])])
Matthew Barth00b1e5b2016-09-09 12:15:46 -050093
94AC_ARG_ENABLE([oe-sdk],
95 AS_HELP_STRING([--enable-oe-sdk], [Link testcases absolutely against OE SDK so they can be ran within it.])
96)
97AC_ARG_VAR(OECORE_TARGET_SYSROOT,
98 [Path to the OE SDK SYSROOT])
99AS_IF([test "x$enable_oe_sdk" == "xyes"],
100 AS_IF([test "x$OECORE_TARGET_SYSROOT" == "x"],
101 AC_MSG_ERROR([OECORE_TARGET_SYSROOT must be set with --enable-oe-sdk])
102 )
103 AC_MSG_NOTICE([Enabling OE-SDK at $OECORE_TARGET_SYSROOT])
104 [
105 testcase_flags="-Wl,-rpath,\${OECORE_TARGET_SYSROOT}/lib"
106 testcase_flags="${testcase_flags} -Wl,-rpath,\${OECORE_TARGET_SYSROOT}/usr/lib"
107 testcase_flags="${testcase_flags} -Wl,-dynamic-linker,`find \${OECORE_TARGET_SYSROOT}/lib/ld-*.so | sort -r -n | head -n1`"
108 ]
109 AC_SUBST([OESDK_TESTCASE_FLAGS], [$testcase_flags])
110)
111
Emily Shafferc07e72c2018-06-18 10:37:31 -0700112# Add code coverage tool
113AX_CODE_COVERAGE
William A. Kennington III5023aa92019-04-04 18:00:09 -0700114AS_IF([test "x$CODE_COVERAGE_ENABLED" = "xyes"], [
115 AX_APPEND_COMPILE_FLAGS([-DHAVE_GCOV], [CODE_COVERAGE_CPPFLAGS])
116])
117m4_ifdef([_AX_CODE_COVERAGE_RULES],
118 [AM_CONDITIONAL(AUTOCONF_CODE_COVERAGE_2019_01_06, [true])],
119 [AM_CONDITIONAL(AUTOCONF_CODE_COVERAGE_2019_01_06, [false])])
120AX_ADD_AM_MACRO_STATIC([])
121
Emily Shafferc07e72c2018-06-18 10:37:31 -0700122
Tom Joseph51cb8ee2017-02-21 16:22:33 +0530123AC_ARG_VAR(WHITELIST_CONF, [Paths to IPMI whitelisted commands conf files. (default = ${srcdir}/host-ipmid-whitelist.conf)])
124if test -z "$WHITELIST_CONF"; then
125 WHITELIST_CONF=${srcdir}/host-ipmid-whitelist.conf
126fi
127
Brad Bishop2a5d8d12019-06-06 21:43:56 -0400128AS_IF([test "x$SENSOR_YAML_GEN" == "x"], [SENSOR_YAML_GEN="$srcdir/scripts/sensor-example.yaml"])
Ratan Gupta28c2e732017-03-04 08:53:52 +0530129SENSORGEN="$PYTHON ${srcdir}/scripts/sensor_gen.py -i $SENSOR_YAML_GEN"
Vernon Mauery5f7ac712019-04-30 11:19:08 -0700130AC_SUBST(SENSOR_YAML_GEN)
Ratan Gupta28c2e732017-03-04 08:53:52 +0530131AC_SUBST(SENSORGEN)
132
Brad Bishop2a5d8d12019-06-06 21:43:56 -0400133AS_IF([test "x$INVSENSOR_YAML_GEN" == "x"], [INVSENSOR_YAML_GEN="$srcdir/scripts/inventory-sensor-example.yaml"])
Tom Josephe19540e2019-02-04 14:06:58 +0530134INVSENSORGEN="$PYTHON ${srcdir}/scripts/inventory-sensor.py -i $INVSENSOR_YAML_GEN"
Vernon Mauery5f7ac712019-04-30 11:19:08 -0700135AC_SUBST(INVSENSOR_YAML_GEN)
Tom Josephe19540e2019-02-04 14:06:58 +0530136AC_SUBST(INVSENSORGEN)
137
Brad Bishop2a5d8d12019-06-06 21:43:56 -0400138AS_IF([test "x$FRU_YAML_GEN" == "x"], [FRU_YAML_GEN="$srcdir/scripts/fru-read-example.yaml"])
Marri Devender Raoa62bacc2017-06-04 23:40:16 -0500139FRUGEN="$PYTHON $srcdir/scripts/fru_gen.py -i $FRU_YAML_GEN"
Vernon Mauery5f7ac712019-04-30 11:19:08 -0700140AC_SUBST(FRU_YAML_GEN)
Marri Devender Raoa62bacc2017-06-04 23:40:16 -0500141AC_SUBST(FRUGEN)
142
Brad Bishop2a5d8d12019-06-06 21:43:56 -0400143AS_IF([test "x$ENTITY_YAML_GEN" == "x"], [ENTITY_YAML_GEN="$srcdir/scripts/entity-example.yaml"])
Jaghathiswari Rankappagounder Natarajan9c118942019-02-12 13:22:55 -0800144ENTITYGEN="$PYTHON $srcdir/scripts/entity_gen.py -i $ENTITY_YAML_GEN"
Vernon Mauery5f7ac712019-04-30 11:19:08 -0700145AC_SUBST(ENTITY_YAML_GEN)
Jaghathiswari Rankappagounder Natarajan9c118942019-02-12 13:22:55 -0800146AC_SUBST(ENTITYGEN)
147
Tom Joseph6edc8a02017-06-30 18:52:56 +0530148AC_DEFINE(CALLOUT_FWD_ASSOCIATION, "callout", [The name of the callout's forward association.])
149AC_DEFINE(BOARD_SENSOR, "/xyz/openbmc_project/inventory/system/chassis/motherboard", [The inventory path to the motherboard fault sensor.])
150AC_DEFINE(SYSTEM_SENSOR, "/xyz/openbmc_project/inventory/system", [The inventory path to the system event sensor.])
151
Vishwanatha Subbanna506aa0f2017-01-24 14:58:25 +0530152# Soft Power off related.
153AS_IF([test "x$enable_softoff" != "xno"],
154 # Dbus service name
155 [AC_ARG_VAR(SOFTOFF_BUSNAME, [The Dbus busname to own])]
156 AS_IF([test "x$SOFTOFF_BUSNAME" == "x"],
157 [SOFTOFF_BUSNAME="xyz.openbmc_project.Ipmi.Internal.SoftPowerOff"])
158 [AC_DEFINE_UNQUOTED([SOFTOFF_BUSNAME], ["$SOFTOFF_BUSNAME"], [The Dbus busname to own])]
159
160 # Service dbus root
161 [AC_ARG_VAR(SOFTOFF_OBJPATH, [The SoftPowerOff Dbus root])]
162 AS_IF([test "x$SOFTOFF_OBJPATH" == "x"],
Vishwanatha Subbannab891a572017-03-31 11:34:48 +0530163 [SOFTOFF_OBJPATH="/xyz/openbmc_project/ipmi/internal/soft_power_off"])
Vishwanatha Subbanna506aa0f2017-01-24 14:58:25 +0530164 [AC_DEFINE_UNQUOTED([SOFTOFF_OBJPATH], ["$SOFTOFF_OBJPATH"], [The SoftPowerOff Dbus root])]
Vishwanatha Subbannad27e71e2017-02-01 18:02:38 +0530165
166 # Timeouts in SECONDS for SoftPowerOff protocol
Andrew Geissler6fcdc212018-01-26 11:53:46 -0800167 [AC_ARG_VAR(IPMI_SMS_ATN_ACK_TIMEOUT_SECS, \
168 [Initial timeout for host to ack and query SMS_ATN from BMC])]
169 [AC_DEFINE_UNQUOTED([IPMI_SMS_ATN_ACK_TIMEOUT_SECS], [30], \
170 [Timeout for host to ack and query SMS_ATN from BMC])]
Vishwanatha Subbanna31272b82017-02-01 18:53:14 +0530171
Andrew Geissler48ce0722017-08-16 19:51:51 -0500172 [AC_ARG_VAR(IPMI_HOST_SHUTDOWN_COMPLETE_TIMEOUT_SECS, [Wait time for host to shutdown])]
173 [AC_DEFINE_UNQUOTED([IPMI_HOST_SHUTDOWN_COMPLETE_TIMEOUT_SECS], [45*60], [Wait time for host to shutdown])]
Andrew Geisslera6e3a302017-05-31 19:34:00 -0500174
175 # Indicates an in-band power off or reboot request from the host
176 # This file is used to ensure the soft off service does not run for host
177 # initiated shutdown or reboot requests
178 [AC_ARG_VAR(HOST_INBAND_REQUEST_DIR, [Directory used to indicate the host has initiated a shutdown or reboot])]
179 AS_IF([test "x$HOST_INBAND_REQUEST_DIR" == "x"],
180 [HOST_INBAND_REQUEST_DIR="/run/openbmc/"])
181 [AC_DEFINE_UNQUOTED([HOST_INBAND_REQUEST_DIR], ["$HOST_INBAND_REQUEST_DIR"], [Directory to store host initiated shutdown file])]
182
183 [AC_ARG_VAR(HOST_INBAND_REQUEST_FILE, [File which indicates the host has initiated a shutdown or reboot])]
184 AS_IF([test "x$HOST_INBAND_REQUEST_FILE" == "x"],
185 [HOST_INBAND_REQUEST_FILE="host@%u-request"])
186 [AC_DEFINE_UNQUOTED([HOST_INBAND_REQUEST_FILE], ["$HOST_INBAND_REQUEST_FILE"], [File to create if host has initiated shutdown or reboot])]
Vishwanatha Subbanna506aa0f2017-01-24 14:58:25 +0530187)
188
Andrew Geissler62817fa92017-03-20 14:20:49 -0500189# Control Host Interfaces
190# Dbus service name
191AC_ARG_VAR(CONTROL_HOST_BUSNAME, [The Control Host Dbus busname to own])
192AS_IF([test "x$CONTROL_HOST_BUSNAME" == "x"],
193 [CONTROL_HOST_BUSNAME="xyz.openbmc_project.Control.Host"])
194AC_DEFINE_UNQUOTED([CONTROL_HOST_BUSNAME], ["$CONTROL_HOST_BUSNAME"], [The Control Host Dbus busname to own])
195
Vishwanatha Subbanna3eb117a2017-07-12 16:13:49 +0530196# Host object name in the D-Bus
197AC_ARG_VAR(HOST_NAME, [The Host name in the object path])
198AS_IF([test "x$HOST_NAME" == "x"],
199 [HOST_NAME="host"])
200AC_DEFINE_UNQUOTED([HOST_NAME], ["$HOST_NAME"], [The Host name in the object path])
201
202# Service dbus object manager
203AC_ARG_VAR(CONTROL_HOST_OBJ_MGR, [The Control Host D-Bus Object Manager])
204AS_IF([test "x$CONTROL_HOST_OBJ_MGR" == "x"],
205 [CONTROL_HOST_OBJ_MGR="/xyz/openbmc_project/control"])
206AC_DEFINE_UNQUOTED([CONTROL_HOST_OBJ_MGR], ["$CONTROL_HOST_OBJ_MGR"], [The Control Host D-Bus Object Manager])
Andrew Geissler62817fa92017-03-20 14:20:49 -0500207
Marri Devender Rao66c5fda2018-01-18 10:48:37 -0600208# Power reading sensor configuration file
209AC_ARG_VAR(POWER_READING_SENSOR, [Power reading sensor configuration file])
210AS_IF([test "x$POWER_READING_SENSOR" == "x"],[POWER_READING_SENSOR="/usr/share/ipmi-providers/power_reading.json"])
211AC_DEFINE_UNQUOTED([POWER_READING_SENSOR], ["$POWER_READING_SENSOR"], [Power reading sensor configuration file])
212
Patrick Venture15e95f22018-11-14 19:25:08 -0800213AC_ARG_VAR(HOST_IPMI_LIB_PATH, [The file path to search for libraries.])
Vernon Mauery41c79e62019-02-04 15:54:28 -0800214AS_IF([test "x$HOST_IPMI_LIB_PATH" == "x"], [HOST_IPMI_LIB_PATH="/usr/lib/ipmid-providers/"])
Patrick Venture15e95f22018-11-14 19:25:08 -0800215AC_DEFINE_UNQUOTED([HOST_IPMI_LIB_PATH], ["$HOST_IPMI_LIB_PATH"], [The file path to search for libraries.])
216
Brandon Kim9cf85622019-06-19 12:05:08 -0700217# When a sensor read fails, hwmon will update the OperationalState interface's Functional property.
218# This will mark the sensor as not functional and we will skip reading from that sensor.
219AC_ARG_ENABLE([update-functional-on-fail],
220 AS_HELP_STRING(
221 [--enable-update-functional-on-fail],
222 [Check functional property to skip reading from faulty sensors.]
223 )
224)
225
226AC_ARG_VAR(UPDATE_FUNCTIONAL_ON_FAIL, [Check functional property to skip reading from faulty sensors.])
227AS_IF(
228 [test "x$enable_update_functional_on_fail" == "xyes"],
229 [UPDATE_FUNCTIONAL_ON_FAIL="yes"]
230 AC_DEFINE_UNQUOTED(
231 [UPDATE_FUNCTIONAL_ON_FAIL],
232 ["$UPDATE_FUNCTIONAL_ON_FAIL"],
233 [Check functional property to skip reading from faulty sensors.]
234 )
235)
236
ofery61d8dcc2019-06-10 16:02:37 -0700237# When disable-libuserlayer flag is set, libuserlayer won't be included in the build.
238AC_ARG_ENABLE([libuserlayer],
239 AS_HELP_STRING([--disable-libuserlayer], [Set a flag to exclude libuserlayer])
240)
241AM_CONDITIONAL(FEATURE_LIBUSERLAYER, [test "x$enable_libuserlayer" != "xno"])
242
Johnathan Manteyb87034e2019-09-16 10:50:50 -0700243# When enable-transport-oem flag is set, the transporthandler_oem.cpp contents
244# are compiled and added to the project. The transporthandler_oem.cpp file is
245# copied from your own customization layer in the
246# phosphor-ipmi-host_%.bbappend file. It is not necessary to create this file
247# unless OEM Parameter extensions are required.
248AC_ARG_ENABLE([transport_oem],
249 [ --enable-transport-oem Enable/disable OEM Parameter extensions],
250 [case "${enableval}" in
251 yes) transport_oem=true ;;
252 no) transport_oem=false ;;
253 *) AC_MSG_ERROR([bad value ${enableval} for --enable-transport_oem]) ;;
254 esac],[transport_oem=false]
255 )
256AM_CONDITIONAL([FEATURE_TRANSPORT_OEM], [test x$transport_oem = xtrue])
257
Vernon Mauerye9f88572020-01-30 16:11:34 -0800258# IPMI whitelist mechanism is not needed by everyone; offer a way to disable it
259AC_ARG_ENABLE([ipmi-whitelist],
260 [ --enable-ipmi-whitelist Enable/disable IPMI whitelist filtering],
261 [case "${enableval}" in
262 yes) ipmi_whitelist=true ;;
263 no) ipmi_whitelist=false ;;
264 *) AC_MSG_ERROR([bad value ${enableval} for --enable-ipmi-whitelist]) ;;
265 esac],[ipmi_whitelist=true]
266 )
267AM_CONDITIONAL([FEATURE_IPMI_WHITELIST], [test x$ipmi_whitelist = xtrue])
268
Matthew Barth00b1e5b2016-09-09 12:15:46 -0500269# Create configured output
William A. Kennington III194375f2018-12-14 02:14:33 -0800270AC_CONFIG_FILES([
271 Makefile
272 include/Makefile
273 libipmid/Makefile
274 libipmid/libipmid.pc
275 libipmid-host/Makefile
276 libipmid-host/libipmid-host.pc
277 softoff/Makefile
278 test/Makefile
279 user_channel/Makefile
280])
Matthew Barth3cff7ed2016-07-27 14:50:51 -0500281AC_OUTPUT