DISABLE_STATIC = ""
|
SUMMARY = "Linux-PAM (Pluggable Authentication Modules)"
|
DESCRIPTION = "Linux-PAM (Pluggable Authentication Modules for Linux), a flexible mechanism for authenticating users"
|
HOMEPAGE = "https://fedorahosted.org/linux-pam/"
|
BUGTRACKER = "https://fedorahosted.org/linux-pam/newticket"
|
SECTION = "base"
|
# PAM is dual licensed under GPL and BSD.
|
# /etc/pam.d comes from Debian libpam-runtime in 2009-11 (at that time
|
# libpam-runtime-1.0.1 is GPLv2+), by openembedded
|
LICENSE = "GPLv2+ | BSD-3-Clause"
|
LIC_FILES_CHKSUM = "file://COPYING;md5=7eb5c1bf854e8881005d673599ee74d3 \
|
file://libpamc/License;md5=a4da476a14c093fdc73be3c3c9ba8fb3 \
|
"
|
|
SRC_URI = "https://github.com/linux-pam/linux-pam/releases/download/v${PV}/Linux-PAM-${PV}.tar.xz \
|
file://99_pam \
|
file://pam.d/common-account \
|
file://pam.d/common-auth \
|
file://pam.d/common-password \
|
file://pam.d/common-session \
|
file://pam.d/common-session-noninteractive \
|
file://pam.d/other \
|
file://libpam-xtests.patch \
|
file://0001-modules-pam_namespace-Makefile.am-correctly-install-.patch \
|
file://0001-Makefile.am-support-usrmage.patch \
|
file://run-ptest \
|
file://pam-volatiles.conf \
|
"
|
|
SRC_URI[sha256sum] = "201d40730b1135b1b3cdea09f2c28ac634d73181ccd0172ceddee3649c5792fc"
|
|
DEPENDS = "bison-native flex flex-native cracklib libxml2-native virtual/crypt"
|
|
EXTRA_OECONF = "--includedir=${includedir}/security \
|
--libdir=${base_libdir} \
|
--disable-nis \
|
--disable-regenerate-docu \
|
--disable-doc \
|
--disable-prelude"
|
|
CFLAGS:append = " -fPIC "
|
|
S = "${WORKDIR}/Linux-PAM-${PV}"
|
|
inherit autotools gettext pkgconfig systemd ptest
|
|
PACKAGECONFIG ??= ""
|
PACKAGECONFIG[audit] = "--enable-audit,--disable-audit,audit,"
|
PACKAGECONFIG[userdb] = "--enable-db=db,--enable-db=no,db,"
|
|
PACKAGES += "${PN}-runtime ${PN}-xtests"
|
FILES:${PN} = "${base_libdir}/lib*${SOLIBS}"
|
FILES:${PN}-dev += "${base_libdir}/security/*.la ${base_libdir}/*.la ${base_libdir}/lib*${SOLIBSDEV}"
|
FILES:${PN}-runtime = "${sysconfdir} ${sbindir} ${systemd_system_unitdir}"
|
FILES:${PN}-xtests = "${datadir}/Linux-PAM/xtests"
|
|
PACKAGES_DYNAMIC += "^${MLPREFIX}pam-plugin-.*"
|
|
def get_multilib_bit(d):
|
baselib = d.getVar('baselib') or ''
|
return baselib.replace('lib', '')
|
|
libpam_suffix = "suffix${@get_multilib_bit(d)}"
|
|
RPROVIDES:${PN} += "${PN}-${libpam_suffix}"
|
RPROVIDES:${PN}-runtime += "${PN}-runtime-${libpam_suffix}"
|
|
RDEPENDS:${PN}-runtime = "${PN}-${libpam_suffix} \
|
${MLPREFIX}pam-plugin-deny-${libpam_suffix} \
|
${MLPREFIX}pam-plugin-permit-${libpam_suffix} \
|
${MLPREFIX}pam-plugin-warn-${libpam_suffix} \
|
${MLPREFIX}pam-plugin-unix-${libpam_suffix} \
|
"
|
RDEPENDS:${PN}-xtests = "${PN}-${libpam_suffix} \
|
${MLPREFIX}pam-plugin-access-${libpam_suffix} \
|
${MLPREFIX}pam-plugin-debug-${libpam_suffix} \
|
${MLPREFIX}pam-plugin-pwhistory-${libpam_suffix} \
|
${MLPREFIX}pam-plugin-succeed-if-${libpam_suffix} \
|
${MLPREFIX}pam-plugin-time-${libpam_suffix} \
|
bash coreutils"
|
|
# FIXME: Native suffix breaks here, disable it for now
|
RRECOMMENDS:${PN} = "${PN}-runtime-${libpam_suffix}"
|
RRECOMMENDS:${PN}:class-native = ""
|
|
python populate_packages:prepend () {
|
def pam_plugin_hook(file, pkg, pattern, format, basename):
|
pn = d.getVar('PN')
|
libpam_suffix = d.getVar('libpam_suffix')
|
|
rdeps = d.getVar('RDEPENDS:' + pkg)
|
if rdeps:
|
rdeps = rdeps + " " + pn + "-" + libpam_suffix
|
else:
|
rdeps = pn + "-" + libpam_suffix
|
d.setVar('RDEPENDS:' + pkg, rdeps)
|
|
provides = d.getVar('RPROVIDES:' + pkg)
|
if provides:
|
provides = provides + " " + pkg + "-" + libpam_suffix
|
else:
|
provides = pkg + "-" + libpam_suffix
|
d.setVar('RPROVIDES:' + pkg, provides)
|
|
mlprefix = d.getVar('MLPREFIX') or ''
|
dvar = d.expand('${WORKDIR}/package')
|
pam_libdir = d.expand('${base_libdir}/security')
|
pam_sbindir = d.expand('${sbindir}')
|
pam_filterdir = d.expand('${base_libdir}/security/pam_filter')
|
pam_pkgname = mlprefix + 'pam-plugin%s'
|
|
do_split_packages(d, pam_libdir, r'^pam(.*)\.so$', pam_pkgname,
|
'PAM plugin for %s', hook=pam_plugin_hook, extra_depends='')
|
do_split_packages(d, pam_filterdir, r'^(.*)$', 'pam-filter-%s', 'PAM filter for %s', extra_depends='')
|
}
|
|
do_compile_ptest() {
|
cd tests
|
sed -i -e 's/$(MAKE) $(AM_MAKEFLAGS) check-TESTS//' Makefile
|
oe_runmake check-am
|
cd -
|
}
|
|
do_install() {
|
autotools_do_install
|
|
# don't install /var/run when populating rootfs. Do it through volatile
|
rm -rf ${D}${localstatedir}
|
|
if ${@bb.utils.contains('DISTRO_FEATURES','sysvinit','false','true',d)}; then
|
rm -rf ${D}${sysconfdir}/init.d/
|
rm -rf ${D}${sysconfdir}/rc*
|
install -d ${D}${sysconfdir}/tmpfiles.d
|
install -m 0644 ${WORKDIR}/pam-volatiles.conf \
|
${D}${sysconfdir}/tmpfiles.d/pam.conf
|
else
|
install -d ${D}${sysconfdir}/default/volatiles
|
install -m 0644 ${WORKDIR}/99_pam \
|
${D}${sysconfdir}/default/volatiles/
|
fi
|
|
install -d ${D}${sysconfdir}/pam.d/
|
install -m 0644 ${WORKDIR}/pam.d/* ${D}${sysconfdir}/pam.d/
|
|
# The lsb requires unix_chkpwd has setuid permission
|
chmod 4755 ${D}${sbindir}/unix_chkpwd
|
|
if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then
|
echo "session optional pam_systemd.so" >> ${D}${sysconfdir}/pam.d/common-session
|
fi
|
}
|
|
do_install_ptest() {
|
if [ ${PTEST_ENABLED} = "1" ]; then
|
mkdir -p ${D}${PTEST_PATH}/tests
|
install -m 0755 ${B}/tests/.libs/* ${D}${PTEST_PATH}/tests
|
install -m 0644 ${S}/tests/confdir ${D}${PTEST_PATH}/tests
|
fi
|
}
|
|
pkg_postinst:${PN}() {
|
if [ -z "$D" ] && [ -e /etc/init.d/populate-volatile.sh ] ; then
|
/etc/init.d/populate-volatile.sh update
|
fi
|
}
|
|
inherit features_check
|
REQUIRED_DISTRO_FEATURES = "pam"
|
|
BBCLASSEXTEND = "nativesdk native"
|
|
CONFFILES:${PN}-runtime += "${sysconfdir}/pam.d/common-session"
|
CONFFILES:${PN}-runtime += "${sysconfdir}/pam.d/common-auth"
|
CONFFILES:${PN}-runtime += "${sysconfdir}/pam.d/common-password"
|
CONFFILES:${PN}-runtime += "${sysconfdir}/pam.d/common-session-noninteractive"
|
CONFFILES:${PN}-runtime += "${sysconfdir}/pam.d/common-account"
|
CONFFILES:${PN}-runtime += "${sysconfdir}/security/limits.conf"
|
|
UPSTREAM_CHECK_URI = "https://github.com/linux-pam/linux-pam/releases"
|
|
CVE_PRODUCT = "linux-pam"
|