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 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139
|
. /usr/share/debconf/confmodule
NBSP=' '
TAB=' '
NL='
'
ORIGINAL_IFS="${ORIGINAL_IFS:-$IFS}"; export ORIGINAL_IFS
restore_ifs () {
IFS="$ORIGINAL_IFS"
}
dirname () {
local x
x="${1%/}"
echo "${x%/*}"
}
basename () {
local x
x="${1%$2}"
x="${x%/}"
echo "${x##*/}"
}
can_escape () {
type debconf-escape >/dev/null 2>&1 || return 1
db_capb backup
for cap in $RET; do
case $cap in
escape) return 0 ;;
esac
done
return 1
}
maybe_escape () {
local code saveret
text="$1"
shift
if can_escape; then
db_capb backup escape
code=0
"$@" "$(printf '%s' "$text" | debconf-escape -e)" || code=$?
saveret="$RET"
db_capb backup
RET="$saveret"
return $code
else
"$@" "$text"
fi
}
debconf_select () {
local IFS priority template choices default_choice default x u newchoices code
priority="$1"
template="$2"
choices="$3"
default_choice="$4"
default=''
# Debconf ignores spaces so we have to remove them from $choices
newchoices=''
IFS="$NL"
for x in $choices; do
local key option
restore_ifs
key=$(echo ${x%$TAB*})
# work around bug #243373
if [ "$TERM" = xterm -o "$TERM" = bterm ]; then
debconf_select_lead="$NBSP"
else
debconf_select_lead="> "
fi
option=$(echo "${x#*$TAB}" | sed "s/ *\$//g; s/^ /$debconf_select_lead/g")
newchoices="${newchoices:+${newchoices}${NL}}${key}${TAB}${option}"
if [ "$key" = "$default_choice" ]; then
default="$option"
fi
done
choices="$newchoices"
u=''
IFS="$NL"
# escape the commas and leading whitespace but keep them unescaped
# in $choices
for x in $choices; do
u="$u, `echo ${x#*$TAB} | sed 's/,/\\\\,/g; s/^ /\\\\ /'`"
done
u=${u#, }
restore_ifs
# TODO: This can be preseeded without having to use translated
# values (which are often inappropriate for preseeding across many
# machines due to including e.g. disk capacities) but it's nasty;
# you have to use runes like
# "20some_device__________/var/lib/partman/devices/=dev=sda". We
# could do with an abbreviated syntax.
if [ -n "$default" ]; then
db_set $template "$default"
fi
db_subst $template CHOICES "$u"
code=0
db_input $priority $template || code=1
db_go || return 255
db_get $template
IFS="$NL"
for x in $choices; do
if [ "$RET" = "${x#*$TAB}" ]; then
RET="${x%$TAB*}"
break
fi
done
restore_ifs
return $code
}
menudir_default_choice () {
printf "%s__________%s\n" "$(basename $1/??$2)" "$3" > $1/default_choice
}
ask_user () {
local IFS dir template priority default choices plugin name option
dir="$1"; shift
template=$(cat $dir/question)
priority=$(cat $dir/priority)
if [ -f $dir/default_choice ]; then
default=$(cat $dir/default_choice)
else
default=""
fi
choices=$(
for plugin in $dir/*; do
[ -d $plugin ] || continue
name=$(basename $plugin)
IFS="$NL"
for option in $($plugin/choices "$@"); do
printf "%s__________%s\n" $name "$option"
done
restore_ifs
done
)
code=0
debconf_select $priority $template "$choices" "$default" || code=$?
if [ $code -ge 100 ]; then return 255; fi
echo "$RET" >$dir/default_choice
$dir/${RET%__________*}/do_option ${RET#*__________} "$@" || return $?
return 0
}
partition_tree_choices () {
local IFS
local whitespace_hack=""
for dev in $DEVICES/*; do
[ -d $dev ] || continue
printf "%s//\t%s\n" $dev "$(device_name $dev)" # GETTEXT?
cd $dev
open_dialog PARTITIONS
partitions="$(read_paragraph)"
close_dialog
IFS="$TAB"
echo "$partitions" |
while { read num id size type fs path name; [ "$id" ]; }; do
part=${dev}/$id
[ -f $part/view ] || continue
printf "%s//%s\t %s\n" "$dev" "$id" $(cat $part/view)
done
restore_ifs
done | while read line; do
# A hack to make sure each line in the table is unique and
# selectable by debconf -- pad lines with varying amounts of
# whitespace.
whitespace_hack="$NBSP$whitespace_hack"
echo "$line$whitespace_hack"
done
}
longint_le () {
local x y
# remove the leading 0
x=$(expr "$1" : '0*\(.*\)')
y=$(expr "$2" : '0*\(.*\)')
if [ ${#x} -lt ${#y} ]; then
return 0
elif [ ${#x} -gt ${#y} ]; then
return 1
elif [ "$x" = "$y" ]; then
return 0
elif [ "$x" '<' "$y" ]; then
return 0
else
return 1
fi
}
longint2human () {
local longint suffix bytes int frac deci
# fallback value for $deci:
deci="${deci:-.}"
case ${#1} in
1|2|3)
suffix=B
longint=${1}00
;;
4|5|6)
suffix=kB
longint=${1%?}
;;
7|8|9)
suffix=MB
longint=${1%????}
;;
10|11|12)
suffix=GB
longint=${1%???????}
;;
*)
suffix=TB
longint=${1%??????????}
;;
esac
longint=$(($longint + 5))
longint=${longint%?}
int=${longint%?}
frac=${longint#$int}
printf "%i%s%i %s\n" $int $deci $frac $suffix
}
human2longint () {
local human suffix int frac longint
set -- $*; human="$1$2$3$4$5" # without the spaces
human=${human%b} #remove last b
human=${human%B} #remove last B
suffix=${human#${human%?}} # the last symbol of $human
case $suffix in
k|K|m|M|g|G|t|T)
human=${human%$suffix}
;;
*)
suffix=''
;;
esac
int="${human%[.,]*}"
[ "$int" ] || int=0
frac=${human#$int}
frac="${frac#[.,]}0000" # to be sure there are at least 4 digits
frac=${frac%${frac#????}} # only the first 4 digits of $frac
longint=$(($int * 10000 + $frac))
case $suffix in
k|K)
longint=${longint%?}
;;
m|M)
longint=${longint}00
;;
g|G)
longint=${longint}00000
;;
t|T)
longint=${longint}00000000
;;
*) # no suffix:
# bytes
#longint=${longint%????}
#[ "$longint" ] || longint=0
# megabytes
longint=${longint}00
;;
esac
echo $longint
}
valid_human () {
local IFS patterns
patterns='[0-9][0-9]* *$
[0-9][0-9]* *[bB] *$
[0-9][0-9]* *[kKmMgGtT] *$
[0-9][0-9]* *[kKmMgGtT][bB] *$
[0-9]*[.,][0-9]* *$
[0-9]*[.,][0-9]* *[bB] *$
[0-9]*[.,][0-9]* *[kKmMgGtT] *$
[0-9]*[.,][0-9]* *[kKmMgGtT][bB] *$'
IFS="$NL"
for regex in $patterns; do
if expr "$1" : "$regex" >/dev/null; then return 0; fi
done
return 1
}
stop_parted_server () {
open_infifo
write_line "QUIT"
close_infifo
}
# Must call stop_parted_server before calling this.
restart_partman () {
initcount=`ls /lib/partman/init.d/* | wc -l`
db_progress START 0 $initcount partman/progress/init/title
for s in /lib/partman/init.d/*; do
if [ -x $s ]; then
base=$(basename $s | sed 's/[0-9]*//')
if ! db_progress INFO partman/progress/init/$base; then
db_progress INFO partman/progress/init/fallback
fi
if ! $s; then
db_progress STOP
exit 255
fi
fi
db_progress STEP 1
done
db_progress STOP
}
update_partition () {
local u
cd $1
open_dialog PARTITION_INFO $2
read_line part
close_dialog
[ "$part" ] || return 0
for u in /lib/partman/update.d/*; do
[ -x "$u" ] || continue
$u $1 $part
done
}
DEVICES=/var/lib/partman/devices
# 0, 1 and 2 are standard input, output and error.
# 3, 4 and 5 are used by cdebconf
# 6=infifo
# 7=outfifo
open_infifo() {
exec 6>/var/lib/partman/infifo
}
close_infifo() {
exec 6>&-
}
open_outfifo () {
exec 7</var/lib/partman/outfifo
}
close_outfifo () {
exec 7<&-
}
write_line () {
log IN: "$@"
echo "$@" >&6
}
read_line () {
read "$@" <&7
}
synchronise_with_server () {
exec 6>/var/lib/partman/stopfifo
exec 6>&-
}
read_paragraph () {
local line
while { read_line line; [ "$line" ]; }; do
log "paragraph: $line"
echo "$line"
done
}
read_list () {
local item list
list=''
while { read_line item; [ "$item" ]; }; do
log "option: $item"
if [ "$list" ]; then
list="$list, $item"
else
list="$item"
fi
done
echo "$list"
}
name_progress_bar () {
echo $1 >/var/lib/partman/progress_info
}
error_handler () {
local exception_type info state frac type priority message options skipped
while { read_line exception_type; [ "$exception_type" != OK ]; }; do
log error_handler: exception with type $exception_type
case "$exception_type" in
Timer)
if [ -f /var/lib/partman/progress_info ]; then
info=$(cat /var/lib/partman/progress_info)
else
info=partman/processing
fi
db_progress START 0 1000 partman/text/please_wait
db_progress INFO $info
while { read_line frac state; [ "$frac" != ready ]; }; do
if [ "$state" ]; then
db_subst $info STATE "$state"
db_progress INFO $info
fi
db_progress SET $frac
done
db_progress STOP
continue
;;
Information)
type='Information'
priority=medium
;;
Warning)
type='Warning!'
priority=high
;;
Error)
type='ERROR!!!'
priority=critical
;;
Fatal)
type='FATAL ERROR!!!'
priority=critical
;;
Bug)
type='A bug has been discovered!!!'
priority=critical
;;
No?Implementation)
type='Not yet implemented!'
priority=critical
;;
*)
type="??? $exception_type ???"
priority=critical
;;
esac
log error_handler: reading message
message=$(read_paragraph)
log error_handler: reading options
options=$(read_list)
db_subst partman/exception_handler TYPE "$type"
maybe_escape "$message" db_subst partman/exception_handler DESCRIPTION
db_subst partman/exception_handler CHOICES "$options"
if
expr "$options" : '.*,.*' >/dev/null \
&& db_input $priority partman/exception_handler
then
if db_go; then
db_get partman/exception_handler
write_line "$RET"
else
write_line "unhandled"
fi
else
db_subst partman/exception_handler_note TYPE "$type"
maybe_escape "$message" db_subst partman/exception_handler_note DESCRIPTION
db_input $priority partman/exception_handler_note || true
db_go || true
write_line "unhandled"
fi
done
rm -f /var/lib/partman/progress_info
}
open_dialog () {
command="$1"
shift
open_infifo
write_line "$command" "${PWD##*/}" "$@"
open_outfifo
error_handler
}
close_dialog () {
close_outfifo
close_infifo
exec 6>/var/lib/partman/stopfifo
exec 6>&-
exec 7>/var/lib/partman/outfifo
exec 7>&-
exec 6>/var/lib/partman/stopfifo
exec 6>&-
exec 6</var/lib/partman/infifo
cat <&6 >/dev/null
exec 6<&-
exec 6>/var/lib/partman/stopfifo
exec 6>&-
}
log () {
local program
echo $0: "$@" >>/var/log/partman
}
####################################################################
# The functions below are not yet documented
####################################################################
# TODO: this should not be global
humandev () {
local host bus target part lun idenum targtype scsinum linux
case "$1" in
/dev/ide/host*/bus[01]/target[01]/lun0/disc)
host=`echo $1 | sed 's,/dev/ide/host\(.*\)/bus.*/target[01]/lun0/disc,\1,'`
bus=`echo $1 | sed 's,/dev/ide/host.*/bus\(.*\)/target[01]/lun0/disc,\1,'`
target=`echo $1 | sed 's,/dev/ide/host.*/bus.*/target\([01]\)/lun0/disc,\1,'`
idenum=$((2 * $host + $bus + 1))
linux=$(mapdevfs $1)
linux=${linux#/dev/}
if [ "$target" = 0 ]; then
db_metaget partman/text/ide_master_disk description
printf "$RET" ${idenum} ${linux}
else
db_metaget partman/text/ide_slave_disk description
printf "$RET" ${idenum} ${linux}
fi
;;
# Some drivers advertise the disk as "part", workaround for #404950
/dev/ide/host*/bus[01]/target[01]/lun0/part)
host=`echo $1 | sed 's,/dev/ide/host\(.*\)/bus.*/target[01]/lun0/part,\1,'`
bus=`echo $1 | sed 's,/dev/ide/host.*/bus\(.*\)/target[01]/lun0/part,\1,'`
target=`echo $1 | sed 's,/dev/ide/host.*/bus.*/target\([01]\)/lun0/part,\1,'`
idenum=$((2 * $host + $bus + 1))
linux=$(mapdevfs $1)
linux=${linux#/dev/}
if [ "$target" = 0 ]; then
db_metaget partman/text/ide_master_disk description
printf "$RET" ${idenum} ${linux}
else
db_metaget partman/text/ide_slave_disk description
printf "$RET" ${idenum} ${linux}
fi
;;
/dev/ide/host*/bus[01]/target[01]/lun0/part*)
host=`echo $1 | sed 's,/dev/ide/host\(.*\)/bus.*/target[01]/lun0/part.*,\1,'`
bus=`echo $1 | sed 's,/dev/ide/host.*/bus\(.*\)/target[01]/lun0/part.*,\1,'`
target=`echo $1 | sed 's,/dev/ide/host.*/bus.*/target\([01]\)/lun0/part.*,\1,'`
part=`echo $1 | sed 's,/dev/ide/host.*/bus.*/target[01]/lun0/part\(.*\),\1,'`
idenum=$((2 * $host + $bus + 1))
linux=$(mapdevfs $1)
linux=${linux#/dev/}
if [ "$target" = 0 ]; then
db_metaget partman/text/ide_master_partition description
printf "$RET" ${idenum} "$part" "${linux}"
else
db_metaget partman/text/ide_slave_partition description
printf "$RET" ${idenum} "$part" "${linux}"
fi
;;
/dev/hd[a-z])
drive=$(printf '%d' "'$(echo $1 | sed 's,^/dev/hd\([a-z]\).*,\1,')")
drive=$(($drive - 97))
linux=${1#/dev/}
if [ "$(($drive % 2))" = 0 ]; then
db_metaget partman/text/ide_master_disk description
else
db_metaget partman/text/ide_slave_disk description
fi
printf "$RET" "$(($drive / 2 + 1))" "$linux"
;;
/dev/hd[a-z][0-9]*)
drive=$(printf '%d' "'$(echo $1 | sed 's,^/dev/hd\([a-z]\).*,\1,')")
drive=$(($drive - 97))
part=$(echo $1 | sed 's,^/dev/hd[a-z]\([0-9][0-9]*\).*,\1,')
linux=${1#/dev/}
if [ "$(($drive % 2))" = 0 ]; then
db_metaget partman/text/ide_master_partition description
else
db_metaget partman/text/ide_slave_partition description
fi
printf "$RET" "$(($drive / 2 + 1))" "$part" "$linux"
;;
/dev/scsi/host*/bus*/target*/lun*/disc)
host=`echo $1 | sed 's,/dev/scsi/host\(.*\)/bus.*/target.*/lun.*/disc,\1,'`
bus=`echo $1 | sed 's,/dev/scsi/host.*/bus\(.*\)/target.*/lun.*/disc,\1,'`
target=`echo $1 | sed 's,/dev/scsi/host.*/bus.*/target\(.*\)/lun.*/disc,\1,'`
lun=`echo $1 | sed 's,/dev/scsi/host.*/bus.*/target.*/lun\(.*\)/disc,\1,'`
scsinum=$(($host + 1))
linux=$(mapdevfs $1)
linux=${linux#/dev/}
db_metaget partman/text/scsi_disk description
printf "$RET" ${scsinum} ${bus} ${target} ${lun} ${linux}
;;
/dev/scsi/host*/bus*/target*/lun*/part*)
host=`echo $1 | sed 's,/dev/scsi/host\(.*\)/bus.*/target.*/lun.*/part.*,\1,'`
bus=`echo $1 | sed 's,/dev/scsi/host.*/bus\(.*\)/target.*/lun.*/part.*,\1,'`
target=`echo $1 | sed 's,/dev/scsi/host.*/bus.*/target\(.*\)/lun.*/part.*,\1,'`
lun=`echo $1 | sed 's,/dev/scsi/host.*/bus.*/target.*/lun\(.*\)/part.*,\1,'`
part=`echo $1 | sed 's,/dev/scsi/host.*/bus.*/target.*/lun.*/part\(.*\),\1,'`
scsinum=$(($host + 1))
linux=$(mapdevfs $1)
linux=${linux#/dev/}
db_metaget partman/text/scsi_partition description
printf "$RET" ${scsinum} ${bus} ${target} ${lun} ${part} ${linux}
;;
/dev/sd[a-z]|/dev/sd[a-z][a-z])
disk="${1#/dev/}"
if [ -h "/sys/block/$disk/device" ]; then
bus_id="$(basename "$(readlink "/sys/block/$disk/device")")"
host="${bus_id%%:*}"
bus_id="${bus_id#*:}"
bus="${bus_id%%:*}"
bus_id="${bus_id#*:}"
target="${bus_id%%:*}"
lun="${bus_id#*:}"
scsinum="$(($host + 1))"
db_metaget partman/text/scsi_disk description
printf "$RET" "$scsinum" "$bus" "$target" "$lun" "$disk"
else
# Can't figure out host/bus/target/lun without sysfs, but
# never mind; if we don't have sysfs then we're probably on
# 2.4 and devfs anyway.
echo "$1"
fi
;;
/dev/sd[a-z][0-9]*|/dev/sd[a-z][a-z][0-9]*)
part="${1#/dev/}"
disk="${part%%[0-9]*}"
part="${part#$disk}"
if [ -h "/sys/block/$disk/device" ]; then
bus_id="$(basename "$(readlink "/sys/block/$disk/device")")"
host="${bus_id%%:*}"
bus_id="${bus_id#*:}"
bus="${bus_id%%:*}"
bus_id="${bus_id#*:}"
target="${bus_id%%:*}"
lun="${bus_id#*:}"
scsinum="$(($host + 1))"
db_metaget partman/text/scsi_partition description
printf "$RET" "$scsinum" "$bus" "$target" "$lun" "$part" "$disk"
else
# Can't figure out host/bus/target/lun without sysfs, but
# never mind; if we don't have sysfs then we're probably on
# 2.4 and devfs anyway.
echo "$1"
fi
;;
/dev/cciss/host*|/dev/cciss/disc*)
# /dev/cciss/hostN/targetM/disc is 2.6 devfs form
# /dev/cciss/discM/disk seems to be 2.4 devfs form
line=`echo $1 | sed 's,/dev/cciss/\([a-z]*\)\([0-9]*\)/\(.*\),\1 \2 \3,'`
controller=`echo "$line" | cut -d" " -f2`
host=`echo "$line" | cut -d" " -f1`
line=`echo "$line" | cut -d" " -f3`
if [ "$host" = host ] ; then
line=`echo "$line" | sed 's,target\([0-9]*\)/\([a-z]*\)\(.*\),\1 \2 \3,'`
lun=`echo "$line" | cut -d" " -f1`
disc=`echo "$line" | cut -d" " -f2`
part=`echo "$line" | cut -d" " -f3`
else
line=`echo "$line" | sed 's,disc\([0-9]*\)/\([a-z]*\)\(.*\),\1 \2 \3,'`
lun=`echo "$line" | cut -d" " -f1`
if [ "$lun" > 15 ] ; then
controller=$(($lun / 16))
lun=$(($lun % 16))
else
controller=0
fi
disc=`echo "$line" | cut -d" " -f2`
part=`echo "$line" | cut -d" " -f3`
fi
linux=$(mapdevfs $1)
linux=${linux#/dev/}
if [ "$disc" = disc ] ; then
db_metaget partman/text/scsi_disk description
printf "$RET" ".CCISS" "-" ${controller} ${lun} ${linux}
else
db_metaget partman/text/scsi_partition description
printf "$RET" ".CCISS" "-" ${controller} ${lun} ${part} ${linux}
fi
;;
/dev/cciss/c*d*)
# It would be a lot easier to parse the /sys/block/*/device
# symlink. Unfortunately, unlike other block devices, this
# doesn't seem to exist in this case, so we just have to live
# with parsing the device name (note: added in upstream 2.6.18).
controller="$(echo "$1" | sed 's,/dev/cciss/c\([0-9]*\).*,\1,')"
lun="$(echo "$1" | sed 's,/dev/cciss/c[0-9]*d\([0-9]*\).*,\1,')"
case $1 in
/dev/cciss/c*d*p*)
# partition
part="$(echo "$1" | sed 's,/dev/cciss/c[0-9]*d[0-9]*p\([0-9]*\).*,\1,')"
;;
*)
part=
;;
esac
linux="$(mapdevfs "$1")"
linux="${linux#/dev/}"
if [ -z "$part" ]; then
db_metaget partman/text/scsi_disk description
printf "$RET" ".CCISS" "-" "$controller" "$lun" "$linux"
else
db_metaget partman/text/scsi_partition description
printf "$RET" ".CCISS" "-" "$controller" "$lun" "$part" "$linux"
fi
;;
/dev/md/*)
device=`echo "$1" | sed -e "s/.*md\/\?\(.*\)/\1/"`
type=`grep "^md${device}[ :]" /proc/mdstat | sed -e "s/^.* : active raid\([[:alnum:]]\).*/\1/"`
db_metaget partman/text/raid_device description
printf "$RET" ${type} ${device}
;;
/dev/mapper/*)
# First of all, check if this is a dm-crypt device
type=""
if [ -x /sbin/dmsetup ]; then
type=$(/sbin/dmsetup table "$1" | head -n 1 | cut -d " " -f3)
fi
if [ "$type" = crypt ]; then
mapping=${1#/dev/mapper/}
db_metaget partman/text/dmcrypt_volume description
printf "$RET" $mapping
else
# LVM2 devices are found as /dev/mapper/<vg>-<lv>. If the vg
# or lv contains a dash, the dash is replaced by two dashes.
# In order to decode this into vg and lv, first find the
# occurance of one single dash to split the string into vg and
# lv, and then replace two dashes next to each other with one.
vglv=${1#/dev/mapper/}
vglv=`echo "$vglv" | sed 's/\([^-]\)-\([^-]\)/\1 \2/; s/--/-/g'`
vg=`echo "$vglv" | cut -d" " -f1`
lv=`echo "$vglv" | cut -d" " -f2`
db_metaget partman/text/lvm_lv description
printf "$RET" $vg $lv
fi
;;
/dev/loop/*|/dev/loop*)
n=${1#/dev/loop}
n=${n#/}
db_metaget partman/text/loopback description
printf "$RET" $n
;;
# DASD partition, classic
/dev/dasd*[0-9]*)
part="${1#/dev/}"
disk="${part%%[0-9]*}"
part="${part#$disk}"
humandev_dasd_partition /sys/block/$disk/$(readlink /sys/block/$disk/device) $part
;;
# DASD disk, classic
/dev/dasd*)
disk="${1#/dev/}"
humandev_dasd_disk /sys/block/$disk/$(readlink /sys/block/$disk/device)
;;
*)
# Check if it's an LVM1 device
vg=`echo "$1" | sed -e 's,/dev/\([^/]\+\).*,\1,'`
lv=`echo "$1" | sed -e 's,/dev/[^/]\+/,,'`
if [ -e "/proc/lvm/VGs/$vg/LVs/$lv" ] ; then
db_metaget partman/text/lvm_lv description
printf "$RET" $vg $lv
else
echo "$1"
fi
;;
esac
}
humandev_dasd_disk () {
dev=${1##*/}
discipline=$(cat $1/discipline)
db_metaget partman/text/dasd_disk description
printf "$RET" "$dev" "$discipline"
}
humandev_dasd_partition () {
dev=${1##*/}
discipline=$(cat $1/discipline)
db_metaget partman/text/dasd_partition description
printf "$RET" "$dev" "$discipline" "$part"
}
device_name () {
cd $1
printf "%s - %s %s" "$(humandev $(cat device))" "$(longint2human $(cat size))" "$(cat model)"
}
enable_swap () {
local swaps dev num id size type fs path name method
local startdir="$(pwd)"
# do swapon only when we will be able to swapoff afterwards
[ -f /proc/swaps ] || return 0
swaps=''
for dev in $DEVICES/*; do
[ -d $dev ] || continue
cd $dev
open_dialog PARTITIONS
while { read_line num id size type fs path name; [ "$id" ]; }; do
[ $fs != free ] || continue
[ -f "$id/method" ] || continue
method=$(cat $id/method)
if [ "$method" = swap ]; then
swaps="$swaps $path"
fi
done
close_dialog
done
for path in $swaps; do
if ! grep -q "$path" /proc/swaps; then
swapon $path 2>/dev/null || true
fi
done
cd "$startdir"
}
disable_swap () {
[ -f /proc/swaps ] || return 0
grep '^/dev' /proc/swaps \
| while read path x; do
swapoff $path
done
}
default_disk_label () {
if [ -x /bin/archdetect ]; then
archdetect=$(archdetect)
else
archdetect=unknown/generic
fi
arch=${archdetect%/*}
sub=${archdetect#*/}
case "$arch" in
alpha)
# Load srm_env.o if we can; this should fail on ARC-based systems.
(modprobe srm_env || true) 2> /dev/null
if [ -f /proc/srm_environment/named_variables/booted_dev ]; then
# Have SRM, so need BSD disklabels
echo bsd
else
echo msdos
fi;;
arm|armel)
case "$sub" in
iop32x)
echo msdos;;
iop33x)
echo msdos;;
ixp4xx)
echo msdos;;
riscstation)
echo msdos;;
netwinder)
echo msdos;;
ads)
echo msdos;;
versatile)
echo msdos;;
*)
echo UNKNOWN;;
esac;;
armeb)
case "$sub" in
ixp4xx)
echo msdos;;
*)
echo UNKNOWN;;
esac;;
amd64)
echo msdos;;
hppa)
echo msdos;;
ia64)
echo gpt;;
i386)
echo msdos;;
m68k)
case "$sub" in
amiga)
echo amiga;;
atari)
echo UNSUPPORTED;; # atari is unsupported by parted
mac)
echo mac;;
*vme*)
echo msdos;;
q40)
echo UNSUPPORTED;; # (same as atari)
sun*)
echo sun;;
*)
echo UNKNOWN;;
esac;;
mips)
case "$sub" in
# Indy
r4k-ip22 | r5k-ip22 | r8k-ip26 | r10k-ip28)
echo dvh;;
# Origin
r10k-ip27 | r12k-ip27)
echo dvh;;
# O2
r5k-ip32 | r10k-ip32 | r12k-ip32)
echo dvh;;
# Broadcom SB1 evaluation boards
sb1-bcm91250a | sb1a-bcm91480b)
echo msdos;;
qemu-mips32)
echo msdos;;
*)
echo UNKNOWN;;
esac;;
mipsel)
case "$sub" in
# DECstation
r3k-kn02)
echo msdos;;
r4k-kn04)
echo msdos;;
# Broadcom SB1 evaluation boards
sb1-bcm91250a | sb1a-bcm91480b)
echo msdos;;
cobalt)
echo msdos;;
bcm947xx)
echo msdos;;
qemu-mips32)
echo msdos;;
*)
echo UNKNOWN;;
esac;;
powerpc)
case "$sub" in
apus)
echo amiga;;
amiga)
echo amiga;;
chrp)
echo msdos;;
chrp_rs6k|chrp_ibm)
echo msdos;;
chrp_pegasos)
echo amiga;;
prep)
echo msdos;;
powermac_newworld)
echo mac;;
powermac_oldworld)
echo mac;;
*)
echo UNKNOWN;;
esac;;
s390)
echo msdos;;
sparc)
echo sun;;
*)
echo UNKNOWN;;
esac
}
# Lock a device or partition against further modifications
partman_lock_unit() {
local device message dev testdev
device="$1"
message="$2"
for dev in $DEVICES/*; do
[ -d "$dev" ] || continue
cd $dev
# First check if we should lock a device
if [ -e "device" ]; then
testdev=$(mapdevfs $(cat device))
if [ "$device" = "$testdev" ]; then
echo "$message" > locked
return 0
fi
fi
# Second check if we should lock a partition
open_dialog PARTITIONS
while { read_line num id size type fs path name; [ "$id" ]; }; do
testdev=$(mapdevfs $path)
if [ "$device" = "$testdev" ]; then
echo "$message" > $id/locked
fi
done
close_dialog
done
}
# Unlock a device or partition to allow further modifications
partman_unlock_unit() {
local device dev testdev
device="$1"
for dev in $DEVICES/*; do
[ -d "$dev" ] || continue
cd $dev
# First check if we should unlock a device
if [ -e "device" ]; then
testdev=$(mapdevfs $(cat device))
if [ "$device" = "$testdev" ]; then
rm -f locked
return 0
fi
fi
# Second check if we should unlock a partition
open_dialog PARTITIONS
while { read_line num id size type fs path name; [ "$id" ]; }; do
testdev=$(mapdevfs $path)
if [ "$device" = "$testdev" ]; then
rm -f $id/locked
fi
done
close_dialog
done
}
# List the changes that are about to be committed and let the user confirm first
confirm_changes () {
local template dev x part partitions num id size type fs path name filesystem partdesc partitems items formatted_previously
template="$1"
# Compute the changes we are going to do
partitems=''
items=''
formatted_previously=no
for dev in $DEVICES/*; do
[ -d "$dev" ] || continue
cd $dev
open_dialog IS_CHANGED
read_line x
close_dialog
if [ "$x" = yes ]; then
partitems="${partitems} $(humandev $(cat device))
"
fi
partitions=
open_dialog PARTITIONS
while { read_line num id size type fs path name; [ "$id" ]; }; do
[ "$fs" != free ] || continue
partitions="$partitions $id,$num"
done
close_dialog
for part in $partitions; do
id=${part%,*}
num=${part#*,}
[ -f $id/method -a -f $id/format \
-a -f $id/visual_filesystem ] || continue
# if no filesystem (e.g. swap) should either be not
# formatted or formatted before the method is specified
[ -f $id/filesystem -o ! -f $id/formatted \
-o $id/formatted -ot $id/method ] || continue
# if it is already formatted filesystem it must be formatted
# before the method or filesystem is specified
[ ! -f $id/filesystem -o ! -f $id/formatted \
-o $id/formatted -ot $id/method \
-o $id/formatted -ot $id/filesystem ] ||
{
formatted_previously=yes
continue
}
filesystem=$(cat $id/visual_filesystem)
# Special case d-m devices to use a different description
if cat device | grep -q "/dev/mapper" ; then
partdesc="partman/text/confirm_unpartitioned_item"
else
partdesc="partman/text/confirm_item"
db_subst $partdesc PARTITION "$num"
fi
db_subst $partdesc TYPE "$filesystem"
db_subst $partdesc DEVICE $(humandev $(cat device))
db_metaget $partdesc description
items="${items} ${RET}
"
done
done
if [ "$items" ]; then
db_metaget partman/text/confirm_item_header description
items="$RET
$items"
fi
if [ "$partitems" ]; then
db_metaget partman/text/confirm_partitem_header description
partitems="$RET
$partitems"
fi
if [ "$partitems$items" ]; then
if [ -z "$items" ]; then
x="$partitems"
elif [ -z "$partitems" ]; then
x="$items"
else
x="$partitems
$items"
fi
maybe_escape "$x" db_subst $template/confirm ITEMS
db_input critical $template/confirm
db_go || true
db_get $template/confirm
if [ "$RET" = false ]; then
db_reset $template/confirm
return 1
else
db_reset $template/confirm
return 0
fi
else
if [ "$formatted_previously" = no ]; then
db_input critical $template/confirm_nochanges
db_go || true
db_get $template/confirm_nochanges
if [ "$RET" = false ]; then
db_reset $template/confirm_nochanges
return 1
else
db_reset $template/confirm_nochanges
return 0
fi
else
return 0
fi
fi
}
log '*******************************************************'
# Local Variables:
# coding: utf-8
# End:
|