/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 17:24:58 UTC
  • Revision ID: teddy@fukt.bsnet.se-20080906172458-2x5wlfkn7oqckt1y
* legalnotice.xml: Copy DocBook 4.4-formatted text from
                   <http://www.gnu.org/licenses/gpl-3.0.dbk>.

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::::; } \
 
57
        | awk --field-separator=: '{ print $3 }'`" 
 
58
mandos_group="`{ getent group mandos \
 
59
                || getent group nogroup \
 
60
                || echo ::65534:; } \
 
61
        | awk --field-separator=: '{ print $3 }'`"
 
62
 
41
63
# The Mandos network client uses the network
42
64
auto_add_modules net
43
65
# The Mandos network client uses IPv6
49
71
PLUGINDIR="${MANDOSDIR}/plugins.d"
50
72
 
51
73
# Make directories
52
 
mkdir --parents "${DESTDIR}${CONFDIR}"
53
 
mkdir --parents "${DESTDIR}${PLUGINDIR}"
 
74
install --directory --mode=u=rwx,go=rx "${DESTDIR}${CONFDIR}" \
 
75
        "${DESTDIR}${MANDOSDIR}"
 
76
install --owner=${mandos_user} --group=${mandos_group} --directory \
 
77
    --mode=u=rwx "${DESTDIR}${PLUGINDIR}"
54
78
 
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}"
57
81
 
58
82
# Copy the plugins
59
83
 
66
90
    fi
67
91
    case "$base" in
68
92
        *~|.*|\#*\#|*.dpkg-old|*.dpkg-new|*.dpkg-divert) : ;;
 
93
        "*") :;;
69
94
        *) copy_exec "$file" "${PLUGINDIR}";;
70
95
    esac
71
96
done
75
100
    base="`basename \"$file\"`"
76
101
    case "$base" in
77
102
        *~|.*|\#*\#|*.dpkg-old|*.dpkg-new|*.dpkg-divert) : ;;
 
103
        "*") :;;
78
104
        *) copy_exec "$file" "${PLUGINDIR}";;
79
105
    esac
80
106
done
81
107
 
82
108
# GPGME needs /usr/bin/gpg
83
 
if ! [ -e "${DESTDIR}/usr/bin/gpg" ] \
84
 
    && [ -n "`ls \"${DESTDIR}\"/usr/lib/libgpgme.so* 2>/dev/null`" ]; then
 
109
if [ ! -e "${DESTDIR}/usr/bin/gpg" \
 
110
    -a -n "`ls \"${DESTDIR}\"/usr/lib/libgpgme.so* \
 
111
                2>/dev/null`" ]; then
85
112
    copy_exec /usr/bin/gpg
86
113
fi
87
114
 
88
 
# Key files and config files
 
115
# Config files
89
116
for file in /etc/mandos/*; do
90
117
    if [ -d "$file" ]; then
91
118
        continue
93
120
    cp --archive --sparse=always "$file" "${DESTDIR}${CONFDIR}"
94
121
done
95
122
 
 
123
# Key files 
 
124
for file in  "$keydir"/*; do
 
125
    if [ -d "$file" ]; then
 
126
        continue
 
127
    fi
 
128
    cp --archive --sparse=always "$file" "${DESTDIR}${CONFDIR}"
 
129
    chown ${mandos_user}:${mandos_group} \
 
130
        "${DESTDIR}${CONFDIR}/`basename \"$file\"`"
 
131
done
 
132
 
96
133
# /lib/mandos/plugin-runner will drop priviliges, but needs access to
97
134
# its plugin directory and its config file.  However, since almost all
98
135
# files in initrd have been created with umask 027, this opening of
105
142
# condition.  This umask is set by "initramfs-tools-hook-conf",
106
143
# installed as "/usr/share/initramfs-tools/conf-hooks.d/mandos".)
107
144
108
 
for full in "${PLUGINDIR}" "${CONFDIR}"; do
 
145
for full in "${MANDOSDIR}" "${CONFDIR}"; do
109
146
    while [ "$full" != "/" ]; do
110
147
        chmod a+rX "${DESTDIR}$full"
111
148
        full="`dirname \"$full\"`"
115
152
# Reset some other things to sane permissions which we have
116
153
# inadvertently affected with our umask setting.
117
154
for dir in / /bin /etc /keyscripts /sbin /scripts /usr /usr/bin; do
118
 
    chmod a+rX "${DESTDIR}$dir"
 
155
    if [ -d "${DESTDIR}$dir" ]; then
 
156
        chmod a+rX "${DESTDIR}$dir"
 
157
    fi
119
158
done
120
159
for dir in /lib /usr/lib; do
121
 
    find "${DESTDIR}$dir" \! -perm /u+rw,g+r -prune -o -print0 \
122
 
        | xargs --null chmod a+rX
 
160
    find "${DESTDIR}$dir" \! -perm -u+rw,g+r -prune -or -print0 \
 
161
        | xargs --null --no-run-if-empty chmod a+rX
123
162
done