summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/shadow/shadow.inc
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-extended/shadow/shadow.inc')
-rw-r--r--meta/recipes-extended/shadow/shadow.inc210
1 files changed, 0 insertions, 210 deletions
diff --git a/meta/recipes-extended/shadow/shadow.inc b/meta/recipes-extended/shadow/shadow.inc
deleted file mode 100644
index 40e6ab0b30..0000000000
--- a/meta/recipes-extended/shadow/shadow.inc
+++ /dev/null
@@ -1,210 +0,0 @@
1SUMMARY = "Tools to change and administer password and group data"
2HOMEPAGE = "http://github.com/shadow-maint/shadow"
3DESCRIPTION = "${SUMMARY}"
4BUGTRACKER = "http://github.com/shadow-maint/shadow/issues"
5SECTION = "base/utils"
6LICENSE = "BSD-3-Clause"
7LIC_FILES_CHKSUM = "file://COPYING;md5=c9a450b7be84eac23e6353efecb60b5b \
8 file://src/passwd.c;beginline=2;endline=7;md5=67bcf314687820b2f010d4863fce3fc5 \
9 "
10
11DEPENDS = "virtual/crypt"
12
13GITHUB_BASE_URI = "https://github.com/shadow-maint/shadow/releases"
14SRC_URI = "${GITHUB_BASE_URI}/download/${PV}/${BP}.tar.gz \
15 file://0001-lib-copydir-copy_entry-use-temporary-stat-buffer.patch \
16 ${@bb.utils.contains('PACKAGECONFIG', 'pam', '${PAM_SRC_URI}', '', d)} \
17 file://useradd \
18 "
19
20SRC_URI:append:class-target = " \
21 file://login_defs_pam.sed \
22 file://shadow-update-pam-conf.patch \
23 "
24
25SRC_URI:append:class-native = " \
26 file://commonio.c-fix-unexpected-open-failure-in-chroot-env.patch \
27 "
28SRC_URI[sha256sum] = "a305edf5d19bddbdf5e836d2d609fa8bff2d35458819de4d9f06306a1cf24342"
29
30# Additional Policy files for PAM
31PAM_SRC_URI = "file://pam.d/chfn \
32 file://pam.d/chpasswd \
33 file://pam.d/chsh \
34 file://pam.d/login \
35 file://pam.d/newusers \
36 file://pam.d/passwd \
37 file://pam.d/su"
38
39inherit autotools gettext github-releases pkgconfig
40
41export CONFIG_SHELL="/bin/sh"
42
43EXTRA_OECONF += "--without-libcrack \
44 --with-group-name-max-length=24 \
45 --enable-subordinate-ids=yes \
46 --without-sssd \
47 ${NSCDOPT}"
48
49CFLAGS:append:libc-musl = " -DLIBBSD_OVERLAY"
50
51NSCDOPT = ""
52NSCDOPT:class-native = "--without-nscd"
53NSCDOPT:class-nativesdk = "--without-nscd"
54NSCDOPT:libc-glibc = "--with-nscd"
55
56PAM_PLUGINS = "libpam-runtime \
57 pam-plugin-faildelay \
58 pam-plugin-securetty \
59 pam-plugin-nologin \
60 pam-plugin-env \
61 pam-plugin-group \
62 pam-plugin-limits \
63 pam-plugin-motd \
64 pam-plugin-mail \
65 pam-plugin-shells \
66 pam-plugin-rootok"
67
68PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'pam', d)} \
69 ${@bb.utils.contains('DISTRO_FEATURES', 'xattr', 'attr', '', d)}"
70PACKAGECONFIG:class-native ??= "${@bb.utils.contains('DISTRO_FEATURES', 'xattr', 'attr', '', d)} libbsd"
71PACKAGECONFIG:class-nativesdk = ""
72PACKAGECONFIG[pam] = "--with-libpam,--without-libpam,libpam,${PAM_PLUGINS}"
73PACKAGECONFIG[attr] = "--with-attr,--without-attr,attr"
74PACKAGECONFIG[acl] = "--with-acl,--without-acl,acl"
75PACKAGECONFIG[audit] = "--with-audit,--without-audit,audit"
76PACKAGECONFIG[selinux] = "--with-selinux,--without-selinux,libselinux libsemanage"
77PACKAGECONFIG[libbsd] = "--with-libbsd,--without-libbsd,libbsd"
78PACKAGECONFIG[logind] = "--enable-logind,--disable-logind,systemd"
79
80RDEPENDS:${PN} = "shadow-securetty \
81 base-passwd \
82 util-linux-sulogin"
83RDEPENDS:${PN}:class-native = ""
84RDEPENDS:${PN}:class-nativesdk = ""
85
86do_install() {
87 oe_runmake DESTDIR="${D}" sbindir="${base_sbindir}" usbindir="${sbindir}" install
88
89 # Info dir listing isn't interesting at this point so remove it if it exists.
90 if [ -e "${D}${infodir}/dir" ]; then
91 rm -f ${D}${infodir}/dir
92 fi
93
94 # Enable CREATE_HOME by default.
95 sed -i 's/#CREATE_HOME/CREATE_HOME/g' ${D}${sysconfdir}/login.defs
96
97 # As we are on an embedded system, ensure the users mailbox is in
98 # ~/ not /var/spool/mail by default, as who knows where or how big
99 # /var is. The system MDA will set this later anyway.
100 sed -i 's/MAIL_DIR/#MAIL_DIR/g' ${D}${sysconfdir}/login.defs
101 sed -i 's/#MAIL_FILE/MAIL_FILE/g' ${D}${sysconfdir}/login.defs
102
103 # Disable checking emails.
104 sed -i 's/MAIL_CHECK_ENAB/#MAIL_CHECK_ENAB/g' ${D}${sysconfdir}/login.defs
105
106 # Comment out SU_NAME to work correctly with busybox
107 # See Bug#5359 and Bug#7173
108 sed -i 's:^SU_NAME:#SU_NAME:g' ${D}${sysconfdir}/login.defs
109
110 # Use proper encryption for passwords
111 sed -i 's/^#ENCRYPT_METHOD.*$/ENCRYPT_METHOD SHA512/' ${D}${sysconfdir}/login.defs
112
113 install -d ${D}${sysconfdir}/default
114 install -m 0644 ${WORKDIR}/useradd ${D}${sysconfdir}/default
115}
116
117do_install:append() {
118 # Ensure that the image has as a /var/spool/mail dir so shadow can
119 # put mailboxes there if the user reconfigures shadow to its
120 # defaults (see sed below).
121 install -m 0775 -d ${D}${localstatedir}/spool/mail
122 chown root:mail ${D}${localstatedir}/spool/mail
123
124 if [ -e ${WORKDIR}/pam.d ]; then
125 install -d ${D}${sysconfdir}/pam.d/
126 install -m 0644 ${WORKDIR}/pam.d/* ${D}${sysconfdir}/pam.d/
127 # Remove defaults that are not used when supporting PAM.
128 sed -i -f ${WORKDIR}/login_defs_pam.sed ${D}${sysconfdir}/login.defs
129 fi
130
131 install -d ${D}${sbindir} ${D}${base_sbindir} ${D}${base_bindir}
132
133 # Move binaries to the locations we want
134 rm ${D}${sbindir}/vigr
135 ln -sf vipw.${BPN} ${D}${base_sbindir}/vigr
136 if [ "${sbindir}" != "${base_sbindir}" ]; then
137 mv ${D}${sbindir}/vipw ${D}${base_sbindir}/vipw
138 fi
139 if [ "${bindir}" != "${base_bindir}" ]; then
140 mv ${D}${bindir}/login ${D}${base_bindir}/login
141 mv ${D}${bindir}/su ${D}${base_bindir}/su
142 fi
143
144 # Handle link properly after rename, otherwise missing files would
145 # lead rpm failed dependencies.
146 ln -sf newgrp.${BPN} ${D}${bindir}/sg
147
148 # usermod requires the subuid/subgid files to be in place before being
149 # able to use the -v/-V flags otherwise it fails:
150 # usermod: /etc/subuid does not exist, you cannot use the flags -v or -V
151 install -d ${D}${sysconfdir}
152 touch ${D}${sysconfdir}/subuid
153 touch ${D}${sysconfdir}/subgid
154}
155
156# Make executables look for dynamically linked libraries in a custom location, and install
157# the needed libraries there. That way we can use them from sstate
158# in setscene tasks without worrying about the dependency libraries being available.
159do_install:append:class-native() {
160 binaries=$(find ${D}${base_bindir}/ ${D}${base_sbindir}/ ${D}${bindir}/ ${D}${sbindir}/ -executable -type f)
161 chrpath -k -r ${STAGING_DIR_NATIVE}/lib-shadow-deps $binaries
162 mkdir -p ${D}${STAGING_DIR_NATIVE}/lib-shadow-deps/
163 libattr=${@bb.utils.contains('DISTRO_FEATURES', 'xattr', "${STAGING_LIBDIR_NATIVE}/libattr.so.*", '', d)}
164 install $libattr ${STAGING_LIBDIR_NATIVE}/libbsd.so.* ${STAGING_LIBDIR_NATIVE}/libmd.so.* ${D}${STAGING_DIR_NATIVE}/lib-shadow-deps/
165 install ${D}${libdir}/*.so.* ${D}${STAGING_DIR_NATIVE}/lib-shadow-deps/
166}
167
168SYSROOT_DIRS:append:class-native = " ${STAGING_DIR_NATIVE}/lib-shadow-deps/"
169INSANE_SKIP:${PN}:class-native = "already-stripped"
170
171PACKAGES =+ "${PN}-base"
172FILES:${PN}-base = "\
173 ${base_bindir}/login.shadow \
174 ${base_bindir}/su.shadow \
175 ${bindir}/sg \
176 ${bindir}/newgrp.shadow \
177 ${bindir}/groups.shadow \
178 ${sysconfdir}/pam.d/login \
179 ${sysconfdir}/pam.d/su \
180 ${sysconfdir}/login.defs \
181"
182RDEPENDS:${PN} += "${PN}-base"
183
184inherit update-alternatives
185
186ALTERNATIVE_PRIORITY = "200"
187
188ALTERNATIVE:${PN} = "passwd chfn chsh chpasswd vipw vigr nologin"
189ALTERNATIVE_LINK_NAME[chfn] = "${bindir}/chfn"
190ALTERNATIVE_LINK_NAME[chsh] = "${bindir}/chsh"
191ALTERNATIVE_LINK_NAME[chpasswd] = "${sbindir}/chpasswd"
192ALTERNATIVE_LINK_NAME[vipw] = "${base_sbindir}/vipw"
193ALTERNATIVE_LINK_NAME[vigr] = "${base_sbindir}/vigr"
194ALTERNATIVE_LINK_NAME[nologin] = "${base_sbindir}/nologin"
195
196ALTERNATIVE:${PN}-base = "newgrp groups login su"
197ALTERNATIVE_LINK_NAME[login] = "${base_bindir}/login"
198ALTERNATIVE_LINK_NAME[su] = "${base_bindir}/su"
199
200PACKAGE_WRITE_DEPS += "shadow-native"
201pkg_postinst:${PN}:class-target () {
202 if [ "x$D" != "x" ]; then
203 rootarg="--root $D"
204 else
205 rootarg=""
206 fi
207
208 pwconv $rootarg || exit 1
209 grpconv $rootarg || exit 1
210}