tcpip.c revision 56713
1/*
2 * $FreeBSD: head/usr.sbin/sysinstall/tcpip.c 56713 2000-01-28 02:15:07Z jkh $
3 *
4 * Copyright (c) 1995
5 *      Gary J Palmer. All rights reserved.
6 * Copyright (c) 1996
7 *      Jordan K. Hubbard. All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
11 * are met:
12 * 1. Redistributions of source code must retain the above copyright
13 *    notice, this list of conditions and the following disclaimer,
14 *    verbatim and that no modifications are made prior to this
15 *    point in the file.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 *    notice, this list of conditions and the following disclaimer in the
18 *    documentation and/or other materials provided with the distribution.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR
21 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
22 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
23 * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT,
24 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
25 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
26 * OF USE, DATA, LIFE OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
27 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
28 * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 *
31 */
32
33/*
34 * All kinds of hacking also performed by jkh on this code.  Don't
35 * blame Gary for every bogosity you see here.. :-)
36 *
37 * -jkh
38 */
39
40#include "sysinstall.h"
41#include <sys/param.h>
42#include <netdb.h>
43
44/* The help file for the TCP/IP setup screen */
45#define TCP_HELPFILE		"tcp"
46
47/* These are nasty, but they make the layout structure a lot easier ... */
48
49static char	hostname[HOSTNAME_FIELD_LEN], domainname[HOSTNAME_FIELD_LEN],
50		gateway[IPADDR_FIELD_LEN], nameserver[IPADDR_FIELD_LEN];
51static int	okbutton, cancelbutton;
52static char	ipaddr[IPADDR_FIELD_LEN], netmask[IPADDR_FIELD_LEN], extras[EXTRAS_FIELD_LEN];
53
54/* What the screen size is meant to be */
55#define TCP_DIALOG_Y		0
56#define TCP_DIALOG_X		8
57#define TCP_DIALOG_WIDTH	COLS - 16
58#define TCP_DIALOG_HEIGHT	LINES - 2
59
60static Layout layout[] = {
61#define LAYOUT_HOSTNAME		0
62    { 1, 2, 25, HOSTNAME_FIELD_LEN - 1,
63      "Host:", "Your fully-qualified hostname, e.g. foo.bar.com",
64      hostname, STRINGOBJ, NULL },
65#define LAYOUT_DOMAINNAME	1
66    { 1, 35, 20, HOSTNAME_FIELD_LEN - 1,
67      "Domain:",
68      "The name of the domain that your machine is in, e.g. bar.com",
69      domainname, STRINGOBJ, NULL },
70#define LAYOUT_GATEWAY		2
71    { 5, 2, 18, IPADDR_FIELD_LEN - 1,
72      "Gateway:",
73      "IP address of host forwarding packets to non-local destinations",
74      gateway, STRINGOBJ, NULL },
75#define LAYOUT_NAMESERVER	3
76    { 5, 35, 18, IPADDR_FIELD_LEN - 1,
77      "Name server:", "IP address of your local DNS server",
78      nameserver, STRINGOBJ, NULL },
79#define LAYOUT_IPADDR		4
80    { 10, 10, 18, IPADDR_FIELD_LEN - 1,
81      "IP Address:",
82      "The IP address to be used for this interface",
83      ipaddr, STRINGOBJ, NULL },
84#define LAYOUT_NETMASK		5
85    { 10, 35, 18, IPADDR_FIELD_LEN - 1,
86      "Netmask:",
87      "The netmask for this interface, e.g. 0xffffff00 for a class C network",
88      netmask, STRINGOBJ, NULL },
89#define LAYOUT_EXTRAS		6
90    { 14, 10, 37, HOSTNAME_FIELD_LEN - 1,
91      "Extra options to ifconfig:",
92      "Any interface-specific options to ifconfig you would like to add",
93      extras, STRINGOBJ, NULL },
94#define LAYOUT_OKBUTTON		7
95    { 19, 15, 0, 0,
96      "OK", "Select this if you are happy with these settings",
97      &okbutton, BUTTONOBJ, NULL },
98#define LAYOUT_CANCELBUTTON	8
99    { 19, 35, 0, 0,
100      "CANCEL", "Select this if you wish to cancel this screen",
101      &cancelbutton, BUTTONOBJ, NULL },
102    { NULL },
103};
104
105#define _validByte(b) ((b) >= 0 && (b) <= 255)
106
107/* whine */
108static void
109feepout(char *msg)
110{
111    beep();
112    msgConfirm(msg);
113}
114
115/* Very basic IP address integrity check - could be drastically improved */
116static int
117verifyIP(char *ip)
118{
119    int a, b, c, d;
120
121    if (ip && sscanf(ip, "%d.%d.%d.%d", &a, &b, &c, &d) == 4 &&
122	_validByte(a) && _validByte(b) && _validByte(c) &&
123	_validByte(d) && (d != 255))
124	return 1;
125    else
126	return 0;
127}
128
129/* Check for the settings on the screen - the per-interface stuff is
130   moved to the main handling code now to do it on the fly - sigh */
131static int
132verifySettings(void)
133{
134    if (!hostname[0])
135	feepout("Must specify a host name of some sort!");
136    else if (gateway[0] && strcmp(gateway, "NO") && !verifyIP(gateway))
137	feepout("Invalid gateway IP address specified");
138    else if (nameserver[0] && !verifyIP(nameserver))
139	feepout("Invalid name server IP address specified");
140    else if (netmask[0] && (netmask[0] < '0' && netmask[0] > '3'))
141	feepout("Invalid netmask value");
142    else if (ipaddr[0] && !verifyIP(ipaddr))
143	feepout("Invalid IP address");
144    else
145	return 1;
146    return 0;
147}
148
149static void
150dhcpGetInfo(Device *devp)
151{
152    /* If it fails, do it the old-fashioned way */
153    if (dhcpParseLeases("/var/db/dhclient.leases", hostname, domainname,
154			 nameserver, ipaddr, gateway, netmask) == -1) {
155	FILE *ifp;
156	char *cp, cmd[256], data[2048];
157	int i, j;
158
159	/* Bah, now we have to kludge getting the information from ifconfig */
160	snprintf(cmd, sizeof cmd, "ifconfig %s", devp->name);
161	ifp = popen(cmd, "r");
162	if (ifp) {
163	    j = fread(data, 1, sizeof(data), ifp);
164	    fclose(ifp);
165	    if (j < 0)	/* paranoia */
166		j = 0;
167	    data[j] = '\0';
168	    if (isDebug())
169		msgDebug("DHCP configured interface returns %s\n", data);
170	    /* XXX This is gross as it assumes a certain ordering to
171	       ifconfig's output! XXX */
172	    if ((cp = strstr(data, "inet")) != NULL) {
173		i = 0;
174		cp += 5;	/* move over keyword */
175		while (*cp != ' ')
176		    ipaddr[i++] = *(cp++);
177		ipaddr[i] = '\0';
178		if (!strncmp(++cp, "netmask", 7)) {
179		    i = 0;
180		    cp += 8;
181		    while (*cp != ' ')
182			netmask[i++] = *(cp++);
183		    netmask[i] = '\0';
184		}
185	    }
186	}
187    }
188
189    /* If we didn't get a name server value, hunt for it in resolv.conf */
190    if (!nameserver[0] && file_readable("/etc/resolv.conf"))
191	configEnvironmentResolv("/etc/resolv.conf");
192    if (hostname[0])
193	variable_set2(VAR_HOSTNAME, hostname, 0);
194}
195
196/* This is it - how to get TCP setup values */
197int
198tcpOpenDialog(Device *devp)
199{
200    WINDOW              *ds_win, *save = NULL;
201    ComposeObj          *obj = NULL;
202    int                 n = 0, filled = 0, cancel = FALSE;
203    int			max, ret = DITEM_SUCCESS;
204    int			use_dhcp = FALSE;
205    char                *tmp;
206    char		title[80];
207
208    save = savescr();
209    /* Initialise vars from previous device values */
210    if (devp->private) {
211	DevInfo *di = (DevInfo *)devp->private;
212
213	SAFE_STRCPY(ipaddr, di->ipaddr);
214	SAFE_STRCPY(netmask, di->netmask);
215	SAFE_STRCPY(extras, di->extras);
216	use_dhcp = di->use_dhcp;
217    }
218    else { /* See if there are any defaults */
219	char *cp;
220
221	/* First try a DHCP scan if such behavior is desired */
222	if (!variable_cmp(VAR_TRY_DHCP, "YES") || !msgYesNo("Do you want to try DHCP configuration of the interface?")) {
223	    Mkdir("/var/db");
224	    Mkdir("/var/run");
225	    Mkdir("/tmp");
226	    msgNotify("Scanning for DHCP servers...");
227	    if (0 == vsystem("dhclient -1 %s", devp->name)) {
228		dhcpGetInfo(devp);
229		use_dhcp = TRUE;
230	    }
231	    else
232		use_dhcp = FALSE;
233	}
234
235	/* Special hack so it doesn't show up oddly in the tcpip setup menu */
236	if (!strcmp(gateway, "NO"))
237	    gateway[0] = '\0';
238
239	/* Get old IP address from variable space, if available */
240	if (!ipaddr[0]) {
241	    if ((cp = variable_get(VAR_IPADDR)) != NULL)
242		SAFE_STRCPY(ipaddr, cp);
243	    else if ((cp = variable_get(string_concat3(devp->name, "_", VAR_IPADDR))) != NULL)
244		SAFE_STRCPY(ipaddr, cp);
245	}
246
247	/* Get old netmask from variable space, if available */
248	if (!netmask[0]) {
249	    if ((cp = variable_get(VAR_NETMASK)) != NULL)
250		SAFE_STRCPY(netmask, cp);
251	    else if ((cp = variable_get(string_concat3(devp->name, "_", VAR_NETMASK))) != NULL)
252		SAFE_STRCPY(netmask, cp);
253	}
254
255	/* Get old extras string from variable space, if available */
256	if (!extras[0]) {
257	    if ((cp = variable_get(VAR_EXTRAS)) != NULL)
258		SAFE_STRCPY(extras, cp);
259	    else if ((cp = variable_get(string_concat3(devp->name, "_", VAR_EXTRAS))) != NULL)
260		SAFE_STRCPY(extras, cp);
261	}
262    }
263
264    /* Look up values already recorded with the system, or blank the string variables ready to accept some new data */
265    if (!hostname[0]) {
266	tmp = variable_get(VAR_HOSTNAME);
267	if (tmp)
268	    SAFE_STRCPY(hostname, tmp);
269    }
270    if (!domainname[0]) {
271	tmp = variable_get(VAR_DOMAINNAME);
272	if (tmp)
273	    SAFE_STRCPY(domainname, tmp);
274    }
275    if (!gateway[0]) {
276	tmp = variable_get(VAR_GATEWAY);
277	if (tmp && strcmp(tmp, "NO"))
278	    SAFE_STRCPY(gateway, tmp);
279    }
280    if (!nameserver[0]) {
281	tmp = variable_get(VAR_NAMESERVER);
282	if (tmp)
283	    SAFE_STRCPY(nameserver, tmp);
284    }
285
286    /* If non-interactive, jump straight over the dialog crap and into config section */
287    if (variable_get(VAR_NONINTERACTIVE) &&
288	!variable_get(VAR_NETINTERACTIVE)) {
289	if (!hostname[0])
290	    msgConfirm("WARNING: hostname variable not set and is a non-optional\n"
291		       "parameter.  Please add this to your installation script\n"
292		       "or set the netInteractive variable (see sysinstall man page)");
293	else
294	    goto netconfig;
295    }
296
297    /* Now do all the screen I/O */
298    dialog_clear_norefresh();
299
300    /* We need a curses window */
301    if (!(ds_win = openLayoutDialog(TCP_HELPFILE, " Network Configuration ",
302				    TCP_DIALOG_X, TCP_DIALOG_Y, TCP_DIALOG_WIDTH, TCP_DIALOG_HEIGHT))) {
303	beep();
304	msgConfirm("Cannot open TCP/IP dialog window!!");
305	restorescr(save);
306	return DITEM_FAILURE;
307    }
308
309    /* Draw interface configuration box */
310    draw_box(ds_win, TCP_DIALOG_Y + 9, TCP_DIALOG_X + 8, TCP_DIALOG_HEIGHT - 13, TCP_DIALOG_WIDTH - 17,
311	     dialog_attr, border_attr);
312    wattrset(ds_win, dialog_attr);
313    sprintf(title, " Configuration for Interface %s ", devp->name);
314    mvwaddstr(ds_win, TCP_DIALOG_Y + 9, TCP_DIALOG_X + 14, title);
315
316    /* Some more initialisation before we go into the main input loop */
317    obj = initLayoutDialog(ds_win, layout, TCP_DIALOG_X, TCP_DIALOG_Y, &max);
318
319reenter:
320    cancelbutton = okbutton = 0;
321    while (layoutDialogLoop(ds_win, layout, &obj, &n, max, &cancelbutton, &cancel)) {
322	/* Prevent this from being irritating if user really means NO */
323	if (filled < 3) {
324	    /* Insert a default value for the netmask, 0xffffff00 is
325	     * the most appropriate one (entire class C, or subnetted
326	     * class A/B network).
327	     */
328	    if (!netmask[0]) {
329		strcpy(netmask, "255.255.255.0");
330		RefreshStringObj(layout[LAYOUT_NETMASK].obj);
331		++filled;
332	    }
333	    if (!index(hostname, '.') && domainname[0]) {
334		strcat(hostname, ".");
335		strcat(hostname, domainname);
336		RefreshStringObj(layout[LAYOUT_HOSTNAME].obj);
337		++filled;
338	    }
339	    else if (((tmp = index(hostname, '.')) != NULL) && !domainname[0]) {
340		SAFE_STRCPY(domainname, tmp + 1);
341		RefreshStringObj(layout[LAYOUT_DOMAINNAME].obj);
342		++filled;
343	    }
344	}
345    }
346    if (!cancel && !verifySettings())
347	goto reenter;
348
349    /* Clear this crap off the screen */
350    delwin(ds_win);
351    dialog_clear_norefresh();
352    use_helpfile(NULL);
353
354    /* We actually need to inform the rest of sysinstall about this
355       data now if the user hasn't selected cancel.  Save the stuff
356       out to the environment via the variable_set() mechanism */
357
358netconfig:
359    if (!cancel) {
360	DevInfo *di;
361	char temp[512], ifn[255];
362	char *ifaces;
363	char *pccard;
364
365	if (hostname[0]) {
366	    variable_set2(VAR_HOSTNAME, hostname, 1);
367	    sethostname(hostname, strlen(hostname));
368	}
369	if (domainname[0])
370	    variable_set2(VAR_DOMAINNAME, domainname, 0);
371	if (gateway[0])
372	    variable_set2(VAR_GATEWAY, gateway, 1);
373	if (nameserver[0])
374	    variable_set2(VAR_NAMESERVER, nameserver, 0);
375	if (ipaddr[0])
376	    variable_set2(VAR_IPADDR, ipaddr, 0);
377
378	if (!devp->private)
379	    devp->private = (DevInfo *)safe_malloc(sizeof(DevInfo));
380	di = devp->private;
381	SAFE_STRCPY(di->ipaddr, ipaddr);
382	SAFE_STRCPY(di->netmask, netmask);
383	SAFE_STRCPY(di->extras, extras);
384	di->use_dhcp = use_dhcp;
385
386	sprintf(ifn, "%s%s", VAR_IFCONFIG, devp->name);
387	if (use_dhcp)
388	    sprintf(temp, "DHCP");
389	else
390	    sprintf(temp, "inet %s %s netmask %s", ipaddr, extras, netmask);
391	variable_set2(ifn, temp, 1);
392	pccard = variable_get("_pccard_install");
393	if (pccard && strcmp(pccard, "YES") == 0) {
394	    variable_set2("pccard_ifconfig", temp, 1);
395	}
396	ifaces = variable_get(VAR_INTERFACES);
397	if (!ifaces)
398	    variable_set2(VAR_INTERFACES, ifaces = "lo0", 1);
399	/* Only add it if it's not there already */
400 	if (strcmp(ifaces, "auto") && !strstr(ifaces, devp->name)) {
401	    sprintf(ifn, "%s %s", devp->name, ifaces);
402	    variable_set2(VAR_INTERFACES, ifn, 1);
403	}
404	if (!use_dhcp)
405	    configResolv(NULL);	/* XXX this will do it on the MFS copy XXX */
406	ret = DITEM_SUCCESS;
407    }
408    else
409	ret = DITEM_FAILURE;
410    restorescr(save);
411    return ret;
412}
413
414static Device *NetDev;
415
416static int
417netHook(dialogMenuItem *self)
418{
419    Device **devs;
420
421    devs = deviceFindDescr(self->prompt, self->title, DEVICE_TYPE_NETWORK);
422    if (devs) {
423	if (DITEM_STATUS(tcpOpenDialog(devs[0])) != DITEM_FAILURE)
424	    NetDev = devs[0];
425	else
426	    NetDev = NULL;
427    }
428    return devs ? DITEM_LEAVE_MENU : DITEM_FAILURE;
429}
430
431/* Get a network device */
432Device *
433tcpDeviceSelect(void)
434{
435    DMenu *menu;
436    Device **devs, *rval;
437    int cnt;
438
439    devs = deviceFind(NULL, DEVICE_TYPE_NETWORK);
440    cnt = deviceCount(devs);
441    rval = NULL;
442
443    if (!cnt) {
444	msgConfirm("No network devices available!");
445	return NULL;
446    }
447    else if (!RunningAsInit) {
448	if (!msgYesNo("Running multi-user, assume that the network is already configured?"))
449	    return devs[0];
450    }
451    if (cnt == 1) {
452	if (DITEM_STATUS(tcpOpenDialog(devs[0]) == DITEM_SUCCESS))
453	    rval = devs[0];
454    }
455    else if (variable_get(VAR_NONINTERACTIVE) && variable_get(VAR_NETWORK_DEVICE)) {
456	devs = deviceFind(variable_get(VAR_NETWORK_DEVICE), DEVICE_TYPE_NETWORK);
457	cnt = deviceCount(devs);
458	if (cnt) {
459	    if (DITEM_STATUS(tcpOpenDialog(devs[0]) == DITEM_SUCCESS))
460		rval = devs[0];
461	}
462    }
463    else {
464	int status;
465
466	menu = deviceCreateMenu(&MenuNetworkDevice, DEVICE_TYPE_NETWORK, netHook, NULL);
467	if (!menu)
468	    msgFatal("Unable to create network device menu!  Argh!");
469	status = dmenuOpenSimple(menu, FALSE);
470	free(menu);
471	if (status)
472	    rval = NetDev;
473    }
474    return rval;
475}
476
477/* Do it from a menu that doesn't care about status */
478int
479tcpMenuSelect(dialogMenuItem *self)
480{
481    Device *tmp;
482
483    tmp = tcpDeviceSelect();
484    if (tmp && tmp->private && !((DevInfo *)tmp->private)->use_dhcp && !msgYesNo("Would you like to bring the %s interface up right now?", tmp->name))
485	if (!tmp->init(tmp))
486	    msgConfirm("Initialization of %s device failed.", tmp->name);
487    return DITEM_SUCCESS;
488}
489