33dea165c798d97782f620b95a614a7e2e4553d8
[dragonfly.git] / usr.sbin / installer / dfuibe_installer / fn_subpart_ufs.c
1 /*
2  * Copyright (c)2004 The DragonFly Project.  All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  *
8  *   Redistributions of source code must retain the above copyright
9  *   notice, this list of conditions and the following disclaimer.
10  *
11  *   Redistributions in binary form must reproduce the above copyright
12  *   notice, this list of conditions and the following disclaimer in
13  *   the documentation and/or other materials provided with the
14  *   distribution.
15  *
16  *   Neither the name of the DragonFly Project nor the names of its
17  *   contributors may be used to endorse or promote products derived
18  *   from this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
24  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
25  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
26  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
27  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
29  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
31  * OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33
34 /*
35  * fn_subpart.c
36  * Installer Function : Create Subpartitions.
37  * $Id: fn_subpart.c,v 1.50 2005/04/07 20:22:40 cpressey Exp $
38  */
39
40 #include <stdio.h>
41 #include <stdlib.h>
42 #include <string.h>
43
44 #ifdef ENABLE_NLS
45 #include <libintl.h>
46 #define _(String) gettext (String)
47 #else
48 #define _(String) (String)
49 #endif
50
51 #include "libaura/mem.h"
52 #include "libaura/buffer.h"
53 #include "libaura/dict.h"
54 #include "libaura/fspred.h"
55
56 #include "libdfui/dfui.h"
57 #include "libdfui/dump.h"
58 #include "libdfui/system.h"
59
60 #include "libinstaller/commands.h"
61 #include "libinstaller/diskutil.h"
62 #include "libinstaller/functions.h"
63 #include "libinstaller/uiutil.h"
64
65 #include "fn.h"
66 #include "flow.h"
67 #include "pathnames.h"
68
69 static int      create_subpartitions(struct i_fn_args *);
70 static long     default_capacity(struct storage *, int);
71 static int      check_capacity(struct i_fn_args *);
72 static int      check_subpartition_selections(struct dfui_response *, struct i_fn_args *);
73 static void     save_subpartition_selections(struct dfui_response *, struct i_fn_args *);
74 static void     populate_create_subpartitions_form(struct dfui_form *, struct i_fn_args *);
75 static int      warn_subpartition_selections(struct i_fn_args *);
76 static int      warn_encrypted_root(struct i_fn_args *);
77 static struct dfui_form *make_create_subpartitions_form(struct i_fn_args *);
78 static int      show_create_subpartitions_form(struct dfui_form *, struct i_fn_args *);
79
80 static const char *def_mountpt[]  = {"/", "swap", "/var", "/tmp", "/usr", "/home", NULL};
81 static int expert = 0;
82
83 /*
84  * Given a set of subpartitions-to-be in the selected slice,
85  * create them.
86  */
87 static int
88 create_subpartitions(struct i_fn_args *a)
89 {
90         struct subpartition *sp;
91         struct commands *cmds;
92         int result = 0;
93         int num_partitions;
94
95         cmds = commands_new();
96         if (!is_file("%sinstall.disklabel.%s",
97             a->tmp,
98             slice_get_device_name(storage_get_selected_slice(a->s)))) {
99                 /*
100                  * Get a copy of the 'virgin' disklabel.
101                  * XXX It might make more sense for this to
102                  * happen right after format_slice() instead.
103                  */
104                 command_add(cmds, "%s%s -r %s >%sinstall.disklabel.%s",
105                     a->os_root, cmd_name(a, "DISKLABEL64"),
106                     slice_get_device_name(storage_get_selected_slice(a->s)),
107                     a->tmp,
108                     slice_get_device_name(storage_get_selected_slice(a->s)));
109         }
110
111         /*
112          * Weave together a new disklabel out the of the 'virgin'
113          * disklabel, and the user's subpartition choices.
114          */
115
116         /*
117          * Take everything from the 'virgin' disklabel up until the
118          * '16 partitions' line.
119          */
120         num_partitions = 16;
121         command_add(cmds, "%s%s '$2==\"partitions:\" || cut { cut = 1 } !cut { print $0 }' <%sinstall.disklabel.%s >%sinstall.disklabel",
122             a->os_root, cmd_name(a, "AWK"),
123             a->tmp,
124             slice_get_device_name(storage_get_selected_slice(a->s)),
125             a->tmp);
126
127         /*
128          * 16 partitions:
129          * #          size     offset    fstype
130          *   c:   16383969          0    unused #    7999.985MB
131          */
132
133         command_add(cmds, "%s%s '%d partitions:' >>%sinstall.disklabel",
134             a->os_root, cmd_name(a, "ECHO"), num_partitions ,a->tmp);
135         command_add(cmds, "%s%s '%s' >>%sinstall.disklabel",
136             a->os_root, cmd_name(a, "ECHO"),
137             "#          size     offset    fstype",
138             a->tmp);
139
140 #ifdef DEBUG
141         for (sp = slice_subpartition_first(storage_get_selected_slice(a->s));
142              sp != NULL; sp = subpartition_next(sp)) {
143                 command_add(cmds, "%s%s 'mountpoint: %s device: %s'",
144                      a->os_root, cmd_name(a, "ECHO"),
145                      subpartition_get_mountpoint(sp),
146                      subpartition_get_device_name(sp));
147         }
148 #endif
149
150         /*
151          * Write a line for each subpartition the user wants.
152          */
153         for (sp = slice_subpartition_first(storage_get_selected_slice(a->s));
154              sp != NULL; sp = subpartition_next(sp)) {
155                 if (subpartition_is_tmpfsbacked(sp)) {
156                         continue;
157                 }
158                 if (subpartition_is_swap(sp)) {
159                         command_add(cmds, "%s%s '  %c:\t%s\t*\tswap' >>%sinstall.disklabel",
160                             a->os_root, cmd_name(a, "ECHO"),
161                             subpartition_get_letter(sp),
162                             capacity_to_string(subpartition_get_capacity(sp)),
163                             a->tmp);
164                 } else {
165                         command_add(cmds, "%s%s '  %c:\t%s\t%s\t4.2BSD' >>%sinstall.disklabel",
166                             a->os_root, cmd_name(a, "ECHO"),
167                             subpartition_get_letter(sp),
168                             capacity_to_string(subpartition_get_capacity(sp)),
169                             subpartition_get_letter(sp) == 'a' ? "0" : "*",
170                             a->tmp);
171                 }
172         }
173         temp_file_add(a, "install.disklabel");
174
175         /*
176          * Label the slice from the disklabel we just wove together.
177          */
178         command_add(cmds, "%s%s -R -B -r %s %sinstall.disklabel",
179             a->os_root, cmd_name(a, "DISKLABEL64"),
180             slice_get_device_name(storage_get_selected_slice(a->s)),
181             a->tmp);
182
183         /*
184          * Create a snapshot of the disklabel we just created
185          * for debugging inspection in the log.
186          */
187         command_add(cmds, "%s%s %s",
188             a->os_root, cmd_name(a, "DISKLABEL64"),
189             slice_get_device_name(storage_get_selected_slice(a->s)));
190
191         /*
192          * If encryption was specified, load dm(4).
193          */
194         for (sp = slice_subpartition_first(storage_get_selected_slice(a->s));
195              sp != NULL; sp = subpartition_next(sp)) {
196                 if (subpartition_is_encrypted(sp)) {
197                         fn_get_passphrase(a);
198                         break;
199                 }
200         }
201
202         /*
203          * Create filesystems on the newly-created subpartitions.
204          */
205         for (sp = slice_subpartition_first(storage_get_selected_slice(a->s));
206              sp != NULL; sp = subpartition_next(sp)) {
207                 if (subpartition_is_swap(sp) || subpartition_is_tmpfsbacked(sp)) {
208                         if (subpartition_is_swap(sp) &&
209                             subpartition_is_encrypted(sp)) {
210                                 command_add(cmds,
211                                     "%s%s -d /tmp/t1 luksFormat %sdev/%s",
212                                     a->os_root, cmd_name(a, "CRYPTSETUP"),
213                                     a->os_root,
214                                     subpartition_get_device_name(sp));
215                                 command_add(cmds,
216                                     "%s%s -d /tmp/t1 luksOpen %sdev/%s swap",
217                                     a->os_root, cmd_name(a, "CRYPTSETUP"),
218                                     a->os_root,
219                                     subpartition_get_device_name(sp));
220                         }
221                         continue;
222                 }
223
224                 if (subpartition_is_encrypted(sp) &&
225                     strcmp(subpartition_get_mountpoint(sp), "/") != 0) {
226                         command_add(cmds,
227                             "%s%s -d /tmp/t1 luksFormat %sdev/%s",
228                             a->os_root, cmd_name(a, "CRYPTSETUP"),
229                             a->os_root,
230                             subpartition_get_device_name(sp));
231                         command_add(cmds,
232                             "%s%s -d /tmp/t1 luksOpen %sdev/%s %s",
233                             a->os_root, cmd_name(a, "CRYPTSETUP"),
234                             a->os_root,
235                             subpartition_get_device_name(sp),
236                             subpartition_get_mountpoint(sp) + 1);
237                         command_add(cmds, "%s%s%s -b %ld -f %ld %sdev/mapper/%s",
238                             a->os_root, cmd_name(a, "NEWFS"),
239                             subpartition_is_softupdated(sp) ? " -U" : "",
240                             subpartition_get_bsize(sp),
241                             subpartition_get_fsize(sp),
242                             a->os_root,
243                             subpartition_get_mountpoint(sp) + 1);
244                 } else {
245                         command_add(cmds, "%s%s%s -b %ld -f %ld %sdev/%s",
246                             a->os_root, cmd_name(a, "NEWFS"),
247                             subpartition_is_softupdated(sp) ? " -U" : "",
248                             subpartition_get_bsize(sp),
249                             subpartition_get_fsize(sp),
250                             a->os_root,
251                             subpartition_get_device_name(sp));
252                 }
253         }
254
255         result = commands_execute(a, cmds);
256         commands_free(cmds);
257         return(result);
258 }
259
260 static long
261 default_capacity(struct storage *s, int mtpt)
262 {
263         unsigned long swap;
264         unsigned long capacity;
265         unsigned long mem;
266
267         if (mtpt == MTPT_HOME)
268                 return(-1);
269
270         capacity = slice_get_capacity(storage_get_selected_slice(s));
271         mem = storage_get_memsize(s);
272         swap = 2 * mem;
273         if (mem > (capacity / 2) || capacity < 4096)
274                 swap = mem;
275         if (mem > capacity)
276                 swap = capacity / 2;
277         if (swap > SWAP_MAX)
278                 swap = SWAP_MAX;
279
280         if (capacity < DISK_MIN) {
281                 /*
282                  * For the purposes of this installer:
283                  * can't be done.  Sorry.
284                  */
285                 return(-1);
286         } else if (capacity < 4096) {
287                 switch (mtpt) {
288                 case MTPT_ROOT: return(320);
289                 case MTPT_SWAP: return(swap);
290                 case MTPT_VAR:  return(128);
291                 case MTPT_TMP:  return(128);
292                 case MTPT_USR:  return(1472);
293                 }
294         } else if (capacity < 10240) {
295                 switch (mtpt) {
296                 case MTPT_ROOT: return(640);
297                 case MTPT_SWAP: return(swap);
298                 case MTPT_VAR:  return(256);
299                 case MTPT_TMP:  return(256);
300                 case MTPT_USR:  return(2688);
301                 }
302         } else {
303                 switch (mtpt) {
304                 case MTPT_ROOT: return(768);
305                 case MTPT_SWAP: return(swap);
306                 case MTPT_VAR:  return(256);
307                 case MTPT_TMP:  return(256);
308                 case MTPT_USR:  return(7680);
309                 }
310         }
311         /* shouldn't ever happen */
312         return(-1);
313 }
314
315 static int
316 check_capacity(struct i_fn_args *a)
317 {
318         struct subpartition *sp;
319         long min_capacity[] = {320, 0, 16, 0, 1472, 0, 0};
320         unsigned long total_capacity = 0;
321         int mtpt;
322
323         if (subpartition_find(storage_get_selected_slice(a->s), "/usr") == NULL)
324                 min_capacity[MTPT_ROOT] += min_capacity[MTPT_USR];
325
326         for (sp = slice_subpartition_first(storage_get_selected_slice(a->s));
327              sp != NULL; sp = subpartition_next(sp)) {
328                 long subpart_capacity = subpartition_get_capacity(sp);
329                 const char *mountpt = subpartition_get_mountpoint(sp);
330
331                 if (subpart_capacity == -1)
332                         total_capacity++;
333                 else
334                         total_capacity += subpart_capacity;
335                 for (mtpt = 0; def_mountpt[mtpt] != NULL; mtpt++) {
336                         if (strcmp(mountpt, def_mountpt[mtpt]) == 0 &&
337                             subpart_capacity < min_capacity[mtpt] &&
338                             subpart_capacity != -1) {
339                                 inform(a->c, _("WARNING: The size (%ldM) specified for "
340                                     "the %s subpartition is too small. It "
341                                     "should be at least %ldM or you will "
342                                     "risk running out of space during "
343                                     "the installation."),
344                                     subpart_capacity, mountpt,
345                                     min_capacity[mtpt]);
346                         }
347                 }
348         }
349
350         if (total_capacity > slice_get_capacity(storage_get_selected_slice(a->s))) {
351                 inform(a->c, _("The space allocated to all of your selected "
352                     "subpartitions (%luM) exceeds the total "
353                     "capacity of the selected primary partition "
354                     "(%luM). Remove some subpartitions or choose "
355                     "a smaller size for them and try again."),
356                     total_capacity, slice_get_capacity(storage_get_selected_slice(a->s)));
357                 return(0);
358         }
359
360         return(1);
361 }
362
363 static int
364 check_subpartition_selections(struct dfui_response *r, struct i_fn_args *a)
365 {
366         struct dfui_dataset *ds;
367         struct dfui_dataset *star_ds = NULL;
368         struct aura_dict *d;
369         const char *mountpoint, *capstring;
370         long capacity = 0;
371         long bsize, fsize;
372         int found_root = 0;
373         int softupdates, tmpfsbacked;
374         int valid = 1;
375
376         d = aura_dict_new(1, AURA_DICT_LIST);
377
378         if ((ds = dfui_response_dataset_get_first(r)) == NULL) {
379                 inform(a->c, _("Please set up at least one subpartition."));
380                 valid = 0;
381         }
382
383         for (ds = dfui_response_dataset_get_first(r); valid && ds != NULL;
384             ds = dfui_dataset_get_next(ds)) {
385 #ifdef DEBUG
386                 dfui_dataset_dump(ds);
387 #endif
388                 mountpoint = dfui_dataset_get_value(ds, "mountpoint");
389                 capstring = dfui_dataset_get_value(ds, "capacity");
390
391                 if (expert) {
392                         softupdates =
393                             (strcmp(dfui_dataset_get_value(ds, "softupdates"), "Y") == 0);
394                         fsize = atol(dfui_dataset_get_value(ds, "fsize"));
395                         bsize = atol(dfui_dataset_get_value(ds, "bsize"));
396                         tmpfsbacked = (strcmp(dfui_dataset_get_value(ds, "tmpfsbacked"), "Y") == 0);
397                 } else {
398                         softupdates = (strcmp(mountpoint, "/") == 0 ? 0 : 1);
399                         tmpfsbacked = (strcmp(mountpoint, "/tmp") == 0 ? 0 : 1);
400                         fsize = -1;
401                         bsize = -1;
402                 }
403
404                 if (aura_dict_exists(d, mountpoint, strlen(mountpoint) + 1)) {
405                         inform(a->c, _("The same mount point cannot be specified "
406                             "for two different subpartitions."));
407                         valid = 0;
408                 }
409
410                 if (strcmp(mountpoint, "/") == 0)
411                         found_root = 1;
412
413                 if (strcmp(capstring, "*") == 0) {
414                         if (star_ds != NULL) {
415                                 inform(a->c, _("You cannot have more than one subpartition "
416                                     "with a '*' capacity (meaning 'use the remainder "
417                                     "of the primary partition'.)"));
418                                 valid = 0;
419                         } else {
420                                 star_ds = ds;
421                         }
422                 }
423
424                 if (!(!strcasecmp(mountpoint, "swap") || mountpoint[0] == '/')) {
425                         inform(a->c, _("Mount point must be either 'swap', or it must "
426                             "start with a '/'."));
427                         valid = 0;
428                 }
429
430                 if (strpbrk(mountpoint, " \\\"'`") != NULL) {
431                         inform(a->c, _("Mount point may not contain the following "
432                             "characters: blank space, backslash, or "
433                             "single, double, or back quotes."));
434                         valid = 0;
435                 }
436
437                 if (strlen(capstring) == 0) {
438                         inform(a->c, _("A capacity must be specified."));
439                         valid = 0;
440                 }
441
442                 if (!string_to_capacity(capstring, &capacity)) {
443                         inform(a->c, _("Capacity must be either a '*' symbol to indicate "
444                             "'use the rest of the primary partition', or it "
445                             "must be a series of decimal digits ending with a "
446                             "'M' (indicating megabytes) or a 'G' (indicating "
447                             "gigabytes.)"));
448                         valid = 0;
449                 }
450
451                 /*
452                  * Maybe remove this limit entirely?
453                  */
454                 if ((strcasecmp(mountpoint, "swap") == 0) &&
455                     (capacity > 512*1024)) {
456                         inform(a->c, _("Swap capacity is limited to 512G."));
457                         valid = 0;
458                 }
459
460                 /*
461                  * If we made it through that obstacle course, all is well.
462                  */
463
464                 if (valid)
465                         aura_dict_store(d, mountpoint, strlen(mountpoint) + 1, "", 1);
466         }
467
468         if (!found_root) {
469                 inform(a->c, _("You must include a / (root) subpartition."));
470                 valid = 0;
471         }
472
473         if (aura_dict_size(d) > 16) {
474                 inform(a->c, _("You cannot have more than 16 subpartitions "
475                     "on a single primary partition.  Remove some "
476                     "and try again."));
477                 valid = 0;
478         }
479
480         aura_dict_free(d);
481
482         return(valid);
483 }
484
485 static void
486 save_subpartition_selections(struct dfui_response *r, struct i_fn_args *a)
487 {
488         struct dfui_dataset *ds;
489         char tmpfsbacked;
490         const char *mountpoint, *capstring;
491         long capacity;
492         long bsize, fsize;
493         int softupdates;
494         int valid = 1;
495
496         subpartitions_free(storage_get_selected_slice(a->s));
497
498         for (ds = dfui_response_dataset_get_first(r); valid && ds != NULL;
499             ds = dfui_dataset_get_next(ds)) {
500                 mountpoint = dfui_dataset_get_value(ds, "mountpoint");
501                 capstring = dfui_dataset_get_value(ds, "capacity");
502
503                 if (expert) {
504                         softupdates =
505                             (strcmp(dfui_dataset_get_value(ds, "softupdates"), "Y") == 0);
506                         fsize = atol(dfui_dataset_get_value(ds, "fsize"));
507                         bsize = atol(dfui_dataset_get_value(ds, "bsize"));
508                         tmpfsbacked = (strcmp(dfui_dataset_get_value(ds, "tmpfsbacked"), "Y") == 0);
509                 } else {
510                         softupdates = (strcmp(mountpoint, "/") == 0 ? 0 : 1);
511                         tmpfsbacked = 0;
512                         fsize = -1;
513                         bsize = -1;
514                 }
515
516                 if (string_to_capacity(capstring, &capacity)) {
517                         subpartition_new_ufs(storage_get_selected_slice(a->s),
518                             mountpoint, capacity,
519                             strcasecmp(dfui_dataset_get_value(ds, "encrypted"), "Y") == 0,
520                             softupdates, fsize, bsize, tmpfsbacked);
521                 }
522         }
523 }
524
525 static void
526 populate_create_subpartitions_form(struct dfui_form *f, struct i_fn_args *a)
527 {
528         struct subpartition *sp;
529         struct dfui_dataset *ds;
530         char temp[32];
531         int mtpt;
532         long capacity;
533
534         if (slice_subpartition_first(storage_get_selected_slice(a->s)) != NULL) {
535                 /*
536                  * The user has already given us their subpartition
537                  * preferences, so use them here.
538                  */
539                 for (sp = slice_subpartition_first(storage_get_selected_slice(a->s));
540                      sp != NULL; sp = subpartition_next(sp)) {
541                         ds = dfui_dataset_new();
542                         dfui_dataset_celldata_add(ds, "mountpoint",
543                             subpartition_get_mountpoint(sp));
544                         dfui_dataset_celldata_add(ds, "capacity",
545                             capacity_to_string(subpartition_get_capacity(sp)));
546                         dfui_dataset_celldata_add(ds, "encrypted",
547                             subpartition_is_encrypted(sp) ? "Y" : "N");
548                         if (expert) {
549                                 dfui_dataset_celldata_add(ds, "softupdates",
550                                     subpartition_is_softupdated(sp) ? "Y" : "N");
551                                 dfui_dataset_celldata_add(ds, "tmpfsbacked",
552                                     subpartition_is_tmpfsbacked(sp) ? "Y" : "N");
553                                 snprintf(temp, 32, "%ld", subpartition_get_fsize(sp));
554                                 dfui_dataset_celldata_add(ds, "fsize",
555                                     temp);
556                                 snprintf(temp, 32, "%ld", subpartition_get_bsize(sp));
557                                 dfui_dataset_celldata_add(ds, "bsize",
558                                     temp);
559                         }
560                         dfui_form_dataset_add(f, ds);
561                 }
562         } else {
563                 /*
564                  * Otherwise, populate the form with datasets representing
565                  * reasonably-calculated defaults.  The defaults are chosen
566                  * based on the slice's total capacity and the machine's
567                  * total physical memory (for swap.)
568                  */
569                 for (mtpt = 0; def_mountpt[mtpt] != NULL; mtpt++) {
570                         capacity = default_capacity(a->s, mtpt);
571                         ds = dfui_dataset_new();
572                         dfui_dataset_celldata_add(ds, "mountpoint",
573                             def_mountpt[mtpt]);
574                         dfui_dataset_celldata_add(ds, "capacity",
575                             capacity_to_string(capacity));
576                         dfui_dataset_celldata_add(ds, "encrypted", "N");
577                         if (expert) {
578                                 dfui_dataset_celldata_add(ds, "softupdates",
579                                     strcmp(def_mountpt[mtpt], "/") != 0 ? "Y" : "N");
580                                 dfui_dataset_celldata_add(ds, "tmpfsbacked",
581                                     "N");
582                                 dfui_dataset_celldata_add(ds, "fsize",
583                                     capacity < 1024 ? "1024" : "2048");
584                                 dfui_dataset_celldata_add(ds, "bsize",
585                                     capacity < 1024 ? "8192" : "16384");
586                         }
587                         dfui_form_dataset_add(f, ds);
588                 }
589         }
590 }
591
592 static int
593 warn_subpartition_selections(struct i_fn_args *a)
594 {
595         int valid = 0;
596         struct aura_buffer *omit, *consequences;
597
598         omit = aura_buffer_new(2048);
599         consequences = aura_buffer_new(2048);
600
601         valid = check_capacity(a);
602         if (subpartition_find(storage_get_selected_slice(a->s), "/var") == NULL) {
603                 aura_buffer_cat(omit, "/var ");
604                 aura_buffer_cat(consequences, _("/var will be a plain dir in /\n"));
605         }
606         if (subpartition_find(storage_get_selected_slice(a->s), "/usr") == NULL) {
607                 aura_buffer_cat(omit, "/usr ");
608                 aura_buffer_cat(consequences, _("/usr will be a plain dir in /\n"));
609         }
610         if (subpartition_find(storage_get_selected_slice(a->s), "/tmp") == NULL) {
611                 aura_buffer_cat(omit, "/tmp ");
612                 aura_buffer_cat(consequences, _("/tmp will be symlinked to /var/tmp\n"));
613         }
614         if (subpartition_find(storage_get_selected_slice(a->s), "/home") == NULL) {
615                 aura_buffer_cat(omit, "/home ");
616                 aura_buffer_cat(consequences, _("/home will be symlinked to /usr/home\n"));
617         }
618
619         if (valid && aura_buffer_len(omit) > 0) {
620                 switch (dfui_be_present_dialog(a->c, _("Really omit?"),
621                     _("Omit Subpartition(s)|Return to Create Subpartitions"),
622                     _("You have elected to not have the following "
623                     "subpartition(s):\n\n%s\n\n"
624                     "The ramifications of these subpartition(s) being "
625                     "missing will be:\n\n%s\n"
626                     "Is this really what you want to do?"),
627                     aura_buffer_buf(omit), aura_buffer_buf(consequences))) {
628                 case 1:
629                         valid = 1;
630                         break;
631                 case 2:
632                         valid = 0;
633                         break;
634                 default:
635                         abort_backend();
636                 }
637         }
638
639         aura_buffer_free(omit);
640         aura_buffer_free(consequences);
641
642         return(!valid);
643 }
644
645 static int
646 warn_encrypted_root(struct i_fn_args *a)
647 {
648         int valid = 1;
649         struct subpartition *sp;
650
651         sp = subpartition_find(storage_get_selected_slice(a->s), "/");
652         if (sp == NULL)
653                 return(!valid);
654
655         if (subpartition_is_encrypted(sp)) {
656                 switch (dfui_be_present_dialog(a->c, _("root cannot be encrypted"),
657                     _("Leave root unencrypted|Return to Create Subpartitions"),
658                     _("You have selected encryption for the root partition which "
659                     "is not supported."))) {
660                 case 1:
661                         subpartition_clr_encrypted(sp);
662                         valid = 1;
663                         break;
664                 case 2:
665                         valid = 0;
666                         break;
667                 default:
668                         abort_backend();
669                 }
670         }
671
672         return(!valid);
673 }
674
675 static struct dfui_form *
676 make_create_subpartitions_form(struct i_fn_args *a)
677 {
678         struct dfui_field *fi;
679         struct dfui_form *f;
680         char msg_buf[1][1024];
681
682         snprintf(msg_buf[0], sizeof(msg_buf[0]),
683             _("Subpartitions further divide a primary partition for "
684             "use with %s.  Some reasons you may want "
685             "a set of subpartitions are:\n\n"
686             "- you want to restrict how much data can be written "
687             "to certain parts of the primary partition, to quell "
688             "denial-of-service attacks; and\n"
689             "- you want to speed up access to data on the disk."
690             ""), OPERATING_SYSTEM_NAME);
691
692         f = dfui_form_create(
693             "create_subpartitions",
694             _("Create Subpartitions"),
695             _("Set up the subpartitions (also known as just `partitions' "
696             "in BSD tradition) you want to have on this primary "
697             "partition.\n\n"
698             "For Capacity, use 'M' to indicate megabytes, 'G' to "
699             "indicate gigabytes, or a single '*' to indicate "
700             "'use the remaining space on the primary partition'."),
701
702             msg_buf[0],
703
704             "p", "special", "dfinstaller_create_subpartitions",
705             "p", "minimum_width","64",
706
707             "f", "mountpoint", _("Mountpoint"), "", "",
708             "f", "capacity", _("Capacity"), "", "",
709
710             "f", "encrypted", _("Encrypted"), "", "",
711             "p", "control", "checkbox",
712
713             "a", "ok", _("Accept and Create"), "", "",
714             "a", "cancel",
715             (disk_get_formatted(storage_get_selected_disk(a->s)) ?
716             _("Return to Select Disk") :
717             _("Return to Select Primary Partition")), "", "",
718             "p", "accelerator", "ESC",
719
720             NULL
721         );
722
723         dfui_form_set_multiple(f, 1);
724         dfui_form_set_extensible(f, 1);
725
726         if (expert) {
727                 fi = dfui_form_field_add(f, "softupdates",
728                     dfui_info_new(_("Softupdates"), "", ""));
729                 dfui_field_property_set(fi, "control", "checkbox");
730
731                 fi = dfui_form_field_add(f, "tmpfsbacked",
732                     dfui_info_new(_("TMPFS"), "", ""));
733                 dfui_field_property_set(fi, "control", "checkbox");
734
735                 fi = dfui_form_field_add(f, "fsize",
736                     dfui_info_new(_("Frag Sz"), "", ""));
737
738                 fi = dfui_form_field_add(f, "bsize",
739                     dfui_info_new(_("Block Sz"), "", ""));
740
741                 dfui_form_action_add(f, "switch",
742                     dfui_info_new(_("Switch to Normal Mode"), "", ""));
743         } else {
744                 dfui_form_action_add(f, "switch",
745                     dfui_info_new(_("Switch to Expert Mode"), "", ""));
746         }
747
748         return(f);
749 }
750
751 /*
752  * Returns:
753  *      -1 = the form should be redisplayed
754  *       0 = failure, function is over
755  *       1 = success, function is over
756  */
757 static int
758 show_create_subpartitions_form(struct dfui_form *f, struct i_fn_args *a)
759 {
760         struct dfui_dataset *ds;
761         struct dfui_response *r;
762
763         for (;;) {
764                 if (dfui_form_dataset_get_first(f) == NULL)
765                         populate_create_subpartitions_form(f, a);
766
767                 if (!dfui_be_present(a->c, f, &r))
768                         abort_backend();
769
770                 if (strcmp(dfui_response_get_action_id(r), "cancel") == 0) {
771                         dfui_response_free(r);
772                         return(0);
773                 } else if (strcmp(dfui_response_get_action_id(r), "switch") == 0) {
774                         if (check_subpartition_selections(r, a)) {
775                                 save_subpartition_selections(r, a);
776                                 expert = expert ? 0 : 1;
777                                 dfui_response_free(r);
778                                 return(-1);
779                         }
780                 } else {
781                         if (check_subpartition_selections(r, a)) {
782                                 save_subpartition_selections(r, a);
783                                 if (!warn_subpartition_selections(a) &&
784                                     !warn_encrypted_root(a)) {
785                                         if (!create_subpartitions(a)) {
786                                                 inform(a->c, _("The subpartitions you chose were "
787                                                         "not correctly created, and the "
788                                                         "primary partition may "
789                                                         "now be in an inconsistent state. "
790                                                         "We recommend re-formatting it "
791                                                         "before proceeding."));
792                                                 dfui_response_free(r);
793                                                 return(0);
794                                         } else {
795                                                 dfui_response_free(r);
796                                                 return(1);
797                                         }
798                                 }
799                         }
800                 }
801
802                 dfui_form_datasets_free(f);
803                 /* dfui_form_datasets_add_from_response(f, r); */
804                 for (ds = dfui_response_dataset_get_first(r); ds != NULL;
805                     ds = dfui_dataset_get_next(ds)) {
806                         dfui_form_dataset_add(f, dfui_dataset_dup(ds));
807                 }
808         }
809 }
810
811 void
812 fn_create_subpartitions_ufs(struct i_fn_args *a)
813 {
814         struct dfui_form *f;
815         int done = 0;
816
817         a->result = 0;
818         while (!done) {
819                 f = make_create_subpartitions_form(a);
820                 switch (show_create_subpartitions_form(f, a)) {
821                 case -1:
822                         done = 0;
823                         break;
824                 case 0:
825                         done = 1;
826                         a->result = 0;
827                         break;
828                 case 1:
829                         done = 1;
830                         a->result = 1;
831                         break;
832                 }
833                 dfui_form_free(f);
834         }
835 }