| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | inherit useradd_base | 
|  | 2 |  | 
|  | 3 | # base-passwd-cross provides the default passwd and group files in the | 
|  | 4 | # target sysroot, and shadow -native and -sysroot provide the utilities | 
|  | 5 | # and support files needed to add and modify user and group accounts | 
| Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 6 | DEPENDS_append_class-target = " base-files shadow-native shadow-sysroot shadow base-passwd" | 
|  | 7 | PACKAGE_WRITE_DEPS += "shadow-native" | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 8 |  | 
|  | 9 | # This preinstall function can be run in four different contexts: | 
|  | 10 | # | 
|  | 11 | # a) Before do_install | 
|  | 12 | # b) At do_populate_sysroot_setscene when installing from sstate packages | 
|  | 13 | # c) As the preinst script in the target package at do_rootfs time | 
|  | 14 | # d) As the preinst script in the target package on device as a package upgrade | 
|  | 15 | # | 
|  | 16 | useradd_preinst () { | 
|  | 17 | OPT="" | 
|  | 18 | SYSROOT="" | 
|  | 19 |  | 
|  | 20 | if test "x$D" != "x"; then | 
|  | 21 | # Installing into a sysroot | 
|  | 22 | SYSROOT="$D" | 
|  | 23 | OPT="--root $D" | 
|  | 24 |  | 
|  | 25 | # Make sure login.defs is there, this is to make debian package backend work | 
|  | 26 | # correctly while doing rootfs. | 
|  | 27 | # The problem here is that if /etc/login.defs is treated as a config file for | 
|  | 28 | # shadow package, then while performing preinsts for packages that depend on | 
|  | 29 | # shadow, there might only be /etc/login.def.dpkg-new there in root filesystem. | 
|  | 30 | if [ ! -e $D${sysconfdir}/login.defs -a -e $D${sysconfdir}/login.defs.dpkg-new ]; then | 
|  | 31 | cp $D${sysconfdir}/login.defs.dpkg-new $D${sysconfdir}/login.defs | 
|  | 32 | fi | 
|  | 33 |  | 
|  | 34 | # user/group lookups should match useradd/groupadd --root | 
| Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 35 | export PSEUDO_PASSWD="$SYSROOT" | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 36 | fi | 
|  | 37 |  | 
|  | 38 | # If we're not doing a special SSTATE/SYSROOT install | 
|  | 39 | # then set the values, otherwise use the environment | 
|  | 40 | if test "x$UA_SYSROOT" = "x"; then | 
|  | 41 | # Installing onto a target | 
|  | 42 | # Add groups and users defined only for this package | 
|  | 43 | GROUPADD_PARAM="${GROUPADD_PARAM}" | 
|  | 44 | USERADD_PARAM="${USERADD_PARAM}" | 
|  | 45 | GROUPMEMS_PARAM="${GROUPMEMS_PARAM}" | 
|  | 46 | fi | 
|  | 47 |  | 
|  | 48 | # Perform group additions first, since user additions may depend | 
|  | 49 | # on these groups existing | 
| Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 50 | if test "x`echo $GROUPADD_PARAM | tr -d '[:space:]'`" != "x"; then | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 51 | echo "Running groupadd commands..." | 
|  | 52 | # Invoke multiple instances of groupadd for parameter lists | 
|  | 53 | # separated by ';' | 
| Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 54 | opts=`echo "$GROUPADD_PARAM" | cut -d ';' -f 1 | sed -e 's#[ \t]*$##'` | 
|  | 55 | remaining=`echo "$GROUPADD_PARAM" | cut -d ';' -f 2- | sed -e 's#[ \t]*$##'` | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 56 | while test "x$opts" != "x"; do | 
| Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 57 | perform_groupadd "$SYSROOT" "$OPT $opts" | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 58 | if test "x$opts" = "x$remaining"; then | 
|  | 59 | break | 
|  | 60 | fi | 
| Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 61 | opts=`echo "$remaining" | cut -d ';' -f 1 | sed -e 's#[ \t]*$##'` | 
|  | 62 | remaining=`echo "$remaining" | cut -d ';' -f 2- | sed -e 's#[ \t]*$##'` | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 63 | done | 
|  | 64 | fi | 
|  | 65 |  | 
| Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 66 | if test "x`echo $USERADD_PARAM | tr -d '[:space:]'`" != "x"; then | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 67 | echo "Running useradd commands..." | 
|  | 68 | # Invoke multiple instances of useradd for parameter lists | 
|  | 69 | # separated by ';' | 
| Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 70 | opts=`echo "$USERADD_PARAM" | cut -d ';' -f 1 | sed -e 's#[ \t]*$##'` | 
|  | 71 | remaining=`echo "$USERADD_PARAM" | cut -d ';' -f 2- | sed -e 's#[ \t]*$##'` | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 72 | while test "x$opts" != "x"; do | 
| Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 73 | perform_useradd "$SYSROOT" "$OPT $opts" | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 74 | if test "x$opts" = "x$remaining"; then | 
|  | 75 | break | 
|  | 76 | fi | 
| Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 77 | opts=`echo "$remaining" | cut -d ';' -f 1 | sed -e 's#[ \t]*$##'` | 
|  | 78 | remaining=`echo "$remaining" | cut -d ';' -f 2- | sed -e 's#[ \t]*$##'` | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 79 | done | 
|  | 80 | fi | 
|  | 81 |  | 
| Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 82 | if test "x`echo $GROUPMEMS_PARAM | tr -d '[:space:]'`" != "x"; then | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 83 | echo "Running groupmems commands..." | 
|  | 84 | # Invoke multiple instances of groupmems for parameter lists | 
|  | 85 | # separated by ';' | 
| Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 86 | opts=`echo "$GROUPMEMS_PARAM" | cut -d ';' -f 1 | sed -e 's#[ \t]*$##'` | 
|  | 87 | remaining=`echo "$GROUPMEMS_PARAM" | cut -d ';' -f 2- | sed -e 's#[ \t]*$##'` | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 88 | while test "x$opts" != "x"; do | 
| Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 89 | perform_groupmems "$SYSROOT" "$OPT $opts" | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 90 | if test "x$opts" = "x$remaining"; then | 
|  | 91 | break | 
|  | 92 | fi | 
| Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 93 | opts=`echo "$remaining" | cut -d ';' -f 1 | sed -e 's#[ \t]*$##'` | 
|  | 94 | remaining=`echo "$remaining" | cut -d ';' -f 2- | sed -e 's#[ \t]*$##'` | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 95 | done | 
|  | 96 | fi | 
|  | 97 | } | 
|  | 98 |  | 
|  | 99 | useradd_sysroot () { | 
| Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 100 | # Pseudo may (do_prepare_recipe_sysroot) or may not (do_populate_sysroot_setscene) be running | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 101 | # at this point so we're explicit about the environment so pseudo can load if | 
|  | 102 | # not already present. | 
| Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 103 | export PSEUDO="${FAKEROOTENV} ${PSEUDO_SYSROOT}${bindir_native}/pseudo" | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 104 |  | 
|  | 105 | # Explicitly set $D since it isn't set to anything | 
| Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 106 | # before do_prepare_recipe_sysroot | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 107 | D=${STAGING_DIR_TARGET} | 
|  | 108 |  | 
| Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 109 | # base-passwd's postinst may not have run yet in which case we'll get called later, just exit. | 
|  | 110 | # Beware that in some cases we might see the fake pseudo passwd here, in which case we also must | 
|  | 111 | # exit. | 
|  | 112 | if [ ! -f $D${sysconfdir}/passwd ] || | 
|  | 113 | grep -q this-is-the-pseudo-passwd $D${sysconfdir}/passwd; then | 
|  | 114 | exit 0 | 
|  | 115 | fi | 
|  | 116 |  | 
|  | 117 | # It is also possible we may be in a recipe which doesn't have useradd dependencies and hence the | 
|  | 118 | # useradd/groupadd tools are unavailable. If there is no dependency, we assume we don't want to | 
|  | 119 | # create users in the sysroot | 
|  | 120 | if ! command -v useradd; then | 
| Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 121 | bbwarn "command useradd not found!" | 
| Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 122 | exit 0 | 
|  | 123 | fi | 
|  | 124 |  | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 125 | # Add groups and users defined for all recipe packages | 
|  | 126 | GROUPADD_PARAM="${@get_all_cmd_params(d, 'groupadd')}" | 
|  | 127 | USERADD_PARAM="${@get_all_cmd_params(d, 'useradd')}" | 
|  | 128 | GROUPMEMS_PARAM="${@get_all_cmd_params(d, 'groupmems')}" | 
|  | 129 |  | 
|  | 130 | # Tell the system to use the environment vars | 
|  | 131 | UA_SYSROOT=1 | 
|  | 132 |  | 
|  | 133 | useradd_preinst | 
|  | 134 | } | 
|  | 135 |  | 
| Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 136 | # The export of PSEUDO in useradd_sysroot() above contains references to | 
|  | 137 | # ${COMPONENTS_DIR} and ${PSEUDO_LOCALSTATEDIR}. Additionally, the logging | 
|  | 138 | # shell functions use ${LOGFIFO}. These need to be handled when restoring | 
|  | 139 | # postinst-useradd-${PN} from the sstate cache. | 
|  | 140 | EXTRA_STAGING_FIXMES += "COMPONENTS_DIR PSEUDO_LOCALSTATEDIR LOGFIFO" | 
|  | 141 |  | 
|  | 142 | python useradd_sysroot_sstate () { | 
| Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 143 | scriptfile = None | 
| Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 144 | task = d.getVar("BB_CURRENTTASK") | 
|  | 145 | if task == "package_setscene": | 
|  | 146 | bb.build.exec_func("useradd_sysroot", d) | 
|  | 147 | elif task == "prepare_recipe_sysroot": | 
|  | 148 | # Used to update this recipe's own sysroot so the user/groups are available to do_install | 
|  | 149 | scriptfile = d.expand("${RECIPE_SYSROOT}${bindir}/postinst-useradd-${PN}") | 
| Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 150 | bb.build.exec_func("useradd_sysroot", d) | 
|  | 151 | elif task == "populate_sysroot": | 
|  | 152 | # Used when installed in dependent task sysroots | 
|  | 153 | scriptfile = d.expand("${SYSROOT_DESTDIR}${bindir}/postinst-useradd-${PN}") | 
| Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 154 |  | 
|  | 155 | if scriptfile: | 
| Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 156 | bb.utils.mkdirhier(os.path.dirname(scriptfile)) | 
|  | 157 | with open(scriptfile, 'w') as script: | 
|  | 158 | script.write("#!/bin/sh\n") | 
|  | 159 | bb.data.emit_func("useradd_sysroot", script, d) | 
|  | 160 | script.write("useradd_sysroot\n") | 
|  | 161 | os.chmod(scriptfile, 0o755) | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 162 | } | 
|  | 163 |  | 
| Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 164 | do_prepare_recipe_sysroot[postfuncs] += "${SYSROOTFUNC}" | 
|  | 165 | SYSROOTFUNC_class-target = "useradd_sysroot_sstate" | 
| Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 166 | SYSROOTFUNC = "" | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 167 |  | 
| Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 168 | SYSROOT_PREPROCESS_FUNCS += "${SYSROOTFUNC}" | 
|  | 169 |  | 
| Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 170 | SSTATEPREINSTFUNCS_append_class-target = " useradd_sysroot_sstate" | 
|  | 171 |  | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 172 | do_package_setscene[depends] += "${USERADDSETSCENEDEPS}" | 
|  | 173 | do_populate_sysroot_setscene[depends] += "${USERADDSETSCENEDEPS}" | 
| Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 174 | USERADDSETSCENEDEPS_class-target = "${MLPREFIX}base-passwd:do_populate_sysroot_setscene pseudo-native:do_populate_sysroot_setscene shadow-native:do_populate_sysroot_setscene ${MLPREFIX}shadow-sysroot:do_populate_sysroot_setscene" | 
|  | 175 | USERADDSETSCENEDEPS = "" | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 176 |  | 
|  | 177 | # Recipe parse-time sanity checks | 
|  | 178 | def update_useradd_after_parse(d): | 
| Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 179 | useradd_packages = d.getVar('USERADD_PACKAGES') | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 180 |  | 
|  | 181 | if not useradd_packages: | 
| Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 182 | bb.fatal("%s inherits useradd but doesn't set USERADD_PACKAGES" % d.getVar('FILE', False)) | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 183 |  | 
|  | 184 | for pkg in useradd_packages.split(): | 
| Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 185 | if not d.getVar('USERADD_PARAM_%s' % pkg) and not d.getVar('GROUPADD_PARAM_%s' % pkg) and not d.getVar('GROUPMEMS_PARAM_%s' % pkg): | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 186 | bb.fatal("%s inherits useradd but doesn't set USERADD_PARAM, GROUPADD_PARAM or GROUPMEMS_PARAM for package %s" % (d.getVar('FILE', False), pkg)) | 
|  | 187 |  | 
|  | 188 | python __anonymous() { | 
|  | 189 | if not bb.data.inherits_class('nativesdk', d) \ | 
|  | 190 | and not bb.data.inherits_class('native', d): | 
|  | 191 | update_useradd_after_parse(d) | 
|  | 192 | } | 
|  | 193 |  | 
|  | 194 | # Return a single [GROUP|USER]ADD_PARAM formatted string which includes the | 
|  | 195 | # [group|user]add parameters for all USERADD_PACKAGES in this recipe | 
|  | 196 | def get_all_cmd_params(d, cmd_type): | 
|  | 197 | import string | 
|  | 198 |  | 
|  | 199 | param_type = cmd_type.upper() + "_PARAM_%s" | 
|  | 200 | params = [] | 
|  | 201 |  | 
| Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 202 | useradd_packages = d.getVar('USERADD_PACKAGES') or "" | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 203 | for pkg in useradd_packages.split(): | 
| Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 204 | param = d.getVar(param_type % pkg) | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 205 | if param: | 
| Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 206 | params.append(param.rstrip(" ;")) | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 207 |  | 
|  | 208 | return "; ".join(params) | 
|  | 209 |  | 
|  | 210 | # Adds the preinst script into generated packages | 
|  | 211 | fakeroot python populate_packages_prepend () { | 
|  | 212 | def update_useradd_package(pkg): | 
|  | 213 | bb.debug(1, 'adding user/group calls to preinst for %s' % pkg) | 
|  | 214 |  | 
|  | 215 | """ | 
|  | 216 | useradd preinst is appended here because pkg_preinst may be | 
|  | 217 | required to execute on the target. Not doing so may cause | 
|  | 218 | useradd preinst to be invoked twice, causing unwanted warnings. | 
|  | 219 | """ | 
| Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 220 | preinst = d.getVar('pkg_preinst_%s' % pkg) or d.getVar('pkg_preinst') | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 221 | if not preinst: | 
|  | 222 | preinst = '#!/bin/sh\n' | 
|  | 223 | preinst += 'bbnote () {\n\techo "NOTE: $*"\n}\n' | 
|  | 224 | preinst += 'bbwarn () {\n\techo "WARNING: $*"\n}\n' | 
|  | 225 | preinst += 'bbfatal () {\n\techo "ERROR: $*"\n\texit 1\n}\n' | 
| Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 226 | preinst += 'perform_groupadd () {\n%s}\n' % d.getVar('perform_groupadd') | 
|  | 227 | preinst += 'perform_useradd () {\n%s}\n' % d.getVar('perform_useradd') | 
|  | 228 | preinst += 'perform_groupmems () {\n%s}\n' % d.getVar('perform_groupmems') | 
|  | 229 | preinst += d.getVar('useradd_preinst') | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 230 | d.setVar('pkg_preinst_%s' % pkg, preinst) | 
|  | 231 |  | 
|  | 232 | # RDEPENDS setup | 
| Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 233 | rdepends = d.getVar("RDEPENDS_%s" % pkg) or "" | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 234 | rdepends += ' ' + d.getVar('MLPREFIX', False) + 'base-passwd' | 
|  | 235 | rdepends += ' ' + d.getVar('MLPREFIX', False) + 'shadow' | 
|  | 236 | # base-files is where the default /etc/skel is packaged | 
|  | 237 | rdepends += ' ' + d.getVar('MLPREFIX', False) + 'base-files' | 
|  | 238 | d.setVar("RDEPENDS_%s" % pkg, rdepends) | 
|  | 239 |  | 
|  | 240 | # Add the user/group preinstall scripts and RDEPENDS requirements | 
|  | 241 | # to packages specified by USERADD_PACKAGES | 
|  | 242 | if not bb.data.inherits_class('nativesdk', d) \ | 
|  | 243 | and not bb.data.inherits_class('native', d): | 
| Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 244 | useradd_packages = d.getVar('USERADD_PACKAGES') or "" | 
| Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 245 | for pkg in useradd_packages.split(): | 
|  | 246 | update_useradd_package(pkg) | 
|  | 247 | } | 
|  | 248 |  | 
|  | 249 | # Use the following to extend the useradd with custom functions | 
|  | 250 | USERADDEXTENSION ?= "" | 
|  | 251 |  | 
|  | 252 | inherit ${USERADDEXTENSION} |