Initial import from FreeBSD RELENG_4:
[dragonfly.git] / release / sysinstall / options.c
1 /*
2  * The new sysinstall program.
3  *
4  * This is probably the last attempt in the `sysinstall' line, the next
5  * generation being slated for what's essentially a complete rewrite.
6  *
7  * $FreeBSD: src/release/sysinstall/options.c,v 1.70.2.5 2001/09/27 07:38:49 murray Exp $
8  *
9  * Copyright (c) 1995
10  *      Jordan Hubbard.  All rights reserved.
11  *
12  * Redistribution and use in source and binary forms, with or without
13  * modification, are permitted provided that the following conditions
14  * are met:
15  * 1. Redistributions of source code must retain the above copyright
16  *    notice, this list of conditions and the following disclaimer,
17  *    verbatim and that no modifications are made prior to this
18  *    point in the file.
19  * 2. Redistributions in binary form must reproduce the above copyright
20  *    notice, this list of conditions and the following disclaimer in the
21  *    documentation and/or other materials provided with the distribution.
22  *
23  * THIS SOFTWARE IS PROVIDED BY JORDAN HUBBARD ``AS IS'' AND
24  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26  * ARE DISCLAIMED.  IN NO EVENT SHALL JORDAN HUBBARD OR HIS PETS BE LIABLE
27  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29  * OR SERVICES; LOSS OF USE, DATA, LIFE OR PROFITS; OR BUSINESS INTERRUPTION)
30  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33  * SUCH DAMAGE.
34  *
35  */
36
37 #include "sysinstall.h"
38 #include <ctype.h>
39 #include <curses.h>
40 #include <term.h>
41
42 int fixitTtyWhich(dialogMenuItem *);
43
44 static char *
45 varCheck(Option opt)
46 {
47     char *cp = NULL;
48
49     if (opt.aux)
50         cp = variable_get((char *)opt.aux);
51     if (!cp)
52         return "NO";
53     return cp;
54 }
55
56 /* Show our little logo */
57 static char *
58 resetLogo(char *str)
59 {
60     return "[RESET!]";
61 }
62
63 static char *
64 mediaCheck(Option opt)
65 {
66     if (mediaDevice) {
67         switch(mediaDevice->type) {
68         case DEVICE_TYPE_UFS:
69         case DEVICE_TYPE_DISK:
70             return "File system";
71
72         case DEVICE_TYPE_FLOPPY:
73             return "Floppy";
74
75         case DEVICE_TYPE_FTP:
76             return "FTP";
77
78         case DEVICE_TYPE_CDROM:
79             return "CDROM";
80
81         case DEVICE_TYPE_TAPE:
82             return "Tape";
83
84         case DEVICE_TYPE_DOS:
85             return "DOS";
86
87         case DEVICE_TYPE_NFS:
88             return "NFS";
89
90         case DEVICE_TYPE_NONE:
91         case DEVICE_TYPE_NETWORK:
92         case DEVICE_TYPE_ANY:
93         default:
94             return "<unknown>";
95         }
96     }
97     return "<not yet set>";
98 }
99
100 #define TAPE_PROMPT     "Please enter the tape block size in 512 byte blocks:"
101 #define NEWFS_PROMPT    "Please enter newfs(8) parameters:"
102 #define RELNAME_PROMPT  "Please specify the release you wish to load or\n\"any\" for a generic release install:"
103 #define BPKG_PROMPT     "Please specify the name of the HTML browser package:"
104 #define BBIN_PROMPT     "Please specify a full pathname to the HTML browser binary:"
105 #define EDITOR_PROMPT   "Please specify the name of the text editor you wish to use:"
106 #define PKG_PROMPT      "Please specify a temporary directory with lots of free space:"
107 #define INSTROOT_PROMPT "Please specify a root directory if installing somewhere other than /"
108 #define TIMEOUT_PROMPT  "Please specify the number of seconds to wait for slow media:"
109
110 static Option Options[] = {
111 { "NFS Secure",         "NFS server talks only on a secure port",
112       OPT_IS_VAR,       NULL,                   VAR_NFS_SECURE,         varCheck        },
113 { "NFS Slow",           "User is using a slow PC or ethernet card",
114       OPT_IS_VAR,       NULL,                   VAR_SLOW_ETHER,         varCheck        },
115 { "Debugging",          "Emit extra debugging output on VTY2 (ALT-F2)",
116       OPT_IS_VAR,       NULL,                   VAR_DEBUG,              varCheck        },
117 { "No Warnings",        "Don't Warn the user when a setting seems incorrect",
118       OPT_IS_VAR,       NULL,                   VAR_NO_WARN,            varCheck        },
119 { "Yes to All",         "Assume \"Yes\" answers to all non-critical dialogs",
120       OPT_IS_VAR,       NULL,                   VAR_NO_CONFIRM,         varCheck        },
121 { "DHCP",               "Attempt automatic DHCP configuration of interfaces",
122       OPT_IS_VAR,       NULL,                   VAR_TRY_DHCP,           varCheck        },
123 { "IPv6",               "Attempt IPv6 configuration of interfaces",
124       OPT_IS_VAR,       NULL,                   VAR_TRY_RTSOL,          varCheck        },
125 { "FTP username",       "Username and password to use instead of anonymous",
126       OPT_IS_FUNC,      mediaSetFTPUserPass,    VAR_FTP_USER,           varCheck        },
127 { "Editor",             "Which text editor to use during installation",
128       OPT_IS_VAR,       EDITOR_PROMPT,          VAR_EDITOR,             varCheck        },
129 { "Tape Blocksize",     "Tape media block size in 512 byte blocks",
130       OPT_IS_VAR,       TAPE_PROMPT,            VAR_TAPE_BLOCKSIZE,     varCheck        },
131 { "Extract Detail",     "How verbosely to display file name information during extractions",
132       OPT_IS_FUNC,      mediaSetCPIOVerbosity,  VAR_CPIO_VERBOSITY,     varCheck        },
133 { "Release Name",       "Which release to attempt to load from installation media",
134       OPT_IS_VAR,       RELNAME_PROMPT,         VAR_RELNAME,            varCheck        },
135 { "Install Root",       "Which directory to unpack distributions or packages relative to",
136       OPT_IS_VAR,       INSTROOT_PROMPT,        VAR_INSTALL_ROOT,       varCheck        },
137 { "Browser package",    "This is the browser package that will be used for viewing HTML docs",
138       OPT_IS_VAR,       BPKG_PROMPT,            VAR_BROWSER_PACKAGE,    varCheck        },
139 { "Browser Exec",       "This is the path to the main binary of the browser package",
140       OPT_IS_VAR,       BBIN_PROMPT,            VAR_BROWSER_BINARY,     varCheck        },
141 { "Media Type",         "The current installation media type.",
142       OPT_IS_FUNC,      mediaGetType,           VAR_MEDIA_TYPE,         mediaCheck      },
143 { "Media Timeout",      "Timeout value in seconds for slow media.",
144       OPT_IS_VAR,       TIMEOUT_PROMPT,         VAR_MEDIA_TIMEOUT,      varCheck        },
145 { "Package Temp",       "The directory where package temporary files should go",
146       OPT_IS_VAR,       PKG_PROMPT,             VAR_PKG_TMPDIR,         varCheck        },
147 { "Newfs Args",         "Default parameters for newfs(8)",
148       OPT_IS_VAR,       NEWFS_PROMPT,           VAR_NEWFS_ARGS,         varCheck        },
149 { "Fixit Console",      "Which tty to use for the Fixit action.",
150       OPT_IS_FUNC,      fixitTtyWhich,          VAR_FIXIT_TTY,          varCheck        },
151 { "Config save",        "Whether or not to save installation kernel config changes",
152       OPT_IS_VAR,       NULL,                   VAR_KGET,               varCheck        },
153 { "Re-scan Devices",    "Re-run sysinstall's initial device probe",
154       OPT_IS_FUNC,      deviceRescan },
155 { "Use Defaults",       "Reset all values to startup defaults",
156       OPT_IS_FUNC,      installVarDefaults,     0,                      resetLogo       },
157 { NULL },
158 };
159
160 #define OPT_START_ROW   4
161 #define OPT_END_ROW     19
162 #define OPT_NAME_COL    0
163 #define OPT_VALUE_COL   16
164 #define GROUP_OFFSET    40
165
166 static char *
167 value_of(Option opt)
168 {
169     static char ival[40];
170
171     switch (opt.type) {
172     case OPT_IS_STRING:
173         return (char *)opt.data;
174
175     case OPT_IS_INT:
176         sprintf(ival, "%lu", (long)opt.data);
177         return ival;
178
179     case OPT_IS_FUNC:
180     case OPT_IS_VAR:
181         if (opt.check)
182             return opt.check(opt);
183         else
184             return "<*>";
185     }
186     return "<unknown>";
187 }
188
189 static int
190 fire(Option opt)
191 {
192     int status = 0;
193
194     if (opt.type == OPT_IS_FUNC) {
195         int (*cp)(char *) = opt.data, rcode;
196
197         rcode = cp(NULL);
198         status = 1;
199     }
200     else if (opt.type == OPT_IS_VAR) {
201         if (opt.data) {
202             (void)variable_get_value(opt.aux, opt.data, -1);
203             status = 1;
204         }
205         else if (variable_get(opt.aux)) {
206             if (!variable_cmp(opt.aux, "YES"))
207                 variable_set2(opt.aux, "NO", -1);
208             else
209                 variable_set2(opt.aux, "YES", -1);
210         }
211         else
212             variable_set2(opt.aux, "YES", 0);
213     }
214     if (opt.check)
215         opt.check(opt);
216     refresh();
217     return status;
218 }
219
220 int
221 optionsEditor(dialogMenuItem *self)
222 {
223     int i, optcol, optrow, key;
224     static int currOpt = 0;
225     WINDOW *w = savescr();
226     
227     dialog_clear();
228     clear();
229
230     while (1) {
231         /* Whap up the header */
232         attrset(A_REVERSE); mvaddstr(0, 0, "Options Editor"); attrset(A_NORMAL);
233         for (i = 0; i < 2; i++) {
234             mvaddstr(OPT_START_ROW - 2, OPT_NAME_COL + (i * GROUP_OFFSET), "Name");
235             mvaddstr(OPT_START_ROW - 1, OPT_NAME_COL + (i * GROUP_OFFSET), "----");
236
237             mvaddstr(OPT_START_ROW - 2, OPT_VALUE_COL + (i * GROUP_OFFSET), "Value");
238             mvaddstr(OPT_START_ROW - 1, OPT_VALUE_COL + (i * GROUP_OFFSET), "-----");
239         }
240         /* And the footer */
241         mvprintw(OPT_END_ROW + 1, 0, "Use SPACE to select/toggle an option, arrow keys to move,");
242         mvprintw(OPT_END_ROW + 2, 0, "? or F1 for more help.  When you're done, type Q to Quit.");
243
244         optrow = OPT_START_ROW;
245         optcol = OPT_NAME_COL;
246         for (i = 0; Options[i].name; i++) {
247             /* Names are painted somewhat gratuitously each time, but it's easier this way */
248             mvprintw(optrow, OPT_NAME_COL + optcol, Options[i].name);
249             if (currOpt == i)
250                 attrset(ATTR_SELECTED);
251             mvprintw(optrow++, OPT_VALUE_COL + optcol, value_of(Options[i]));
252             if (currOpt == i)
253                 attrset(A_NORMAL);
254             if (optrow == OPT_END_ROW) {
255                 optrow = OPT_START_ROW;
256                 optcol += GROUP_OFFSET;
257             }
258             clrtoeol();
259         }
260         attrset(ATTR_TITLE);
261         mvaddstr(OPT_END_ROW + 4, 0, Options[currOpt].desc);
262         attrset(A_NORMAL);
263         clrtoeol();
264         move(0, 14);
265         refresh();
266
267         /* Start the edit loop */
268         key = toupper(getch());
269         switch (key) {
270         case KEY_F(1):
271         case '?':
272             systemDisplayHelp("options");
273             clear();
274             break;
275
276         case '\020':    /* ^P */
277         case KEY_UP:
278             if (currOpt)
279                 --currOpt;
280             else
281                 for (currOpt = 0; Options[currOpt + 1].name; currOpt++);
282             continue;
283
284         case '\016':    /* ^N */
285         case KEY_DOWN:
286             if (Options[currOpt + 1].name)
287                 ++currOpt;
288             else
289                 currOpt = 0;
290             continue;
291
292         case KEY_HOME:
293             currOpt = 0;
294             continue;
295
296         case KEY_END:
297             while (Options[currOpt + 1].name)
298                 ++currOpt;
299             continue;
300
301         case ' ':
302             if (fire(Options[currOpt]))
303                 clear();
304             continue;
305
306         case '\033':    /* ESC */
307         case 'Q':
308             clear();
309             dialog_clear();
310             restorescr(w);
311             return DITEM_SUCCESS;
312
313         default:
314             beep();
315         }
316     }
317     /* NOTREACHED */
318     return DITEM_SUCCESS;
319 }
320
321 int
322 fixitTtyWhich(dialogMenuItem *self)
323 {
324     char *cp = variable_get(VAR_FIXIT_TTY);
325
326     if (!cp) {
327         msgConfirm("The Fix-it TTY setting is not set to anything!");
328         return DITEM_FAILURE;
329     }
330     else {
331         if (!strcmp(cp, "standard"))
332             variable_set2(VAR_FIXIT_TTY, "serial", 0);
333         else /* must be "serial" - wrap around */
334             variable_set2(VAR_FIXIT_TTY, "standard", 0);
335     }
336     return DITEM_SUCCESS;
337 }