/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to initramfs-tools-hook

  • Committer: Teddy Hogeborn
  • Date: 2008-09-06 00:19:53 UTC
  • Revision ID: teddy@fukt.bsnet.se-20080906001953-5nk5uti6shzuyqdr
* plugins.d/password-prompt.c (main): If successful, output an extra
                                      newline to the console before
                                      exiting, to change to a new line
                                      away from the prompt.

* plugins.d/password-request.c (main): Bug fix: Moved calls to
                                       "init_gnutls_global()",
                                       "mkdtemp()", and "init_gpgme()"
                                       to *after* changing user &
                                       group.

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
 
30
30
. /usr/share/initramfs-tools/hook-functions
31
31
 
32
 
if [ -d /usr/lib/mandos ]; then
33
 
    prefix=/usr
34
 
elif [ -d /usr/local/lib/mandos ]; then
35
 
    prefix=/usr/local
36
 
else
 
32
for d in /usr /usr/local; do
 
33
    if [ -d "$d"/lib/mandos ]; then
 
34
        prefix="$d"
 
35
        break
 
36
    fi
 
37
done
 
38
if [ -z "$prefix" ]; then
37
39
    # Mandos not found
38
40
    exit 1
39
41
fi
40
42
 
 
43
for d in /etc/keys/mandos /usr/local/lib/mandos/keys; do
 
44
    if [ -d "$d" ]; then
 
45
        keydir="$d"
 
46
        break
 
47
    fi
 
48
done
 
49
if [ -z "$keydir" ]; then
 
50
    # Mandos key directory not found
 
51
    exit 1
 
52
fi
 
53
 
 
54
mandos_user="`{ getent passwd mandos \
 
55
        || getent passwd nobody \
 
56
        || echo ::65534::::; } | awk -F: '{ print $3 }'`" 
 
57
mandos_group="`{ getent group mandos \
 
58
        || getent group nogroup \
 
59
        || echo ::65534:; } | awk -F: '{ print $3 }'`"
 
60
 
41
61
# The Mandos network client uses the network
42
62
auto_add_modules net
43
63
# The Mandos network client uses IPv6
49
69
PLUGINDIR="${MANDOSDIR}/plugins.d"
50
70
 
51
71
# Make directories
52
 
mkdir --parents "${DESTDIR}${CONFDIR}"
53
 
mkdir --parents "${DESTDIR}${PLUGINDIR}"
 
72
install --directory --mode=u=rwx,go=rx "${DESTDIR}${CONFDIR}" \
 
73
        "${DESTDIR}${MANDOSDIR}"
 
74
install --owner=${mandos_user} --group=${mandos_group} --directory \
 
75
    --mode=u=rwx "${DESTDIR}${PLUGINDIR}"
54
76
 
55
77
# Copy the Mandos plugin runner
56
 
copy_exec "$prefix"/lib/mandos/plugin-runner "${DESTDIR}${MANDOSDIR}"
 
78
copy_exec "$prefix"/lib/mandos/plugin-runner "${MANDOSDIR}"
57
79
 
58
80
# Copy the plugins
59
81
 
66
88
    fi
67
89
    case "$base" in
68
90
        *~|.*|\#*\#|*.dpkg-old|*.dpkg-new|*.dpkg-divert) : ;;
 
91
        "*") :;;
69
92
        *) copy_exec "$file" "${PLUGINDIR}";;
70
93
    esac
71
94
done
74
97
for file in /etc/mandos/plugins.d/*; do
75
98
    base="`basename \"$file\"`"
76
99
    case "$base" in
77
 
        *~|.*|*.dpkg-old|*.dpkg-new|*.dpkg-divert) : ;;
 
100
        *~|.*|\#*\#|*.dpkg-old|*.dpkg-new|*.dpkg-divert) : ;;
 
101
        "*") :;;
78
102
        *) copy_exec "$file" "${PLUGINDIR}";;
79
103
    esac
80
104
done
85
109
    copy_exec /usr/bin/gpg
86
110
fi
87
111
 
88
 
# Key files
 
112
# Config files
89
113
for file in /etc/mandos/*; do
90
114
    if [ -d "$file" ]; then
91
115
        continue
92
116
    fi
93
117
    cp --archive --sparse=always "$file" "${DESTDIR}${CONFDIR}"
94
118
done
95
 
# Create key ring files
96
 
gpg --no-random-seed-file --quiet --batch --no-tty --armor \
97
 
    --no-default-keyring --no-options --enable-dsa2 \
98
 
    --homedir "${DESTDIR}${CONFDIR}" --no-permission-warning \
99
 
    --trust-model always --import-options import-minimal \
100
 
    --import "${DESTDIR}${CONFDIR}/seckey.txt"
101
 
chown nobody "${DESTDIR}${CONFDIR}/secring.gpg"
 
119
 
 
120
# Key files 
 
121
for file in  "$keydir"/*; do
 
122
    if [ -d "$file" ]; then
 
123
        continue
 
124
    fi
 
125
    cp --archive --sparse=always "$file" "${DESTDIR}${CONFDIR}"
 
126
    chown ${mandos_user}:${mandos_group} \
 
127
        "${DESTDIR}${CONFDIR}/`basename \"$file\"`"
 
128
done
102
129
 
103
130
# /lib/mandos/plugin-runner will drop priviliges, but needs access to
104
131
# its plugin directory and its config file.  However, since almost all
112
139
# condition.  This umask is set by "initramfs-tools-hook-conf",
113
140
# installed as "/usr/share/initramfs-tools/conf-hooks.d/mandos".)
114
141
115
 
for full in "${PLUGINDIR}" "${CONFDIR}"; do
 
142
for full in "${MANDOSDIR}" "${CONFDIR}"; do
116
143
    while [ "$full" != "/" ]; do
117
144
        chmod a+rX "${DESTDIR}$full"
118
145
        full="`dirname \"$full\"`"
122
149
# Reset some other things to sane permissions which we have
123
150
# inadvertently affected with our umask setting.
124
151
for dir in / /bin /etc /keyscripts /sbin /scripts /usr /usr/bin; do
125
 
    chmod a+rX "${DESTDIR}$dir"
 
152
    if [ -d "${DESTDIR}$dir" ]; then
 
153
        chmod a+rX "${DESTDIR}$dir"
 
154
    fi
126
155
done
127
156
for dir in /lib /usr/lib; do
128
 
    chmod --recursive a+rX "${DESTDIR}$dir"
 
157
    find "${DESTDIR}$dir" \! -perm -u+rw,g+r -prune -o -print0 \
 
158
        | xargs --null --no-run-if-empty chmod a+rX
129
159
done