mirror of
git://git.yoctoproject.org/poky
synced 2026-04-02 02:49:11 +00:00
LLD is strict about versioned symbols unlike BFD linker, it flags undefined ones, Allow undefined symbols like BFD linker Fixes | riscv64-yoe-linux-ld.lld: error: version script assignment of 'global' to symbol 'pam_sm_acct_mgmt' failed: symbol not defined | riscv64-yoe-linux-ld.lld: error: version script assignment of 'global' to symbol 'pam_sm_chauthtok' failed: symbol not defined | riscv64-yoe-linux-ld.lld: error: version script assignment of 'global' to symbol 'pam_sm_close_session' failed: symbol not defined | riscv64-yoe-linux-ld.lld: error: version script assignment of 'global' to symbol 'pam_sm_open_session' failed: symbol not defined | riscv64-yoe-linux-clang: error: linker command failed with exit code 1 (use -v to see invocation) (From OE-Core rev: a53fddbb99dc746439b5b2adfb7f747ba25a856f) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
173 lines
6.7 KiB
BlitzBasic
173 lines
6.7 KiB
BlitzBasic
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 GPL-2.0-or-later), by openembedded
|
|
LICENSE = "GPL-2.0-or-later | BSD-3-Clause"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=7eb5c1bf854e8881005d673599ee74d3 \
|
|
file://libpamc/License;md5=a4da476a14c093fdc73be3c3c9ba8fb3 \
|
|
"
|
|
|
|
SRC_URI = "${GITHUB_BASE_URI}/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://run-ptest \
|
|
file://pam-volatiles.conf \
|
|
"
|
|
|
|
SRC_URI[sha256sum] = "21dbcec6e01dd578f14789eac9024a18941e6f2702a05cf91b28c232eeb26ab0"
|
|
|
|
DEPENDS = "bison-native flex-native libxml2-native virtual/crypt"
|
|
|
|
EXTRA_OEMESON = "-Ddocs=disabled -Dsecuredir=${base_libdir}/security"
|
|
|
|
LDFLAGS += "${@bb.utils.contains('DISTRO_FEATURES', 'ld-is-lld', ' -Wl,--undefined-version', '', d)}"
|
|
|
|
S = "${UNPACKDIR}/Linux-PAM-${PV}"
|
|
|
|
inherit meson gettext pkgconfig systemd ptest github-releases
|
|
|
|
PACKAGECONFIG ??= ""
|
|
PACKAGECONFIG[audit] = "-Daudit=enabled,-Daudit=disabled,audit,"
|
|
PACKAGECONFIG[userdb] = "-Dpam_userdb=enabled -Ddb=gdbm,-Dpam_userdb=disabled,gdbm,"
|
|
PACKAGECONFIG[selinux] = "-Dselinux=enabled,-Dselinux=disabled,libselinux,"
|
|
|
|
PACKAGES += "${PN}-runtime ${PN}-xtests"
|
|
FILES:${PN} = " \
|
|
${libdir}/lib*${SOLIBS} \
|
|
${nonarch_libdir}/tmpfiles.d/*.conf \
|
|
"
|
|
FILES:${PN}-dev += "${base_libdir}/security/*.la ${libdir}/*.la ${libdir}/lib*${SOLIBSDEV}"
|
|
FILES:${PN}-runtime = "${sysconfdir} ${sbindir} ${nonarch_libdir}/systemd/system"
|
|
FILES:${PN}-xtests = "${datadir}/Linux-PAM/xtests"
|
|
|
|
# libpam installs /etc/environment for use with the pam_env plugin. Make sure it is
|
|
# packaged with the pam-plugin-env package to avoid breaking installations which
|
|
# install that file via other packages
|
|
FILES:pam-plugin-env = "${sysconfdir}/environment"
|
|
|
|
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} \
|
|
${@bb.utils.contains('PACKAGECONFIG', 'selinux', '${MLPREFIX}pam-plugin-selinux-${libpam_suffix}', '', d)} \
|
|
"
|
|
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='', prepend=True)
|
|
do_split_packages(d, pam_filterdir, r'^(.*)$', 'pam-filter-%s', 'PAM filter for %s', extra_depends='')
|
|
}
|
|
|
|
do_install:append() {
|
|
# 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}${nonarch_libdir}/tmpfiles.d
|
|
install -m 0644 ${UNPACKDIR}/pam-volatiles.conf \
|
|
${D}${nonarch_libdir}/tmpfiles.d/pam.conf
|
|
else
|
|
install -d ${D}${sysconfdir}/default/volatiles
|
|
install -m 0644 ${UNPACKDIR}/99_pam \
|
|
${D}${sysconfdir}/default/volatiles/
|
|
fi
|
|
|
|
install -d ${D}${sysconfdir}/pam.d/
|
|
install -m 0644 ${UNPACKDIR}/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() {
|
|
mkdir -p ${D}${PTEST_PATH}/tests
|
|
find ${B}/tests -maxdepth 1 -type f -exec cp {} ${D}${PTEST_PATH}/tests \;
|
|
install -m 0644 ${S}/tests/confdir ${D}${PTEST_PATH}/tests
|
|
}
|
|
|
|
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
|
|
ANY_OF_DISTRO_FEATURES = "pam systemd"
|
|
|
|
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"
|
|
|
|
GITHUB_BASE_URI = "https://github.com/linux-pam/linux-pam/releases"
|
|
|
|
CVE_PRODUCT = "linux-pam"
|