From: Henning Schild <henning.schild@siemens.com>
To: "[ext] claudius.heine.ext@siemens.com" <claudius.heine.ext@siemens.com>
Cc: <isar-users@googlegroups.com>, Claudius Heine <ch@denx.de>
Subject: Re: [PATCH] added 'isar-cfg-userpw' package
Date: Tue, 19 Feb 2019 10:19:44 +0100 [thread overview]
Message-ID: <20190219101944.4c7b8873@md1za8fc.ad001.siemens.net> (raw)
In-Reply-To: <20190218175834.1360d953@md1za8fc.ad001.siemens.net>
On Mon, 18 Feb 2019 17:58:34 +0100
"[ext] Henning Schild" <henning.schild@siemens.com> wrote:
> Thanks for looking into that, good addition to the root-PW story!
>
> Am Mon, 18 Feb 2019 17:21:13 +0100
> schrieb "[ext] claudius.heine.ext@siemens.com"
> <claudius.heine.ext@siemens.com>:
>
> > From: Claudius Heine <ch@denx.de>
> >
> > With this package setting of arbitrary user passwords should be
> > possible.
> >
> > To do this use the 'CFG_USER_PW' variable as described in the user
> > manual.
> >
> > Signed-off-by: Claudius Heine <ch@denx.de>
> > ---
> > doc/user_manual.md | 1 +
> > meta-isar/conf/local.conf.sample | 2 ++
> > meta/classes/isar-image.bbclass | 2 +-
> > .../isar-cfg-userpw/files/postinst.tmpl | 15 ++++++++++++
> > .../isar-cfg-userpw/isar-cfg-userpw.bb | 23
> > +++++++++++++++++++ 5 files changed, 42 insertions(+), 1 deletion(-)
> > create mode 100644
> > meta/recipes-support/isar-cfg-userpw/files/postinst.tmpl create mode
> > 100644 meta/recipes-support/isar-cfg-userpw/isar-cfg-userpw.bb
> >
> > diff --git a/doc/user_manual.md b/doc/user_manual.md
> > index db0bf85..53bb36a 100644
> > --- a/doc/user_manual.md
> > +++ b/doc/user_manual.md
> > @@ -328,6 +328,7 @@ Some other variables include:
> > - `DISTRO_APT_PREMIRRORS` - The preferred mirror (append it to the
> > default URI in the format `ftp.debian.org my.preferred.mirror`. This
> > variable is optional.
> > - `CFG_ROOT_PW` - The encrypted root password to be set. To
> > encrypt password use `mkpasswd`. You find `mkpasswd` in the `whois`
> > package of Debian. If the variable is empty, root login is
> > passwordless.
> > - `CFG_ROOT_LOCKED` - If set to `1` the root account will be
> > locked.
> > + - `CFG_USER_PW` - A space separated list of user names and
> > encrypted passwords separated by a colon. (e.g.
> > `username1:encryptedpw1 username2:encryptedpw2`) ---
> >
> > diff --git a/meta-isar/conf/local.conf.sample
> > b/meta-isar/conf/local.conf.sample index e5827aa..494a283 100644
> > --- a/meta-isar/conf/local.conf.sample
> > +++ b/meta-isar/conf/local.conf.sample
> > @@ -178,3 +178,5 @@ ISAR_CROSS_COMPILE ?= "0"
> > # mkpasswd -m sha512crypt -R 10000
> > # mkpasswd is part of the 'whois' package of Debian
> > CFG_ROOT_PW ?=
> > "$6$rounds=10000$RXeWrnFmkY$DtuS/OmsAS2cCEDo0BF5qQsizIrq6jPgXnwv3PHqREJeKd1sXdHX/ayQtuQWVDHe0KIO0/sVH8dvQm1KthF0d/"
> > +# Set user 'isar' password to 'isar': +CFG_USER_PW ?=
> > "isar:$6$rounds=10000$WMnSt8s9nLE$M/0eQVs0f05VpW8uzscs54GUwzhh/gjN3Vb85QEIIh1XihyvE.Xw4reJSxHqWcP0I0CnllKhseg6SRcGIIx7P1"
> > diff --git a/meta/classes/isar-image.bbclass
> > b/meta/classes/isar-image.bbclass index cdd1651..0100d0b 100644 ---
> > a/meta/classes/isar-image.bbclass +++
> > b/meta/classes/isar-image.bbclass @@ -17,7 +17,7 @@ SRC_URI += "${@
> > cfg_script(d) }"
> > DEPENDS += "${IMAGE_INSTALL} ${IMAGE_TRANSIENT_PACKAGES}"
> >
> > -IMAGE_TRANSIENT_PACKAGES += "isar-cfg-localepurge isar-cfg-rootpw"
> > +IMAGE_TRANSIENT_PACKAGES += "isar-cfg-localepurge isar-cfg-rootpw
> > isar-cfg-userpw"
> > WORKDIR = "${TMPDIR}/work/${DISTRO}-${DISTRO_ARCH}/${PN}"
> >
> > diff --git
> > a/meta/recipes-support/isar-cfg-userpw/files/postinst.tmpl
> > b/meta/recipes-support/isar-cfg-userpw/files/postinst.tmpl new file
> > mode 100644 index 0000000..47fffd0 --- /dev/null
> > +++ b/meta/recipes-support/isar-cfg-userpw/files/postinst.tmpl
> > @@ -0,0 +1,15 @@
> > +#!/bin/sh
> > +set -e
> > +
> > +USER_ENTRIES='${CFG_USER_PW} '
> > +
> > +while true; do
> > + USER_ENTRY="${USER_ENTRIES%% *}" # First element of list
> > + USER_ENTRIES="${USER_ENTRIES#${USER_ENTRY} }" # Rest of list
> > +
> > + if [ -z "${USER_ENTRY}" ]; then
> > + break
> > + fi
>
> We should fail hard if someone (ab)uses this to set the root-password.
In fact we might just fold the root logic and this together and have
just one package. The code is so fresh we will hardly offend anyone
already using it.
Henning
> Henning
>
> > + printf '%s' "${USER_ENTRY}" | chpasswd -e
> > +done
> > diff --git a/meta/recipes-support/isar-cfg-userpw/isar-cfg-userpw.bb
> > b/meta/recipes-support/isar-cfg-userpw/isar-cfg-userpw.bb new file
> > mode 100644 index 0000000..75b0446
> > --- /dev/null
> > +++ b/meta/recipes-support/isar-cfg-userpw/isar-cfg-userpw.bb
> > @@ -0,0 +1,23 @@
> > +# This software is a part of ISAR.
> > +
> > +DESCRIPTION = "Isar configuration package for user passwords"
> > +MAINTAINER = "isar-users <isar-users@googlegroups.com>"
> > +DEBIAN_DEPENDS = "passwd"
> > +
> > +SRC_URI = "file://postinst.tmpl"
> > +
> > +TEMPLATE_FILES = "postinst.tmpl"
> > +TEMPLATE_VARS = "CFG_USER_PW"
> > +
> > +CFG_USER_PW ?= ""
> > +
> > +python() {
> > + # Enforce CFG_USER_PW to be a single space separated array
> > + d.setVar("CFG_USER_PW", " ".join(d.getVar("CFG_USER_PW",
> > True).split())) +}
> > +
> > +inherit dpkg-raw
> > +
> > +do_install() {
> > + echo "intentionally left blank"
> > +}
>
next prev parent reply other threads:[~2019-02-19 9:19 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-02-18 16:21 claudius.heine.ext
2019-02-18 16:58 ` Henning Schild
2019-02-19 9:19 ` Henning Schild [this message]
2019-02-23 10:42 ` Jan Kiszka
2019-02-25 8:07 ` Jan Kiszka
2019-02-25 8:44 ` Claudius Heine
2019-02-25 8:48 ` Jan Kiszka
2019-02-25 9:32 ` Henning Schild
2019-02-25 11:15 ` Jan Kiszka
2019-02-25 11:44 ` Claudius Heine
2019-03-04 10:15 ` Claudius Heine
2019-02-25 11:18 ` Claudius Heine
2019-02-25 10:18 ` Adler, Michael
2019-02-25 10:34 ` Henning Schild
2019-02-25 11:38 ` Henning Schild
2019-02-26 19:36 ` Jan Kiszka
2019-02-26 19:47 ` Jan Kiszka
2019-02-27 8:46 ` Henning Schild
2019-02-27 10:20 ` Henning Schild
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20190219101944.4c7b8873@md1za8fc.ad001.siemens.net \
--to=henning.schild@siemens.com \
--cc=ch@denx.de \
--cc=claudius.heine.ext@siemens.com \
--cc=isar-users@googlegroups.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox