Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | SUMMARY = "Tools to change and administer password and group data" |
Brad Bishop | f3f93bb | 2019-10-16 14:33:32 -0400 | [diff] [blame] | 2 | HOMEPAGE = "http://github.com/shadow-maint/shadow" |
| 3 | BUGTRACKER = "http://github.com/shadow-maint/shadow/issues" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 4 | SECTION = "base/utils" |
| 5 | LICENSE = "BSD | Artistic-1.0" |
| 6 | LIC_FILES_CHKSUM = "file://COPYING;md5=ed80ff1c2b40843cf5768e5229cf16e5 \ |
Brad Bishop | c68388fc | 2019-08-26 01:33:31 -0400 | [diff] [blame] | 7 | file://src/passwd.c;beginline=2;endline=30;md5=5720ff729a6ff39ecc9f64555d75f4af" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 8 | |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 9 | DEPENDS = "virtual/crypt" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 10 | |
Brad Bishop | d5ae7d9 | 2018-06-14 09:52:03 -0700 | [diff] [blame] | 11 | UPSTREAM_CHECK_URI = "https://github.com/shadow-maint/shadow/releases" |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 12 | SRC_URI = "https://github.com/shadow-maint/shadow/releases/download/${PV}/${BP}.tar.gz \ |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 13 | file://shadow-4.1.3-dots-in-usernames.patch \ |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 14 | ${@bb.utils.contains('PACKAGECONFIG', 'pam', '${PAM_SRC_URI}', '', d)} \ |
Brad Bishop | 00e122a | 2019-10-05 11:10:57 -0400 | [diff] [blame] | 15 | file://shadow-relaxed-usernames.patch \ |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 16 | " |
| 17 | |
| 18 | SRC_URI_append_class-target = " \ |
| 19 | file://login_defs_pam.sed \ |
| 20 | file://shadow-update-pam-conf.patch \ |
| 21 | " |
| 22 | |
| 23 | SRC_URI_append_class-native = " \ |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 24 | file://0001-Disable-use-of-syslog-for-sysroot.patch \ |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 25 | file://0002-Allow-for-setting-password-in-clear-text.patch \ |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 26 | file://commonio.c-fix-unexpected-open-failure-in-chroot-env.patch \ |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 27 | " |
| 28 | SRC_URI_append_class-nativesdk = " \ |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 29 | file://0001-Disable-use-of-syslog-for-sysroot.patch \ |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 30 | " |
| 31 | |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 32 | SRC_URI[md5sum] = "3d97f11e66bfb0b14702b115fa8be480" |
| 33 | SRC_URI[sha256sum] = "3ee3081fbbcbcfea5c8916419e46bc724807bab271072104f23e7a29e9668f3a" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 34 | |
| 35 | # Additional Policy files for PAM |
| 36 | PAM_SRC_URI = "file://pam.d/chfn \ |
| 37 | file://pam.d/chpasswd \ |
| 38 | file://pam.d/chsh \ |
| 39 | file://pam.d/login \ |
| 40 | file://pam.d/newusers \ |
| 41 | file://pam.d/passwd \ |
| 42 | file://pam.d/su" |
| 43 | |
| 44 | inherit autotools gettext |
| 45 | |
Brad Bishop | e2d5b61 | 2018-11-23 10:55:50 +1300 | [diff] [blame] | 46 | export CONFIG_SHELL="/bin/sh" |
| 47 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 48 | EXTRA_OECONF += "--without-audit \ |
| 49 | --without-libcrack \ |
| 50 | --without-selinux \ |
| 51 | --with-group-name-max-length=24 \ |
| 52 | --enable-subordinate-ids=yes \ |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 53 | --without-sssd \ |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 54 | ${NSCDOPT}" |
| 55 | |
| 56 | NSCDOPT = "" |
| 57 | NSCDOPT_class-native = "--without-nscd" |
| 58 | NSCDOPT_class-nativesdk = "--without-nscd" |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 59 | NSCDOPT_libc-glibc = "--with-nscd" |
Brad Bishop | f3f93bb | 2019-10-16 14:33:32 -0400 | [diff] [blame] | 60 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 61 | PAM_PLUGINS = "libpam-runtime \ |
| 62 | pam-plugin-faildelay \ |
| 63 | pam-plugin-securetty \ |
| 64 | pam-plugin-nologin \ |
| 65 | pam-plugin-env \ |
| 66 | pam-plugin-group \ |
| 67 | pam-plugin-limits \ |
| 68 | pam-plugin-lastlog \ |
| 69 | pam-plugin-motd \ |
| 70 | pam-plugin-mail \ |
| 71 | pam-plugin-shells \ |
| 72 | pam-plugin-rootok" |
| 73 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 74 | PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'pam', d)} \ |
| 75 | ${@bb.utils.contains('DISTRO_FEATURES', 'xattr', 'attr', '', d)}" |
| 76 | PACKAGECONFIG_class-native ??= "${@bb.utils.contains('DISTRO_FEATURES', 'xattr', 'attr', '', d)}" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 77 | PACKAGECONFIG_class-nativesdk = "" |
| 78 | PACKAGECONFIG[pam] = "--with-libpam,--without-libpam,libpam,${PAM_PLUGINS}" |
| 79 | PACKAGECONFIG[attr] = "--with-attr,--without-attr,attr" |
| 80 | PACKAGECONFIG[acl] = "--with-acl,--without-acl,acl" |
| 81 | |
| 82 | RDEPENDS_${PN} = "shadow-securetty \ |
| 83 | base-passwd \ |
| 84 | util-linux-sulogin" |
| 85 | RDEPENDS_${PN}_class-native = "" |
| 86 | RDEPENDS_${PN}_class-nativesdk = "" |
| 87 | |
| 88 | do_install() { |
| 89 | oe_runmake DESTDIR="${D}" sbindir="${base_sbindir}" usbindir="${sbindir}" install |
| 90 | |
| 91 | # Info dir listing isn't interesting at this point so remove it if it exists. |
| 92 | if [ -e "${D}${infodir}/dir" ]; then |
| 93 | rm -f ${D}${infodir}/dir |
| 94 | fi |
| 95 | |
| 96 | # Enable CREATE_HOME by default. |
| 97 | sed -i 's/#CREATE_HOME/CREATE_HOME/g' ${D}${sysconfdir}/login.defs |
| 98 | |
| 99 | # As we are on an embedded system, ensure the users mailbox is in |
| 100 | # ~/ not /var/spool/mail by default, as who knows where or how big |
| 101 | # /var is. The system MDA will set this later anyway. |
| 102 | sed -i 's/MAIL_DIR/#MAIL_DIR/g' ${D}${sysconfdir}/login.defs |
| 103 | sed -i 's/#MAIL_FILE/MAIL_FILE/g' ${D}${sysconfdir}/login.defs |
| 104 | |
| 105 | # Disable checking emails. |
| 106 | sed -i 's/MAIL_CHECK_ENAB/#MAIL_CHECK_ENAB/g' ${D}${sysconfdir}/login.defs |
| 107 | |
| 108 | # Comment out SU_NAME to work correctly with busybox |
| 109 | # See Bug#5359 and Bug#7173 |
| 110 | sed -i 's:^SU_NAME:#SU_NAME:g' ${D}${sysconfdir}/login.defs |
| 111 | |
| 112 | # Use proper encryption for passwords |
| 113 | sed -i 's/^#ENCRYPT_METHOD.*$/ENCRYPT_METHOD SHA512/' ${D}${sysconfdir}/login.defs |
| 114 | |
| 115 | # Now we don't have a mail system. Disable mail creation for now. |
| 116 | sed -i 's:/bin/bash:/bin/sh:g' ${D}${sysconfdir}/default/useradd |
| 117 | sed -i '/^CREATE_MAIL_SPOOL/ s:^:#:' ${D}${sysconfdir}/default/useradd |
| 118 | |
| 119 | # Use users group by default |
| 120 | sed -i 's,^GROUP=1000,GROUP=100,g' ${D}${sysconfdir}/default/useradd |
| 121 | } |
| 122 | |
| 123 | do_install_append() { |
| 124 | # Ensure that the image has as a /var/spool/mail dir so shadow can |
| 125 | # put mailboxes there if the user reconfigures shadow to its |
| 126 | # defaults (see sed below). |
Brad Bishop | d5ae7d9 | 2018-06-14 09:52:03 -0700 | [diff] [blame] | 127 | install -m 0775 -d ${D}${localstatedir}/spool/mail |
| 128 | chown root:mail ${D}${localstatedir}/spool/mail |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 129 | |
| 130 | if [ -e ${WORKDIR}/pam.d ]; then |
| 131 | install -d ${D}${sysconfdir}/pam.d/ |
| 132 | install -m 0644 ${WORKDIR}/pam.d/* ${D}${sysconfdir}/pam.d/ |
| 133 | # Remove defaults that are not used when supporting PAM. |
| 134 | sed -i -f ${WORKDIR}/login_defs_pam.sed ${D}${sysconfdir}/login.defs |
| 135 | fi |
| 136 | |
Brad Bishop | f3f93bb | 2019-10-16 14:33:32 -0400 | [diff] [blame] | 137 | install -d ${D}${sbindir} ${D}${base_sbindir} ${D}${base_bindir} |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 138 | |
| 139 | # Move binaries to the locations we want |
| 140 | rm ${D}${sbindir}/vigr |
| 141 | ln -sf vipw.${BPN} ${D}${base_sbindir}/vigr |
| 142 | if [ "${sbindir}" != "${base_sbindir}" ]; then |
| 143 | mv ${D}${sbindir}/vipw ${D}${base_sbindir}/vipw |
| 144 | fi |
| 145 | if [ "${bindir}" != "${base_bindir}" ]; then |
| 146 | mv ${D}${bindir}/login ${D}${base_bindir}/login |
| 147 | mv ${D}${bindir}/su ${D}${base_bindir}/su |
| 148 | fi |
| 149 | |
| 150 | # Handle link properly after rename, otherwise missing files would |
| 151 | # lead rpm failed dependencies. |
| 152 | ln -sf newgrp.${BPN} ${D}${bindir}/sg |
| 153 | } |
| 154 | |
| 155 | PACKAGES =+ "${PN}-base" |
| 156 | FILES_${PN}-base = "\ |
| 157 | ${base_bindir}/login.shadow \ |
| 158 | ${base_bindir}/su.shadow \ |
| 159 | ${bindir}/sg \ |
| 160 | ${bindir}/newgrp.shadow \ |
| 161 | ${bindir}/groups.shadow \ |
| 162 | ${sysconfdir}/pam.d/login \ |
| 163 | ${sysconfdir}/pam.d/su \ |
| 164 | ${sysconfdir}/login.defs \ |
| 165 | " |
| 166 | RDEPENDS_${PN} += "${PN}-base" |
| 167 | |
| 168 | inherit update-alternatives |
| 169 | |
| 170 | ALTERNATIVE_PRIORITY = "200" |
| 171 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 172 | ALTERNATIVE_${PN} = "passwd chfn chsh chpasswd vipw vigr nologin" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 173 | ALTERNATIVE_LINK_NAME[chpasswd] = "${sbindir}/chpasswd" |
| 174 | ALTERNATIVE_LINK_NAME[vipw] = "${base_sbindir}/vipw" |
| 175 | ALTERNATIVE_LINK_NAME[vigr] = "${base_sbindir}/vigr" |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 176 | ALTERNATIVE_LINK_NAME[nologin] = "${base_sbindir}/nologin" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 177 | |
| 178 | ALTERNATIVE_${PN}-base = "newgrp groups login su" |
| 179 | ALTERNATIVE_LINK_NAME[login] = "${base_bindir}/login" |
| 180 | ALTERNATIVE_LINK_NAME[su] = "${base_bindir}/su" |
| 181 | |
Brad Bishop | 37a0e4d | 2017-12-04 01:01:44 -0500 | [diff] [blame] | 182 | ALTERNATIVE_${PN}-doc = "passwd.5 getspnam.3 groups.1 su.1 nologin.8" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 183 | ALTERNATIVE_LINK_NAME[passwd.5] = "${mandir}/man5/passwd.5" |
| 184 | ALTERNATIVE_LINK_NAME[getspnam.3] = "${mandir}/man3/getspnam.3" |
| 185 | ALTERNATIVE_LINK_NAME[groups.1] = "${mandir}/man1/groups.1" |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 186 | ALTERNATIVE_LINK_NAME[su.1] = "${mandir}/man1/su.1" |
Brad Bishop | 37a0e4d | 2017-12-04 01:01:44 -0500 | [diff] [blame] | 187 | ALTERNATIVE_LINK_NAME[nologin.8] = "${mandir}/man8/nologin.8" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 188 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 189 | PACKAGE_WRITE_DEPS += "shadow-native" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 190 | pkg_postinst_${PN}_class-target () { |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 191 | if [ "x$D" != "x" ]; then |
| 192 | rootarg="--root $D" |
| 193 | else |
| 194 | rootarg="" |
| 195 | fi |
| 196 | |
| 197 | pwconv $rootarg || exit 1 |
| 198 | grpconv $rootarg || exit 1 |
| 199 | } |