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