]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - usr.sbin/sysinstall/options.c
Update FTP directories to include new layout. Previously discussed with
[FreeBSD/stable/9.git] / usr.sbin / 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$
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(Option *opt)
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_HTTP:
79             return "HTTP Proxy";
80
81         case DEVICE_TYPE_CDROM:
82             return "CDROM";
83
84         case DEVICE_TYPE_USB:
85             return "USB";
86
87         case DEVICE_TYPE_DOS:
88             return "DOS";
89
90         case DEVICE_TYPE_NFS:
91             return "NFS";
92
93         case DEVICE_TYPE_NONE:
94         case DEVICE_TYPE_NETWORK:
95         case DEVICE_TYPE_ANY:
96         default:
97             return "<unknown>";
98         }
99     }
100     return "<not yet set>";
101 }
102
103 #define NEWFS_PROMPT    "Please enter newfs(8) parameters:"
104 #define RELNAME_PROMPT  "Please specify the release you wish to load or\n\"any\" for a generic release install:"
105 #define BPKG_PROMPT     "Please specify the name of the HTML browser package:"
106 #define BBIN_PROMPT     "Please specify a full pathname to the HTML browser binary:"
107 #define EDITOR_PROMPT   "Please specify the name of the text editor you wish to use:"
108 #define PKG_PROMPT      "Please specify a temporary directory with lots of free space:"
109 #define INSTROOT_PROMPT "Please specify a root directory if installing somewhere other than /"
110 #define TIMEOUT_PROMPT  "Please specify the number of seconds to wait for slow media:"
111
112 static Option Options[] = {
113 { "NFS Secure",         "NFS server talks only on a secure port",
114       OPT_IS_VAR,       NULL,                   VAR_NFS_SECURE,         varCheck        },
115 { "NFS Slow",           "User is using a slow PC or ethernet card",
116       OPT_IS_VAR,       NULL,                   VAR_SLOW_ETHER,         varCheck        },
117 { "NFS TCP",            "Use TCP protocol for NFS",
118       OPT_IS_VAR,       NULL,                   VAR_NFS_TCP,            varCheck        },
119 { "NFS version 3",      "Use NFS version 3",
120       OPT_IS_VAR,       NULL,                   VAR_NFS_V3,             varCheck        },
121 { "Debugging",          "Emit extra debugging output on VTY2 (ALT-F2)",
122       OPT_IS_VAR,       NULL,                   VAR_DEBUG,              varCheck        },
123 { "No Warnings",        "Don't Warn the user when a setting seems incorrect",
124       OPT_IS_VAR,       NULL,                   VAR_NO_WARN,            varCheck        },
125 { "Yes to All",         "Assume \"Yes\" answers to all non-critical dialogs",
126       OPT_IS_VAR,       NULL,                   VAR_NO_CONFIRM,         varCheck        },
127 { "DHCP",               "Attempt automatic DHCP configuration of interfaces",
128       OPT_IS_VAR,       NULL,                   VAR_TRY_DHCP,           varCheck        },
129 { "IPv6",               "Attempt IPv6 configuration of interfaces",
130       OPT_IS_VAR,       NULL,                   VAR_TRY_RTSOL,          varCheck        },
131 { "FTP username",       "Username and password to use instead of anonymous",
132       OPT_IS_FUNC,      mediaSetFTPUserPass,    VAR_FTP_USER,           varCheck        },
133 { "Editor",             "Which text editor to use during installation",
134       OPT_IS_VAR,       EDITOR_PROMPT,          VAR_EDITOR,             varCheck        },
135 { "Extract Detail",     "How verbosely to display file name information during extractions",
136       OPT_IS_FUNC,      mediaSetCPIOVerbosity,  VAR_CPIO_VERBOSITY,     varCheck        },
137 { "Release Name",       "Which release to attempt to load from installation media",
138       OPT_IS_VAR,       RELNAME_PROMPT,         VAR_RELNAME,            varCheck        },
139 { "Install Root",       "Which directory to unpack distributions or packages relative to",
140       OPT_IS_VAR,       INSTROOT_PROMPT,        VAR_INSTALL_ROOT,       varCheck        },
141 { "Browser package",    "This is the browser package that will be used for viewing HTML docs",
142       OPT_IS_VAR,       BPKG_PROMPT,            VAR_BROWSER_PACKAGE,    varCheck        },
143 { "Browser Exec",       "This is the path to the main binary of the browser package",
144       OPT_IS_VAR,       BBIN_PROMPT,            VAR_BROWSER_BINARY,     varCheck        },
145 { "Media Type",         "The current installation media type.",
146       OPT_IS_FUNC,      mediaGetType,           VAR_MEDIA_TYPE,         mediaCheck      },
147 { "Media Timeout",      "Timeout value in seconds for slow media.",
148       OPT_IS_VAR,       TIMEOUT_PROMPT,         VAR_MEDIA_TIMEOUT,      varCheck        },
149 { "Package Temp",       "The directory where package temporary files should go",
150       OPT_IS_VAR,       PKG_PROMPT,             VAR_PKG_TMPDIR,         varCheck        },
151 { "Newfs Args",         "Default parameters for newfs(8)",
152       OPT_IS_VAR,       NEWFS_PROMPT,           VAR_NEWFS_ARGS,         varCheck        },
153 { "Fixit Console",      "Which tty to use for the Fixit action.",
154       OPT_IS_FUNC,      fixitTtyWhich,          VAR_FIXIT_TTY,          varCheck        },
155 { "Re-scan Devices",    "Re-run sysinstall's initial device probe",
156       OPT_IS_FUNC,      deviceRescan,           NULL,                   NULL            },
157 { "Use Defaults",       "Reset all values to startup defaults",
158       OPT_IS_FUNC,      installVarDefaults,     NULL,                   resetLogo       },
159 { NULL, NULL, 0, NULL, NULL, NULL },
160 };
161
162 #define OPT_START_ROW   4
163 #define OPT_END_ROW     19
164 #define OPT_NAME_COL    0
165 #define OPT_VALUE_COL   16
166 #define GROUP_OFFSET    40
167
168 static char *
169 value_of(Option opt)
170 {
171     static char ival[40];
172
173     switch (opt.type) {
174     case OPT_IS_STRING:
175         return (char *)opt.data;
176
177     case OPT_IS_INT:
178         sprintf(ival, "%lu", (long)opt.data);
179         return ival;
180
181     case OPT_IS_FUNC:
182     case OPT_IS_VAR:
183         if (opt.check)
184             return opt.check(&opt);
185         else
186             return "<*>";
187     }
188     return "<unknown>";
189 }
190
191 static int
192 fire(Option opt)
193 {
194     int status = 0;
195
196     if (opt.type == OPT_IS_FUNC) {
197         int (*cp)(char *) = opt.data, rcode;
198
199         rcode = cp(NULL);
200         status = 1;
201     }
202     else if (opt.type == OPT_IS_VAR) {
203         if (opt.data) {
204             (void)variable_get_value(opt.aux, opt.data, -1);
205             status = 1;
206         }
207         else if (variable_get(opt.aux)) {
208             if (!variable_cmp(opt.aux, "YES"))
209                 variable_set2(opt.aux, "NO", -1);
210             else
211                 variable_set2(opt.aux, "YES", -1);
212         }
213         else
214             variable_set2(opt.aux, "YES", 0);
215     }
216     if (opt.check)
217         opt.check(&opt);
218     refresh();
219     return status;
220 }
221
222 int
223 optionsEditor(dialogMenuItem *self)
224 {
225     int i, optcol, optrow, key;
226     static int currOpt = 0;
227     WINDOW *w = savescr();
228     
229     dialog_clear();
230     clear();
231
232     while (1) {
233         /* Whap up the header */
234         attrset(A_REVERSE); mvaddstr(0, 0, "Options Editor"); attrset(A_NORMAL);
235         for (i = 0; i < 2; i++) {
236             mvaddstr(OPT_START_ROW - 2, OPT_NAME_COL + (i * GROUP_OFFSET), "Name");
237             mvaddstr(OPT_START_ROW - 1, OPT_NAME_COL + (i * GROUP_OFFSET), "----");
238
239             mvaddstr(OPT_START_ROW - 2, OPT_VALUE_COL + (i * GROUP_OFFSET), "Value");
240             mvaddstr(OPT_START_ROW - 1, OPT_VALUE_COL + (i * GROUP_OFFSET), "-----");
241         }
242         /* And the footer */
243         mvprintw(OPT_END_ROW + 1, 0, "Use SPACE to select/toggle an option, arrow keys to move,");
244         mvprintw(OPT_END_ROW + 2, 0, "? or F1 for more help.  When you're done, type Q to Quit.");
245
246         optrow = OPT_START_ROW;
247         optcol = OPT_NAME_COL;
248         for (i = 0; Options[i].name; i++) {
249             /* Names are painted somewhat gratuitously each time, but it's easier this way */
250             mvprintw(optrow, OPT_NAME_COL + optcol, Options[i].name);
251             if (currOpt == i)
252                 attrset(ATTR_SELECTED);
253             mvprintw(optrow++, OPT_VALUE_COL + optcol, value_of(Options[i]));
254             if (currOpt == i)
255                 attrset(A_NORMAL);
256             if (optrow == OPT_END_ROW) {
257                 optrow = OPT_START_ROW;
258                 optcol += GROUP_OFFSET;
259             }
260             clrtoeol();
261         }
262         attrset(ATTR_TITLE);
263         mvaddstr(OPT_END_ROW + 4, 0, Options[currOpt].desc);
264         attrset(A_NORMAL);
265         clrtoeol();
266         move(0, 14);
267         refresh();
268
269         /* Start the edit loop */
270         key = toupper(getch());
271         switch (key) {
272         case KEY_F(1):
273         case '?':
274             systemDisplayHelp("options");
275             clear();
276             break;
277
278         case '\020':    /* ^P */
279         case KEY_UP:
280             if (currOpt)
281                 --currOpt;
282             else
283                 for (currOpt = 0; Options[currOpt + 1].name; currOpt++);
284             continue;
285
286         case '\016':    /* ^N */
287         case KEY_DOWN:
288             if (Options[currOpt + 1].name)
289                 ++currOpt;
290             else
291                 currOpt = 0;
292             continue;
293
294         case KEY_HOME:
295             currOpt = 0;
296             continue;
297
298         case KEY_END:
299             while (Options[currOpt + 1].name)
300                 ++currOpt;
301             continue;
302
303         case ' ':
304             if (fire(Options[currOpt]))
305                 clear();
306             continue;
307
308         case '\033':    /* ESC */
309         case 'Q':
310             clear();
311             dialog_clear();
312             restorescr(w);
313             return DITEM_SUCCESS | DITEM_CONTINUE;
314
315         default:
316             beep();
317         }
318     }
319     /* NOTREACHED */
320     return DITEM_SUCCESS;
321 }
322
323 int
324 fixitTtyWhich(dialogMenuItem *self)
325 {
326     char *cp = variable_get(VAR_FIXIT_TTY);
327
328     if (!cp) {
329         msgConfirm("The Fix-it TTY setting is not set to anything!");
330         return DITEM_FAILURE;
331     }
332     else {
333         if (!strcmp(cp, "standard"))
334             variable_set2(VAR_FIXIT_TTY, "serial", 0);
335         else /* must be "serial" - wrap around */
336             variable_set2(VAR_FIXIT_TTY, "standard", 0);
337     }
338     return DITEM_SUCCESS;
339 }