summaryrefslogtreecommitdiff
path: root/src/selfstrap
blob: 165a921f34dc91421ece0c54e5665e403584a998 (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
365
366
367
368
369
370
371
372
373
374
375
376
#!/bin/bash
debian_mirror=http://httpredir.debian.org/debian

if [ $# = 1 ]; then
    rootfs=$1
else
    echo "Usage: $0 <target directory>" >&2
    exit 1
fi

die() { printf 'Error: %s\n' "$*"; exit 1; }

am_root() { [ "$(id -u)" = 0 ]; }

current_debian_codename()
{
    # lsb_release -cs
    sed -ne 's/^VERSION=.* (\(.*\)).*/\1/p' /etc/os-release
}

sanity_checks()
{
    am_root || die 'you are not root'
    rootfs=$(realpath "$rootfs") || die 'realpath failed'
    [ "$rootfs" ] || die 'no $rootfs'
    [ -d "$rootfs" ] || mkdir "$rootfs" || die 'could not mkdir($rootfs)'
}

generate_apt_config()
{
    APT_CONFIG=$(mktemp) || exit
    chmod 644 "$APT_CONFIG"
    cat > "$APT_CONFIG" <<EOF
Dir::Etc "${rootfs}/etc/apt/";
Dir::Etc::Parts "${rootfs}/etc/apt/apt.conf.d/";
Dir::Etc::PreferencesParts "${rootfs}/etc/apt/preferences.d/";
EOF
    export APT_CONFIG
}

apt_get()
{
    [ "$rootfs" ] || die 'no $rootfs'
    [ "$APT_CONFIG" ] || die 'no $APT_CONFIG'

    visible_args="$*"

    set  --  -o  Apt::Install-Recommends=false                                "$@"

    # Set various paths to within the created system.
    set  --  -o  Apt::Architecture="$rootfs_arch"                             "$@"
    set  --  -o  Apt::Default-Release="$release"                              "$@"
    set  --  -o  Dir="$rootfs"                                                "$@"
    set  --  -o  Dir::Cache="$rootfs"/var/cache/apt/                          "$@"
    set  --  -o  Dir::Etc::Parts="$rootfs"/etc/apt/apt.conf.d/                "$@"
    set  --  -o  Dir::Etc::PreferencesParts="$rootfs"/etc/apt/preferences.d/  "$@"
    set  --  -o  Dir::Etc="$rootfs"/etc/apt/                                  "$@"
    set  --  -o  Dir::State="$rootfs"/var/lib/apt/                            "$@"
    set  --  -o  Dir::State::Status="$rootfs"/var/lib/dpkg/status             "$@"

    # We must also set dpkg to use the created system.
    # Dpkg::options requires undocumented apt CLI magic.
    if [ "$DEBUG_DPKG" ]; then
        [ "$DEBUG_DPKG" -gt 0 ] 2>/dev/null || DEBUG_DPKG=10013
        set  --  -o  DPkg::options::arg0=--debug="${DEBUG_DPKG}"              "$@"
    fi
    # This is the important one:
    set  --  -o  DPkg::options::arg1=--root="$rootfs"                         "$@"
    set  --  -o  DPkg::options::arg2=--force-unsafe-io                        "$@"

    # Use the calling system for these.  This is an optimization.
    set  --  -o  Dir::Cache::archives=/var/cache/apt/archives                 "$@"
    set  --  -o  Dir::Etc::Trusted=/etc/apt/trusted.gpg                       "$@"
    set  --  -o  Dir::Etc::TrustedParts=/etc/apt/trusted.gpg.d                "$@"
    set  --  -o  Dir::State::Lists=/var/lib/apt/lists                         "$@"

    # Avoid deleting lists on the calling system.
    set  --  -o  APT::Get::List-Cleanup=false                                 "$@"

    [ "$VERBOSE" ] && printf '+ apt-get %s\n' "$visible_args" >&2 || true

    apt-get "$@"
}

idem() { if [ ! -e "${!#}" ]; then "$@"; fi; }
idem_mknod() { if [ ! -e "$3" ]; then mknod "$@"; fi; }

# This function is copied (with modifications) from debootstrap.
install_devices()
{
    local TARGET="$rootfs"
    [ "$TARGET" -a -d "$TARGET" ] || die 'no $TARGET'
    idem mkdir "$TARGET"/dev
    # The list of devices that can be created in a container comes from
    # src/core/cgroup.c in the systemd source tree.
    idem_mknod -m 666 "$TARGET"/dev/null  c 1 3
    idem_mknod -m 666 "$TARGET"/dev/zero  c 1 5
    idem_mknod -m 666 "$TARGET"/dev/full  c 1 7
    idem_mknod -m 666 "$TARGET"/dev/random        c 1 8
    idem_mknod -m 666 "$TARGET"/dev/urandom       c 1 9
    idem_mknod -m 666 "$TARGET"/dev/tty   c 5 0
    idem mkdir "$TARGET"/dev/pts/
    idem mkdir "$TARGET"/dev/shm/
    # Inside a container, we might not be allowed to create /dev/ptmx.
    # If not, do the next best thing.
    if ! idem_mknod -m 666 "$TARGET"/dev/ptmx c 5 2; then
        idem ln -s pts/ptmx "$TARGET"/dev/ptmx
    fi
    idem ln -s /proc/self/fd   "$TARGET"/dev/fd
    idem ln -s /proc/self/fd/0 "$TARGET"/dev/stdin
    idem ln -s /proc/self/fd/1 "$TARGET"/dev/stdout
    idem ln -s /proc/self/fd/2 "$TARGET"/dev/stderr
}

mount_virtfs()
{
    local TARGET="$1"
    [ "$TARGET" ] || die 'no $TARGET'
    [ -d "$TARGET"/proc ] || mkdir "$TARGET"/proc
    [ -d "$TARGET"/sys  ] || mkdir "$TARGET"/sys
    mount -t proc proc "$TARGET"/proc
    mount -t sysfs sysfs "$TARGET"/sys
}

umount_virtfs()
{
    local TARGET="$1" fail=
    [ "$TARGET" ] || die 'no $TARGET'
    umount "$TARGET"/proc || fail=y
    umount "$TARGET"/sys || fail=y
    [ ! "$fail" ]
}

write_lines_once()
{
    local output="$1"
    shift
    [ -e "$output" ] || printf '%s\n' "$@" > "$output"
}

populate_rootfs()
{
    [ "$rootfs" ] || die 'no $rootfs'
    set -B
    mkdir -p \
          "$rootfs"/etc/apt/{preferences.d,apt.conf.d,trusted.gpg.d,sources.list.d} \
          "$rootfs"/var/{lib/{apt/lists/partial,dpkg/{info,parts,triggers,alternatives,updates}},cache/apt} \
          "$rootfs"/var/log/apt

    touch "$rootfs"/var/lib/dpkg/status

    write_lines_once "$rootfs"/var/lib/dpkg/arch "$rootfs_arch"
    write_lines_once "$rootfs"/etc/apt/sources.list \
                     "deb $debian_mirror $release main contrib non-free" \
                     "deb http://security.debian.org $release/updates main contrib non-free"
    install_devices
}

parse_apt_noact_line()
{
    set -- $*
    action=$1
    package=$2
    version=${3#\(}
    shift 3

    while [ "$1" ]; do
        case "$1" in
            *\))
                arch=${1%\)}
                arch=${arch#\[}
                arch=${arch%\]}
                return
                ;;
            *) shift ;;
        esac
    done
    return 1
}

dpkg_extract_with_info()
{
    local deb="$1" TARGET="$2" multiarch="$3" command PKG
    PKG=${deb##*/}
    PKG=${PKG%%_*}
    PKG=$PKG$multiarch

    command=$(cat <<'EOF'
if [ "$TAR_FILENAME" = ./control ]; then
    (sed "/^Package:/a Status: install ok installed"; echo) >> "$TARGET"/var/lib/dpkg/status
else
    f=$TARGET/var/lib/dpkg/info/$PKG.${TAR_FILENAME#./}
    cat > "$f"
    chmod $TAR_MODE "$f"
fi
EOF
)
    (export PKG TARGET; dpkg --ctrl-tarfile "$deb" | tar -x --to-command "$command")
    dpkg --fsys-tarfile "$deb" |
        (cd "$TARGET" && tar -xv) |
        sed 's?^\.??; s?^/$?/.?; s?/$??' > "$TARGET/var/lib/dpkg/info/$PKG.list"
}

apt_run_inst()
{
    apt_get -s -yqq install "$@" | dpkg_inst_from_apt
}

dpkg_inst_from_apt()
{
    while read line; do
        parse_apt_noact_line "$line" || die "unexpected output from apt-get: $line"
        export LC_ALL=C
        export DEBIAN_FRONTEND=noninteractive
        export DPKG_MAINTSCRIPT_PACKAGE="$package" DPKG_MAINTSCRIPT_ARCH="$arch"
        is_multiarch_same "$package" && multiarch=":$arch" || multiarch=
        case "$action" in
            Inst)
                export DPKG_MAINTSCRIPT_NAME=preinst
                preinst=/var/lib/dpkg/info/${package}${multiarch}.preinst
                if [ -x "$rootfs"/"$preinst" ]; then
                    (set -x; chroot "$rootfs" "$preinst" install)
                fi
                ;;
            Conf)
                export DPKG_MAINTSCRIPT_NAME=postinst
                postinst=/var/lib/dpkg/info/${package}${multiarch}.postinst
                if [ -x "$rootfs"/"$postinst" ]; then
                    (set -x; chroot "$rootfs" "$postinst" configure)
                fi
                ;;
            Remv) ;;
            *) die "impossible" ;;
        esac
    done
}

apt_extract()
{
    apt_get -d -yqq install "$@"
    actions=$(mktemp) || die 'mktemp failed'
    apt_get -s -yqq install "$@" | tee "$actions" | dpkg_extract_from_apt

    if [ "$EXTRACT_DPKG_INFO" ]; then
        install_etc_passwd
        dpkg_inst_from_apt < "$actions"
    fi

    rm "$actions"
}

dpkg_extract_from_apt()
{
    while read line; do

        parse_apt_noact_line "$line" || die "unexpected output from apt-get: $line"

        deb=/var/cache/apt/archives/${package}_${version//:/%3a}_${arch}.deb
        [ -f "$deb" ] || {
            echo "line=$line" >&2
            printf '%s\n' "$action" "$package" "$version" "$arch" >&2
            die "unexpected output from apt-get"
        }
        case "$action" in
            Inst)
                printf 'Extracting %s\n' "${deb##*/}" >&2

                if [ "$EXTRACT_DPKG_INFO" ]; then
                    is_multiarch_same "$package" && multiarch=":$arch" || multiarch=
                    dpkg_extract_with_info "$deb" "$rootfs" "$multiarch"
                else
                    dpkg-deb --extract "$deb" "$rootfs"
                fi
                ;;
            Conf) ;;
            Remv) ;;
            *) die "impossible" ;;
        esac
    done
}

install_etc_passwd()
{
    [ -e "$rootfs"/etc/passwd ] || cp "$rootfs"/usr/share/base-passwd/passwd.master "$rootfs"/etc/passwd
    [ -e "$rootfs"/etc/group  ] || cp "$rootfs"/usr/share/base-passwd/group.master  "$rootfs"/etc/group
}

main_packages_file()
{
    local uri_part="${debian_mirror#*/}"
    while [ "${uri_part:0:1}" = / ]; do
        uri_part=${uri_part#?}
    done
    uri_part=${uri_part//\//_}
    printf '/var/lib/apt/lists/%s_dists_%s_main_binary-%s_Packages\n' "$uri_part" "$release" "$rootfs_arch"
}

required_packages()
{
    perl -00 -ne \
         '/^Priority: required/m || next; /^Package: (.*)$/m && print "$1\n"' \
         "$(main_packages_file)" | sort -u
}

declare -A is_multiarch_same
multicheck()
{
    local m
    if [ ! "$multichecked" ]; then
        for m in $(multiarch_same_packages); do
            is_multiarch_same[$m]=y
        done
    fi
    multichecked=y
}

multiarch_same_packages()
{
    perl -00 -ne \
         '/^Multi-Arch: same/mi || next; /^Package: (.*)$/m && print "$1\n"' \
         "$(main_packages_file)" | sort -u
}

is_multiarch_same()
{
    multicheck
    [ "${is_multiarch_same[$1]}" ]
}

set -e

rootfs_arch=$(dpkg-architecture -q DEB_HOST_ARCH) || die 'dpkg-architecture failed'
release=$(current_debian_codename) && [ "$release" ] || die 'could not determine Debian release name'

if [ "$FAST_MODE" ]; then
    SKIP_INSTALL=y
    EXTRACT_DPKG_INFO=y
    RUN_INST_SCRIPTS=y
fi

# Set things up so apt-get update works.
sanity_checks
generate_apt_config
populate_rootfs


# Initial apt-get update will determine what we shall install.
[ "$SKIP_UPDATE" ] || apt_get update
packages=$(required_packages) && [ "$packages" ] || die 'failed to determine list of required packages'
extra_packages='apt debian-archive-keyring locales'


# Some files need to be present before 'apt-get install' can install anything.
# In particular:
#
#   1. binaries used by dpkg 'inst' scripts.
#   2. /etc/passwd and /etc/group so that 'chown' works

# Rather than fuss about (1), extract everything from all packages.

# Note: apt_extract() runs preinst and postinst scripts itself when
# $EXTRACT_DPKG_INFO is true.
apt_extract $packages

if [ "$SKIP_INSTALL" ]; then
    apt_extract $extra_packages
else
    export LC_ALL=C
    export DEBIAN_FRONTEND=noninteractive

    install_etc_passwd # This handles (2).
    if [ "$FIX_BROKEN" ]; then
        dpkg --root="$rootfs" --configure -a
    fi
    apt_get install -y $packages $extra_packages
fi