This repository was archived by the owner on Jan 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit
executable file
·479 lines (442 loc) · 8.81 KB
/
init
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
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
#!/bin/bash
export PATH="/usr/sbin:/usr/bin:/sbin:/bin"
function rootmount() {
i=0
while [ ! -b "$1" ]; do
sleep 0.1
if [ $i -ge 300 ]; then
echo
echo "$1 does not exist" >&2
return
fi
echo -n .
let i++
done
echo
o="noatime,nodiratime,$o"
if [ -z "$nofsck" ]; then
case "$(blkid -o udev "$1"|grep ^ID_FS_TYPE|cut -d= -f2)" in
ext4)
FSCK_QUIET_IF_CLEAN=1 fsck.ext4 -p "$1"
;;
esac
fi
mount -o "$o" "$1" /mnt
}
function snapshot() {
if [ ! -b "$1" ]; then
echo "$1 does not exist" >&2
return
fi
blockdev --setro "$1"
if [ -n "$snapsize" ]; then
if [ "$snapsize" -lt 32 ]; then
echo "snapsize too small (should be at least 32M)" >&2
snapsize=32
fi
if [ "$snapsize" -gt 32768 ]; then
echo "snapsize too big (should be at most 32768M)" >&2
snapsize=32768
fi
else
freemem=$(cat /proc/meminfo | grep MemFree| sed 's/[^0-9]*//g')
snapsize=$(($freemem/4/1024))
fi
dd status=none if=/dev/zero of=/tmp/snapshot.img bs=1M count="$snapsize"
modprobe loop
udevadm settle
snapshot_loop=$(losetup -f --show /tmp/snapshot.img)
rm /tmp/snapshot.img
modprobe dm-snapshot
echo "0 $(blockdev --getsz "$1") snapshot $1 $snapshot_loop n 8" | dmsetup create snapshot
}
function net_start() {
for i in /sys/class/net/*; do
ifconfig "$(basename $i)" up
done
ifconfig lo 127.0.0.1 up
}
function aoe_start() {
net_start
modprobe aoe
udevadm settle
i=0
while [ ! -e /dev/etherd/"$1" ]; do
aoe-discover
sleep 0.1
if [ $i -ge 300 ]; then
echo
echo "aoe timeout" >&2
bash
return
fi
echo -n .
let i++
done
echo
}
function raid_start() {
if [ -z "$noinitraid" ]; then
udevadm settle
mdadm -A -s -c partitions --auto=yes --quiet --homehost=localhost
udevadm settle
fi
}
function lvm_start() {
if [ -z "$noinitlvm" ]; then
udevadm settle
raid_start
vgchange --quiet -a y
udevadm settle
fi
}
function live_start() {
if [ ! -b "$1" ]; then
echo "$1 does not exist" >&2
return
fi
snapshot "$1"
echo "0 $(blockdev --getsz /dev/mapper/snapshot) linear /dev/mapper/snapshot 0" | dmsetup create live
rootmount /dev/mapper/live
}
function start_udev() {
if [ -x /usr/bin/systemd-hwdb ]; then
systemd-hwdb update
else
udevadm hwdb --update
fi
udevd --daemon --resolve-names=never
udevadm trigger
udevadm settle
if [ ! -e /dev/fd ]; then
ln -s /proc/self/fd /dev/fd
fi
udevadm settle
}
function stop_udev() {
i=0
while true; do
killall -q udevd
sleep 0.1
if ! pidof udevd >/dev/null; then
echo
break;
fi
if [ $i -gt 100 ]; then
echo
break
fi
echo -n .
let i++
done
}
function scrollout() {
i="$LINES"
while [ "$i" -ge 1 ]; do
echo
i="$((i-1))"
done
echo -en '\e[H\e[J'
}
builtin echo -e $'\e[?1c'
export PS1=$'\\[\e[?0c\\]# '
mount -t proc none /proc
# ugly hack for kernel 3.4.0-rc3
eval "$(tr ' ' '\n' </proc/cmdline |grep =|while read x; do echo export $x; done)"
# root mount otions
psor=$(tr ' ' '\n' </proc/cmdline | grep -E '^ro$|^rw$|rootflags=' | while read x; do echo $x; done)
o=$(echo $psor | sed s/rootflags=// | sed 's/ /,/')
if [ -n "$dbg" ]; then
set -x
else
scrollout
fi
shopt -s nullglob
if [ -z "$LANG" ]; then
case "$lang" in
en) export LANG=en_US.UTF-8;;
de) export LANG=de_DE.UTF-8;;
hu) export LANG=hu_HU.UTF-8;;
esac
fi
mount -t devtmpfs none /dev
mount -t sysfs none /sys
mkdir -p /dev/shm
chmod 1777 /dev/shm
start_udev
# root=
if [ -n "$root" ]; then
if [ -z "$o" ]; then
o="defaults"
fi
case "$root" in
aoe:e*.*)
dev="${root#aoe:}"
aoe_start "$dev"
rootmount /dev/etherd/"$dev"
;;
aoecloop:e*.*)
dev="${root#aoecloop:}"
aoe_start "$dev"
modprobe cloop file="/dev/etherd/$dev"
udevadm settle
blockdev --setra 0 /dev/cloop0
live_start /dev/cloop0
;;
aoelive:e*.*)
dev="${root#aoelive:}"
aoe_start "$dev"
live_start /dev/etherd/"$dev"
;;
aoelivesq:e*.*)
dev="${root#aoelivesq:}"
aoe_start "$dev"
modprobe loop
udevadm settle
mkdir /tmp/squashfs
mount -o loop /dev/etherd/"$dev" /tmp/squashfs
imgdev=$(losetup -f --show /tmp/squashfs/uhulinux.img)
udevadm settle
umount -l /tmp/squashfs
live_start "$imgdev"
;;
lvm:*)
raid_start
lvm_start
vol="${root#lvm:}"
rootmount /dev/mapper/"$vol"
;;
UUID=*)
dev="/dev/disk/by-uuid/${root#UUID=}"
btrfs device scan
udevadm settle
if [ -e "$dev" ]; then
rootmount "$dev"
else
raid_start
if [ -e "$dev" ]; then
rootmount "$dev"
else
lvm_start
rootmount "$dev"
fi
fi
;;
/dev/*)
case "$root" in
/dev/md*)
raid_start
;;
esac
udevadm settle
if [ -n "${lukspw:-}" ]; then
for i in /dev/disk/by-type/crypto_LUKS/*; do
echo -n "$lukspw" | cryptsetup luksOpen "$i" "${i##*/}"
done
udevadm settle
fi
btrfs device scan
udevadm settle
if [ -e "$root" ]; then
rootmount "$root"
else
raid_start
if [ -e "$root" ]; then
rootmount "$root"
else
lvm_start
rootmount "$root"
fi
fi
;;
livecd:*)
mkdir -p /tmp/cd
name="${root#livecd:}"
dev="/dev/disk/by-label/${name//_/\x20}"
i=0
while [ ! -e "$dev" ]; do
sleep 0.1
if [ $i -ge 300 ]; then
echo
break
fi
echo -n .
let i++
done
if [ -e "$dev" ]; then
mount -o ro "$dev" /tmp/cd || continue
imgdev=""
if [ -f /tmp/cd/uhulinux.img ]; then
modprobe loop
udevadm settle
mkdir /tmp/squashfs
mount -o loop /tmp/cd/uhulinux.img /tmp/squashfs
imgdev=$(losetup -f --show /tmp/squashfs/uhulinux.img)
udevadm settle
umount -l /tmp/cd
umount -l /tmp/squashfs
fi
live_start "$imgdev"
else
echo "$dev not found" >&2
fi
;;
shell)
echo "Shells are available on consoles Alt-F2, Alt-F3, Alt-F4. Exit them to proceed." >&2
echo -n "Waiting..." >&2
openvt -c 2 /bin/bash -w &
openvt -c 3 /bin/bash -w &
openvt -c 4 /bin/bash -w &
wait
;;
esac
else # not root=
# boot=
if [ -z "$boot" ]; then
echo "boot parameter not defined"
bash
else
if [ -z "$o" ]; then
o="defaults"
fi
case "$boot" in
aoe:e*.*)
dev="${boot#aoe:}"
aoe_start "$dev"
rootmount /dev/etherd/"$dev"
;;
aoecloop:e*.*)
dev="${boot#aoecloop:}"
aoe_start "$dev"
modprobe cloop file="/dev/etherd/$dev"
udevadm settle
blockdev --setra 0 /dev/cloop0
live_start /dev/cloop0
;;
aoelive:e*.*)
dev="${boot#aoelive:}"
aoe_start "$dev"
live_start /dev/etherd/"$dev"
;;
aoelivesq:e*.*)
dev="${boot#aoelivesq:}"
aoe_start "$dev"
modprobe loop
udevadm settle
mkdir /tmp/squashfs
mount -o loop /dev/etherd/"$dev" /tmp/squashfs
imgdev=$(losetup -f --show /tmp/squashfs/uhulinux.img)
udevadm settle
umount -l /tmp/squashfs
live_start "$imgdev"
;;
lvm:*)
raid_start
lvm_start
vol="${boot#lvm:}"
rootmount /dev/mapper/"$vol"
;;
UUID=*)
dev="/dev/disk/by-uuid/${boot#UUID=}"
btrfs device scan
udevadm settle
if [ -e "$dev" ]; then
rootmount "$dev"
else
raid_start
if [ -e "$dev" ]; then
rootmount "$dev"
else
lvm_start
rootmount "$dev"
fi
fi
;;
/dev/*)
case "$boot" in
/dev/md*)
raid_start
;;
esac
udevadm settle
if [ -n "${lukspw:-}" ]; then
for i in /dev/disk/by-type/crypto_LUKS/*; do
echo -n "$lukspw" | cryptsetup luksOpen "$i" "${i##*/}"
done
udevadm settle
fi
btrfs device scan
udevadm settle
if [ -e "$boot" ]; then
rootmount "$boot"
else
raid_start
if [ -e "$boot" ]; then
rootmount "$boot"
else
lvm_start
rootmount "$boot"
fi
fi
;;
livecd:*)
mkdir -p /tmp/cd
name="${boot#livecd:}"
dev="/dev/disk/by-label/${name//_/\x20}"
i=0
while [ ! -e "$dev" ]; do
sleep 0.1
if [ $i -ge 300 ]; then
echo
break
fi
echo -n .
let i++
done
if [ -e "$dev" ]; then
mount -o ro "$dev" /tmp/cd || continue
imgdev=""
if [ -f /tmp/cd/uhulinux.img ]; then
modprobe loop
udevadm settle
mkdir /tmp/squashfs
mount -o loop /tmp/cd/uhulinux.img /tmp/squashfs
imgdev=$(losetup -f --show /tmp/squashfs/uhulinux.img)
udevadm settle
umount -l /tmp/cd
umount -l /tmp/squashfs
fi
live_start "$imgdev"
else
echo "$dev not found" >&2
fi
;;
shell)
echo "Shells are available on consoles Alt-F2, Alt-F3, Alt-F4. Exit them to proceed." >&2
echo -n "Waiting..." >&2
openvt -c 2 /bin/bash -w &
openvt -c 3 /bin/bash -w &
openvt -c 4 /bin/bash -w &
wait
;;
esac
if [ -n "$dbg" ]; then
bash
fi
fi # boot=
fi # root= / boot=
while [ ! -x /mnt/"${INIT:-/usr/lib/systemd/systemd}" ]; do
# echo "${INIT:-/usr/lib/systemd/systemd} not fount under /mnt." >&2
bash
done
stop_udev
if [ -n "$LANG" ]; then
echo "$LANG" > /mnt/etc/sysconfig/locale
fi
if [ $$ = 1 ]; then
exec /sbin/switch_root /mnt "${INIT:-/usr/lib/systemd/systemd}" "$@"
# else
# echo "PID != 1 ($$), not executing switch_root" >&2
fi
#failsafe bash
bash