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