diff options
| author | Chen Qi <Qi.Chen@windriver.com> | 2013-07-29 10:11:07 +0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-08-16 11:14:36 +0100 |
| commit | 2b204500bd20621d29762f23204a000eadc88e00 (patch) | |
| tree | 18aac8670f0ce87836947964292e33175ec2d1d7 | |
| parent | 0b66192825633d4d7e635cd9a97a3c0da39fc765 (diff) | |
| download | poky-2b204500bd20621d29762f23204a000eadc88e00.tar.gz | |
openssh: fix for read-only rootfs
If the rootfs is read-only and the ssh keys are not available at system
start-up, the init script will generate ssh keys into /etc/ssh, thus
causing a 'read-only file system' error.
In order for Yocto based image to work correctly for read-only rootfs,
we use the following logic for openssh.
If the rootfs is read-only and there are pre-generated keys under /etc/ssh,
we use the pre-generated keys. Note the pre-generated keys are mainly for
debugging or development purpose.
If the rootfs is read-only and there are no pre-generated keys under
/etc/ssh, we use /var/run/ssh as the location for ssh keys. That is, at
system boot-up, the generated ssh keys will put into /var/run/ssh.
[YOCTO #4887]
(From OE-Core rev: 2ed44745024f04aa4e00ddba3009153c6b47c8e9)
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | meta/classes/image.bbclass | 12 | ||||
| -rw-r--r-- | meta/recipes-connectivity/openssh/openssh-6.2p2/init | 22 | ||||
| -rw-r--r-- | meta/recipes-connectivity/openssh/openssh_6.2p2.bb | 9 |
3 files changed, 35 insertions, 8 deletions
diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass index 494664627d..116bd226ea 100644 --- a/meta/classes/image.bbclass +++ b/meta/classes/image.bbclass | |||
| @@ -262,6 +262,18 @@ read_only_rootfs_hook () { | |||
| 262 | if [ -x ${IMAGE_ROOTFS}/etc/init.d/populate-volatile.sh ]; then | 262 | if [ -x ${IMAGE_ROOTFS}/etc/init.d/populate-volatile.sh ]; then |
| 263 | ${IMAGE_ROOTFS}/etc/init.d/populate-volatile.sh | 263 | ${IMAGE_ROOTFS}/etc/init.d/populate-volatile.sh |
| 264 | fi | 264 | fi |
| 265 | # If we're using openssh and the /etc/ssh directory has no pre-generated keys, | ||
| 266 | # we should configure openssh to use the configuration file /etc/ssh/sshd_config_readonly | ||
| 267 | # and the keys under /var/run/ssh. | ||
| 268 | if [ -d ${IMAGE_ROOTFS}/etc/ssh ]; then | ||
| 269 | if [ -e ${IMAGE_ROOTFS}/etc/ssh/ssh_host_rsa_key ]; then | ||
| 270 | echo "SYSCONFDIR=/etc/ssh" >> ${IMAGE_ROOTFS}/etc/default/ssh | ||
| 271 | echo "SSHD_OPTS=" >> ${IMAGE_ROOTFS}/etc/default/ssh | ||
| 272 | else | ||
| 273 | echo "SYSCONFDIR=/var/run/ssh" >> ${IMAGE_ROOTFS}/etc/default/ssh | ||
| 274 | echo "SSHD_OPTS='-f /etc/ssh/sshd_config_readonly'" >> ${IMAGE_ROOTFS}/etc/default/ssh | ||
| 275 | fi | ||
| 276 | fi | ||
| 265 | fi | 277 | fi |
| 266 | } | 278 | } |
| 267 | 279 | ||
diff --git a/meta/recipes-connectivity/openssh/openssh-6.2p2/init b/meta/recipes-connectivity/openssh/openssh-6.2p2/init index 6beec848df..12fb79bd7c 100644 --- a/meta/recipes-connectivity/openssh/openssh-6.2p2/init +++ b/meta/recipes-connectivity/openssh/openssh-6.2p2/init | |||
| @@ -6,14 +6,22 @@ set -e | |||
| 6 | test -x /usr/sbin/sshd || exit 0 | 6 | test -x /usr/sbin/sshd || exit 0 |
| 7 | ( /usr/sbin/sshd -\? 2>&1 | grep -q OpenSSH ) 2>/dev/null || exit 0 | 7 | ( /usr/sbin/sshd -\? 2>&1 | grep -q OpenSSH ) 2>/dev/null || exit 0 |
| 8 | 8 | ||
| 9 | # /etc/default/ssh may set SYSCONFDIR and SSHD_OPTS | ||
| 9 | if test -f /etc/default/ssh; then | 10 | if test -f /etc/default/ssh; then |
| 10 | . /etc/default/ssh | 11 | . /etc/default/ssh |
| 11 | fi | 12 | fi |
| 12 | 13 | ||
| 14 | [ -z "$SYSCONFDIR" ] && SYSCONFDIR=/etc/ssh | ||
| 15 | mkdir -p $SYSCONFDIR | ||
| 16 | |||
| 17 | HOST_KEY_RSA=$SYSCONFDIR/ssh_host_rsa_key | ||
| 18 | HOST_KEY_DSA=$SYSCONFDIR/ssh_host_dsa_key | ||
| 19 | HOST_KEY_ECDSA=$SYSCONFDIR/ssh_host_ecdsa_key | ||
| 20 | |||
| 13 | check_for_no_start() { | 21 | check_for_no_start() { |
| 14 | # forget it if we're trying to start, and /etc/ssh/sshd_not_to_be_run exists | 22 | # forget it if we're trying to start, and /etc/ssh/sshd_not_to_be_run exists |
| 15 | if [ -e /etc/ssh/sshd_not_to_be_run ]; then | 23 | if [ -e $SYSCONFDIR/sshd_not_to_be_run ]; then |
| 16 | echo "OpenBSD Secure Shell server not in use (/etc/ssh/sshd_not_to_be_run)" | 24 | echo "OpenBSD Secure Shell server not in use ($SYSCONFDIR/sshd_not_to_be_run)" |
| 17 | exit 0 | 25 | exit 0 |
| 18 | fi | 26 | fi |
| 19 | } | 27 | } |
| @@ -32,17 +40,17 @@ check_config() { | |||
| 32 | 40 | ||
| 33 | check_keys() { | 41 | check_keys() { |
| 34 | # create keys if necessary | 42 | # create keys if necessary |
| 35 | if [ ! -f /etc/ssh/ssh_host_rsa_key ]; then | 43 | if [ ! -f $HOST_KEY_RSA ]; then |
| 36 | echo " generating ssh RSA key..." | 44 | echo " generating ssh RSA key..." |
| 37 | ssh-keygen -q -f /etc/ssh/ssh_host_rsa_key -N '' -t rsa | 45 | ssh-keygen -q -f $HOST_KEY_RSA -N '' -t rsa |
| 38 | fi | 46 | fi |
| 39 | if [ ! -f /etc/ssh/ssh_host_ecdsa_key ]; then | 47 | if [ ! -f $HOST_KEY_ECDSA ]; then |
| 40 | echo " generating ssh ECDSA key..." | 48 | echo " generating ssh ECDSA key..." |
| 41 | ssh-keygen -q -f /etc/ssh/ssh_host_ecdsa_key -N '' -t ecdsa | 49 | ssh-keygen -q -f $HOST_KEY_ECDSA -N '' -t ecdsa |
| 42 | fi | 50 | fi |
| 43 | if [ ! -f /etc/ssh/ssh_host_dsa_key ]; then | 51 | if [ ! -f /etc/ssh/ssh_host_dsa_key ]; then |
| 44 | echo " generating ssh DSA key..." | 52 | echo " generating ssh DSA key..." |
| 45 | ssh-keygen -q -f /etc/ssh/ssh_host_dsa_key -N '' -t dsa | 53 | ssh-keygen -q -f $HOST_KEY_DSA -N '' -t dsa |
| 46 | fi | 54 | fi |
| 47 | } | 55 | } |
| 48 | 56 | ||
diff --git a/meta/recipes-connectivity/openssh/openssh_6.2p2.bb b/meta/recipes-connectivity/openssh/openssh_6.2p2.bb index ab2eefb9bc..c76f9ac7ee 100644 --- a/meta/recipes-connectivity/openssh/openssh_6.2p2.bb +++ b/meta/recipes-connectivity/openssh/openssh_6.2p2.bb | |||
| @@ -86,6 +86,13 @@ do_install_append () { | |||
| 86 | install -m 0755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/sshd | 86 | install -m 0755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/sshd |
| 87 | rm -f ${D}${bindir}/slogin ${D}${datadir}/Ssh.bin | 87 | rm -f ${D}${bindir}/slogin ${D}${datadir}/Ssh.bin |
| 88 | rmdir ${D}${localstatedir}/run/sshd ${D}${localstatedir}/run ${D}${localstatedir} | 88 | rmdir ${D}${localstatedir}/run/sshd ${D}${localstatedir}/run ${D}${localstatedir} |
| 89 | # Create config files for read-only rootfs | ||
| 90 | install -d ${D}${sysconfdir}/ssh | ||
| 91 | install -m 644 ${WORKDIR}/sshd_config ${D}${sysconfdir}/ssh/sshd_config_readonly | ||
| 92 | sed -i '/HostKey/d' ${D}${sysconfdir}/ssh/sshd_config_readonly | ||
| 93 | echo "HostKey /var/run/ssh/ssh_host_rsa_key" >> ${D}${sysconfdir}/ssh/sshd_config_readonly | ||
| 94 | echo "HostKey /var/run/ssh/ssh_host_dsa_key" >> ${D}${sysconfdir}/ssh/sshd_config_readonly | ||
| 95 | echo "HostKey /var/run/ssh/ssh_host_ecdsa_key" >> ${D}${sysconfdir}/ssh/sshd_config_readonly | ||
| 89 | } | 96 | } |
| 90 | 97 | ||
| 91 | ALLOW_EMPTY_${PN} = "1" | 98 | ALLOW_EMPTY_${PN} = "1" |
| @@ -94,7 +101,7 @@ PACKAGES =+ "${PN}-keygen ${PN}-scp ${PN}-ssh ${PN}-sshd ${PN}-sftp ${PN}-misc $ | |||
| 94 | FILES_${PN}-scp = "${bindir}/scp.${BPN}" | 101 | FILES_${PN}-scp = "${bindir}/scp.${BPN}" |
| 95 | FILES_${PN}-ssh = "${bindir}/ssh.${BPN} ${sysconfdir}/ssh/ssh_config" | 102 | FILES_${PN}-ssh = "${bindir}/ssh.${BPN} ${sysconfdir}/ssh/ssh_config" |
| 96 | FILES_${PN}-sshd = "${sbindir}/sshd ${sysconfdir}/init.d/sshd" | 103 | FILES_${PN}-sshd = "${sbindir}/sshd ${sysconfdir}/init.d/sshd" |
| 97 | FILES_${PN}-sshd += "${sysconfdir}/ssh/moduli ${sysconfdir}/ssh/sshd_config" | 104 | FILES_${PN}-sshd += "${sysconfdir}/ssh/moduli ${sysconfdir}/ssh/sshd_config ${sysconfdir}/ssh/sshd_config_readonly" |
| 98 | FILES_${PN}-sftp = "${bindir}/sftp" | 105 | FILES_${PN}-sftp = "${bindir}/sftp" |
| 99 | FILES_${PN}-sftp-server = "${libexecdir}/sftp-server" | 106 | FILES_${PN}-sftp-server = "${libexecdir}/sftp-server" |
| 100 | FILES_${PN}-misc = "${bindir}/ssh* ${libexecdir}/ssh*" | 107 | FILES_${PN}-misc = "${bindir}/ssh* ${libexecdir}/ssh*" |
