3
3
# This script will be run by 'mkinitramfs' when it creates the image.
 
4
4
# Its job is to decide which files to install, then install them into
 
5
5
# the staging area, where the initramfs is being created.  This
 
6
 
# happens when a new 'linux-image' package is installed, or when the
 
 
6
# happens when a new 'linux-image' package is installed, or when an
 
7
7
# administrator runs 'update-initramfs' by hand to update an initramfs
 
 
30
30
. /usr/share/initramfs-tools/hook-functions
 
32
 
if [ -d /usr/lib/mandos ]; then
 
34
 
elif [ -d /usr/local/lib/mandos ]; then
 
 
32
for d in /usr /usr/local; do
 
 
33
    if [ -d "$d"/lib/mandos ]; then
 
 
38
if [ -z "$prefix" ]; then
 
 
43
for d in /etc/keys/mandos /etc/mandos/keys; do
 
 
49
if [ -z "$keydir" ]; then
 
 
50
    # Mandos key directory not found
 
 
54
set `{ getent passwd _mandos \
 
 
55
    || getent passwd nobody \
 
 
56
    || echo ::65534:65534:::; } \
 
 
57
    | cut --delimiter=: --fields=3,4 --only-delimited \
 
 
58
    --output-delimiter=" "`
 
41
62
# The Mandos network client uses the network
 
42
63
auto_add_modules net
 
43
64
# The Mandos network client uses IPv6
 
 
47
68
CONFDIR="/conf/conf.d/mandos"
 
48
69
MANDOSDIR="/lib/mandos"
 
49
70
PLUGINDIR="${MANDOSDIR}/plugins.d"
 
 
71
HOOKDIR="${MANDOSDIR}/network-hooks.d"
 
52
 
mkdir --parents "${DESTDIR}${CONFDIR}"
 
53
 
mkdir --parents "${DESTDIR}${PLUGINDIR}"
 
 
74
install --directory --mode=u=rwx,go=rx "${DESTDIR}${CONFDIR}" \
 
 
75
        "${DESTDIR}${MANDOSDIR}" "${DESTDIR}${HOOKDIR}"
 
 
76
install --owner=${mandos_user} --group=${mandos_group} --directory \
 
 
77
    --mode=u=rwx "${DESTDIR}${PLUGINDIR}"
 
55
79
# Copy the Mandos plugin runner
 
56
 
copy_exec "$prefix"/lib/mandos/plugin-runner "${DESTDIR}${MANDOSDIR}"
 
 
80
copy_exec "$prefix"/lib/mandos/plugin-runner "${MANDOSDIR}"
 
 
74
100
for file in /etc/mandos/plugins.d/*; do
 
75
101
    base="`basename \"$file\"`"
 
77
 
        *~|.*|*.dpkg-old|*.dpkg-new|*.dpkg-divert) : ;;
 
78
 
        *) copy_exec "$file" "${PLUGINDIR}";;
 
82
 
# GPGME needs /usr/bin/gpg
 
83
 
if ! [ -e "${DESTDIR}/usr/bin/gpg" ] \
 
84
 
    && [ -n "`ls \"${DESTDIR}\"/usr/lib/libgpgme.so* 2>/dev/null`" ]; then
 
85
 
    copy_exec /usr/bin/gpg
 
 
103
        *~|.*|\#*\#|*.dpkg-old|*.dpkg-bak|*.dpkg-new|*.dpkg-divert)
 
 
106
        *) copy_exec "$file" "${PLUGINDIR}" ;;
 
 
110
# Get DEVICE from initramfs.conf and other files
 
 
111
. /etc/initramfs-tools/initramfs.conf
 
 
112
for conf in /etc/initramfs-tools/conf.d/*; do
 
 
113
    if [ -n `basename \"$conf\" | grep '^[[:alnum:]][[:alnum:]\._-]*$' \
 
 
114
        | grep -v '\.dpkg-.*$'` ]; then
 
 
115
        [ -f ${conf} ] && . ${conf}
 
 
121
for hook in /etc/mandos/network-hooks.d/*; do
 
 
122
    case "`basename \"$hook\"`" in
 
 
124
        *[!A-Za-z0-9_.-]*) continue ;;
 
 
125
        *) test -d "$hook" || copy_exec "$hook" "${HOOKDIR}" ;;
 
 
127
    if [ -x "$hook" ]; then
 
 
128
        # Copy any files needed by the network hook
 
 
129
        MANDOSNETHOOKDIR=/etc/mandos/network-hooks.d MODE=files \
 
 
130
            VERBOSITY=0 "$hook" files | while read file target; do
 
 
131
            if [ ! -e "${file}" ]; then
 
 
132
                echo "WARNING: file ${file} not found, requested by Mandos network hook '${hook##*/}'" >&2
 
 
134
            if [ -z "${target}" ]; then
 
 
137
                copy_exec "$file" "$target"
 
 
140
        # Copy and load any modules needed by the network hook
 
 
141
        MANDOSNETHOOKDIR=/etc/mandos/network-hooks.d MODE=modules \
 
 
142
            VERBOSITY=0 "$hook" modules | while read module; do
 
 
143
            if [ -z "${target}" ]; then
 
 
151
libgpgme11_version="`dpkg-query --showformat='${Version}' --show libgpgme11`"
 
 
152
if dpkg --compare-versions "$libgpgme11_version" ge 1.4.1-0.1; then
 
 
157
if [ ! -e "${DESTDIR}$gpg" ]; then
 
 
161
unset libgpgme11_version
 
 
164
for file in /etc/mandos/plugin-runner.conf; do
 
 
165
    if [ -d "$file" ]; then
 
 
168
    cp --archive --sparse=always "$file" "${DESTDIR}${CONFDIR}"
 
 
171
if [ ${mandos_user} != 65534 ]; then
 
 
172
    sed --in-place --expression="1i--userid=${mandos_user}" \
 
 
173
        "${DESTDIR}${CONFDIR}/plugin-runner.conf"
 
 
176
if [ ${mandos_group} != 65534 ]; then
 
 
177
    sed --in-place --expression="1i--groupid=${mandos_group}" \
 
 
178
        "${DESTDIR}${CONFDIR}/plugin-runner.conf"
 
89
 
for file in /etc/mandos/*; do
 
 
182
for file in "$keydir"/*; do
 
90
183
    if [ -d "$file" ]; then
 
93
186
    cp --archive --sparse=always "$file" "${DESTDIR}${CONFDIR}"
 
 
187
    chown ${mandos_user}:${mandos_group} \
 
 
188
        "${DESTDIR}${CONFDIR}/`basename \"$file\"`"
 
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"
 
103
191
# /lib/mandos/plugin-runner will drop priviliges, but needs access to
 
104
192
# its plugin directory and its config file.  However, since almost all
 
 
122
210
# Reset some other things to sane permissions which we have
 
123
211
# inadvertently affected with our umask setting.
 
124
212
for dir in / /bin /etc /keyscripts /sbin /scripts /usr /usr/bin; do
 
125
 
    chmod a+rX "${DESTDIR}$dir"
 
 
213
    if [ -d "${DESTDIR}$dir" ]; then
 
 
214
        chmod a+rX "${DESTDIR}$dir"
 
127
 
for dir in /lib /usr/lib; do
 
128
 
    chmod --recursive a+rX "${DESTDIR}$dir"
 
 
217
for dir in "${DESTDIR}"/lib* "${DESTDIR}"/usr/lib*; do
 
 
218
    if [ -d "$dir" ]; then
 
 
219
        find "$dir" \! -perm -u+rw,g+r -prune -or -print0 \
 
 
220
            | xargs --null --no-run-if-empty chmod a+rX