/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: Björn Påhlsson
  • Date: 2011-11-28 07:39:48 UTC
  • mfrom: (505.3.16 client-network-hooks)
  • mto: This revision was merged to the branch mainline in revision 525.
  • Revision ID: belorn@recompile.se-20111128073948-xd69945uliwv2y61
merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
    exit 1
41
41
fi
42
42
 
43
 
for d in /etc/keys/mandos /usr/local/lib/mandos/keys; do
 
43
for d in /etc/keys/mandos /etc/mandos/keys; do
44
44
    if [ -d "$d" ]; then
45
45
        keydir="$d"
46
46
        break
51
51
    exit 1
52
52
fi
53
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 }'`"
 
54
set `{ getent passwd _mandos \
 
55
    || getent passwd nobody \
 
56
    || echo ::65534:65534:::; } \
 
57
    | cut --delimiter=: --fields=3,4 --only-delimited \
 
58
    --output-delimiter=" "`
 
59
mandos_user="$1"
 
60
mandos_group="$2"
60
61
 
61
62
# The Mandos network client uses the network
62
63
auto_add_modules net
67
68
CONFDIR="/conf/conf.d/mandos"
68
69
MANDOSDIR="/lib/mandos"
69
70
PLUGINDIR="${MANDOSDIR}/plugins.d"
 
71
HOOKDIR="${MANDOSDIR}/network-hooks.d"
70
72
 
71
73
# Make directories
72
74
install --directory --mode=u=rwx,go=rx "${DESTDIR}${CONFDIR}" \
73
 
        "${DESTDIR}${MANDOSDIR}"
 
75
        "${DESTDIR}${MANDOSDIR}" "${DESTDIR}${HOOKDIR}"
74
76
install --owner=${mandos_user} --group=${mandos_group} --directory \
75
77
    --mode=u=rwx "${DESTDIR}${PLUGINDIR}"
76
78
 
87
89
        continue
88
90
    fi
89
91
    case "$base" in
90
 
        *~|.*|\#*\#|*.dpkg-old|*.dpkg-new|*.dpkg-divert) : ;;
91
 
        "*") :;;
92
 
        *) copy_exec "$file" "${PLUGINDIR}";;
 
92
        *~|.*|\#*\#|*.dpkg-old|*.dpkg-bak|*.dpkg-new|*.dpkg-divert)
 
93
            : ;;
 
94
        "*") echo "W: Mandos client plugin directory is empty." >&2 ;;
 
95
        *) copy_exec "$file" "${PLUGINDIR}" ;;
93
96
    esac
94
97
done
95
98
 
97
100
for file in /etc/mandos/plugins.d/*; do
98
101
    base="`basename \"$file\"`"
99
102
    case "$base" in
100
 
        *~|.*|\#*\#|*.dpkg-old|*.dpkg-new|*.dpkg-divert) : ;;
101
 
        "*") :;;
102
 
        *) copy_exec "$file" "${PLUGINDIR}";;
103
 
    esac
 
103
        *~|.*|\#*\#|*.dpkg-old|*.dpkg-bak|*.dpkg-new|*.dpkg-divert)
 
104
            : ;;
 
105
        "*") : ;;
 
106
        *) copy_exec "$file" "${PLUGINDIR}" ;;
 
107
    esac
 
108
done
 
109
 
 
110
# Copy network hooks
 
111
for hook in /etc/mandos/network-hooks.d/*; do
 
112
    case "`basename \"$hook\"`" in
 
113
        "*") continue ;;
 
114
        *[!A-Za-z0-9_.-]*) continue ;;
 
115
        *) test -d "$hook" || copy_exec "$hook" "${HOOKDIR}" ;;
 
116
    esac
 
117
    if [ -x "$hook" ]; then
 
118
        # Copy any files needed by the network hook
 
119
        MANDOSNETHOOKDIR=/etc/mandos/network-hooks.d MODE=files \
 
120
            VERBOSITY=0 "$hook" files | while read file target; do
 
121
            if [ -z "${target}" ]; then
 
122
                copy_exec "$file"
 
123
            else
 
124
                copy_exec "$file" "$target"
 
125
            fi
 
126
        done
 
127
        # Copy and load any modules needed by the network hook
 
128
        MANDOSNETHOOKDIR=/etc/mandos/network-hooks.d MODE=modules \
 
129
            VERBOSITY=0 "$hook" modules | while read module; do
 
130
            if [ -z "${target}" ]; then
 
131
                force_load "$module"
 
132
            fi
 
133
        done
 
134
    fi
104
135
done
105
136
 
106
137
# GPGME needs /usr/bin/gpg
107
 
if ! [ -e "${DESTDIR}/usr/bin/gpg" ] \
108
 
    && [ -n "`ls \"${DESTDIR}\"/usr/lib/libgpgme.so* 2>/dev/null`" ]; then
 
138
if [ ! -e "${DESTDIR}/usr/bin/gpg" \
 
139
    -a -n "`ls \"${DESTDIR}\"/usr/lib/libgpgme.so* \
 
140
                2>/dev/null`" ]; then
109
141
    copy_exec /usr/bin/gpg
110
142
fi
111
143
 
112
144
# Config files
113
 
for file in /etc/mandos/*; do
 
145
for file in /etc/mandos/plugin-runner.conf; do
114
146
    if [ -d "$file" ]; then
115
147
        continue
116
148
    fi
117
149
    cp --archive --sparse=always "$file" "${DESTDIR}${CONFDIR}"
118
150
done
119
151
 
120
 
# Key files 
121
 
for file in  "$keydir"/*; do
 
152
if [ ${mandos_user} != 65534 ]; then
 
153
    sed --in-place --expression="1i--userid=${mandos_user}" \
 
154
        "${DESTDIR}${CONFDIR}/plugin-runner.conf"
 
155
fi
 
156
 
 
157
if [ ${mandos_group} != 65534 ]; then
 
158
    sed --in-place --expression="1i--groupid=${mandos_group}" \
 
159
        "${DESTDIR}${CONFDIR}/plugin-runner.conf"
 
160
fi
 
161
 
 
162
# Key files
 
163
for file in "$keydir"/*; do
122
164
    if [ -d "$file" ]; then
123
165
        continue
124
166
    fi
153
195
        chmod a+rX "${DESTDIR}$dir"
154
196
    fi
155
197
done
156
 
for dir in /lib /usr/lib; do
157
 
    find "${DESTDIR}$dir" \! -perm -u+rw,g+r -prune -o -print0 \
158
 
        | xargs --null --no-run-if-empty chmod a+rX
 
198
for dir in "${DESTDIR}"/lib* "${DESTDIR}"/usr/lib*; do
 
199
    if [ -d "$dir" ]; then
 
200
        find "$dir" \! -perm -u+rw,g+r -prune -or -print0 \
 
201
            | xargs --null --no-run-if-empty chmod a+rX
 
202
    fi
159
203
done