blob: b8e5e285c45b21ab3b9e1ca4dc296f198861de82 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001SUMMARY = "Tools to change and administer password and group data"
Brad Bishopf3f93bb2019-10-16 14:33:32 -04002HOMEPAGE = "http://github.com/shadow-maint/shadow"
Andrew Geissler95ac1b82021-03-31 14:34:31 -05003DESCRIPTION = "${SUMMARY}"
Brad Bishopf3f93bb2019-10-16 14:33:32 -04004BUGTRACKER = "http://github.com/shadow-maint/shadow/issues"
Patrick Williamsc124f4f2015-09-15 14:41:29 -05005SECTION = "base/utils"
Andrew Geissler595f6302022-01-24 19:11:47 +00006LICENSE = "BSD-3-Clause"
7LIC_FILES_CHKSUM = "file://COPYING;md5=c9a450b7be84eac23e6353efecb60b5b \
Patrick Williams705982a2024-01-12 09:51:57 -06008 file://src/passwd.c;beginline=2;endline=7;md5=67bcf314687820b2f010d4863fce3fc5 \
Andrew Geissler595f6302022-01-24 19:11:47 +00009 "
Patrick Williamsc124f4f2015-09-15 14:41:29 -050010
Brad Bishop316dfdd2018-06-25 12:45:53 -040011DEPENDS = "virtual/crypt"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050012
Andrew Geissler87f5cff2022-09-30 13:13:31 -050013GITHUB_BASE_URI = "https://github.com/shadow-maint/shadow/releases"
14SRC_URI = "${GITHUB_BASE_URI}/download/${PV}/${BP}.tar.gz \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050015 ${@bb.utils.contains('PACKAGECONFIG', 'pam', '${PAM_SRC_URI}', '', d)} \
Andrew Geisslerd159c7f2021-09-02 21:05:58 -050016 file://useradd \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050017 "
18
Patrick Williams213cb262021-08-07 19:21:33 -050019SRC_URI:append:class-target = " \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050020 file://login_defs_pam.sed \
21 file://shadow-update-pam-conf.patch \
22 "
23
Patrick Williams213cb262021-08-07 19:21:33 -050024SRC_URI:append:class-native = " \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050025 file://commonio.c-fix-unexpected-open-failure-in-chroot-env.patch \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050026 "
Patrick Williams705982a2024-01-12 09:51:57 -060027SRC_URI[sha256sum] = "a305edf5d19bddbdf5e836d2d609fa8bff2d35458819de4d9f06306a1cf24342"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050028
29# Additional Policy files for PAM
30PAM_SRC_URI = "file://pam.d/chfn \
31 file://pam.d/chpasswd \
32 file://pam.d/chsh \
33 file://pam.d/login \
34 file://pam.d/newusers \
35 file://pam.d/passwd \
36 file://pam.d/su"
37
Patrick Williams705982a2024-01-12 09:51:57 -060038inherit autotools gettext github-releases pkgconfig
Patrick Williamsc124f4f2015-09-15 14:41:29 -050039
Brad Bishope2d5b612018-11-23 10:55:50 +130040export CONFIG_SHELL="/bin/sh"
41
Patrick Williams0ca19cc2021-08-16 14:03:13 -050042EXTRA_OECONF += "--without-libcrack \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050043 --with-group-name-max-length=24 \
44 --enable-subordinate-ids=yes \
Andrew Geissler82c905d2020-04-13 13:39:40 -050045 --without-sssd \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050046 ${NSCDOPT}"
47
Patrick Williams705982a2024-01-12 09:51:57 -060048CFLAGS:append:libc-musl = " -DLIBBSD_OVERLAY"
49
Patrick Williamsc124f4f2015-09-15 14:41:29 -050050NSCDOPT = ""
Patrick Williams213cb262021-08-07 19:21:33 -050051NSCDOPT:class-native = "--without-nscd"
52NSCDOPT:class-nativesdk = "--without-nscd"
53NSCDOPT:libc-glibc = "--with-nscd"
Brad Bishopf3f93bb2019-10-16 14:33:32 -040054
Patrick Williamsc124f4f2015-09-15 14:41:29 -050055PAM_PLUGINS = "libpam-runtime \
56 pam-plugin-faildelay \
57 pam-plugin-securetty \
58 pam-plugin-nologin \
59 pam-plugin-env \
60 pam-plugin-group \
61 pam-plugin-limits \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050062 pam-plugin-motd \
63 pam-plugin-mail \
64 pam-plugin-shells \
65 pam-plugin-rootok"
66
Brad Bishop6e60e8b2018-02-01 10:27:11 -050067PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'pam', d)} \
68 ${@bb.utils.contains('DISTRO_FEATURES', 'xattr', 'attr', '', d)}"
Patrick Williams705982a2024-01-12 09:51:57 -060069PACKAGECONFIG:class-native ??= "${@bb.utils.contains('DISTRO_FEATURES', 'xattr', 'attr', '', d)} libbsd"
Patrick Williams213cb262021-08-07 19:21:33 -050070PACKAGECONFIG:class-nativesdk = ""
Patrick Williamsc124f4f2015-09-15 14:41:29 -050071PACKAGECONFIG[pam] = "--with-libpam,--without-libpam,libpam,${PAM_PLUGINS}"
72PACKAGECONFIG[attr] = "--with-attr,--without-attr,attr"
73PACKAGECONFIG[acl] = "--with-acl,--without-acl,acl"
Patrick Williams0ca19cc2021-08-16 14:03:13 -050074PACKAGECONFIG[audit] = "--with-audit,--without-audit,audit"
75PACKAGECONFIG[selinux] = "--with-selinux,--without-selinux,libselinux libsemanage"
Patrick Williams705982a2024-01-12 09:51:57 -060076PACKAGECONFIG[libbsd] = "--with-libbsd,--without-libbsd,libbsd"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050077
Patrick Williams213cb262021-08-07 19:21:33 -050078RDEPENDS:${PN} = "shadow-securetty \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050079 base-passwd \
80 util-linux-sulogin"
Patrick Williams213cb262021-08-07 19:21:33 -050081RDEPENDS:${PN}:class-native = ""
82RDEPENDS:${PN}:class-nativesdk = ""
Patrick Williamsc124f4f2015-09-15 14:41:29 -050083
84do_install() {
85 oe_runmake DESTDIR="${D}" sbindir="${base_sbindir}" usbindir="${sbindir}" install
86
87 # Info dir listing isn't interesting at this point so remove it if it exists.
88 if [ -e "${D}${infodir}/dir" ]; then
89 rm -f ${D}${infodir}/dir
90 fi
91
92 # Enable CREATE_HOME by default.
93 sed -i 's/#CREATE_HOME/CREATE_HOME/g' ${D}${sysconfdir}/login.defs
94
95 # As we are on an embedded system, ensure the users mailbox is in
96 # ~/ not /var/spool/mail by default, as who knows where or how big
97 # /var is. The system MDA will set this later anyway.
98 sed -i 's/MAIL_DIR/#MAIL_DIR/g' ${D}${sysconfdir}/login.defs
99 sed -i 's/#MAIL_FILE/MAIL_FILE/g' ${D}${sysconfdir}/login.defs
100
101 # Disable checking emails.
102 sed -i 's/MAIL_CHECK_ENAB/#MAIL_CHECK_ENAB/g' ${D}${sysconfdir}/login.defs
103
104 # Comment out SU_NAME to work correctly with busybox
105 # See Bug#5359 and Bug#7173
106 sed -i 's:^SU_NAME:#SU_NAME:g' ${D}${sysconfdir}/login.defs
107
108 # Use proper encryption for passwords
109 sed -i 's/^#ENCRYPT_METHOD.*$/ENCRYPT_METHOD SHA512/' ${D}${sysconfdir}/login.defs
110
Andrew Geisslerd159c7f2021-09-02 21:05:58 -0500111 install -d ${D}${sysconfdir}/default
112 install -m 0644 ${WORKDIR}/useradd ${D}${sysconfdir}/default
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500113}
114
Patrick Williams213cb262021-08-07 19:21:33 -0500115do_install:append() {
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500116 # Ensure that the image has as a /var/spool/mail dir so shadow can
117 # put mailboxes there if the user reconfigures shadow to its
118 # defaults (see sed below).
Brad Bishopd5ae7d92018-06-14 09:52:03 -0700119 install -m 0775 -d ${D}${localstatedir}/spool/mail
120 chown root:mail ${D}${localstatedir}/spool/mail
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500121
122 if [ -e ${WORKDIR}/pam.d ]; then
123 install -d ${D}${sysconfdir}/pam.d/
124 install -m 0644 ${WORKDIR}/pam.d/* ${D}${sysconfdir}/pam.d/
125 # Remove defaults that are not used when supporting PAM.
126 sed -i -f ${WORKDIR}/login_defs_pam.sed ${D}${sysconfdir}/login.defs
127 fi
128
Brad Bishopf3f93bb2019-10-16 14:33:32 -0400129 install -d ${D}${sbindir} ${D}${base_sbindir} ${D}${base_bindir}
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500130
131 # Move binaries to the locations we want
132 rm ${D}${sbindir}/vigr
133 ln -sf vipw.${BPN} ${D}${base_sbindir}/vigr
134 if [ "${sbindir}" != "${base_sbindir}" ]; then
135 mv ${D}${sbindir}/vipw ${D}${base_sbindir}/vipw
136 fi
137 if [ "${bindir}" != "${base_bindir}" ]; then
138 mv ${D}${bindir}/login ${D}${base_bindir}/login
139 mv ${D}${bindir}/su ${D}${base_bindir}/su
140 fi
141
142 # Handle link properly after rename, otherwise missing files would
143 # lead rpm failed dependencies.
144 ln -sf newgrp.${BPN} ${D}${bindir}/sg
Patrick Williams92b42cb2022-09-03 06:53:57 -0500145
146 # usermod requires the subuid/subgid files to be in place before being
147 # able to use the -v/-V flags otherwise it fails:
148 # usermod: /etc/subuid does not exist, you cannot use the flags -v or -V
149 install -d ${D}${sysconfdir}
150 touch ${D}${sysconfdir}/subuid
151 touch ${D}${sysconfdir}/subgid
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500152}
153
Patrick Williamsf52e3dd2024-01-26 13:04:43 -0600154# Make executables look for dynamically linked libraries in a custom location, and install
155# the needed libraries there. That way we can use them from sstate
156# in setscene tasks without worrying about the dependency libraries being available.
157do_install:append:class-native() {
158 binaries=$(find ${D}${base_bindir}/ ${D}${base_sbindir}/ ${D}${bindir}/ ${D}${sbindir}/ -executable -type f)
159 chrpath -k -r ${STAGING_DIR_NATIVE}/lib-shadow-deps $binaries
160 mkdir -p ${D}${STAGING_DIR_NATIVE}/lib-shadow-deps/
161 install ${STAGING_LIBDIR_NATIVE}/libattr.so.* ${STAGING_LIBDIR_NATIVE}/libbsd.so.* ${STAGING_LIBDIR_NATIVE}/libmd.so.* ${D}${STAGING_DIR_NATIVE}/lib-shadow-deps/
162 install ${D}${libdir}/*.so.* ${D}${STAGING_DIR_NATIVE}/lib-shadow-deps/
163}
164
165SYSROOT_DIRS:append:class-native = " ${STAGING_DIR_NATIVE}/lib-shadow-deps/"
166INSANE_SKIP:${PN}:class-native = "already-stripped"
167
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500168PACKAGES =+ "${PN}-base"
Patrick Williams213cb262021-08-07 19:21:33 -0500169FILES:${PN}-base = "\
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500170 ${base_bindir}/login.shadow \
171 ${base_bindir}/su.shadow \
172 ${bindir}/sg \
173 ${bindir}/newgrp.shadow \
174 ${bindir}/groups.shadow \
175 ${sysconfdir}/pam.d/login \
176 ${sysconfdir}/pam.d/su \
177 ${sysconfdir}/login.defs \
178"
Patrick Williams213cb262021-08-07 19:21:33 -0500179RDEPENDS:${PN} += "${PN}-base"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500180
181inherit update-alternatives
182
183ALTERNATIVE_PRIORITY = "200"
184
Patrick Williams213cb262021-08-07 19:21:33 -0500185ALTERNATIVE:${PN} = "passwd chfn chsh chpasswd vipw vigr nologin"
Andrew Geissler5f350902021-07-23 13:09:54 -0400186ALTERNATIVE_LINK_NAME[chfn] = "${bindir}/chfn"
187ALTERNATIVE_LINK_NAME[chsh] = "${bindir}/chsh"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500188ALTERNATIVE_LINK_NAME[chpasswd] = "${sbindir}/chpasswd"
189ALTERNATIVE_LINK_NAME[vipw] = "${base_sbindir}/vipw"
190ALTERNATIVE_LINK_NAME[vigr] = "${base_sbindir}/vigr"
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500191ALTERNATIVE_LINK_NAME[nologin] = "${base_sbindir}/nologin"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500192
Patrick Williams213cb262021-08-07 19:21:33 -0500193ALTERNATIVE:${PN}-base = "newgrp groups login su"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500194ALTERNATIVE_LINK_NAME[login] = "${base_bindir}/login"
195ALTERNATIVE_LINK_NAME[su] = "${base_bindir}/su"
196
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500197PACKAGE_WRITE_DEPS += "shadow-native"
Patrick Williams213cb262021-08-07 19:21:33 -0500198pkg_postinst:${PN}:class-target () {
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500199 if [ "x$D" != "x" ]; then
200 rootarg="--root $D"
201 else
202 rootarg=""
203 fi
204
205 pwconv $rootarg || exit 1
206 grpconv $rootarg || exit 1
207}