summaryrefslogtreecommitdiff
path: root/src/initrd/btrfs-create.sh
blob: 8a0cd871b68bff06e37a7e934ce95187be2d4abb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
#!/bin/sh

. loop-layer.sh
. mdadm-dup.sh

losetup() { /sbin/losetup "$@"; }

luks_secret()
{
  local parms=$-; # this junk keeps set -x from being too annoying
  set +x
  [ -n "$luks_secret" ] || luks_secret="$(head -c256 /dev/urandom)"
  printf %s "$luks_secret"
  case $parms in *x*) set -x; set -x ;; esac
}

floor4()
{
  # Negatives round up, but aren't used.
  echo $(($1 / 4 * 4))
}

ceil4()
{
  local x="$1"
  [ $((x % 4)) -eq 0 ] || x=$((x + 4 - x % 4))
  printf '%d\n' "$x"
}

cdrom_has_rootfs()
{
    [ ! "$BOOTIF" ] || return
    bootwait samizdat-cdrom
    [ -d /cdrom/rootfs ]
}

losetup_layers()
{
    if cdrom_has_rootfs; then
        local fs fs_rw
        for fs in /cdrom/rootfs/*.btrfs; do
            fs_rw=/"${fs##*/}".rw
            dd if=/dev/zero of="$fs_rw" bs=1M count=10
            losetup_snapshot "$fs" "$fs_rw" || return
        done
    else
        bootwait samizdat-nbd-dev
        dd if=/dev/zero of=/nbd0.rw bs=1M count=10
        dm_snapshot /dev/nbd0 /nbd0.rw
        return
    fi
}

init_samizdat()
{
  local blockdev="$1" imgfile="$2" uuid

  losetup_layers                                   || return
  modprobe btrfs                                   || return
  btrfs device scan                                || return

  uuid=$(choose_uuid)                              || return
  [ "$uuid" ]                                      || return

  mount -t btrfs UUID="$uuid" /root || return

  btrfs device add "$blockdev" /root               || return
  mount -o rw,remount /root                        || return
  samizdat_movemounts "$imgfile"                   || return

  initialize_root_filesystem                       || return
}

samizdat_movemounts()
{
    local imgfile="$1" mountpoint

    if [ "$imgfile" ]; then
        mountpoint=$(mountpoint_of "$imgfile") || return
        mkdir /root/outerfs
        mount -o move "$mountpoint" /root/outerfs
    fi
    mkdir /root/cdrom
    mount -o move /cdrom /root/cdrom
    umount /plaintext
    true
}

mountpoint_of()
{
    local f="$1"
    while ! mountpoint -q "$f"; do
        f=$(dirname "$f")
        [ "$f" != '.' ] || return 1
    done
    printf '%s\n' "$f"
}

copy_execs()
{
    local d b
    d=$1
    shift

    for b in "$@"; do
        [ -x "/root/$d/$b" ] && continue
        [ "$(which "$b")" ] || continue
        cp "$(which "$b")" "/root/$d/$b"
    done
}

initialize_root_filesystem()
{
    rm -r /root/root
    btrfs subvolume create /root/root                   || return
    mv /gpg/gnupghome /root/root/.gnupg                 || return

    rmdir /root/srv
    btrfs subvolume create /root/srv
    rm -r /root/var/cache/apt/archives
    btrfs subvolume create /root/var/cache/apt/archives || return

    rmdir /root/home
    btrfs subvolume create /root/home                   || return

    copy_execs sbin  mdadm dmsetup cryptsetup fsck.hfsplus
    copy_execs bin   btrfs rsync gpg gpg2 gpg-agent

    # Copy these over unconditionally, because they ought to remain in sync with
    # the initrd.
    cp /bin/mdadm-dup.sh /root/sbin/
    cp /bin/samizdat-eject.sh /root/sbin/

    sed -i -e 's/^root:x:/root::/' /root/etc/passwd
    cp /patchroot/* /root/root/

    true
}

# Get the uuid of the filesystem with the most devices,
# excluding filesystems that don't incorporate loop devices.
# This is used to choose the latest seed -- which should have
# the most layers.
choose_uuid()
{
    local seen_loop= seen_uuid= seen_devs=
    btrfs filesystem show |
        while read line; do
            case "$line" in
                Label*)
                    seen_uuid=${line##*uuid: }
                    seen_devs=
                    seen_loop=
                    ;;
                *Total\ devices*)
                    seen_devs=${line#*Total devices }
                    seen_devs=${seen_devs%% *}
                    ;;
                *path\ /dev/mapper/*)
                    seen_loop=t;;
            esac
            [ "$seen_loop" ] && echo "$seen_devs $seen_uuid"
        done |
        uniq | sort -nr | head -n1 | (read _ x; echo $x)
}

filesystem_incomplete()
{
    local n
    n=$(btrfs filesystem show "$1" | sed -ne 's/.*Total devices \([^ ]*\) .*/\1/p')
    [ "$n" != 1 ]
}

partition_new_hard_drive_DESTROYING_EVERYTHING()
{
    local target="$1"
    # [ "$(parted -sm "$target" print | grep -c :)"  = 1 ] || return
    parted "$target" -sm                                        \
           unit B                                               \
           mklabel gpt                                          \
           mkpart samizdat-grub-incomplete 32KiB 4MiB           \
           set 1 bios_grub on                                   \
           mkpart samizdat-plaintext-incomplete btrfs 4MiB 1GiB \
           mkpart samizdat-luks-encrypted-incomplete 1GiB 100%  \
        &&
        udevadm settle
}

mark_partitions_as_complete()
{
    local dev="$1"
    # TODO: Verify existing names
    parted "$dev" -sm \
           name 1 samizdat-grub \
           name 2 samizdat-plaintext \
           name 3 samizdat-luks-encrypted
}

open_samizdat()
{
  local blockdev=/dev/mapper/samizdatcrypt fs

  # For this part, we don't necessarily need the cdrom.
  # Unfortunately the init_gpg code is still getting the GPG key there.
  if filesystem_incomplete "$blockdev"; then
     losetup_layers
  fi
  modprobe btrfs || return
  btrfs device scan || return
  mount -t btrfs "$blockdev" /root || return
  samizdat_movemounts "$imgfile"
  LoSetup -D
}

init_samizdat_lodev()
{
  local imgfile="$1" megs=$(ceil4 "$2") dev
  truncate -s ${megs}M "$imgfile" || return
  dev=$(losetup -f) && losetup "$dev" "$imgfile" || return
  echo "$dev"
}

open_samizdat_blockdev_from_loop()
{
  local imgfile="$1" keyfile="$2" dev
  dev=$(losetup -f) && losetup "$dev" "$imgfile" || return
  open_samizdat_blockdev "$dev" "$keyfile"
}

open_samizdat_blockdev()
{
  local dev="$1" keyfile="$2"
  local cryptname=samizdatcrypt decrypted_keyfile=/luks.secret

  gpg2 --verify "$keyfile" || return

  # TODO: we should be ensuring we can decrypt this secret key before even
  # offering the option to boot the encrypted filesystem

  # The first --decrypt merely strips the signature.  The option is
  # poorly named for that case.
  gpg2 --decrypt "$keyfile" | gpg2 --decrypt > "$decrypted_keyfile" || return

  cryptsetup --key-file "$decrypted_keyfile" luksOpen "$dev" "$cryptname" || return

  [ -b /dev/mapper/"$cryptname" ] || return

}

init_samizdat_blockdev()
{
  local dev="$1" keyfile="$2"
  local cryptname=samizdatcrypt

  [ ! -b /dev/mapper/"$cryptname" ] || return

  luks_secret >/dev/null
  luks_secret | gpg2 --default-recipient-self --encrypt --armor | gpg2 --clearsign --output "$keyfile" || return

  luks_secret | cryptsetup luksFormat "$dev" - || return
  cryptsetup luksDump "$dev" >&2
  luks_secret | cryptsetup --key-file - luksOpen "$dev" "$cryptname" || return

  [ -b /dev/mapper/"$cryptname" ] || return
}

majmin()
{
  local dev="$1" major minor
  eval $(stat -c 'major=%t minor=%T' "$dev") || return
  [ "$major" -a "$minor" ] || return
  printf '%d:%d\n' 0x$major 0x$minor
}

cryptdev_to_dev()
{
  local dev="$1" majmin
  majmin=$(majmin "$dev") || return
  set -- /sys/dev/block/$majmin/slaves/*
  [ $# = 1 ] || return

  cryptsetup status "$dev" |while read k v; do if [ "$k" = device: ]; then echo $v; break; fi; done
}

cryptdev_to_backing_file()
{
  local dev="$1" majmin result
  majmin="$(majmin "$dev")" || return
  set -- /sys/dev/block/$majmin/slaves/*
  [ $# = 1 ] || return
  read result < "$1"/loop/backing_file || return
  printf '%s\n' "$result"
}

lodev_to_file()
{
  local result majmin dev="$1"
  majmin="$(majmin "$dev")" || return
  read result < /sys/dev/block/$majmin/loop/backing_file || return
  printf '%s' "$result"
}

mountpoint_to_dev()
{
  local wantmp="$1" dev mp rest
  mountpoint -q "$wantmp" || return
  while read dev mp rest; do if [ "$mp" = "$wantmp" ]; then echo "$dev"; return; fi; done < /proc/mounts
  return 1
}

get_cdrom_sizelimit()
{
  # returns bytes
  local dev="$1" sectors
  sectors=$(blockdev --getsz "$dev") || return
  if dd count=2 if="$dev" bs=2048 skip=$((sectors/4 - 2)) of=/dev/null 2>/dev/null; then
    return
  else
    echo $(((sectors-8)*512))
  fi
}

init_gpg()
{
  export GNUPGHOME=/gpg/gnupghome
  mkdir -p "$GNUPGHOME"
  if [ -e /gnupghome.tar ]; then
      tar -C "$GNUPGHOME" -zxf /gnupghome.tar && bootdone samizdat-gpg
      return
  else
      bootwait samizdat-cdrom
      (umask 077; rsync --exclude '/luks-key*' --ignore-existing -rpP /cdrom/gnupghome/ "$GNUPGHOME")
      bootdone samizdat-gpg
  fi

  local LOG_DIR=/run/initramfs/samizdat/log
  if samizdat-password-agent > "$LOG_DIR"/samizdat-password-agent.log 2>&1; then
    clear
    true
  else
    false
  fi
}

start_meter()
{
  local startmsg="$*"
  (exec >&4
  clear
  echo -n $startmsg
  set +x
  while sleep 2; do
    echo -n .
  done) &
  meterpid=$!
}

stop_meter()
{
  local endmsg="$*"
  kill $meterpid
  echo "  $endmsg" >&4
}