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
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
|
# If you are curious why partman-auto is so slow, it is because
# update-all is slow
update_all () {
local dev num id size type fs path name partitions
for dev in $DEVICES/*; do
[ -d "$dev" ] || continue
cd $dev
partitions=''
open_dialog PARTITIONS
while { read_line num id size type fs path name; [ "$id" ]; }; do
partitions="$partitions $id"
done
close_dialog
for id in $partitions; do
update_partition $dev $id
done
done
}
autopartitioning_failed () {
db_input critical partman-auto/autopartitioning_failed || true
db_go || true
update_all
exit 1
}
find_method () {
local num id size type fs path name method found
found=
open_dialog PARTITIONS
while { read_line num id size type fs path name; [ "$id" ]; }; do
[ -f $id/method-old ] || continue
method="$(cat $id/method-old)"
if [ "$method" = "$1" ]; then
found="$id"
fi
done
close_dialog
echo "$found"
}
unnamed=0
decode_recipe () {
local ignore ram line word min factor max fs iflabel label map map_end -
local reusemethod method id
ignore="${2:+${2}ignore}"
unnamed=$(($unnamed + 1))
ram=
for map in /sys/firmware/memmap/*; do
[ -d "$map" ] || continue
if [ "$(cat $map/type)" = "System RAM" ]; then
map_start="$(printf %d "$(cat $map/start)")"
map_end="$(printf %d "$(cat $map/end)")"
ram="$(expr "${ram:-0}" + \
"$map_end" - "$map_start" + 1)"
fi
done
if [ -z "$ram" ]; then
ram=$(grep ^Mem: /proc/meminfo | { read x y z; echo $y; }) # in bytes
fi
if [ -z "$ram" ]; then
ram=$(grep ^MemTotal: /proc/meminfo | { read x y z; echo $y; })000
fi
ram=$(convert_to_megabytes $ram)
name="Unnamed.${unnamed}"
scheme=''
line=''
for word in $(cat $1); do
case $word in
:)
name=$line
line=''
;;
::)
db_metaget $line description || RET=''
name="${RET:-Unnamed.$unnamed}"
line=''
;;
.)
# we correct errors in order not to crash parted_server
set -- $line
if expr "$1" : '[0-9][0-9]*$' >/dev/null; then
min=$1
elif expr "$1" : '[0-9][0-9]*+[0-9][0-9]*%$' >/dev/null; then
ram_percent="${1#*+}"
ram_percent="${ram_percent%?}"
min=$((${1%%+*} + $ram * $ram_percent / 100))
elif expr "$1" : '[0-9][0-9]*%$' >/dev/null; then
min=$(($ram * ${1%?} / 100))
else # error
min=2200000000 # there is no so big storage device jet
fi
if expr "$2" : '[0-9][0-9]*+[0-9][0-9]*%$' >/dev/null; then
ram_percent="${2#*+}"
ram_percent="${ram_percent%?}"
factor=$((${2%%+*} + $ram * $ram_percent / 100))
elif expr "$2" : '[0-9][0-9]*%$' >/dev/null; then
factor=$(($ram * ${2%?} / 100))
elif expr "$2" : '[0-9][0-9]*$' >/dev/null; then
factor=$2
else # error
factor=$min # do not enlarge the partition
fi
if [ $factor -lt $min ]; then
factor=$min
fi
if [ "$3" = "-1" ] || \
expr "$3" : '[0-9][0-9]*$' >/dev/null; then
max=$3
elif expr "$3" : '[0-9][0-9]*+[0-9][0-9]*%$' >/dev/null; then
ram_percent="${3#*+}"
ram_percent="${ram_percent%?}"
max=$((${3%%+*} + $ram * $ram_percent / 100))
elif expr "$3" : '[0-9][0-9]*%$' >/dev/null; then
max=$(($ram * ${3%?} / 100))
else # error
max=$min # do not enlarge the partition
fi
if [ $max -ne -1 ] && [ $max -lt $min ]; then
max=$min
fi
case "$4" in # allow only valid file systems
ext2|ext3|ext4|xfs|jfs|linux-swap|fat16|fat32|hfs|ufs)
fs="$4"
;;
\$default_filesystem)
db_get partman/default_filesystem
fs="$RET"
;;
*)
fs=ext2
;;
esac
shift; shift; shift; shift
line="$min $factor $max $fs $*"
# Exclude partitions that have ...ignore set
if [ "$ignore" ] && [ "$(echo $line | grep "$ignore")" ]; then
line=
continue
fi
# Exclude partitions that are only for a different
# disk label. The $PWD check avoids problems when
# running from older versions of partman-auto-lvm,
# where we weren't in a subdirectory of $DEVICES
# while decoding the recipe; we preserve it in case
# of custom code with the same problem.
iflabel="$(echo $line | sed -n 's/.*\$iflabel{ \([^}]*\) }.*/\1/p')"
if [ "$iflabel" ]; then
if [ "${PWD#$DEVICES/}" = "$PWD" ]; then
line=''
continue
fi
open_dialog GET_LABEL_TYPE
read_line label
close_dialog
if [ "$iflabel" != "$label" ]; then
line=''
continue
fi
fi
# Check if we can reuse an existing partition.
if echo "$line" | grep -q '\$reusemethod{'; then
if [ "${PWD#$DEVICES/}" != "$PWD" ]; then
method="$(echo "$line" | sed -n 's/.* method{ \([^}]*\) }.*/\1/p')"
id="$(find_method "$method")"
if [ "$id" ]; then
line="$(echo "$line" | sed 's/\$reusemethod{[^}]*}/$reuse{ '"$id"' }/')"
fi
fi
fi
scheme="${scheme:+$scheme$NL}$line"
line=''
;;
*)
line="${line:+$line }$word"
;;
esac
done
}
foreach_partition () {
local - doing IFS pcount last partition
doing=$1
pcount=$(echo "$scheme" | wc -l)
last=no
IFS="$NL"
for partition in $scheme; do
restore_ifs
[ $pcount -gt 1 ] || last=yes
set -- $partition
eval "$doing"
pcount=$(($pcount - 1))
done
}
min_size () {
local size
size=0
foreach_partition '
size=$(($size + $1))'
echo $size
}
factor_sum () {
local factor
factor=0
foreach_partition '
factor=$(($factor + $2))'
echo $factor
}
partition_before () {
local num id size type fs path name result found
result=''
found=no
open_dialog PARTITIONS
while { read_line num id size type fs path name; [ "$id" ]; }; do
if [ "$id" = "$1" ]; then
found=yes
fi
if [ $found = no ]; then
result=$id
fi
done
close_dialog
echo $result
}
partition_after () {
local num id size type fs path name result found
result=''
found=no
open_dialog PARTITIONS
while { read_line num id size type fs path name; [ "$id" ]; }; do
if [ $found = yes ] && [ -z "$result" ]; then
result=$id
fi
if [ "$id" = "$1" ]; then
found=yes
fi
done
close_dialog
echo $result
}
pull_primary () {
primary=''
scheme_rest=''
foreach_partition '
if [ -z "$primary" ] && \
echo $* | grep '\''\$primary{'\'' >/dev/null; then
primary="$*"
else
scheme_rest="${scheme_rest:+$scheme_rest$NL}$*"
fi'
}
setup_partition () {
local id flags file line
id=$1; shift
while [ "$1" ]; do
case "$1" in
\$bootable{)
while [ "$1" != '}' ] && [ "$1" ]; do
shift
done
open_dialog GET_FLAGS $id
flags=$(read_paragraph)
close_dialog
open_dialog SET_FLAGS $id
write_line "$flags"
write_line boot
write_line NO_MORE
close_dialog
;;
\$default_filesystem{)
while [ "$1" != '}' ] && [ "$1" ]; do
shift
done
mkdir -p $id
db_get partman/default_filesystem
echo "$RET" >$id/filesystem
;;
\$*{)
while [ "$1" != '}' ] && [ "$1" ]; do
shift
done
;;
*{)
file=${1%?}
mkdir -p $id
case $file in
*/*)
mkdir -p $id/${file%/*}
;;
esac
>$id/$file
shift
line=''
while [ "$1" != '}' ] && [ "$1" ]; do
if [ "$1" = ';' ]; then
echo "$line" >>$id/$file
else
line="${line:+$line }$1"
fi
shift
done
echo "$line" >>$id/$file
esac
shift
done
return 0
}
get_recipedir () {
local archdetect arch sub recipedir
if type archdetect >/dev/null 2>&1; then
archdetect=$(archdetect)
else
archdetect=unknown/generic
fi
arch=${archdetect%/*}
sub=${archdetect#*/}
for recipedir in \
/lib/partman/recipes-$arch-$sub \
/lib/partman/recipes-$arch \
/lib/partman/recipes; do
if [ -d $recipedir ]; then
echo $recipedir
break
fi
done
}
filter_reused () {
scheme_reused=$(
foreach_partition '
if echo "$*" | grep -q '\''\$reuse{'\''; then
echo "$*"
fi'
)
scheme=$(
foreach_partition '
if ! echo "$*" | grep -q '\''\$reuse{'\''; then
echo "$*"
fi'
)
}
choose_recipe () {
local recipes recipedir free_size choices min_size type target
type=$1
target="$2"
free_size=$3
# Preseeding of recipes
db_get partman-auto/expert_recipe
if [ -n "$RET" ]; then
echo "$RET" > /tmp/expert_recipe
db_set partman-auto/expert_recipe_file /tmp/expert_recipe
fi
db_get partman-auto/expert_recipe_file
if [ ! -z "$RET" ] && [ -e "$RET" ]; then
recipe="$RET"
decode_recipe $recipe $type
filter_reused
min_size=$(min_size)
if [ $min_size -le $free_size ]; then
return 0
else
logger -t partman-auto \
"Available disk space ($free_size) too small for expert recipe ($min_size); skipping"
hookdir=/lib/partman/not-enough-space.d
if [ -d $hookdir ] ; then
for h in $hookdir/* ; do
if [ -x $h ] ; then
$h $recipe $free_size $min_size
fi
done
fi
fi
fi
recipedir=$(get_recipedir)
choices=''
default_recipe=no
db_get partman-auto/choose_recipe
old_default_recipe="$RET"
for recipe in $recipedir/*; do
[ -f "$recipe" ] || continue
decode_recipe $recipe $type
filter_reused
if [ $(min_size) -le $free_size ]; then
choices="${choices}${recipe}${TAB}${name}${NL}"
if [ "$default_recipe" = no ]; then
default_recipe="$recipe"
fi
if [ "$old_default_recipe" = "$name" ]; then
default_recipe="$recipe"
else
local base="$(basename "$recipe")"
if [ "$old_default_recipe" = "$base" ] || \
[ "$old_default_recipe" = "${base#[0-9][0-9]}" ]; then
default_recipe="$recipe"
fi
fi
fi
done
if [ -z "$choices" ]; then
db_input critical partman-auto/no_recipe || true
db_go || true # TODO handle backup right
return 1
fi
db_subst partman-auto/choose_recipe TARGET "$target"
debconf_select medium partman-auto/choose_recipe \
"$choices" "$default_recipe"
if [ $? = 255 ]; then
return 255
fi
recipe="$RET"
}
expand_scheme() {
# Filter out reused partitions first, as we don't want to take
# account of their size.
filter_reused
# Make factors small numbers so we can multiply on them.
# Also ensure that fact, max and fs are valid
# (Ofcourse in valid recipes they must be valid.)
factsum=$(($(factor_sum) - $(min_size)))
if [ $factsum -eq 0 ]; then
factsum=100
fi
scheme=$(
foreach_partition '
local min fact max fs
min=$1
fact=$((($2 - $min) * 100 / $factsum))
max=$3
fs=$4
case "$fs" in
ext2|ext3|ext4|linux-swap|fat16|fat32|hfs)
true
;;
*)
fs=ext2
;;
esac
shift; shift; shift; shift
echo $min $fact $max $fs $*'
)
oldscheme=''
while [ "$scheme" != "$oldscheme" ]; do
oldscheme="$scheme"
factsum=$(factor_sum)
unallocated=$(($free_size - $(min_size)))
if [ $unallocated -lt 0 ]; then
unallocated=0
fi
scheme=$(
foreach_partition '
local min fact max newmin
min=$1
fact=$2
max=$3
shift; shift; shift
if [ $factsum -eq 0 ]; then
newmin=$min
if [ $fact -lt 0 ]; then
fact=0
fi
else
newmin=$(($min + $unallocated * $fact / $factsum))
fi
if [ $max -ne -1 ] && [ $newmin -gt $max ]; then
echo $max 0 $max $*
elif [ $newmin -lt $min ]; then
echo $min 0 $min $*
else
echo $newmin $fact $max $*
fi'
)
done
}
clean_method() {
for device in $DEVICES/*; do
[ -d "$device" ] || continue
cd $device
open_dialog PARTITIONS
while { read_line num id size type fs path name; [ "$id" ]; }; do
[ -e $id/method ] || continue
mv $id/method $id/method-old
done
close_dialog
done
}
|