tcpip.c revision 83065
1/*
2 * $FreeBSD: head/usr.sbin/sysinstall/tcpip.c 83065 2001-09-05 08:10:04Z murray $
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 <sys/sysctl.h>
43#include <sys/socket.h>
44#include <netinet/in.h>
45#include <netdb.h>
46
47/* The help file for the TCP/IP setup screen */
48#define TCP_HELPFILE		"tcp"
49
50/* These are nasty, but they make the layout structure a lot easier ... */
51
52static char	hostname[HOSTNAME_FIELD_LEN], domainname[HOSTNAME_FIELD_LEN],
53		gateway[IPADDR_FIELD_LEN], nameserver[INET6_ADDRSTRLEN];
54static int	okbutton, cancelbutton;
55static char	ipaddr[IPADDR_FIELD_LEN], netmask[IPADDR_FIELD_LEN], extras[EXTRAS_FIELD_LEN];
56static char	ipv6addr[INET6_ADDRSTRLEN];
57
58/* What the screen size is meant to be */
59#define TCP_DIALOG_Y		0
60#define TCP_DIALOG_X		8
61#define TCP_DIALOG_WIDTH	COLS - 16
62#define TCP_DIALOG_HEIGHT	LINES - 2
63
64static Layout layout[] = {
65#define LAYOUT_HOSTNAME		0
66    { 1, 2, 25, HOSTNAME_FIELD_LEN - 1,
67      "Host:", "Your fully-qualified hostname, e.g. foo.bar.com",
68      hostname, STRINGOBJ, NULL },
69#define LAYOUT_DOMAINNAME	1
70    { 1, 35, 20, HOSTNAME_FIELD_LEN - 1,
71      "Domain:",
72      "The name of the domain that your machine is in, e.g. bar.com",
73      domainname, STRINGOBJ, NULL },
74#define LAYOUT_GATEWAY		2
75    { 5, 2, 18, IPADDR_FIELD_LEN - 1,
76      "IPv4 Gateway:",
77      "IPv4 address of host forwarding packets to non-local destinations",
78      gateway, STRINGOBJ, NULL },
79#define LAYOUT_NAMESERVER	3
80    { 5, 35, 18, INET6_ADDRSTRLEN - 1,
81      "Name server:", "IPv4 or IPv6 address of your local DNS server",
82      nameserver, STRINGOBJ, NULL },
83#define LAYOUT_IPADDR		4
84    { 10, 10, 18, IPADDR_FIELD_LEN - 1,
85      "IPv4 Address:",
86      "The IPv4 address to be used for this interface",
87      ipaddr, STRINGOBJ, NULL },
88#define LAYOUT_NETMASK		5
89    { 10, 35, 18, IPADDR_FIELD_LEN - 1,
90      "Netmask:",
91      "The netmask for this interface, e.g. 0xffffff00 for a class C network",
92      netmask, STRINGOBJ, NULL },
93#define LAYOUT_EXTRAS		6
94    { 14, 10, 37, HOSTNAME_FIELD_LEN - 1,
95      "Extra options to ifconfig:",
96      "Any interface-specific options to ifconfig you would like to add",
97      extras, STRINGOBJ, NULL },
98#define LAYOUT_OKBUTTON		7
99    { 19, 15, 0, 0,
100      "OK", "Select this if you are happy with these settings",
101      &okbutton, BUTTONOBJ, NULL },
102#define LAYOUT_CANCELBUTTON	8
103    { 19, 35, 0, 0,
104      "CANCEL", "Select this if you wish to cancel this screen",
105      &cancelbutton, BUTTONOBJ, NULL },
106    { NULL },
107};
108
109#define _validByte(b) ((b) >= 0 && (b) <= 255)
110
111/* whine */
112static void
113feepout(char *msg)
114{
115    beep();
116    msgConfirm("%s", msg);
117}
118
119/* Verify IP address integrity */
120static int
121verifyIP(char *ip, unsigned long *mask, unsigned long *out)
122{
123    long a, b, c, d;
124    char *endptr;
125
126    unsigned long parsedip;
127    unsigned long max_addr = (255 << 24) | (255 << 16) | (255 << 8) | 255;
128
129    if (ip == NULL)
130	return 0;
131    a = strtol(ip, &endptr, 10);
132    if (*endptr++ != '.')
133	return 0;
134    b = strtol(endptr, &endptr, 10);
135    if (*endptr++ != '.')
136	return 0;
137    c = strtol(endptr, &endptr, 10);
138    if (*endptr++ != '.')
139	return 0;
140    d = strtol(endptr, &endptr, 10);
141    if (*endptr != '\0')
142	return 0;
143    if (!_validByte(a) || !_validByte(b) || !_validByte(c) || !_validByte(d))
144	return 0;
145    parsedip = (a << 24) | (b << 16) | (c << 8) | d;
146    if (out)
147	*out = parsedip;
148    /*
149     * The ip address must not be network or broadcast address.
150     */
151    if (mask && ((parsedip == (parsedip & *mask)) ||
152	(parsedip == ((parsedip & *mask) + max_addr - *mask))))
153	return 0;
154    return 1;
155}
156
157static int
158verifyIP6(char *ip)
159{
160    struct addrinfo hints, *res;
161
162    memset(&hints, 0, sizeof(hints));
163    hints.ai_family = AF_INET6;
164    hints.ai_socktype = SOCK_STREAM;
165    hints.ai_flags = AI_PASSIVE | AI_NUMERICHOST;
166    if (getaddrinfo(ip, NULL, &hints, &res) == 0) {
167	freeaddrinfo(res);
168	return 1;
169    }
170    return 0;
171}
172
173/* Verify IPv4 netmask as being well-formed as
174   a 0x or AAA.BBB.CCC.DDD mask */
175static int
176verifyNetmask(const char *netmask, unsigned long *out)
177{
178    unsigned long mask;
179    unsigned long tmp;
180    char *endptr;
181
182    if (netmask[0] == '0' && (netmask[1] == 'x' || netmask[1] == 'X')) {
183        /* Parse out hex mask */
184        mask = strtoul(netmask, &endptr, 0);
185        if (*endptr != '\0')
186            return 0;
187    } else {
188        /* Parse out quad decimal mask */
189        mask = strtoul(netmask, &endptr, 10);
190        if (!_validByte(mask) || *endptr++ != '.')
191            return 0;
192        tmp = strtoul(endptr, &endptr, 10);
193        if (!_validByte(tmp) || *endptr++ != '.')
194            return 0;
195	mask = (mask << 8) + tmp;
196        tmp = strtoul(endptr, &endptr, 10);
197        if (!_validByte(tmp) || *endptr++ != '.')
198            return 0;
199	mask = (mask << 8) + tmp;
200        tmp = strtoul(endptr, &endptr, 10);
201        if (!_validByte(tmp) || *endptr++ != '\0')
202            return 0;
203	mask = (mask << 8) + tmp;
204    }
205    /* Verify that we have a continous netmask */
206    if ((((-mask & mask) - 1) | mask) != 0xffffffff)
207        return 0;
208    if (out)
209        *out = mask;
210    return 1;
211}
212
213static int
214verifyGW(char *gw, unsigned long *ip, unsigned long *mask)
215{
216    unsigned long parsedgw;
217
218    if (!verifyIP(gw, mask, &parsedgw))
219	return 0;
220    /* Gateway needs to be within the set of IPs reachable through the
221       interface */
222    if (ip && mask && ((parsedgw & *mask) != (*ip & *mask)))
223	return 0;
224    return 1;
225}
226
227/* Check for the settings on the screen - the per-interface stuff is
228   moved to the main handling code now to do it on the fly - sigh */
229static int
230verifySettings(void)
231{
232    unsigned long parsedip;
233    unsigned long parsednetmask;
234
235    if (!hostname[0])
236	feepout("Must specify a host name of some sort!");
237    else if (netmask[0] && !verifyNetmask(netmask, &parsednetmask))
238	feepout("Invalid netmask value");
239    else if (nameserver[0] && !verifyIP(nameserver, NULL, NULL) &&
240		    !verifyIP6(nameserver))
241	feepout("Invalid name server IP address specified");
242    else if (ipaddr[0] && !verifyIP(ipaddr, &parsednetmask, &parsedip))
243	feepout("Invalid IPv4 address");
244    else if (gateway[0] && strcmp(gateway, "NO") &&
245	     !verifyGW(gateway, ipaddr[0] ? &parsedip : NULL,
246		     netmask[0] ? &parsednetmask : NULL))
247	feepout("Invalid gateway IPv4 address specified");
248    else
249	return 1;
250    return 0;
251}
252
253static void
254dhcpGetInfo(Device *devp)
255{
256    /* If it fails, do it the old-fashioned way */
257    if (dhcpParseLeases("/var/db/dhclient.leases", hostname, domainname,
258			 nameserver, ipaddr, gateway, netmask) == -1) {
259	FILE *ifp;
260	char *cp, cmd[256], data[2048];
261	int i, j;
262
263	/* Bah, now we have to kludge getting the information from ifconfig */
264	snprintf(cmd, sizeof cmd, "ifconfig %s", devp->name);
265	ifp = popen(cmd, "r");
266	if (ifp) {
267	    j = fread(data, 1, sizeof(data), ifp);
268	    fclose(ifp);
269	    if (j < 0)	/* paranoia */
270		j = 0;
271	    data[j] = '\0';
272	    if (isDebug())
273		msgDebug("DHCP configured interface returns %s\n", data);
274	    /* XXX This is gross as it assumes a certain ordering to
275	       ifconfig's output! XXX */
276	    if ((cp = strstr(data, "inet ")) != NULL) {
277		i = 0;
278		cp += 5;	/* move over keyword */
279		while (*cp != ' ')
280		    ipaddr[i++] = *(cp++);
281		ipaddr[i] = '\0';
282		if (!strncmp(++cp, "netmask", 7)) {
283		    i = 0;
284		    cp += 8;
285		    while (*cp != ' ')
286			netmask[i++] = *(cp++);
287		    netmask[i] = '\0';
288		}
289	    }
290	}
291    }
292
293    /* If we didn't get a name server value, hunt for it in resolv.conf */
294    if (!nameserver[0] && file_readable("/etc/resolv.conf"))
295	configEnvironmentResolv("/etc/resolv.conf");
296    if (hostname[0])
297	variable_set2(VAR_HOSTNAME, hostname, 0);
298}
299
300static void
301rtsolGetInfo(Device *devp)
302{
303    FILE *ifp;
304    char *cp, cmd[256], data[2048];
305    int i;
306
307    snprintf(cmd, sizeof cmd, "ifconfig %s", devp->name);
308    if ((ifp = popen(cmd, "r")) == NULL)
309	return;
310    while (fgets(data, sizeof(data), ifp) != NULL) {
311	if (isDebug())
312	    msgDebug("RTSOL configured interface returns %s", data);
313	if ((cp = strstr(data, "inet6 ")) != NULL) {
314	    cp += 6;	/* move over keyword */
315	    if (strncmp(cp, "fe80:", 5)) {
316		i = 0;
317		while (*cp != ' ')
318		    ipv6addr[i++] = *(cp++);
319		ipv6addr[i] = '\0';
320	    }
321	}
322    }
323    fclose(ifp);
324}
325
326/* This is it - how to get TCP setup values */
327int
328tcpOpenDialog(Device *devp)
329{
330    WINDOW              *ds_win, *save = NULL;
331    ComposeObj          *obj = NULL;
332    int                 n = 0, filled = 0, cancel = FALSE;
333    int			max, ret = DITEM_SUCCESS;
334    int			use_dhcp = FALSE;
335    int			use_rtsol = FALSE;
336    char                *tmp;
337    char		title[80];
338
339    save = savescr();
340    /* Initialise vars from previous device values */
341    if (devp->private) {
342	DevInfo *di = (DevInfo *)devp->private;
343
344	SAFE_STRCPY(ipaddr, di->ipaddr);
345	SAFE_STRCPY(netmask, di->netmask);
346	SAFE_STRCPY(extras, di->extras);
347	use_dhcp = di->use_dhcp;
348	use_rtsol = di->use_rtsol;
349    }
350    else { /* See if there are any defaults */
351	char *cp;
352
353	/* Try a RTSOL scan if such behavior is desired */
354	if (!variable_cmp(VAR_TRY_RTSOL, "YES") ||
355	    ((variable_cmp(VAR_TRY_RTSOL, "NO")) && (!msgNoYes("Do you want to try IPv6 configuration of the interface?")))) {
356	    int i;
357	    int len;
358
359	    i = 0;
360	    sysctlbyname("net.inet6.ip6.forwarding", NULL, 0, &i, sizeof(i));
361	    i = 1;
362	    sysctlbyname("net.inet6.ip6.accept_rtadv", NULL, 0, &i, sizeof(i));
363	    vsystem("ifconfig %s up", devp->name);
364	    len = sizeof(i);
365	    sysctlbyname("net.inet6.ip6.dad_count", &i, &len, NULL, 0);
366	    sleep(i + 1);
367	    Mkdir("/var/run");
368	    msgNotify("Scanning for RA servers...");
369	    if (0 == vsystem("rtsol %s", devp->name)) {
370		len = sizeof(i);
371		sysctlbyname("net.inet6.ip6.dad_count", &i, &len, NULL, 0);
372		sleep(i + 1);
373		rtsolGetInfo(devp);
374		use_rtsol = TRUE;
375	    } else
376		use_rtsol = FALSE;
377	}
378
379	/* First try a DHCP scan if such behavior is desired */
380	if (!variable_cmp(VAR_TRY_DHCP, "YES") ||
381	    ((variable_cmp(VAR_TRY_DHCP, "NO")) && (!msgNoYes("Do you want to try DHCP configuration of the interface?")))) {
382	    Mkdir("/var/db");
383	    Mkdir("/var/run");
384	    Mkdir("/tmp");
385	    msgNotify("Scanning for DHCP servers...");
386	    if (0 == vsystem("dhclient -1 %s", devp->name)) {
387		dhcpGetInfo(devp);
388		use_dhcp = TRUE;
389	    }
390	    else
391		use_dhcp = FALSE;
392	}
393
394	/* Special hack so it doesn't show up oddly in the tcpip setup menu */
395	if (!strcmp(gateway, "NO"))
396	    gateway[0] = '\0';
397
398	/* Get old IP address from variable space, if available */
399	if (!ipaddr[0]) {
400	    if ((cp = variable_get(VAR_IPADDR)) != NULL)
401		SAFE_STRCPY(ipaddr, cp);
402	    else if ((cp = variable_get(string_concat3(devp->name, "_", VAR_IPADDR))) != NULL)
403		SAFE_STRCPY(ipaddr, cp);
404	}
405
406	/* Get old netmask from variable space, if available */
407	if (!netmask[0]) {
408	    if ((cp = variable_get(VAR_NETMASK)) != NULL)
409		SAFE_STRCPY(netmask, cp);
410	    else if ((cp = variable_get(string_concat3(devp->name, "_", VAR_NETMASK))) != NULL)
411		SAFE_STRCPY(netmask, cp);
412	}
413
414	/* Get old extras string from variable space, if available */
415	if (!extras[0]) {
416	    if ((cp = variable_get(VAR_EXTRAS)) != NULL)
417		SAFE_STRCPY(extras, cp);
418	    else if ((cp = variable_get(string_concat3(devp->name, "_", VAR_EXTRAS))) != NULL)
419		SAFE_STRCPY(extras, cp);
420	}
421    }
422
423    /* Look up values already recorded with the system, or blank the string variables ready to accept some new data */
424    if (!hostname[0]) {
425	tmp = variable_get(VAR_HOSTNAME);
426	if (tmp)
427	    SAFE_STRCPY(hostname, tmp);
428    }
429    if (!domainname[0]) {
430	tmp = variable_get(VAR_DOMAINNAME);
431	if (tmp)
432	    SAFE_STRCPY(domainname, tmp);
433    }
434    if (!gateway[0]) {
435	tmp = variable_get(VAR_GATEWAY);
436	if (tmp && strcmp(tmp, "NO"))
437	    SAFE_STRCPY(gateway, tmp);
438    }
439    if (!nameserver[0]) {
440	tmp = variable_get(VAR_NAMESERVER);
441	if (tmp)
442	    SAFE_STRCPY(nameserver, tmp);
443    }
444
445    /* If non-interactive, jump straight over the dialog crap and into config section */
446    if (variable_get(VAR_NONINTERACTIVE) &&
447	!variable_get(VAR_NETINTERACTIVE)) {
448	if (!hostname[0])
449	    msgConfirm("WARNING: hostname variable not set and is a non-optional\n"
450		       "parameter.  Please add this to your installation script\n"
451		       "or set the netInteractive variable (see sysinstall man page)");
452	else
453	    goto netconfig;
454    }
455
456    /* Now do all the screen I/O */
457    dialog_clear_norefresh();
458
459    /* We need a curses window */
460    tmp = " Network Configuration ";
461    if (ipv6addr[0])
462	tmp = string_concat(tmp, "(IPv6 ready) ");
463    if (!(ds_win = openLayoutDialog(TCP_HELPFILE, tmp,
464				    TCP_DIALOG_X, TCP_DIALOG_Y, TCP_DIALOG_WIDTH, TCP_DIALOG_HEIGHT))) {
465	beep();
466	msgConfirm("Cannot open TCP/IP dialog window!!");
467	restorescr(save);
468	return DITEM_FAILURE;
469    }
470
471    /* Draw interface configuration box */
472    draw_box(ds_win, TCP_DIALOG_Y + 9, TCP_DIALOG_X + 8, TCP_DIALOG_HEIGHT - 13, TCP_DIALOG_WIDTH - 17,
473	     dialog_attr, border_attr);
474    wattrset(ds_win, dialog_attr);
475    sprintf(title, " Configuration for Interface %s ", devp->name);
476    mvwaddstr(ds_win, TCP_DIALOG_Y + 9, TCP_DIALOG_X + 14, title);
477
478    /* Some more initialisation before we go into the main input loop */
479    obj = initLayoutDialog(ds_win, layout, TCP_DIALOG_X, TCP_DIALOG_Y, &max);
480
481reenter:
482    cancelbutton = okbutton = 0;
483    while (layoutDialogLoop(ds_win, layout, &obj, &n, max, &cancelbutton, &cancel)) {
484	/* Prevent this from being irritating if user really means NO */
485	if (filled < 3) {
486	    /* Insert a default value for the netmask, 0xffffff00 is
487	     * the most appropriate one (entire class C, or subnetted
488	     * class A/B network).
489	     */
490	    if (!netmask[0]) {
491		strcpy(netmask, "255.255.255.0");
492		RefreshStringObj(layout[LAYOUT_NETMASK].obj);
493		++filled;
494	    }
495	    if (!index(hostname, '.') && domainname[0]) {
496		strcat(hostname, ".");
497		strcat(hostname, domainname);
498		RefreshStringObj(layout[LAYOUT_HOSTNAME].obj);
499		++filled;
500	    }
501	    else if (((tmp = index(hostname, '.')) != NULL) && !domainname[0]) {
502		SAFE_STRCPY(domainname, tmp + 1);
503		RefreshStringObj(layout[LAYOUT_DOMAINNAME].obj);
504		++filled;
505	    }
506	}
507    }
508    if (!cancel && !verifySettings())
509	goto reenter;
510
511    /* Clear this crap off the screen */
512    delwin(ds_win);
513    dialog_clear_norefresh();
514    use_helpfile(NULL);
515
516    /* We actually need to inform the rest of sysinstall about this
517       data now if the user hasn't selected cancel.  Save the stuff
518       out to the environment via the variable_set() mechanism */
519
520netconfig:
521    if (!cancel) {
522	DevInfo *di;
523	char temp[512], ifn[255];
524	char *pccard;
525	int ipv4_enable = FALSE;
526
527	if (hostname[0]) {
528	    variable_set2(VAR_HOSTNAME, hostname, 1);
529	    sethostname(hostname, strlen(hostname));
530	}
531	if (domainname[0])
532	    variable_set2(VAR_DOMAINNAME, domainname, 0);
533	if (gateway[0])
534	    variable_set2(VAR_GATEWAY, gateway, use_dhcp ? 0 : 1);
535	if (nameserver[0])
536	    variable_set2(VAR_NAMESERVER, nameserver, 0);
537	if (ipaddr[0])
538	    variable_set2(VAR_IPADDR, ipaddr, 0);
539	if (ipv6addr[0])
540	    variable_set2(VAR_IPV6ADDR, ipv6addr, 0);
541
542	if (!devp->private)
543	    devp->private = (DevInfo *)safe_malloc(sizeof(DevInfo));
544	di = devp->private;
545	SAFE_STRCPY(di->ipaddr, ipaddr);
546	SAFE_STRCPY(di->netmask, netmask);
547	SAFE_STRCPY(di->extras, extras);
548	di->use_dhcp = use_dhcp;
549	di->use_rtsol = use_rtsol;
550
551	if (use_dhcp || ipaddr[0])
552	    ipv4_enable = TRUE;
553	if (ipv4_enable) {
554	    sprintf(ifn, "%s%s", VAR_IFCONFIG, devp->name);
555	    if (use_dhcp)
556		sprintf(temp, "DHCP");
557	    else
558		sprintf(temp, "inet %s %s netmask %s",
559			ipaddr, extras, netmask);
560	    variable_set2(ifn, temp, 1);
561	}
562	pccard = variable_get("_pccard_install");
563	if (pccard && strcmp(pccard, "YES") == 0 && ipv4_enable) {
564	    variable_set2("pccard_ifconfig", temp, 1);
565	}
566	if (use_rtsol)
567	    variable_set2(VAR_IPV6_ENABLE, "YES", 1);
568	if (!use_dhcp)
569	    configResolv(NULL);	/* XXX this will do it on the MFS copy XXX */
570	ret = DITEM_SUCCESS;
571    }
572    else
573	ret = DITEM_FAILURE;
574    restorescr(save);
575    return ret;
576}
577
578static Device *NetDev;
579
580static int
581netHook(dialogMenuItem *self)
582{
583    Device **devs;
584
585    devs = deviceFindDescr(self->prompt, self->title, DEVICE_TYPE_NETWORK);
586    if (devs) {
587	if (DITEM_STATUS(tcpOpenDialog(devs[0])) != DITEM_FAILURE)
588	    NetDev = devs[0];
589	else
590	    NetDev = NULL;
591    }
592    return devs ? DITEM_LEAVE_MENU : DITEM_FAILURE;
593}
594
595/* Get a network device */
596Device *
597tcpDeviceSelect(void)
598{
599    DMenu *menu;
600    Device **devs, *rval;
601    int cnt;
602
603    devs = deviceFind(variable_get(VAR_NETWORK_DEVICE), DEVICE_TYPE_NETWORK);
604    cnt = deviceCount(devs);
605    rval = NULL;
606
607    if (!cnt) {
608	msgConfirm("No network devices available!");
609	return NULL;
610    }
611    else if ((!RunningAsInit) && (variable_check("NETWORK_CONFIGURED=NO") != TRUE)) {
612	if (!msgYesNo("Running multi-user, assume that the network is already configured?"))
613	    return devs[0];
614    }
615    if (cnt == 1) {
616	if (DITEM_STATUS(tcpOpenDialog(devs[0]) == DITEM_SUCCESS))
617	    rval = devs[0];
618    }
619    else if (variable_get(VAR_NONINTERACTIVE) && variable_get(VAR_NETWORK_DEVICE)) {
620	devs = deviceFind(variable_get(VAR_NETWORK_DEVICE), DEVICE_TYPE_NETWORK);
621	cnt = deviceCount(devs);
622	if (cnt) {
623	    if (DITEM_STATUS(tcpOpenDialog(devs[0]) == DITEM_SUCCESS))
624		rval = devs[0];
625	}
626    }
627    else {
628	int status;
629
630	menu = deviceCreateMenu(&MenuNetworkDevice, DEVICE_TYPE_NETWORK, netHook, NULL);
631	if (!menu)
632	    msgFatal("Unable to create network device menu!  Argh!");
633	status = dmenuOpenSimple(menu, FALSE);
634	free(menu);
635	if (status)
636	    rval = NetDev;
637    }
638    return rval;
639}
640
641/* Do it from a menu that doesn't care about status */
642int
643tcpMenuSelect(dialogMenuItem *self)
644{
645    Device *tmp;
646    WINDOW *save;
647
648    variable_set("NETWORK_CONFIGURED=NO",0);
649    tmp = tcpDeviceSelect();
650    variable_unset("NETWORK_CONFIGURED");
651    save = savescr();
652    if (tmp && tmp->private && !((DevInfo *)tmp->private)->use_dhcp && !msgYesNo("Would you like to bring the %s interface up right now?", tmp->name))
653	if (!DEVICE_INIT(tmp))
654	    msgConfirm("Initialization of %s device failed.", tmp->name);
655    restorescr(save);
656    return DITEM_SUCCESS;
657}
658