summaryrefslogtreecommitdiff
path: root/src/core/libs/lib-ui-interactive.sh
blob: fdf0fb6063cf1a5abab74cd88544946ed9fb724d (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
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
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
#!/bin/bash
# A library which allows you to do backend stuff by using user interfaces

# Global Variables
# Be sure to override these if you have the configuration file elsewhere
grubmenu="/boot/grub/menu.lst"
syslinuxmenu="/boot/syslinux/syslinux.cfg"

# check if a worker has completed successfully. if not -> tell user he must do it + return 1
# if ok -> don't warn anything and return 0
check_depend ()
{
	[ -z "$1" -o -z "$2" ] && die_error "Use the check_depend function like this: check_depend <type> <name> with type=phase/worker"
	[ "$1" != phase -a "$1" != worker ] && die_error "check_depend's first argument must be a valid type (phase/worker)"

	ended_ok $1 $2 && return 0
	subject="$1 $2"
	title=$1_$2_title
	[ -n "${!title}" ] && subject="'${!title}'"
	show_warning "Cannot Continue.  Going back to $2" "You must do $subject first before going here!." && return 1
}

# populate config and data files with what we know about the target system
# note that you could run this function multiple times (i.e. you change some stuff and then come back),
# all logic in here is written to do the right thing in that case
preconfigure_target () {
	local failed=()
	target_configure_initial_locale || failed+=('initial locale')
	target_configure_initial_keymap_font || failed+=('keymap/font setting')
	target_configure_fstab || failed+=('fstab configuration')
	target_configure_network || failed+=('network config export')
	target_configure_mirrorlist || failed+=('mirrorlist configuration')
	target_configure_time || failed+=('time configuration')
	target_configure_initcpio || failed+=('initcpio configuration')
	# TODO: we should probably update /etc/crypttab if the user has non-/ encrypted disks.

	[ ${#failed[@]} -gt 0 ] && warn_failed 'Preconfigure' "${failed[@]}" && return 1
	return 0
}

# do some target configuration steps automatically, after user decided he configured his system.
# as usual, this function is okay with being called multiple times
postconfigure_target () {
	local failed=()
	target_run_mkinitcpio || failed+=('mkinitcpio creation')
	target_locale-gen || failed+=('locale generation')
	target_localtime || failed+=('localtime copying')
	[ ${#failed[@]} -gt 0 ] && warn_failed 'Postconfigure' "${failed[@]}" && return 1
	return 0
}

interactive_configure_system()
{
	seteditor || return 1

	if ! preconfigure_target
	then
		ask_yesno "Do you want to continue?" no || return 1
	fi

	local default=no
	local helptext
	while true; do
		helptext="\nNote that if you want to change any file not listed here (unlikely) you can go to another tty and update ${var_TARGET_DIR}/etc/<filename> yourself"
		grep -q '^/dev/mapper' $TMP_FSTAB && helptext="$helptext\n/dev/mapper/ users: Pay attention to HOOKS in mkinitcpio.conf"
		list=(
			"/etc/rc.conf"                  "System Config"
			"/etc/fstab"                    "Filesystem Mountpoints"
			"/etc/mkinitcpio.conf"          "Initramfs Config"
		)
		grep -q dm_crypt $TMP_BLOCKDEVICES && list+=("/etc/crypttab" "Decryption for non-root encrypted disks") # this simple grep will give some false positives. but oh well.
		[ -f ${var_TARGET_DIR}/etc/profile.d/proxy.sh ] && list+=("/etc/profile.d/proxy.sh" "Proxy setings")
		list+=(
			"/etc/modprobe.d/modprobe.conf" "Kernel Modules"
			"/etc/resolv.conf"              "DNS Servers"
			"/etc/hosts"                    "Network Hosts"
			"/etc/locale.gen"               "Glibc Locales"
			"/etc/pacman.conf"              "Pacman.conf"
			"$var_MIRRORLIST"               "Pacman Mirror List"
			"Root-Password"                 "Set the root password"
			"Done"                          "Return to Main Menu"
		)
		ask_option $default "Configuration" "$helptext" required "${list[@]}" || return 1
		FILE=$ANSWER_OPTION
		default=$FILE
		if [ "$FILE" = "Done" ]; then       # exit
			break
		elif [ "$FILE" = "Root-Password" ]; then            # non-file
			while true; do
				chroot ${var_TARGET_DIR} passwd root && break
			done
		else                                                #regular file
			$EDITOR ${var_TARGET_DIR}${FILE}
		fi

		# if user edited /etc/rc.conf, add the hostname to /etc/hosts if it's not already there.
		# note that if the user edits rc.conf several times to change the hostname more then once, we will add them all to /etc/hosts.  this is not perfect, but to avoid this, too much code would be required (feel free to prove me wrong :))
		# we could maybe do this just once after the user is really done here, but then he doesn't get to see the updated file while being in this menu...
		if [ "$FILE" = "/etc/rc.conf" ]
		then
			HOSTNAME=`sed -n '/^HOSTNAME/s/HOSTNAME=//p' ${var_TARGET_DIR}${FILE} | sed 's/"//g'`
			if ! grep '127\.0\.0\.1' ${var_TARGET_DIR}/etc/hosts | grep -q "$HOSTNAME"
			then
				sed -i "s/127\.0\.0\.1.*/& $HOSTNAME/" ${var_TARGET_DIR}/etc/hosts
			fi
		fi
	done

	# temporary backup files are not useful anymore past this point.
	find "${var_TARGET_DIR}/etc/" -name '*~' -delete &>/dev/null
	if ! postconfigure_target
	then
		ask_yesno "Do you want to continue?" no || return 1
	fi

	return 0
}


interactive_timezone () {
	ask_timezone || return 1
	TIMEZONE=$ANSWER_TIMEZONE
	return 0
}

# this should be executed, whether the user changed $TIMEZONE or not
copy_timezone_file () {
	if [ -z "$TIMEZONE" ]
	then
		debug UI-INTERACTIVE "\$TIMEZONE is empty, not creating/updating /etc/localtime"
		return 0
	fi
	debug UI-INTERACTIVE "Setting Timezone to $TIMEZONE"
	local file="/usr/share/zoneinfo/$TIMEZONE"
	[ -e "$file" ] || die_error "No such timezone file: $file, did you choose a non-existing timezone?"
	# This changes probably also the systemtime (UTC->$TIMEZONE)!
	# localtime users will have a false time after that!
	/bin/rm -f /etc/localtime || return 1
	/bin/cp "/usr/share/zoneinfo/$TIMEZONE" /etc/localtime || return 1
	return 0
}


interactive_time () {
	# utc or localtime?
	ask_option UTC "Clock configuration" "Is your hardware clock in UTC or local time? UTC is recommended" required "UTC" - "localtime" - || return 1
	HARDWARECLOCK=$ANSWER_OPTION
	# To avoid a false time for localtime users after above
	# we must re-read the hwclock value again, but now into the
	# correct timezone.
	if [ "$HARDWARECLOCK" == "localtime" ]
	then
		dohwclock $HARDWARECLOCK hctosys || return $?
	fi

	timeset=
	local default=no
	while true; do
		current=$(date)
		#TODO: only propose if network ok
		EXTRA=()
		type ntpdate &>/dev/null && EXTRA=('ntp' 'Set time and date using ntp')

		ask_option $default "Date/time configuration" "According to your settings and your hardwareclock, the date should now be $current.  If this is incorrect, you can correct this now" required \
		"return" "Looks good. back to main menu" "${EXTRA[@]}" "manual" "Set time and date manually" || return 1
		if [ "$ANSWER_OPTION" = ntp ]; then
			inform "Syncing clock with internet pool ..."
			if ntpdate pool.ntp.org >/dev/null; then
				notify "Synced clock with internet pool successfully."
				dohwclock $HARDWARECLOCK systohc && default=3 || return $?
				timeset=1
			else
				show_warning 'Ntp failure' "An error has occured, time was not changed!"
				timeset=0
			fi
		fi
		if [ "$ANSWER_OPTION" = manual ]; then
			ask_datetime || continue
			if date -s "$ANSWER_DATETIME"; then
				dohwclock $HARDWARECLOCK systohc && default=3 || return $?
				timeset=1
			else
				show_warning "Date/time setting failed" "Something went wrong when doing date -s $ANSWER_DATETIME" 
				timeset=0
			fi
		fi
		[ "$ANSWER_OPTION" = return ] && timeset=1 && break
	done
	[ "$timeset" = '0' ] && return 1
	return 0
}


interactive_prepare_disks ()
{
	DONE=0
	local ret=1 # 1 means unsuccessful. 0 for ok
	DISK_CONFIG_TYPE=
	[ "$BLOCK_ROLLBACK_USELESS" = "0" ] && show_warning "Rollback may be needed" "It seems you already went here.  You should probably rollback previous changes before reformatting, otherwise stuff will probably fail"
	local default=no
	while [ "$DONE" = "0" ]
	do
		rollbackstr=" (you don't need to do this)"
		[ "$BLOCK_ROLLBACK_USELESS" = "0" ] && rollbackstr=" (this will revert your last changes)"

		ask_option $default "Prepare Hard Drive" '' required \
			"1" "Auto-Prepare (erases an ENTIRE hard drive and sets up partitions, filesystems and mountpoints)" \
			"2" "Manually Partition Hard Drives" \
			"3" "Manually Configure block devices, filesystems and mountpoints" \
			"4" "Rollback last filesystem changes$rollbackstr" \
			"5" "Return to Main Menu" || return 1

		case $ANSWER_OPTION in
			"1")
				[ "$BLOCK_ROLLBACK_USELESS" = "0" ] && ask_yesno "You should probably rollback your last changes first, otherwise this will probably fail.  Go back to menu to do rollback?" && default=4 && continue
				interactive_autoprepare && default=5 && ret=0 && DISK_CONFIG_TYPE=auto;;
			"2")
				[ "$BLOCK_ROLLBACK_USELESS" = "0" ] && ask_yesno "You should probably rollback your last changes first, otherwise this will probably fail.  Go back to menu to do rollback?" && default=4 && continue
				interactive_partition && ret=1 && default=3 && DISK_CONFIG_TYPE=manual
				;;
			"3")
				[ "$BLOCK_ROLLBACK_USELESS" = "0" ] && ask_yesno "You should probably rollback your last changes first, otherwise this will probably fail.  Go back to menu to do rollback?" && default=4 && continue
				interactive_filesystems && ret=0 && default=5 && DISK_CONFIG_TYPE=manual
				;;
			"4")
				interactive_rollback_filesystems;;
			"5")
				DONE=1 ;;
		esac
	done
	return $ret
}

maybe_interactive_rollback_filesystems ()
{
	[ "$BLOCK_ROLLBACK_USELESS" = "1" ] && return 0
	if ask_yesno "Do you want to rollback your filesystem changes?"
	then
		interactive_rollback_filesystems || return $?
	fi
	return 0
}

# it's up to the caller to decide if it's needed to call this function, so we warn user when he wants to do a useless rollback
interactive_rollback_filesystems ()
{
	if [ "$BLOCK_ROLLBACK_USELESS" = "1" ]
	then
		ask_yesno "It seems like there is nothing rollback right now.  This operation is useless, but it shouldn't harm.  Do you want to continue?" || return
	fi
	if rollback_filesystems
	then
		inform "Rollback succeeded"
	else
		show_warning "Rollback failed" "Rollback failed"
		return 1
	fi
}

interactive_autoprepare()
{
	listblockfriendly
	if [ ${#BLOCKFRIENDLY[@]} -gt 2 ]
	then
		ask_option no 'Harddrive selection' "Select the hard drive to use" required "${BLOCKFRIENDLY[@]}" || return 1
		DISC=$ANSWER_OPTION
	elif [ ${#BLOCKFRIENDLY[@]} -eq 0 ]; then
		ask_string "Could not find disk. Please enter path of devicefile manually" "" || return 1
		DISC=${ANSWER_STRING// /} # TODO : some checks if $DISC is really a blockdevice is probably a good idea
	else
		DISC=${BLOCKFRIENDLY[0]}
	fi

	FSOPTS=()
	for fs in ext2 ext3 ext4 reiserfs xfs jfs vfat nilfs2
	do
		check_is_in $fs "${possible_fs[@]}" && FSOPTS+=($fs "${filesystem_names[$fs]}")
	done
	get_blockdevice_size $DISC MiB
	local size_left=$BLOCKDEVICE_SIZE

	ask_number "Enter the size (MiB) of your /boot partition.  Recommended size: 100MiB\n\nDisk space left: $size_left MiB" 16 $size_left 100 || return 1
	BOOT_PART_SIZE=$ANSWER_NUMBER
	size_left=$(($size_left-$BOOT_PART_SIZE))

	ask_number "Enter the size (MiB) of your swap partition.  Recommended size: 256MiB\n\nDisk space left: $size_left MiB" 1 $size_left 256 || return 1
	SWAP_PART_SIZE=$ANSWER_NUMBER
	size_left=$(($size_left-$SWAP_PART_SIZE))

	ROOT_PART_SET=""
	while [ "$ROOT_PART_SET" = "" ]
	do
		local suggest_root=7500
		# if the disk is too small to hold a 7.5GB root and 5GB home (these are arbitrary numbers), just give root 3/4 of the size, if that's too small leave it up to the user
		[ $(($suggest_root+5000)) -gt $size_left ] && suggest_root=$(($size_left*3/4))
		ask_number "Enter the size (MiB) of your / partition.  Recommended size:7500.  The /home partition will use the remaining space.\n\nDisk space left:  $size_left MiB" 1 $size_left $suggest_root || return 1
		ROOT_PART_SIZE=$ANSWER_NUMBER
		size_left=$(($size_left-$ROOT_PART_SIZE))
		ask_yesno "$size_left MiB will be used for your /home partition.  Is this OK?" yes && ROOT_PART_SET=1
	done

	ask_option no 'Filesystem selection' "Select a filesystem for / and /home:" required "${FSOPTS[@]}" || return 1
	FSTYPE=$ANSWER_OPTION


	echo "$DISC $BOOT_PART_SIZE:ext2:+ $SWAP_PART_SIZE:swap $ROOT_PART_SIZE:$FSTYPE *:$FSTYPE" > $TMP_PARTITIONS

	echo "${DISC}1 raw no_label ext2;yes;/boot;target;no_opts;no_label;no_params"         >  $TMP_BLOCKDEVICES
	echo "${DISC}2 raw no_label swap;yes;no_mountpoint;target;no_opts;no_label;no_params" >> $TMP_BLOCKDEVICES
	echo "${DISC}3 raw no_label $FSTYPE;yes;/;target;no_opts;no_label;no_params"          >> $TMP_BLOCKDEVICES
	echo "${DISC}4 raw no_label $FSTYPE;yes;/home;target;no_opts;no_label;no_params"      >> $TMP_BLOCKDEVICES

	ask_yesno "$DISC will be COMPLETELY ERASED!  Are you absolutely sure?" || return 1

	PART_ACCESS=uuid

	process_disks       || die_error "Something went wrong while partitioning"
	if ! process_filesystems
	then
		show_warning "Filesystem processing" "Something went wrong while processing the filesystems.  Attempting rollback."
		if rollback_filesystems
		then
			show_warning "Filesystem rollback" "Rollback succeeded.  Please try to figure out what went wrong and try me again.  If you found a bug in the installer, please report it."
			return 1
		else
			die_error "Filesystem processing and rollback failed.  Please try the installer again.  If you found a bug in the installer, please report it."
		fi
	else
		notify "Auto-prepare was successful"
		return 0
	fi
}


interactive_partition() {
	target_umountall

	question_text="Select the disk you want to partition"
	if [ -f "$TMP_PARTITIONS" ]
	then
		if ask_yesno "I've detected you already have partition definitions in place:\n`cat $TMP_PARTITIONS`\nDo you want apply these now?  Pick 'no' when in doubt to start from scratch" no
		then
			process_disks || die_error "Something went wrong while partitioning"
			question_text="If you want to do further changes, you can (re)partition disks here"
		fi
	fi

	# Select disk to partition
	listblockfriendly
	DISCS=("${BLOCKFRIENDLY[@]}" OTHER OTHER DONE DONE)
	DISC=
	while true; do
		# Prompt the user with a list of known disks
		ask_option no 'Disc selection' "$question_text (select DONE when finished)" required "${DISCS[@]}" || return 1
		DISC=$ANSWER_OPTION
		if [ "$DISC" = "OTHER" ]; then
			ask_string "Enter the full path to the device you wish to partition" "/dev/sda" || return 1
			DISC=$ANSWER_STRING
		fi
		# Leave our loop if the user is done partitioning
		[ "$DISC" = "DONE" ] && break
		# Partition disc
		notify "Now you'll be put into the cfdisk program where you can partition your hard drive. You should make a swap partition and as many data partitions as you will need.\
		NOTE: cfdisk may tell you to reboot after creating partitions.  If you need to reboot, just re-enter this install program, skip this step and go on to the mountpoints selection step."
		cfdisk $DISC
	done
	return 0
}


# create new, delete, or edit a filesystem
# At first I had the idea of a menu where all properties of a filesystem and you could pick one to update only that one (eg mountpoint, type etc)\
# but I think it's better to go through them all and by default always show the previous choice.
interactive_filesystem ()
{
	# note: fs_mount: we dont need to ask this to the user. this is always 'target' for 99.99% of the users
	local part=$1       # must be given and (scheduled to become) a valid device -> don't do [ -b "$1" ] because the device might not exist *yet*
	local part_type=$2  # a part should always have a type
	local part_label=$3 # can be empty
	local fs_string=$4  # can be empty
	local fs_type=
	local fs_create
	local fs_mountpoint=
	local fs_mount
	local fs_opts=
	local fs_label=
	local fs_params=
	NEW_FILESYSTEM=
	if [ -n "$fs_string" ]
	then
		parse_filesystem_string "$fs_string" '' ''
		local old_fs_type=$fs_type
		local old_fs_create=$fs_create
		local old_fs_mountpoint=$fs_mountpoint
		local old_fs_mount=$fs_mount
		local old_fs_opts="$fs_opts"
		local old_fs_label=$fs_label
		local old_fs_params="$fs_params"

		ask_option edit "Change $fs_type filesystem settings on $part ?" \
						"Change $fs_type filesystem settings (create:$fs_create, label:$fs_label, mountpoint:$fs_mountpoint) on $part (type:$part_type, label:$part_label) ?" required \
						edit EDIT delete DELETE

		# Don't alter, and return if user cancels
		[ $? -gt 0 ] && NEW_FILESYSTEM=$fs_string && return 0
		# Erase and return if that's what the user wants
		[ "$ANSWER_OPTION" = delete ] && NEW_FILESYSTEM=no_fs
	fi

	if [ "$NEW_FILESYSTEM" != no_fs ]
	then
		# Determine which filesystems/blockdevices are possible for this blockdevice
		FSOPTS=()
		for fs in ${fs_on[$part_type]}
		do
			check_is_in $fs "${possible_fs[@]}" && FSOPTS+=($fs "${filesystem_names[$fs]}")
		done

		fs_create=no
		ask_yesno "Do you want to have this filesystem (re)created ?  If not, make sure there already is a filesystem!" && fs_create=yes

		# determine FS choice
		if [ ${#FSOPTS[*]} -lt 4 ] # less then 4 words in $FSOPTS. eg only one option
		then
			notify "Automatically picked the ${FSOPTS[1]} filesystem.  It's the only option for $part_type blockdevices"
			fs_type=${FSOPTS[0]}
		else
			default=no
			[ -n "$fs_type" ] && default="$fs_type"
			extratext="Select a filesystem for $part:"
			[ "$fs_create" == no ] && extratext="Select which filesystem $part is.  Make sure you get this right" #otherwise he'll be screwed when we try to mount it :)
			ask_option $default "Select filesystem" "$extratext" required "${FSOPTS[@]}" || return 1
			fs_type=$ANSWER_OPTION
		fi

		# ask mountpoint, if relevant
		if check_is_in $fs_type "${fs_mountable[@]}"
		then
			default=no
			[ -n "$fs_mountpoint" ] && default="$fs_mountpoint"
			ask_option $default "Select the mountpoint" "Select a mountpoint for $part" required / 'root' /boot 'files for booting' /home 'home directories' /var 'variable files' /tmp 'temporary files' custom 'enter a custom mountpoint' || return 1
			fs_mountpoint=$ANSWER_OPTION
			[ "$default" == 'no' ] && default=
			if [ "$ANSWER_OPTION" == custom ]
			then
				ask_string "Enter the custom mountpoint for $part" "$default" && fs_mountpoint=$ANSWER_STRING || return 1
			fi
		fi

		# ask label, if relevant
		if [ "$fs_create" == yes ] && check_is_in "$fs_type" "${fs_label_mandatory[@]}"
		then
			default="$fs_label" # can be empty
			ask_string "Enter the label/name for this $fs_type on $part (Mandatory for this type of FS!)" "$default" || return 1 #TODO: check that you can't give LV's labels that have been given already or the installer will break.
			fs_label=$ANSWER_STRING
		elif [ "$fs_create" == yes ] && check_is_in "$fs_type" "${fs_label_optional[@]}"
		then
			default="$fs_label" # can be empty
			ask_string "Enter the label for this $fs_type on $part (optional) [keep it short and don't use spaces]" "$default" 0
			fs_label=${ANSWER_STRING// } # strip spaces to prevent problems in our bash code and to keep things simple.
		fi

		# ask special params, if relevant
		# lvm-vg: PV's to use
		# lvm-lv: LV size
		if [ "$fs_create" == yes ] && [ "$fs_type" = lvm-vg ]
		then
			# add $part to $fs_params if it's not in there because the user wants this enabled by default. TODO: we should find something out so you can't disable $part. (would be weird to have a vg listed on $part and not have $part it fs_params)
			pv=${part/+/}
			if ! egrep -q "$pv(\$| )" <<< "$fs_params"; then
				[ -n "$fs_params" ] && fs_params="$fs_params "
				fs_params="$fs_params$pv"
			fi

			list=()
			for pv in $fs_params
			do
				list+=("$pv" ^ ON)
			done
			for pv in `grep '+ lvm-pv' $TMP_BLOCKDEVICES | awk '{print $1}' | sed 's/\+$//'` # find PV's to be added: their blockdevice ends on + and has lvm-pv as type #TODO: i'm not sure we check which pv's are taken already
			do
				grep -q "$pv ^ ON" <<< "${list[@]}" || list+=("$pv" - OFF)
			done
			if [ ${#list[*]} -lt 6 ] # less then 6 words in the list. eg only one option
			then
				notify "Automatically picked PV ${list[0]} to use for this VG.  It's the only available lvm PV"
				fs_params=${list[0]}
			else
				ask_checklist "Which lvm PV's must this volume group span?" 0 "${list[@]}" || return 1
				fs_params="${ANSWER_CHECKLIST[@]}"
			fi
		fi
		if [ "$fs_create" == yes ] && [ "$fs_type" = lvm-lv ]
		then
			[ -z "$fs_params" ] && default='5000'
			[ -n "$fs_params" ] && default="$fs_params"
			ask_number "Enter the size for this $fs_type on $part in MiB" 1 0 "$default" || return 1 #TODO: can we get the upperlimit from somewhere?
			# Lvm tools use binary units but have their own suffixes ( K,M,G,T,P,E, but they mean KiB, MiB etc)
			fs_params="${ANSWER_NUMBER}M"
		fi
		if [ "$fs_create" == yes ] && [ "$fs_type" = dm_crypt ]
		then
			[ -z "$fs_params" ] && default='-c aes-xts-plain -y -s 512'
			[ -n "$fs_params" ] && default="$fs_params"
			ask_string "Enter the options for this $fs_type on $part" "$default" || return 1
			fs_params="$ANSWER_STRING"
		fi

		# ask opts
		if [ "$fs_create" == yes ]
		then
			default="$fs_opts" # can be empty
			program="${filesystem_programs[$fs_type]}"
			ask_string "Enter any additional opts for $program" "$default" 0
			fs_opts="$ANSWER_STRING"
		fi

		[ -z "$fs_type"       ] && fs_type=no_type
		[ -z "$fs_mountpoint" ] && fs_mountpoint=no_mountpoint
		[ -z "$fs_opts"       ] && fs_opts=no_opts
		[ -z "$fs_label"      ] && fs_label=no_label
		[ -z "$fs_params"     ] && fs_params=no_params
		NEW_FILESYSTEM="$fs_type;$fs_create;$fs_mountpoint;target;${fs_opts// /__};$fs_label;${fs_params// /__}"

		# add new theoretical blockdevice, if relevant
		# these are just the resulting DM devices,
		# exception for lvm-pv: we create $part+ to represent the PV (+ is to differentiate from $part itself)
		new_device=
		[ "$fs_type" = lvm-vg   ] && new_device="/dev/mapper/$fs_label $fs_type $fs_label"
		[ "$fs_type" = lvm-pv   ] && new_device="$part+ $fs_type no_label"
		[ "$fs_type" = lvm-lv   ] && new_device="/dev/mapper/$part_label-$fs_label $fs_type $fs_label"
		[ "$fs_type" = dm_crypt ] && new_device="/dev/mapper/$fs_label $fs_type no_label"
		[ -n "$new_device" ] && ! grep -q "^$new_device " $TMP_BLOCKDEVICES && echo "$new_device no_fs" >> $TMP_BLOCKDEVICES
	fi

	[ -z "$old_fs_label" ] && old_fs_label=no_label

	# Cascading remove theoretical blockdevice(s), if relevant ( eg if we just changed from vg->ext3, dm_crypt -> fat, or if we changed the label of a FS, causing a name change in a dm_mapper device)
	if [[ $old_fs_type = lvm-* || $old_fs_type = dm_crypt ]] && [ "$NEW_FILESYSTEM" = no_fs -o "$old_fs_type" != "$fs_type" -o "$old_fs_label" != "$fs_label" ]
	then
		[ "$old_fs_type" = lvm-vg   ] && remove_blockdevice "/dev/mapper/$old_fs_label"             "$old_fs_type" "$old_fs_label"
		[ "$old_fs_type" = lvm-pv   ] && remove_blockdevice "$part+"                                "$old_fs_type" "$old_fs_label"
		[ "$old_fs_type" = lvm-lv   ] && remove_blockdevice "/dev/mapper/$part_label-$old_fs_label" "$old_fs_type" "$old_fs_label"
		[ "$old_fs_type" = dm_crypt ] && remove_blockdevice "/dev/mapper/$old_fs_label"             "$old_fs_type" "$old_fs_label"
	fi

	return 0
}


remove_blockdevice ()
{
	local part=$1       # must be given but doesn't need to exist
	local part_type=$2  # a part should always have a type
	local part_label=$3 # must be given

	target="$part $part_type $part_label"
	declare target_escaped=${target//\//\\/} # note: apparently no need to escape the '+' sign for sed.
	declare target_escawk=${target_escaped/+/\\+} # ...but that doesn't count for awk
	fs_string=`awk "/^$target_escawk / { print \$4}" $TMP_BLOCKDEVICES` #TODO: fs_string is the entire line, incl part?
	debug 'UI-INTERACTIVE' "Cleaning up partition $part (type $part_type, label $part_label).  It has the following FS's on it: $fs_string"
	sed -i "/$target_escaped/d" $TMP_BLOCKDEVICES || show_warning "blockdevice removal" "Could not remove partition $part (type $part_type, label $part_label).  This is a bug. please report it"
	for fs in `sed 's/|/ /g' <<< $fs_string`
	do
		fs_type=`       cut -d ';' -f 1 <<< $fs`
		fs_label=`      cut -d ';' -f 6 <<< $fs`
		[ "$fs_type" = lvm-vg   ] && remove_blockdevice "/dev/mapper/$fs_label"             "$fs_type" "$fs_label"
		[ "$fs_type" = lvm-pv   ] && remove_blockdevice "$part+"                            "$fs_type" "$fs_label"
		[ "$fs_type" = lvm-lv   ] && remove_blockdevice "/dev/mapper/$part_label-$fs_label" "$fs_type" "$fs_label"
		[ "$fs_type" = dm_crypt ] && remove_blockdevice "/dev/mapper/$fs_label"             "$fs_type" "$fs_label"
	done
}


interactive_filesystems() {

	if [ ! -f $TMP_BLOCKDEVICES ] || ! ask_yesno "Previous blockdevice definitions found:\n`cat $TMP_BLOCKDEVICES`\n\
		Use these as a starting point?  Make sure your disk(s) are partitioned correctly so your definitions can be applied. Pick 'no' when in doubt to start from scratch" no
	then
		find_usable_blockdevices 'raw no_label no_fs\n' > $TMP_BLOCKDEVICES
	fi

	[ -z "$PART_ACCESS" ] && PART_ACCESS=dev
	ask_option $PART_ACCESS 'Partition Access Method' 'How do you want your partitions to be accessed in grubs menu.lst and /etc/fstab?' '' \
		"dev"	"directly by /dev/* (most intuitive but devicefile names can change on kernel updates)" \
		"label"	"by Disk-Label (Will use the filesystem labels where you give them, and fall back on 'dev' otherwise)" \
		"uuid"	"by Universally Unique Identifier (You don't need to do anything, but doesn't look pretty)" || return 1
	PART_ACCESS=$ANSWER_OPTION
	ALLOK=0
	while [ "$ALLOK" = 0 ]
	do
		# Let the user make filesystems and mountpoints. USERHAPPY becomes 1 when the user hits DONE.
		local USERHAPPY=0

		while [ "$USERHAPPY" = 0 ]
		do
			# generate a menu based on the information in the datafile
			menu_list=()
			while read part type label fs
			do
				parse_filesystem_string "$fs" '' '-'
				fs_create_display=N
				[ "$fs_create" = yes ] && fs_create_display=Y
				fs_display="$fs_type $fs_create_display $fs_mountpoint $fs_opts $fs_label $fs_params"

				part_label_display=-
				part_size_display=-
				[ "$label" != no_label ] && part_label_display="$label"
				# add size in MiB for existing blockdevices (eg not for mapper devices that are not yet created yet)
				if [ -b "${part/+/}" ] && get_blockdevice_size ${part/+/} MiB # test -b <-- exit's 0, test -b '' exits >0.
				then
					part_size_display="${BLOCKDEVICE_SIZE}MiB"
				fi
				part_display="$part $type $part_label_display $part_size_display"
				menu_list+=("$part_display" "$fs_display")
			done < $TMP_BLOCKDEVICES

			ask_option no "Manage filesystems" "Here you can manage your filesystems and block devices. \
				The display format is as follows:\n\
Partition              Filesystem(s)\n\
device type label size type create? mountpoint options label params" required "${menu_list[@]}" DONE _
			[ $? -gt 0                 ] && return 1
			[ "$ANSWER_OPTION" == DONE ] && USERHAPPY=1 && break

			part=$(echo $ANSWER_OPTION | cut -d ' ' -f1)
			getpartinfo $part ''

			if [ $part_type = lvm-vg ] # one lvm VG can host multiple LV's so that's a bit a special blockdevice...
			then
				list=()
				if [ -n "$fs" ]
				then
					for lv in `sed 's/|/ /g' <<< $fs`
					do
						label=$(cut -d ';' -f 6 <<< $lv)
						size=$( cut -d ';' -f 7 <<< $lv)
						list+=("$label" "$size")
					done
				fi
				list+=(empty NEW)
				ask_option empty "Manage LV's on this VG" "Edit/create new LV's on this VG:" required "${list[@]}" && {
					EDIT_VG=$ANSWER_OPTION
					if [ "$ANSWER_OPTION" = empty  ]
					then
						# a new LV must be created on this VG
						if interactive_filesystem $part $part_type $part_label '' 
						then
							if [ "$NEW_FILESYSTEM" != no_fs ]
							then
								[ -n "$fs" ] && fs="$fs|$NEW_FILESYSTEM"
								[ -z "$fs" ] && fs=$NEW_FILESYSTEM
							fi
						fi
					else
						# an existing LV will be edited and it's settings updated
						for lv in `sed 's/|/ /g' <<< $fs`
						do
							label=$(cut -d ';' -f 6 <<< $lv)
							[ "$label" = "$EDIT_VG" ] && found_lv="$lv"
						done
						interactive_filesystem $part $part_type $part_label "$found_lv"
						newfs=
						for lv in `sed 's/|/ /g' <<< $fs`
						do
							label=$(cut -d ';' -f 6 <<< $lv)
							if [ "$label" != "$EDIT_VG" ]
							then
								add=$lv
							elif [ $NEW_FILESYSTEM != no_fs ]
							then
								add=$NEW_FILESYSTEM
							else
								add=
							fi
							[ -n "$add" -a -n "$newfs" ] && newfs="$newfs|$add"
							[ -n "$add" -a -z "$newfs" ] && newfs=$add
						done
						fs=$newfs
					fi
				}
			else
				interactive_filesystem $part $part_type "$part_label" "$fs"
				[ $? -eq 0 ] && fs=$NEW_FILESYSTEM
			fi

			# update the menu # NOTE that part_type remains raw for basic filesystems!
			[ -z "$part_label" ] && part_label=no_label
			[ -z "$fs"         ] && fs=no_fs
			sed -i "s#^$part $part_type $part_label.*#$part $part_type $part_label $fs#" $TMP_BLOCKDEVICES # '#' is a forbidden character !
		done

		# Check all conditions that need to be fixed and ask the user if he wants to go back and correct them
		errors=
		warnings=

		grep -q ';/boot;' $TMP_BLOCKDEVICES || warnings="$warnings\n-No separate /boot filesystem"
		grep -q ';/;'     $TMP_BLOCKDEVICES || errors="$errors\n-No filesystem with mountpoint /"
		grep -q ' swap;'  $TMP_BLOCKDEVICES || grep -q '|swap;' $TMP_BLOCKDEVICES || warnings="$warnings\n-No swap partition defined"

		if [ -n "$errors$warnings" ]
		then
			str="The following issues have been detected:\n"
			[ -n "$errors" ] && str="$str\n - Errors: $errors"
			[ -n "$warnings" ] && str="$str\n - Warnings: $warnings"
			[ -n "$errors" ] && str="$str\nIt is highly recommended you go back to fix at least the errors."
			str="$str\nIf you hit cancel, we will abort here and go back to the menu"
			if ask_option back "Issues detected. what do you want to do?" "$str" required back "go back to fix the issues" ignore "continue, ignoring the issues"
			then
				[ "$ANSWER_OPTION" == ignore ] && ALLOK=1
			else
				return 1
			fi
		else
			ALLOK=1
		fi

	done


	process_filesystems && notify "Partitions were successfully created." && return 0
	ask_yesno "Seems like some stuff went wrong while processing the filesystems.  do you want to rollback? (this cleans up the new mountpoints, filesystems, etc. not doing this can break the next run of the installer unless you clean it up yourself" yes && rollback_filesystems
	return 1
}


# select_packages()
# prompts the user to select packages to install
#
# params: none
# returns: 1 on error
interactive_select_packages() {
	local needed_pkgs=()

	# set up our install location if necessary and sync up so we can get package lists
	target_prepare_pacman || { show_warning 'Pacman preparation failure' "Pacman preparation failed! Check $LOG for errors."; return 1; }

    repos=`list_pacman_repos target` notify "Package selection is split
into three stages. First, you will select a bootloader. Then, you will
select package groups that contain packages that you may be interested
in. Lastly, you will be presented with a full list of packages for
each group, allowing you to fine-tune.\n\n Note that right now the
packages (and groups) selection is limited to the repos available
at this time ($repos). Once you have your Parabola system up and
running, you have access to more repositories and packages.\n\n If
any previous configuration you've done until now (like fancy
filesystems) require extra packages, we've already preselected
them for your convenience"

	# show group listing for group selection, base is ON by default, all others are OFF
	local grouplist=(base ^ ON)
	for i in $(list_package_groups | grep -v '^base$'); do
		grouplist+=(${i} - OFF)
	done

	ask_option no "Choose bootloader" "Which bootloader would you like to use?" optional \
	"grub" "GRUB bootloader" \
	"syslinux" "Syslinux bootloader (${syslinux_supported_fs[*]})"

	bootloader=$ANSWER_OPTION

	# Make sure selected bootloader is a supported_bootloader and mark bootloader for installation
	check_is_in $bootloader "${supported_bootloaders[@]}" && needed_pkgs+=("$bootloader")

	ask_checklist "Select Package groups\nDo not deselect base unless you know what you're doing!" 0 "${grouplist[@]}" || return 1
	grouplist=("${ANSWER_CHECKLIST[@]}")

	# get sorted array of available packages, with their groups.
    # show all packages from base and base-devel
    local pkgall=($(list_packages group base base-devel | sort -u))
	pkginfo "${pkgall[@]}"

	# build the list of options, sorted primarily by group, then by packagename (this is already). marking where appropriate
	local pkglist=()
	needed_pkgs+=("${needed_pkgs_fs[@]}")
	while read pkgname pkgver pkggroup pkgdesc; do
		mark=OFF
		if check_is_in "$pkggroup" "${grouplist[@]}" || check_is_in $pkgname "${needed_pkgs[@]}"; then
			mark=ON
		fi
		pkglist+=("$pkgname" "$pkggroup" $mark "$pkgname $pkgver: $pkgdesc")
	done < <(echo "$PACKAGE_INFO" | sort -u -f -k 3)

	[ ${#pkglist[@]} -eq 0 ] && show_warning "No packages found" "Sorry. I could not find any packages. maybe your network is not setup correctly, you lost connection, no mirror setup, bad group, ..." && return 1

	ask_checklist "Select Packages To Install." 1 "${pkglist[@]}" || return 1
	var_TARGET_PACKAGES="${ANSWER_CHECKLIST[@]}"
	return 0
}


# Hand-hold through setting up networking
#
# args: none
# returns: 1 on failure
interactive_runtime_network() {
	local ifaces
	ifaces=$(ifconfig -a |grep "Link encap:Ethernet"|sed 's/ \+Link encap:Ethernet \+HWaddr \+/ /g')

	[ -z "$ifaces" ] && show_warning "No network interfaces?" "Cannot find any ethernet interfaces. This usually means udev was\nunable to load the module and you must do it yourself. Switch to\nanother VT, load the appropriate module, and run this step again." && return 1

	INTERACE_PREV=$INTERFACE
	unset INTERFACE DHCP IPADDR SUBNET BROADCAST GW DNS PROXY_HTTP PROXY_FTP
	ask_option no "Interface selection" "Select a network interface" required $ifaces || return 1
	INTERFACE=$ANSWER_OPTION
	[ "$INTERFACE" = "$INTERFACE_PREV" ] && INTERFACE_PREV=

	if ask_yesno "Do you want to use DHCP?"
	then
		inform "Please wait.  Polling for DHCP server on $INTERFACE..."
		dhcpcd -k $INTERFACE >$LOG 2>&1
		if ! dhcpcd $INTERFACE >$LOG 2>&1
		then
			show_warning "Dhcpcd problem" "Failed to run dhcpcd.  See $LOG for details."
			return 1
		fi
		if ! ifconfig $INTERFACE | grep -q 'inet addr:'
	then
			show_warning "Dhcpcd problem" "DHCP request failed. dhcpcd returned 0 but no ip configured for $INTERFACE"
			return 1
		fi
		DHCP=1
	else
		DHCP=0
		local USERHAPPY=0
		while [ "$USERHAPPY" = 0 ]; do
			ask_string "Enter your IP address" "192.168.0.2" || return 1
			IPADDR=$ANSWER_STRING
			ask_string "Enter your netmask" "255.255.255.0" || return 1
			SUBNET=$ANSWER_STRING
			ask_string "Enter your broadcast" "$(sed 's/\.[^.]*$/\.255/' <<< $IPADDR)" || return 1
			BROADCAST=$ANSWER_STRING
			ask_string "Enter your gateway (optional)" "$(sed 's/\.[^.]*$/\.1/' <<< $IPADDR)" 0 || return 1
			GW=$ANSWER_STRING
			[ -n "$GW" ] && default_dns="$GW"
			[ -z "$GW" ] && default_dns="$(sed 's/\.[^.]*$/\.1/' <<< $IPADDR)"
			ask_string "Enter your DNS server IP" "$default_dns" || return 1
			DNS=$ANSWER_STRING
			ask_string "Enter your HTTP proxy server, for example:\nhttp://name:port\nhttp://ip:port\nhttp://username:password@ip:port\n\n Leave the field empty if no proxy is needed to install." "" 0 || return 1
			PROXY_HTTP=$ANSWER_STRING
			ask_string "Enter your FTP proxy server, for example:\nhttp://name:port\nhttp://ip:port\nhttp://username:password@ip:port\n\n Leave the field empty if no proxy is needed to install." "" 0 || return 1
			PROXY_FTP=$ANSWER_STRING
			if ask_yesno "Are these settings correct?\n\nIP address:         $IPADDR\nNetmask:            $SUBNET\nBroadcast:          $BROADCAST\nGateway (optional): $GW\nDNS server:         $DNS\nHTTP proxy server:  $PROXY_HTTP\nFTP proxy server:   $PROXY_FTP"
			then
				USERHAPPY=1
			fi
		done
		echo "running: ifconfig $INTERFACE $IPADDR netmask $SUBNET broadcast $BROADCAST up" >$LOG
		if ! ifconfig $INTERFACE $IPADDR netmask $SUBNET broadcast $BROADCAST up >$LOG 2>&1
		then
				show_warning "Ifconfig problem" "Failed to setup interface $INTERFACE"
				return 1
			fi
			if [ -n "$GW" ]; then
				route add default gw $GW >$LOG 2>&1 || notify "Failed to setup your gateway." || return 1
			fi
			if [ -z "$PROXY_HTTP" ]; then
				unset http_proxy
			else
				export http_proxy=$PROXY_HTTP
			fi
			if [ -z "$PROXY_FTP" ]; then
				unset ftp_proxy
			else
				export ftp_proxy=$PROXY_FTP
		fi
		echo "nameserver $DNS" >/etc/resolv.conf
	fi

	echo "INTERFACE_PREV=$INTERFACE_PREV
          INTERFACE=$INTERFACE
          DHCP=$DHCP
          IPADDR=$IPADDR
          SUBNET=$SUBNET
          BROADCAST=$BROADCAST
          GW=$GW
          DNS=$DNS
          PROXY_HTTP=$PROXY_HTTP
          PROXY_FTP=$PROXY_FTP" > $RUNTIME_DIR/aif-network-settings || return 1
	notify "The network is configured."
	return 0
}

# bootloader is global variable that gets set in interactive_select_packages
interactive_install_bootloader () {
	if [[ $bootloader = grub ]]; then
		GRUB_OK=0
		interactive_grub || return 1
	elif [[ $bootloader = syslinux ]]; then
		interactive_syslinux || return 1
	else
		show_warning 'No Bootloader' 'You did not select a bootloader. No bootloader will be installed.'
	fi
	return 0
}

interactive_grub() {
	get_grub_map
	[ ! -f $grubmenu ] && show_warning "No grub?" "Error: Couldn't find $grubmenu.  Is GRUB installed?" && return 1

	debug FS "starting interactive_grub"
	# try to auto-configure GRUB...
	debug 'UI-INTERACTIVE' "install_grub \$PART_ROOT $PART_ROOT \$GRUB_OK $GRUB_OK"
	if get_device_with_mount '/' && [ "$GRUB_OK" != '1' ] ; then
		GRUB_OK=0
		PART_ROOT=$ANSWER_DEVICE
		# look for a separately-mounted /boot partition
		# This could be used better, maybe we use a better variable name cause
		# we use this later in many things in workflow.
		# Currently we have bootdev as a device if we have a seperate /boot or empty
		# if no seperate /boot. Where our /boot realy lives is important later
		# to build the grub: root (hdx,y) part.
		# So maybe we set a flag variable like: sepboot=true|false and set bootdev to either
		# the partition with seperate /boot or to $PART_ROOT.
		# So that bootdev is always our real partition with /boot....
		bootdev=$(mount | grep $var_TARGET_DIR/boot | cut -d' ' -f 1)
		# check if PART_ROOT (or bootdev, if it is a blockdevice) is on a md raid array
		# This dialog is only shown when we detect / or /boot on a raid device.
		if device_is_raid $PART_ROOT || ( [ -n "$bootdev" ] && device_is_raid "$bootdev" ); then
			ask_yesno "Do you have your system installed on software raid?\nAnswer 'YES' to install grub to another hard disk." no
			if [ $? -eq 0 ]; then
				onraid=true
				debug FS "onraid is selected"
			fi
		fi
		# Create and edit the grub menu.lst
		interactive_bootloader_menu "grub" $grubmenu

		DEVS="$(finddisks '_ ')"
		if [ "$DEVS" = " " ]; then
			notify "No hard drives were found"
			return 1
		fi
		# copy initial grub files into installed system
		cp -a $var_TARGET_DIR/usr/lib/grub/i386-pc/* $var_TARGET_DIR/boot/grub/
		sync
		# freeze xfs filesystems to enable grub installation on xfs filesystems
		for xfsdev in $(blkid -t TYPE=xfs -o device); do
			mnt=$(mount | grep $xfsdev | cut -d' ' -f 3)
			if [ $mnt = "$var_TARGET_DIR/boot" -o $mnt = "$var_TARGET_DIR/" ]; then
				/usr/sbin/xfs_freeze -f $mnt > /dev/null 2>&1
			fi
		done

		if [ ! $onraid ]; then
			# Set boot partition to the device where our /boot lives.
			[ -z $bootdev ] && bootpart=$PART_ROOT || bootpart=$bootdev
			ask_option no "Boot device selection" "Select the boot device where the GRUB bootloader will be installed (usually the MBR and not a partition)." required $DEVS || return 1
			bootdev=$ANSWER_OPTION
			boothd=$(echo $bootdev | cut -c -8)
			interactive_grub_install $bootpart $bootdev $boothd
			if [ $? -eq 0 ]; then
				GRUB_OK=1
			fi
		else
			# Raid special
			# The bootpart and bootdev should not be changed when setup grub on all raid array members.
			# Instead the device is mapped via grub parameter device
			# So a grub setup on MBR sda/sdb with /boot on sda1/sdb1 should always be done like:
			# device (hd0) /dev/sd(a|b)
			# root (hd0,0)
			# setup (hd0)

			# get md device either if we use separate /boot or not.
			[ -z $bootdev ] && local md=$PART_ROOT || local md=$bootdev

			local ask_str="Do you want to install grub to the MBR of each harddisk from your BOOT array "$md" ? (recommended)"
			ask_yesno "$ask_str" yes
			if [ $? -eq 0 ]; then
				slaves=$(mdraid_all_slaves $md)
				for slave in $slaves; do
					boothd=$(echo $slave | cut -c -8)
					bootpart=$(mdraid_slave0 $md)
					bootdev=$(echo $bootpart | cut -c -8)
					interactive_grub_install $bootpart $bootdev $boothd
					if [ $? -eq 0 ]; then
						GRUB_OK=1
					fi
				done
			else
				# This part needs more attention... User could select here only
				# a other blockdevice to install grub into... But our grub rootdevice
				# is not selectable, cause it is determined either from PART_ROOT or
				# bootdev.
				# Maybe better we leave the user alone and poke him to use a grub
				# shell if he want do something unusefull and not install grub in
				# aech MBR of affected HD in raid array....
				local USERHAPPY=0
				while [ "$USERHAPPY" = 0 ]
				do
					ask_option no "Boot device selection" "Select the boot device where the GRUB bootloader will be installed." required $DEVS DONE _
					[ $? -gt 0                 ] && USERHAPPY=1 && break
					[ "$ANSWER_OPTION" == DONE ] && USERHAPPY=1 && break
					bootdev=$ANSWER_OPTION
					boothd=$(echo $bootdev | cut -c -8)
					bootpart=$(mdraid_slave0 $md)
					bootdev=$(echo $bootpart | cut -c -8)
					interactive_grub_install $bootpart $bootdev $boothd
					if [ $? -eq 0 ]; then
						GRUB_OK=1
					fi
				done
			fi

			if [ "$bootpart" = "" ]; then
				if [ "$PART_ROOT" = "" ]; then
					ask_string "Enter the full path to your root device" "/dev/sda3" || return 1
					bootpart=$ANSWER_STRING
				else
					bootpart=$PART_ROOT
				fi
				boothd=$(echo $bootpart | cut -c -8)
				interactive_grub_install $bootpart $bootdev $boothd
				if [ $? -eq 0 ]; then
					GRUB_OK=1
				fi
			fi
		fi
		# unfreeze xfs filesystems
		for xfsdev in $(blkid -t TYPE=xfs -o device); do
			mnt=$(mount | grep $xfsdev | cut -d' ' -f 3)
			if [ $mnt = "$var_TARGET_DIR/boot" -o $mnt = "$var_TARGET_DIR/" ]; then
				/usr/sbin/xfs_freeze -u $mnt > /dev/null 2>&1
			fi
		done

		if [ "$GRUB_OK" == "1" ]; then
			notify "GRUB was successfully installed."
		else
			show_warning "Grub installation failure" "GRUB was NOT successfully installed."
			return 1
		fi
		return 0
	fi
}

generate_grub_menulst() {
	get_device_with_mount '/' || return 1
	local rootpart=$ANSWER_DEVICE
	local subdir=

	# Determine what is the device that acts as grub's root
	# This is the blockdevice where /boot lives, normally a seperate partition.
	#
	# Special handling: on md raid arrays
	# md raid could not work directly with grub. To get grub's root device we
	# parse the slave 0 in the md array to get a real blockdevice (/dev/sdXY)
	#
	# We get at last in grubdev the blockdevice in grub-legacy notation (ex: (hd0,0)
	#
	# We may do things double here and in interactive_grub_install
	# Better way would be to determine/ask neccassary things once and then
	# fill (and present) menu.lst to user. If user mean there is something
	# wrong with menu.lst settings (wrong boot device or wrong root=/device)
	# he better re-runs the interactive grub install and select correct settings.
	debug FS "Grub rootpart: $rootpart"
	debug FS "Grub bootdev: $bootdev"

	# No seperate /boot partition
	if [ -z $bootdev ]; then
		subdir="/boot"
		if [ $onraid ]; then
			grubdev=$(mapdev $(mdraid_slave0 $rootpart))
			debug FS "onraid no sep boot slave0: $(mdraid_slave0 $rootpart)"
			debug FS "onraid no sep boot grubdev: $grubdev"
		else
			grubdev=$(mapdev $rootpart)
			debug FS "no sep boot grubdev: $grubdev"
		fi
	# with seperate /boot partition
	else
		if [ $onraid ]; then
			grubdev=$(mapdev $(mdraid_slave0 $bootdev))
			debug FS "onraid with sep boot slave0: $(mdraid_slave0 $bootdev)"
			debug FS "onraid with sep boot grubdev: $grubdev"
		else
			grubdev=$(mapdev $bootdev)
			debug FS "onraid with sep boot grubdev: $grubdev"
		fi
	fi

	if [ -z "$grubdev" ]; then
		notify "Your root boot device could not be autodetected by setup.  Ensure you adjust the 'root (hd0,0)' line in your GRUB config accordingly."
		grubdev="(hd0,0)"
	fi

	# remove default entries by truncating file at our little tag (#-*)
	sed -i -e '/#-\*/q' $grubmenu

	get_kernel_parameters || return $?

	cat >>$grubmenu <<EOF

# (0) Parabola GNU/Linux-Libre
title  Parabola GNU/Linux-Libre
root   $grubdev
kernel $subdir/vmlinuz-linux-libre $kernel_parameters
initrd $subdir/initramfs-linux-libre.img

# (1) Parabola GNU/Linux-Libre
title  Parabola GNU/Linux-Libre Fallback
root   $grubdev
kernel $subdir/vmlinuz-linux-libre $kernel_parameters
initrd $subdir/initramfs-linux-libre-fallback.img

EOF
}

interactive_grub_install () {
	debug FS "interactive_grub_install called. P1 = $1, P2 = $2, P3 = $3"
	# $1 = bootpart
	# $2 = bootdev
	# $3 = boothd
	# To install grub we have to know:
	# The bootpart - This is where /boot could be found
	# The bootdev - This is where grub gets installed, usally the MBR
	# The boothd - Only on md raid setups this differs from bootdev
	# These values get parsed either from values we have already or from
	# user input. Later they will converted to grub-legacy notation.

	# Convert to grub-legacy notation
	local bootpart=$(mapdev $1)
	if [ -z "$bootpart" ]; then
		notify "Error: Missing/Invalid root device for $1"
		return 1
	fi
	local bootdev=$(mapdev $2)
	if [ -z "$bootdev" ]; then
		notify "GRUB root and setup devices could not be auto-located.  You will need to manually run the GRUB shell to install a bootloader."
		return 1
	fi
	local boothd=$3
	debug FS "bootpart: $bootpart"
	debug FS "bootdev: $bootdev"
	debug FS "boothd: $boothd"

	$var_TARGET_DIR/sbin/grub --no-floppy --batch >/tmp/grub.log 2>&1 <<EOF
device $bootdev $boothd
root $bootpart
setup $bootdev
quit
EOF
	cat /tmp/grub.log >$LOG
	if grep -q "Error [0-9]*: " /tmp/grub.log; then
		notify "Error installing GRUB. (see $LOG for output)"
		return 1
	fi
}

interactive_syslinux() {
	debug FS "starting interactive_syslinux"

	# Find and Store the device that has the root filesystem
	get_device_with_mount '/' || return 1
	PART_ROOT="$ANSWER_DEVICE"

	# Gets boot device
	get_device_with_mount '/boot'
	bootdev="$ANSWER_DEVICE"

	# Check to see if /boot or / (root) has a valid FS type and set bootpart
	# bootpart == device with /boot dir
	if [[ $bootdev ]]; then
		filesystem="$(awk '/ \/boot /{print $4}' $TMP_FILESYSTEMS)"
		debug FS "$bootdev - FS type: $filesystem"

		local bootpart="$bootdev"
	else
		filesystem="$(awk '/ \/ /{print $4}' $TMP_FILESYSTEMS)"
		debug FS "$PART_ROOT - FS type: $filesystem"

		local bootpart="$PART_ROOT"
	fi

	if ! check_is_in "$filesystem" "${syslinux_supported_fs[@]}"; then
		show_warning "Invalid FS" "Error: Syslinux does not support $filesystem.\n\nThe following filesystems are supported:\n  ${syslinux_supported_fs[@]}"
		return 1
	fi

	# remove default entries by truncating file at our little tag (#-*)
	sed -i -e '/#-\*/q' "$syslinuxmenu"

	# Generate menu and prompt user to edit it
	interactive_bootloader_menu "syslinux" "$syslinuxmenu"

	if device_is_raid "$bootpart"; then
		debug FS "Software RAID detected"
		local onraid=true
	fi

	debug FS "Installing Syslinux ($var_TARGET_DIR/usr/sbin/syslinux-install_update -i -c /mnt)"
	inform "Installing Syslinux..."
	if ! "$var_TARGET_DIR/usr/sbin/syslinux-install_update" -i -c /mnt >$LOG 2>&1; then
		debug FS "FAILED: syslinux-install_update -i -c /mnt failed"
		show_warning "FAILED" "syslinux-install_update -i -c /mnt failed"
		return 1
	fi

	if ask_yesno "Set boot flag(s) and install the Syslinux MBR?" yes; then
		inform "Setting Boot Flag(s)...\nThis could take a while. Please be patient.\n\n" syslinuxprog
		if "$var_TARGET_DIR/usr/sbin/syslinux-install_update" -a -c /mnt >$LOG 2>&1; then
			debug FS "Successfully set boot flag(s)"
		else
			debug FS "Failde to set boot flag(s). syslinux-install_update -a failed with Error Code - $?"
			show_warning "FAILED" "Failed to set boot flag(s). MBR not installed" && return 1
		fi

		inform "Installing Syslinux MBR..." syslinuxprog
		if "$var_TARGET_DIR/usr/sbin/syslinux-install_update" -m -c /mnt >$LOG 2>&1; then
			debug FS "Successfully installed MBR(s)"
		else
			debug FS "Failed to install MBR. syslinux-install_update -m failed with Error Code - $?"
			show_warning "FAILED" "Failed to install the MBR!" && return 1
		fi
	fi
	notify "Syslinux Installation Successful"
}

generate_syslinux_menu () {
	get_kernel_parameters || return

	cat >>$syslinuxmenu <<EOF

# (0) Parabola
LABEL parabola
    MENU LABEL Parabola
    LINUX ../vmlinuz-linux-libre
    APPEND $kernel_parameters
    INITRD ../initramfs-linux-libre.img

# (1) Parabola Fallback
LABEL parabolafallback
    MENU LABEL Parabola Fallback
    LINUX ../vmlinuz-linux-libre
    APPEND $kernel_parameters
    INITRD ../initramfs-linux-libre-fallback.img

LABEL hdt
    MENU LABEL HDT (Hardware Detection Tool)
    COM32 hdt.c32

LABEL reboot
    MENU LABEL Reboot
    COM32 reboot.c32

LABEL off
    MENU LABEL Power Off
    COMBOOT poweroff.com
EOF
}

# $1 - Bootloader Name
# $2 - Bootloader Configuration Files
interactive_bootloader_menu() {
	if [[ $1 = grub ]]; then
		generate_grub_menulst || return
	elif [[ $1 = syslinux ]]; then
		generate_syslinux_menu || return
	fi

	grep -q '^/dev/mapper' $TMP_FSTAB && local helptext="  /dev/mapper/ users: Pay attention to the kernel line!"
	notify "Before installing $1, you must review the configuration file.  You will now be put into the editor.  After you save your changes and exit the editor, you can install $1.$helptext"

	seteditor || return 1

	$EDITOR $2
}

get_kernel_parameters() {
	get_device_with_mount '/' || return 1
	local rootpart="$ANSWER_DEVICE"

	case "$PART_ACCESS" in
		label)
			local label="$(getlabel $rootpart)" && \
			rootpart="/dev/disk/by-label/$label" ;;
		uuid)
			local uuid="$(getuuid $rootpart)" && \
			rootpart="/dev/disk/by-uuid/$uuid" ;;
	esac

	kernel_parameters="root=$rootpart ro"

	local raw_device crypt_device lv_device 

	if get_anchestors_mount ';/;'; then
		if echo "$ANSWER_DEVICES" | sed -n '1p' | grep -q 'dm_crypt$' && echo "$ANSWER_DEVICES" | sed -n '2p' | grep -q 'raw$'
		then
			debug 'FS' 'get_kernel_parameters - Found / on dm_crypt on raw'
			raw_device="$(echo "$ANSWER_DEVICES" | sed -n '2p' | cut -d ' ' -f1)"
			crypt_device="$(echo "$ANSWER_DEVICES" | sed -n '1p' | cut -d ' ' -f1)"
			kernel_parameters="root=$crypt_device cryptdevice=$raw_device:`basename $crypt_device` ro"
		elif echo "$ANSWER_DEVICES" | sed -n '1p' | grep -q 'lvm-lv$' && echo "$ANSWER_DEVICES" | sed -n '4p' | grep -q 'dm_crypt$' && echo "$ANSWER_DEVICES" | sed -n '5p' | grep -q 'raw$'
		then
			debug 'FS' 'get_kernel_parameters - Found / on lvm on dm_crypt on raw'
			lv_device="$(echo "$ANSWER_DEVICES" | sed -n '1p' | cut -d ' ' -f1)"
			crypt_device="$(echo "$ANSWER_DEVICES" | sed -n '4p' | cut -d ' ' -f1)"
			raw_device="$(echo "$ANSWER_DEVICES" | sed -n '5p' | cut -d ' ' -f1)"
			kernel_parameters="root=$lv_device cryptdevice=$raw_device:`basename $crypt_device` ro"
		elif echo "$ANSWER_DEVICES" | sed -n '1p' | grep -q 'dm_crypt$' && echo "$ANSWER_DEVICES" | sed -n '2p' | grep -q 'lvm-lv$' && echo "$ANSWER_DEVICES" | sed -n '5p' | grep -q 'raw$'
		then
			debug 'FS' 'get_kernel_parameters - Found / on dm_crypt on lvm on raw'
			crypt_device="$(echo "$ANSWER_DEVICES" | sed -n '1p' | cut -d ' ' -f1)"
			lv_device="$(echo "$ANSWER_DEVICES" | sed -n '2p' | cut -d ' ' -f1)"
			kernel_parameters="root=$crypt_device cryptdevice=$lv_device:`basename $crypt_device` ro"
		elif echo "$ANSWER_DEVICES" | sed -n '1p' | grep -q 'raw$'
		then
			debug 'FS' 'get_kernel_parameters - Found / on raw'
		elif echo "$ANSWER_DEVICES" | sed -n '1p' | grep -q 'lvm-lv$' && echo "$ANSWER_DEVICES" | sed -n '4p' | grep -q 'raw$'
		then
			debug 'FS' 'get_kernel_parameters - Found / on lvm on raw'
		else
			debug 'FS' 'get_kernel_parameters - Could not figure this one out'
			show_warning "Disk setup detection" "Are you using some really fancy dm_crypt/lvm/softraid setup?\nI could not figure it out, so the kernel line will be the default: you'll probably need to edit it.\nPlease file a bug for this and supply all files from /tmp/aif/"
		fi
	else
		show_warning "Disk setup detection" "Could not find out where your / is.  Did you setup filesystems/blockdevices? manual/autoprepare?  If yes, please file a bug and tell us about this"
		return 1
	fi
}


# displays installation source selection menu
# and sets up relevant config files
#
# params: none
# returns: nothing
interactive_select_source() {
	var_PKG_SOURCE_TYPE=
	var_FILE_URL="file:///src/core/pkg"
	var_SYNC_URL=

	ask_option no "Source selection" "Please select an installation source" required \
	"cd"  "CD-ROM or OTHER SOURCE" \
	"net" "NET (FTP/HTTP)" || return 1

	case $ANSWER_OPTION in
		"cd") var_PKG_SOURCE_TYPE="cd" ;;
		"net") var_PKG_SOURCE_TYPE="net" ;;
	esac

	if [ "$var_PKG_SOURCE_TYPE" = "cd" ]; then
		TITLE="Parabola GNU/Linux-Libre CDROM or OTHER SOURCE Installation"
		notify "Packages included on this disk have been mounted to /src/core/pkg. If you wish to use your own packages from another source, manually mount them there."
		if [ ! -d /src/core/pkg ]; then
			notify "Package directory /src/core/pkg is missing!"
			return 1
		fi
		echo "Using CDROM for package installation" >$LOG
	else
		TITLE="Parabola GNU/Linux-Libre NET (FTP/HTTP) Installation"
		notify "If you wish to load your ethernet modules manually, please do so now in an another terminal."
	fi
	return 0
}


# Prompt user for preferred mirror and set $var_SYNC_URL
# args: none
# returns: nothing
interactive_select_mirror() { 
	notify "Keep in mind that these are the only mirrors that contain Free Software only."
	# FIXME: this regex doesn't honor commenting
	MIRRORS=$(egrep -o '((ftp)|(http))://[^/]*' "${var_MIRRORLIST}" | sed 's|$| _|g')
	ask_option no "Mirror selection" "Select an FTP/HTTP mirror" required $MIRRORS "Custom" "_" || return 1
	local _server=$ANSWER_OPTION
	if [ "${_server}" = "Custom" ]; then
		ask_string "Enter the full URL to core repo." "http://repo.parabolagnulinux.org/core/os/$var_ARCH" || return 1
		var_SYNC_URL=${ANSWER_STRING/\/core\///\$repo/} #replace '/core/' by '/$repo/'
	else
		# Form the full URL for our mirror by grepping for the server name in
		# our mirrorlist and pulling the full URL out.
		# Ensure that if it was listed twice we only return one line for the mirror.
		var_SYNC_URL=$(egrep -o "${_server}.*" "${var_MIRRORLIST}" | head -n1)
	fi
	echo "Using mirror: $var_SYNC_URL" >$LOG
}