summaryrefslogtreecommitdiffstats
path: root/meta-networking/recipes-support/chrony
diff options
context:
space:
mode:
authorEaswar Hariharan <easwar.hariharan@microsoft.com>2021-08-25 15:43:41 -0700
committerKhem Raj <raj.khem@gmail.com>2021-08-26 10:10:57 -0700
commit18306e6fccd6cab57823059b21ba17188a5501e3 (patch)
treed7452d8ac32357780b40fb49a121a4c4e0e6cef4 /meta-networking/recipes-support/chrony
parent656ab53e15d0f4051775d9efe48d7ab2be3cadb7 (diff)
downloadmeta-openembedded-18306e6fccd6cab57823059b21ba17188a5501e3.tar.gz
chrony: Fix privdrop packageconfig
To drop root privileges on Linux-based systems, chrony requires a standard user to switch to and the use of capabilities. Fix up the privdrop packageconfig to account for this. Signed-off-by: Easwar Hariharan <easwar.hariharan@microsoft.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-networking/recipes-support/chrony')
-rw-r--r--meta-networking/recipes-support/chrony/chrony_4.1.bb11
1 files changed, 10 insertions, 1 deletions
diff --git a/meta-networking/recipes-support/chrony/chrony_4.1.bb b/meta-networking/recipes-support/chrony/chrony_4.1.bb
index 6a450c3e88..f009bae75c 100644
--- a/meta-networking/recipes-support/chrony/chrony_4.1.bb
+++ b/meta-networking/recipes-support/chrony/chrony_4.1.bb
@@ -47,6 +47,11 @@ DEPENDS = "pps-tools"
47# chrony does not use GNU Autotools. 47# chrony does not use GNU Autotools.
48inherit update-rc.d systemd 48inherit update-rc.d systemd
49 49
50# Add chronyd user if privdrop packageconfig is selected
51inherit ${@bb.utils.contains('PACKAGECONFIG', 'privdrop', 'useradd', '', d)}
52USERADD_PACKAGES = "${@bb.utils.contains('PACKAGECONFIG', 'privdrop', '${PN}', '', d)}"
53USERADD_PARAM_${PN} += "${@bb.utils.contains('PACKAGECONFIG', 'privdrop', '--system -d / -M --shell /bin/nologin chronyd;', '', d)}"
54
50# Configuration options: 55# Configuration options:
51# - For command line editing support in chronyc, you may specify either 56# - For command line editing support in chronyc, you may specify either
52# 'editline' or 'readline' but not both. editline is smaller, but 57# 'editline' or 'readline' but not both. editline is smaller, but
@@ -68,7 +73,7 @@ PACKAGECONFIG ??= "editline \
68PACKAGECONFIG[readline] = "--without-editline,--without-readline,readline" 73PACKAGECONFIG[readline] = "--without-editline,--without-readline,readline"
69PACKAGECONFIG[editline] = ",--without-editline,libedit" 74PACKAGECONFIG[editline] = ",--without-editline,libedit"
70PACKAGECONFIG[sechash] = "--without-tomcrypt,--disable-sechash,nss" 75PACKAGECONFIG[sechash] = "--without-tomcrypt,--disable-sechash,nss"
71PACKAGECONFIG[privdrop] = ",--disable-privdrop,libcap" 76PACKAGECONFIG[privdrop] = "--with-libcap,--disable-privdrop --without-libcap,libcap"
72PACKAGECONFIG[scfilter] = "--enable-scfilter,--without-seccomp,libseccomp" 77PACKAGECONFIG[scfilter] = "--enable-scfilter,--without-seccomp,libseccomp"
73PACKAGECONFIG[ipv6] = ",--disable-ipv6," 78PACKAGECONFIG[ipv6] = ",--disable-ipv6,"
74PACKAGECONFIG[nss] = "--with-nss,--without-nss,nss" 79PACKAGECONFIG[nss] = "--with-nss,--without-nss,nss"
@@ -97,6 +102,10 @@ do_install() {
97 # Config file 102 # Config file
98 install -d ${D}${sysconfdir} 103 install -d ${D}${sysconfdir}
99 install -m 644 ${WORKDIR}/chrony.conf ${D}${sysconfdir} 104 install -m 644 ${WORKDIR}/chrony.conf ${D}${sysconfdir}
105 if ${@bb.utils.contains('PACKAGECONFIG', 'privdrop', 'true', 'false', d)}; then
106 echo "# Define user to drop to after dropping root privileges" >> ${D}${sysconfdir}/chrony.conf
107 echo "user chronyd" >> ${D}${sysconfdir}/chrony.conf
108 fi
100 109
101 # System V init script 110 # System V init script
102 install -d ${D}${sysconfdir}/init.d 111 install -d ${D}${sysconfdir}/init.d