Merge git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6
[wrt350n-kernel.git] / net / ipv4 / ipconfig.c
blobf2443f6c1c2d2f76e288ca47bf6054ed377a4948
1 /*
2 * $Id: ipconfig.c,v 1.46 2002/02/01 22:01:04 davem Exp $
4 * Automatic Configuration of IP -- use DHCP, BOOTP, RARP, or
5 * user-supplied information to configure own IP address and routes.
7 * Copyright (C) 1996-1998 Martin Mares <mj@atrey.karlin.mff.cuni.cz>
9 * Derived from network configuration code in fs/nfs/nfsroot.c,
10 * originally Copyright (C) 1995, 1996 Gero Kuhlmann and me.
12 * BOOTP rewritten to construct and analyse packets itself instead
13 * of misusing the IP layer. num_bugs_causing_wrong_arp_replies--;
14 * -- MJ, December 1998
16 * Fixed ip_auto_config_setup calling at startup in the new "Linker Magic"
17 * initialization scheme.
18 * - Arnaldo Carvalho de Melo <acme@conectiva.com.br>, 08/11/1999
20 * DHCP support added. To users this looks like a whole separate
21 * protocol, but we know it's just a bag on the side of BOOTP.
22 * -- Chip Salzenberg <chip@valinux.com>, May 2000
24 * Ported DHCP support from 2.2.16 to 2.4.0-test4
25 * -- Eric Biederman <ebiederman@lnxi.com>, 30 Aug 2000
27 * Merged changes from 2.2.19 into 2.4.3
28 * -- Eric Biederman <ebiederman@lnxi.com>, 22 April Aug 2001
30 * Multiple Nameservers in /proc/net/pnp
31 * -- Josef Siemes <jsiemes@web.de>, Aug 2002
34 #include <linux/types.h>
35 #include <linux/string.h>
36 #include <linux/kernel.h>
37 #include <linux/jiffies.h>
38 #include <linux/random.h>
39 #include <linux/init.h>
40 #include <linux/utsname.h>
41 #include <linux/in.h>
42 #include <linux/if.h>
43 #include <linux/inet.h>
44 #include <linux/inetdevice.h>
45 #include <linux/netdevice.h>
46 #include <linux/if_arp.h>
47 #include <linux/skbuff.h>
48 #include <linux/ip.h>
49 #include <linux/socket.h>
50 #include <linux/route.h>
51 #include <linux/udp.h>
52 #include <linux/proc_fs.h>
53 #include <linux/seq_file.h>
54 #include <linux/major.h>
55 #include <linux/root_dev.h>
56 #include <linux/delay.h>
57 #include <linux/nfs_fs.h>
58 #include <net/net_namespace.h>
59 #include <net/arp.h>
60 #include <net/ip.h>
61 #include <net/ipconfig.h>
62 #include <net/route.h>
64 #include <asm/uaccess.h>
65 #include <net/checksum.h>
66 #include <asm/processor.h>
68 /* Define this to allow debugging output */
69 #undef IPCONFIG_DEBUG
71 #ifdef IPCONFIG_DEBUG
72 #define DBG(x) printk x
73 #else
74 #define DBG(x) do { } while(0)
75 #endif
77 #if defined(CONFIG_IP_PNP_DHCP)
78 #define IPCONFIG_DHCP
79 #endif
80 #if defined(CONFIG_IP_PNP_BOOTP) || defined(CONFIG_IP_PNP_DHCP)
81 #define IPCONFIG_BOOTP
82 #endif
83 #if defined(CONFIG_IP_PNP_RARP)
84 #define IPCONFIG_RARP
85 #endif
86 #if defined(IPCONFIG_BOOTP) || defined(IPCONFIG_RARP)
87 #define IPCONFIG_DYNAMIC
88 #endif
90 /* Define the friendly delay before and after opening net devices */
91 #define CONF_PRE_OPEN 500 /* Before opening: 1/2 second */
92 #define CONF_POST_OPEN 1 /* After opening: 1 second */
94 /* Define the timeout for waiting for a DHCP/BOOTP/RARP reply */
95 #define CONF_OPEN_RETRIES 2 /* (Re)open devices twice */
96 #define CONF_SEND_RETRIES 6 /* Send six requests per open */
97 #define CONF_INTER_TIMEOUT (HZ/2) /* Inter-device timeout: 1/2 second */
98 #define CONF_BASE_TIMEOUT (HZ*2) /* Initial timeout: 2 seconds */
99 #define CONF_TIMEOUT_RANDOM (HZ) /* Maximum amount of randomization */
100 #define CONF_TIMEOUT_MULT *7/4 /* Rate of timeout growth */
101 #define CONF_TIMEOUT_MAX (HZ*30) /* Maximum allowed timeout */
102 #define CONF_NAMESERVERS_MAX 3 /* Maximum number of nameservers
103 - '3' from resolv.h */
105 #define NONE __constant_htonl(INADDR_NONE)
108 * Public IP configuration
111 /* This is used by platforms which might be able to set the ipconfig
112 * variables using firmware environment vars. If this is set, it will
113 * ignore such firmware variables.
115 int ic_set_manually __initdata = 0; /* IPconfig parameters set manually */
117 static int ic_enable __initdata = 0; /* IP config enabled? */
119 /* Protocol choice */
120 int ic_proto_enabled __initdata = 0
121 #ifdef IPCONFIG_BOOTP
122 | IC_BOOTP
123 #endif
124 #ifdef CONFIG_IP_PNP_DHCP
125 | IC_USE_DHCP
126 #endif
127 #ifdef IPCONFIG_RARP
128 | IC_RARP
129 #endif
132 static int ic_host_name_set __initdata = 0; /* Host name set by us? */
134 __be32 ic_myaddr = NONE; /* My IP address */
135 static __be32 ic_netmask = NONE; /* Netmask for local subnet */
136 __be32 ic_gateway = NONE; /* Gateway IP address */
138 __be32 ic_servaddr = NONE; /* Boot server IP address */
140 __be32 root_server_addr = NONE; /* Address of NFS server */
141 u8 root_server_path[256] = { 0, }; /* Path to mount as root */
143 /* vendor class identifier */
144 static char vendor_class_identifier[253] __initdata;
146 /* Persistent data: */
148 static int ic_proto_used; /* Protocol used, if any */
149 static __be32 ic_nameservers[CONF_NAMESERVERS_MAX]; /* DNS Server IP addresses */
150 static u8 ic_domain[64]; /* DNS (not NIS) domain name */
153 * Private state.
156 /* Name of user-selected boot device */
157 static char user_dev_name[IFNAMSIZ] __initdata = { 0, };
159 /* Protocols supported by available interfaces */
160 static int ic_proto_have_if __initdata = 0;
162 #ifdef IPCONFIG_DYNAMIC
163 static DEFINE_SPINLOCK(ic_recv_lock);
164 static volatile int ic_got_reply __initdata = 0; /* Proto(s) that replied */
165 #endif
166 #ifdef IPCONFIG_DHCP
167 static int ic_dhcp_msgtype __initdata = 0; /* DHCP msg type received */
168 #endif
172 * Network devices
175 struct ic_device {
176 struct ic_device *next;
177 struct net_device *dev;
178 unsigned short flags;
179 short able;
180 __be32 xid;
183 static struct ic_device *ic_first_dev __initdata = NULL;/* List of open device */
184 static struct net_device *ic_dev __initdata = NULL; /* Selected device */
186 static int __init ic_open_devs(void)
188 struct ic_device *d, **last;
189 struct net_device *dev;
190 unsigned short oflags;
192 last = &ic_first_dev;
193 rtnl_lock();
195 /* bring loopback device up first */
196 for_each_netdev(&init_net, dev) {
197 if (!(dev->flags & IFF_LOOPBACK))
198 continue;
199 if (dev_change_flags(dev, dev->flags | IFF_UP) < 0)
200 printk(KERN_ERR "IP-Config: Failed to open %s\n", dev->name);
203 for_each_netdev(&init_net, dev) {
204 if (dev->flags & IFF_LOOPBACK)
205 continue;
206 if (user_dev_name[0] ? !strcmp(dev->name, user_dev_name) :
207 (!(dev->flags & IFF_LOOPBACK) &&
208 (dev->flags & (IFF_POINTOPOINT|IFF_BROADCAST)) &&
209 strncmp(dev->name, "dummy", 5))) {
210 int able = 0;
211 if (dev->mtu >= 364)
212 able |= IC_BOOTP;
213 else
214 printk(KERN_WARNING "DHCP/BOOTP: Ignoring device %s, MTU %d too small", dev->name, dev->mtu);
215 if (!(dev->flags & IFF_NOARP))
216 able |= IC_RARP;
217 able &= ic_proto_enabled;
218 if (ic_proto_enabled && !able)
219 continue;
220 oflags = dev->flags;
221 if (dev_change_flags(dev, oflags | IFF_UP) < 0) {
222 printk(KERN_ERR "IP-Config: Failed to open %s\n", dev->name);
223 continue;
225 if (!(d = kmalloc(sizeof(struct ic_device), GFP_KERNEL))) {
226 rtnl_unlock();
227 return -1;
229 d->dev = dev;
230 *last = d;
231 last = &d->next;
232 d->flags = oflags;
233 d->able = able;
234 if (able & IC_BOOTP)
235 get_random_bytes(&d->xid, sizeof(__be32));
236 else
237 d->xid = 0;
238 ic_proto_have_if |= able;
239 DBG(("IP-Config: %s UP (able=%d, xid=%08x)\n",
240 dev->name, able, d->xid));
243 rtnl_unlock();
245 *last = NULL;
247 if (!ic_first_dev) {
248 if (user_dev_name[0])
249 printk(KERN_ERR "IP-Config: Device `%s' not found.\n", user_dev_name);
250 else
251 printk(KERN_ERR "IP-Config: No network devices available.\n");
252 return -1;
254 return 0;
257 static void __init ic_close_devs(void)
259 struct ic_device *d, *next;
260 struct net_device *dev;
262 rtnl_lock();
263 next = ic_first_dev;
264 while ((d = next)) {
265 next = d->next;
266 dev = d->dev;
267 if (dev != ic_dev) {
268 DBG(("IP-Config: Downing %s\n", dev->name));
269 dev_change_flags(dev, d->flags);
271 kfree(d);
273 rtnl_unlock();
277 * Interface to various network functions.
280 static inline void
281 set_sockaddr(struct sockaddr_in *sin, __be32 addr, __be16 port)
283 sin->sin_family = AF_INET;
284 sin->sin_addr.s_addr = addr;
285 sin->sin_port = port;
288 static int __init ic_dev_ioctl(unsigned int cmd, struct ifreq *arg)
290 int res;
292 mm_segment_t oldfs = get_fs();
293 set_fs(get_ds());
294 res = devinet_ioctl(cmd, (struct ifreq __user *) arg);
295 set_fs(oldfs);
296 return res;
299 static int __init ic_route_ioctl(unsigned int cmd, struct rtentry *arg)
301 int res;
303 mm_segment_t oldfs = get_fs();
304 set_fs(get_ds());
305 res = ip_rt_ioctl(&init_net, cmd, (void __user *) arg);
306 set_fs(oldfs);
307 return res;
311 * Set up interface addresses and routes.
314 static int __init ic_setup_if(void)
316 struct ifreq ir;
317 struct sockaddr_in *sin = (void *) &ir.ifr_ifru.ifru_addr;
318 int err;
320 memset(&ir, 0, sizeof(ir));
321 strcpy(ir.ifr_ifrn.ifrn_name, ic_dev->name);
322 set_sockaddr(sin, ic_myaddr, 0);
323 if ((err = ic_dev_ioctl(SIOCSIFADDR, &ir)) < 0) {
324 printk(KERN_ERR "IP-Config: Unable to set interface address (%d).\n", err);
325 return -1;
327 set_sockaddr(sin, ic_netmask, 0);
328 if ((err = ic_dev_ioctl(SIOCSIFNETMASK, &ir)) < 0) {
329 printk(KERN_ERR "IP-Config: Unable to set interface netmask (%d).\n", err);
330 return -1;
332 set_sockaddr(sin, ic_myaddr | ~ic_netmask, 0);
333 if ((err = ic_dev_ioctl(SIOCSIFBRDADDR, &ir)) < 0) {
334 printk(KERN_ERR "IP-Config: Unable to set interface broadcast address (%d).\n", err);
335 return -1;
337 return 0;
340 static int __init ic_setup_routes(void)
342 /* No need to setup device routes, only the default route... */
344 if (ic_gateway != NONE) {
345 struct rtentry rm;
346 int err;
348 memset(&rm, 0, sizeof(rm));
349 if ((ic_gateway ^ ic_myaddr) & ic_netmask) {
350 printk(KERN_ERR "IP-Config: Gateway not on directly connected network.\n");
351 return -1;
353 set_sockaddr((struct sockaddr_in *) &rm.rt_dst, 0, 0);
354 set_sockaddr((struct sockaddr_in *) &rm.rt_genmask, 0, 0);
355 set_sockaddr((struct sockaddr_in *) &rm.rt_gateway, ic_gateway, 0);
356 rm.rt_flags = RTF_UP | RTF_GATEWAY;
357 if ((err = ic_route_ioctl(SIOCADDRT, &rm)) < 0) {
358 printk(KERN_ERR "IP-Config: Cannot add default route (%d).\n", err);
359 return -1;
363 return 0;
367 * Fill in default values for all missing parameters.
370 static int __init ic_defaults(void)
373 * At this point we have no userspace running so need not
374 * claim locks on system_utsname
377 if (!ic_host_name_set)
378 sprintf(init_utsname()->nodename, "%u.%u.%u.%u", NIPQUAD(ic_myaddr));
380 if (root_server_addr == NONE)
381 root_server_addr = ic_servaddr;
383 if (ic_netmask == NONE) {
384 if (IN_CLASSA(ntohl(ic_myaddr)))
385 ic_netmask = htonl(IN_CLASSA_NET);
386 else if (IN_CLASSB(ntohl(ic_myaddr)))
387 ic_netmask = htonl(IN_CLASSB_NET);
388 else if (IN_CLASSC(ntohl(ic_myaddr)))
389 ic_netmask = htonl(IN_CLASSC_NET);
390 else {
391 printk(KERN_ERR "IP-Config: Unable to guess netmask for address %u.%u.%u.%u\n",
392 NIPQUAD(ic_myaddr));
393 return -1;
395 printk("IP-Config: Guessing netmask %u.%u.%u.%u\n", NIPQUAD(ic_netmask));
398 return 0;
402 * RARP support.
405 #ifdef IPCONFIG_RARP
407 static int ic_rarp_recv(struct sk_buff *skb, struct net_device *dev, struct packet_type *pt, struct net_device *orig_dev);
409 static struct packet_type rarp_packet_type __initdata = {
410 .type = __constant_htons(ETH_P_RARP),
411 .func = ic_rarp_recv,
414 static inline void ic_rarp_init(void)
416 dev_add_pack(&rarp_packet_type);
419 static inline void ic_rarp_cleanup(void)
421 dev_remove_pack(&rarp_packet_type);
425 * Process received RARP packet.
427 static int __init
428 ic_rarp_recv(struct sk_buff *skb, struct net_device *dev, struct packet_type *pt, struct net_device *orig_dev)
430 struct arphdr *rarp;
431 unsigned char *rarp_ptr;
432 __be32 sip, tip;
433 unsigned char *sha, *tha; /* s for "source", t for "target" */
434 struct ic_device *d;
436 if (dev->nd_net != &init_net)
437 goto drop;
439 if ((skb = skb_share_check(skb, GFP_ATOMIC)) == NULL)
440 return NET_RX_DROP;
442 if (!pskb_may_pull(skb, sizeof(struct arphdr)))
443 goto drop;
445 /* Basic sanity checks can be done without the lock. */
446 rarp = (struct arphdr *)skb_transport_header(skb);
448 /* If this test doesn't pass, it's not IP, or we should
449 * ignore it anyway.
451 if (rarp->ar_hln != dev->addr_len || dev->type != ntohs(rarp->ar_hrd))
452 goto drop;
454 /* If it's not a RARP reply, delete it. */
455 if (rarp->ar_op != htons(ARPOP_RREPLY))
456 goto drop;
458 /* If it's not Ethernet, delete it. */
459 if (rarp->ar_pro != htons(ETH_P_IP))
460 goto drop;
462 if (!pskb_may_pull(skb,
463 sizeof(struct arphdr) +
464 (2 * dev->addr_len) +
465 (2 * 4)))
466 goto drop;
468 /* OK, it is all there and looks valid, process... */
469 rarp = (struct arphdr *)skb_transport_header(skb);
470 rarp_ptr = (unsigned char *) (rarp + 1);
472 /* One reply at a time, please. */
473 spin_lock(&ic_recv_lock);
475 /* If we already have a reply, just drop the packet */
476 if (ic_got_reply)
477 goto drop_unlock;
479 /* Find the ic_device that the packet arrived on */
480 d = ic_first_dev;
481 while (d && d->dev != dev)
482 d = d->next;
483 if (!d)
484 goto drop_unlock; /* should never happen */
486 /* Extract variable-width fields */
487 sha = rarp_ptr;
488 rarp_ptr += dev->addr_len;
489 memcpy(&sip, rarp_ptr, 4);
490 rarp_ptr += 4;
491 tha = rarp_ptr;
492 rarp_ptr += dev->addr_len;
493 memcpy(&tip, rarp_ptr, 4);
495 /* Discard packets which are not meant for us. */
496 if (memcmp(tha, dev->dev_addr, dev->addr_len))
497 goto drop_unlock;
499 /* Discard packets which are not from specified server. */
500 if (ic_servaddr != NONE && ic_servaddr != sip)
501 goto drop_unlock;
503 /* We have a winner! */
504 ic_dev = dev;
505 if (ic_myaddr == NONE)
506 ic_myaddr = tip;
507 ic_servaddr = sip;
508 ic_got_reply = IC_RARP;
510 drop_unlock:
511 /* Show's over. Nothing to see here. */
512 spin_unlock(&ic_recv_lock);
514 drop:
515 /* Throw the packet out. */
516 kfree_skb(skb);
517 return 0;
522 * Send RARP request packet over a single interface.
524 static void __init ic_rarp_send_if(struct ic_device *d)
526 struct net_device *dev = d->dev;
527 arp_send(ARPOP_RREQUEST, ETH_P_RARP, 0, dev, 0, NULL,
528 dev->dev_addr, dev->dev_addr);
530 #endif
533 * DHCP/BOOTP support.
536 #ifdef IPCONFIG_BOOTP
538 struct bootp_pkt { /* BOOTP packet format */
539 struct iphdr iph; /* IP header */
540 struct udphdr udph; /* UDP header */
541 u8 op; /* 1=request, 2=reply */
542 u8 htype; /* HW address type */
543 u8 hlen; /* HW address length */
544 u8 hops; /* Used only by gateways */
545 __be32 xid; /* Transaction ID */
546 __be16 secs; /* Seconds since we started */
547 __be16 flags; /* Just what it says */
548 __be32 client_ip; /* Client's IP address if known */
549 __be32 your_ip; /* Assigned IP address */
550 __be32 server_ip; /* (Next, e.g. NFS) Server's IP address */
551 __be32 relay_ip; /* IP address of BOOTP relay */
552 u8 hw_addr[16]; /* Client's HW address */
553 u8 serv_name[64]; /* Server host name */
554 u8 boot_file[128]; /* Name of boot file */
555 u8 exten[312]; /* DHCP options / BOOTP vendor extensions */
558 /* packet ops */
559 #define BOOTP_REQUEST 1
560 #define BOOTP_REPLY 2
562 /* DHCP message types */
563 #define DHCPDISCOVER 1
564 #define DHCPOFFER 2
565 #define DHCPREQUEST 3
566 #define DHCPDECLINE 4
567 #define DHCPACK 5
568 #define DHCPNAK 6
569 #define DHCPRELEASE 7
570 #define DHCPINFORM 8
572 static int ic_bootp_recv(struct sk_buff *skb, struct net_device *dev, struct packet_type *pt, struct net_device *orig_dev);
574 static struct packet_type bootp_packet_type __initdata = {
575 .type = __constant_htons(ETH_P_IP),
576 .func = ic_bootp_recv,
581 * Initialize DHCP/BOOTP extension fields in the request.
584 static const u8 ic_bootp_cookie[4] = { 99, 130, 83, 99 };
586 #ifdef IPCONFIG_DHCP
588 static void __init
589 ic_dhcp_init_options(u8 *options)
591 u8 mt = ((ic_servaddr == NONE)
592 ? DHCPDISCOVER : DHCPREQUEST);
593 u8 *e = options;
594 int len;
596 #ifdef IPCONFIG_DEBUG
597 printk("DHCP: Sending message type %d\n", mt);
598 #endif
600 memcpy(e, ic_bootp_cookie, 4); /* RFC1048 Magic Cookie */
601 e += 4;
603 *e++ = 53; /* DHCP message type */
604 *e++ = 1;
605 *e++ = mt;
607 if (mt == DHCPREQUEST) {
608 *e++ = 54; /* Server ID (IP address) */
609 *e++ = 4;
610 memcpy(e, &ic_servaddr, 4);
611 e += 4;
613 *e++ = 50; /* Requested IP address */
614 *e++ = 4;
615 memcpy(e, &ic_myaddr, 4);
616 e += 4;
619 /* always? */
621 static const u8 ic_req_params[] = {
622 1, /* Subnet mask */
623 3, /* Default gateway */
624 6, /* DNS server */
625 12, /* Host name */
626 15, /* Domain name */
627 17, /* Boot path */
628 40, /* NIS domain name */
631 *e++ = 55; /* Parameter request list */
632 *e++ = sizeof(ic_req_params);
633 memcpy(e, ic_req_params, sizeof(ic_req_params));
634 e += sizeof(ic_req_params);
636 if (*vendor_class_identifier) {
637 printk(KERN_INFO "DHCP: sending class identifier \"%s\"\n",
638 vendor_class_identifier);
639 *e++ = 60; /* Class-identifier */
640 len = strlen(vendor_class_identifier);
641 *e++ = len;
642 memcpy(e, vendor_class_identifier, len);
643 e += len;
647 *e++ = 255; /* End of the list */
650 #endif /* IPCONFIG_DHCP */
652 static void __init ic_bootp_init_ext(u8 *e)
654 memcpy(e, ic_bootp_cookie, 4); /* RFC1048 Magic Cookie */
655 e += 4;
656 *e++ = 1; /* Subnet mask request */
657 *e++ = 4;
658 e += 4;
659 *e++ = 3; /* Default gateway request */
660 *e++ = 4;
661 e += 4;
662 *e++ = 5; /* Name server request */
663 *e++ = 8;
664 e += 8;
665 *e++ = 12; /* Host name request */
666 *e++ = 32;
667 e += 32;
668 *e++ = 40; /* NIS Domain name request */
669 *e++ = 32;
670 e += 32;
671 *e++ = 17; /* Boot path */
672 *e++ = 40;
673 e += 40;
675 *e++ = 57; /* set extension buffer size for reply */
676 *e++ = 2;
677 *e++ = 1; /* 128+236+8+20+14, see dhcpd sources */
678 *e++ = 150;
680 *e++ = 255; /* End of the list */
685 * Initialize the DHCP/BOOTP mechanism.
687 static inline void ic_bootp_init(void)
689 int i;
691 for (i = 0; i < CONF_NAMESERVERS_MAX; i++)
692 ic_nameservers[i] = NONE;
694 dev_add_pack(&bootp_packet_type);
699 * DHCP/BOOTP cleanup.
701 static inline void ic_bootp_cleanup(void)
703 dev_remove_pack(&bootp_packet_type);
708 * Send DHCP/BOOTP request to single interface.
710 static void __init ic_bootp_send_if(struct ic_device *d, unsigned long jiffies_diff)
712 struct net_device *dev = d->dev;
713 struct sk_buff *skb;
714 struct bootp_pkt *b;
715 int hh_len = LL_RESERVED_SPACE(dev);
716 struct iphdr *h;
718 /* Allocate packet */
719 skb = alloc_skb(sizeof(struct bootp_pkt) + hh_len + 15, GFP_KERNEL);
720 if (!skb)
721 return;
722 skb_reserve(skb, hh_len);
723 b = (struct bootp_pkt *) skb_put(skb, sizeof(struct bootp_pkt));
724 memset(b, 0, sizeof(struct bootp_pkt));
726 /* Construct IP header */
727 skb_reset_network_header(skb);
728 h = ip_hdr(skb);
729 h->version = 4;
730 h->ihl = 5;
731 h->tot_len = htons(sizeof(struct bootp_pkt));
732 h->frag_off = htons(IP_DF);
733 h->ttl = 64;
734 h->protocol = IPPROTO_UDP;
735 h->daddr = htonl(INADDR_BROADCAST);
736 h->check = ip_fast_csum((unsigned char *) h, h->ihl);
738 /* Construct UDP header */
739 b->udph.source = htons(68);
740 b->udph.dest = htons(67);
741 b->udph.len = htons(sizeof(struct bootp_pkt) - sizeof(struct iphdr));
742 /* UDP checksum not calculated -- explicitly allowed in BOOTP RFC */
744 /* Construct DHCP/BOOTP header */
745 b->op = BOOTP_REQUEST;
746 if (dev->type < 256) /* check for false types */
747 b->htype = dev->type;
748 else if (dev->type == ARPHRD_IEEE802_TR) /* fix for token ring */
749 b->htype = ARPHRD_IEEE802;
750 else if (dev->type == ARPHRD_FDDI)
751 b->htype = ARPHRD_ETHER;
752 else {
753 printk("Unknown ARP type 0x%04x for device %s\n", dev->type, dev->name);
754 b->htype = dev->type; /* can cause undefined behavior */
756 <<<<<<< HEAD:net/ipv4/ipconfig.c
757 =======
759 /* server_ip and your_ip address are both already zero per RFC2131 */
760 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:net/ipv4/ipconfig.c
761 b->hlen = dev->addr_len;
762 <<<<<<< HEAD:net/ipv4/ipconfig.c
763 b->your_ip = NONE;
764 b->server_ip = NONE;
765 =======
766 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:net/ipv4/ipconfig.c
767 memcpy(b->hw_addr, dev->dev_addr, dev->addr_len);
768 b->secs = htons(jiffies_diff / HZ);
769 b->xid = d->xid;
771 /* add DHCP options or BOOTP extensions */
772 #ifdef IPCONFIG_DHCP
773 if (ic_proto_enabled & IC_USE_DHCP)
774 ic_dhcp_init_options(b->exten);
775 else
776 #endif
777 ic_bootp_init_ext(b->exten);
779 /* Chain packet down the line... */
780 skb->dev = dev;
781 skb->protocol = htons(ETH_P_IP);
782 if (dev_hard_header(skb, dev, ntohs(skb->protocol),
783 dev->broadcast, dev->dev_addr, skb->len) < 0 ||
784 dev_queue_xmit(skb) < 0)
785 printk("E");
790 * Copy BOOTP-supplied string if not already set.
792 static int __init ic_bootp_string(char *dest, char *src, int len, int max)
794 if (!len)
795 return 0;
796 if (len > max-1)
797 len = max-1;
798 memcpy(dest, src, len);
799 dest[len] = '\0';
800 return 1;
805 * Process BOOTP extensions.
807 static void __init ic_do_bootp_ext(u8 *ext)
809 u8 servers;
810 int i;
812 #ifdef IPCONFIG_DEBUG
813 u8 *c;
815 printk("DHCP/BOOTP: Got extension %d:",*ext);
816 for (c=ext+2; c<ext+2+ext[1]; c++)
817 printk(" %02x", *c);
818 printk("\n");
819 #endif
821 switch (*ext++) {
822 case 1: /* Subnet mask */
823 if (ic_netmask == NONE)
824 memcpy(&ic_netmask, ext+1, 4);
825 break;
826 case 3: /* Default gateway */
827 if (ic_gateway == NONE)
828 memcpy(&ic_gateway, ext+1, 4);
829 break;
830 case 6: /* DNS server */
831 servers= *ext/4;
832 if (servers > CONF_NAMESERVERS_MAX)
833 servers = CONF_NAMESERVERS_MAX;
834 for (i = 0; i < servers; i++) {
835 if (ic_nameservers[i] == NONE)
836 memcpy(&ic_nameservers[i], ext+1+4*i, 4);
838 break;
839 case 12: /* Host name */
840 ic_bootp_string(utsname()->nodename, ext+1, *ext, __NEW_UTS_LEN);
841 ic_host_name_set = 1;
842 break;
843 case 15: /* Domain name (DNS) */
844 ic_bootp_string(ic_domain, ext+1, *ext, sizeof(ic_domain));
845 break;
846 case 17: /* Root path */
847 if (!root_server_path[0])
848 ic_bootp_string(root_server_path, ext+1, *ext, sizeof(root_server_path));
849 break;
850 case 40: /* NIS Domain name (_not_ DNS) */
851 ic_bootp_string(utsname()->domainname, ext+1, *ext, __NEW_UTS_LEN);
852 break;
858 * Receive BOOTP reply.
860 static int __init ic_bootp_recv(struct sk_buff *skb, struct net_device *dev, struct packet_type *pt, struct net_device *orig_dev)
862 struct bootp_pkt *b;
863 struct iphdr *h;
864 struct ic_device *d;
865 int len, ext_len;
867 if (dev->nd_net != &init_net)
868 goto drop;
870 /* Perform verifications before taking the lock. */
871 if (skb->pkt_type == PACKET_OTHERHOST)
872 goto drop;
874 if ((skb = skb_share_check(skb, GFP_ATOMIC)) == NULL)
875 return NET_RX_DROP;
877 if (!pskb_may_pull(skb,
878 sizeof(struct iphdr) +
879 sizeof(struct udphdr)))
880 goto drop;
882 b = (struct bootp_pkt *)skb_network_header(skb);
883 h = &b->iph;
885 if (h->ihl != 5 || h->version != 4 || h->protocol != IPPROTO_UDP)
886 goto drop;
888 /* Fragments are not supported */
889 if (h->frag_off & htons(IP_OFFSET | IP_MF)) {
890 if (net_ratelimit())
891 printk(KERN_ERR "DHCP/BOOTP: Ignoring fragmented "
892 "reply.\n");
893 goto drop;
896 if (skb->len < ntohs(h->tot_len))
897 goto drop;
899 if (ip_fast_csum((char *) h, h->ihl))
900 goto drop;
902 if (b->udph.source != htons(67) || b->udph.dest != htons(68))
903 goto drop;
905 if (ntohs(h->tot_len) < ntohs(b->udph.len) + sizeof(struct iphdr))
906 goto drop;
908 len = ntohs(b->udph.len) - sizeof(struct udphdr);
909 ext_len = len - (sizeof(*b) -
910 sizeof(struct iphdr) -
911 sizeof(struct udphdr) -
912 sizeof(b->exten));
913 if (ext_len < 0)
914 goto drop;
916 /* Ok the front looks good, make sure we can get at the rest. */
917 if (!pskb_may_pull(skb, skb->len))
918 goto drop;
920 b = (struct bootp_pkt *)skb_network_header(skb);
921 h = &b->iph;
923 /* One reply at a time, please. */
924 spin_lock(&ic_recv_lock);
926 /* If we already have a reply, just drop the packet */
927 if (ic_got_reply)
928 goto drop_unlock;
930 /* Find the ic_device that the packet arrived on */
931 d = ic_first_dev;
932 while (d && d->dev != dev)
933 d = d->next;
934 if (!d)
935 goto drop_unlock; /* should never happen */
937 /* Is it a reply to our BOOTP request? */
938 if (b->op != BOOTP_REPLY ||
939 b->xid != d->xid) {
940 if (net_ratelimit())
941 printk(KERN_ERR "DHCP/BOOTP: Reply not for us, "
942 "op[%x] xid[%x]\n",
943 b->op, b->xid);
944 goto drop_unlock;
947 /* Parse extensions */
948 if (ext_len >= 4 &&
949 !memcmp(b->exten, ic_bootp_cookie, 4)) { /* Check magic cookie */
950 u8 *end = (u8 *) b + ntohs(b->iph.tot_len);
951 u8 *ext;
953 #ifdef IPCONFIG_DHCP
954 if (ic_proto_enabled & IC_USE_DHCP) {
955 __be32 server_id = NONE;
956 int mt = 0;
958 ext = &b->exten[4];
959 while (ext < end && *ext != 0xff) {
960 u8 *opt = ext++;
961 if (*opt == 0) /* Padding */
962 continue;
963 ext += *ext + 1;
964 if (ext >= end)
965 break;
966 switch (*opt) {
967 case 53: /* Message type */
968 if (opt[1])
969 mt = opt[2];
970 break;
971 case 54: /* Server ID (IP address) */
972 if (opt[1] >= 4)
973 memcpy(&server_id, opt + 2, 4);
974 break;
978 #ifdef IPCONFIG_DEBUG
979 printk("DHCP: Got message type %d\n", mt);
980 #endif
982 switch (mt) {
983 case DHCPOFFER:
984 /* While in the process of accepting one offer,
985 * ignore all others.
987 if (ic_myaddr != NONE)
988 goto drop_unlock;
990 /* Let's accept that offer. */
991 ic_myaddr = b->your_ip;
992 ic_servaddr = server_id;
993 #ifdef IPCONFIG_DEBUG
994 printk("DHCP: Offered address %u.%u.%u.%u",
995 NIPQUAD(ic_myaddr));
996 printk(" by server %u.%u.%u.%u\n",
997 NIPQUAD(ic_servaddr));
998 #endif
999 /* The DHCP indicated server address takes
1000 * precedence over the bootp header one if
1001 * they are different.
1003 if ((server_id != NONE) &&
1004 (b->server_ip != server_id))
1005 b->server_ip = ic_servaddr;
1006 break;
1008 case DHCPACK:
1009 if (memcmp(dev->dev_addr, b->hw_addr, dev->addr_len) != 0)
1010 goto drop_unlock;
1012 /* Yeah! */
1013 break;
1015 default:
1016 /* Urque. Forget it*/
1017 ic_myaddr = NONE;
1018 ic_servaddr = NONE;
1019 goto drop_unlock;
1022 ic_dhcp_msgtype = mt;
1025 #endif /* IPCONFIG_DHCP */
1027 ext = &b->exten[4];
1028 while (ext < end && *ext != 0xff) {
1029 u8 *opt = ext++;
1030 if (*opt == 0) /* Padding */
1031 continue;
1032 ext += *ext + 1;
1033 if (ext < end)
1034 ic_do_bootp_ext(opt);
1038 /* We have a winner! */
1039 ic_dev = dev;
1040 ic_myaddr = b->your_ip;
1041 ic_servaddr = b->server_ip;
1042 if (ic_gateway == NONE && b->relay_ip)
1043 ic_gateway = b->relay_ip;
1044 if (ic_nameservers[0] == NONE)
1045 ic_nameservers[0] = ic_servaddr;
1046 ic_got_reply = IC_BOOTP;
1048 drop_unlock:
1049 /* Show's over. Nothing to see here. */
1050 spin_unlock(&ic_recv_lock);
1052 drop:
1053 /* Throw the packet out. */
1054 kfree_skb(skb);
1056 return 0;
1060 #endif
1064 * Dynamic IP configuration -- DHCP, BOOTP, RARP.
1067 #ifdef IPCONFIG_DYNAMIC
1069 static int __init ic_dynamic(void)
1071 int retries;
1072 struct ic_device *d;
1073 unsigned long start_jiffies, timeout, jiff;
1074 int do_bootp = ic_proto_have_if & IC_BOOTP;
1075 int do_rarp = ic_proto_have_if & IC_RARP;
1078 * If none of DHCP/BOOTP/RARP was selected, return with an error.
1079 * This routine gets only called when some pieces of information
1080 * are missing, and without DHCP/BOOTP/RARP we are unable to get it.
1082 if (!ic_proto_enabled) {
1083 printk(KERN_ERR "IP-Config: Incomplete network configuration information.\n");
1084 return -1;
1087 #ifdef IPCONFIG_BOOTP
1088 if ((ic_proto_enabled ^ ic_proto_have_if) & IC_BOOTP)
1089 printk(KERN_ERR "DHCP/BOOTP: No suitable device found.\n");
1090 #endif
1091 #ifdef IPCONFIG_RARP
1092 if ((ic_proto_enabled ^ ic_proto_have_if) & IC_RARP)
1093 printk(KERN_ERR "RARP: No suitable device found.\n");
1094 #endif
1096 if (!ic_proto_have_if)
1097 /* Error message already printed */
1098 return -1;
1101 * Setup protocols
1103 #ifdef IPCONFIG_BOOTP
1104 if (do_bootp)
1105 ic_bootp_init();
1106 #endif
1107 #ifdef IPCONFIG_RARP
1108 if (do_rarp)
1109 ic_rarp_init();
1110 #endif
1113 * Send requests and wait, until we get an answer. This loop
1114 * seems to be a terrible waste of CPU time, but actually there is
1115 * only one process running at all, so we don't need to use any
1116 * scheduler functions.
1117 * [Actually we could now, but the nothing else running note still
1118 * applies.. - AC]
1120 printk(KERN_NOTICE "Sending %s%s%s requests .",
1121 do_bootp
1122 ? ((ic_proto_enabled & IC_USE_DHCP) ? "DHCP" : "BOOTP") : "",
1123 (do_bootp && do_rarp) ? " and " : "",
1124 do_rarp ? "RARP" : "");
1126 start_jiffies = jiffies;
1127 d = ic_first_dev;
1128 retries = CONF_SEND_RETRIES;
1129 get_random_bytes(&timeout, sizeof(timeout));
1130 timeout = CONF_BASE_TIMEOUT + (timeout % (unsigned) CONF_TIMEOUT_RANDOM);
1131 for (;;) {
1132 #ifdef IPCONFIG_BOOTP
1133 if (do_bootp && (d->able & IC_BOOTP))
1134 ic_bootp_send_if(d, jiffies - start_jiffies);
1135 #endif
1136 #ifdef IPCONFIG_RARP
1137 if (do_rarp && (d->able & IC_RARP))
1138 ic_rarp_send_if(d);
1139 #endif
1141 jiff = jiffies + (d->next ? CONF_INTER_TIMEOUT : timeout);
1142 while (time_before(jiffies, jiff) && !ic_got_reply)
1143 schedule_timeout_uninterruptible(1);
1144 #ifdef IPCONFIG_DHCP
1145 /* DHCP isn't done until we get a DHCPACK. */
1146 if ((ic_got_reply & IC_BOOTP)
1147 && (ic_proto_enabled & IC_USE_DHCP)
1148 && ic_dhcp_msgtype != DHCPACK)
1150 ic_got_reply = 0;
1151 printk(",");
1152 continue;
1154 #endif /* IPCONFIG_DHCP */
1156 if (ic_got_reply) {
1157 printk(" OK\n");
1158 break;
1161 if ((d = d->next))
1162 continue;
1164 if (! --retries) {
1165 printk(" timed out!\n");
1166 break;
1169 d = ic_first_dev;
1171 timeout = timeout CONF_TIMEOUT_MULT;
1172 if (timeout > CONF_TIMEOUT_MAX)
1173 timeout = CONF_TIMEOUT_MAX;
1175 printk(".");
1178 #ifdef IPCONFIG_BOOTP
1179 if (do_bootp)
1180 ic_bootp_cleanup();
1181 #endif
1182 #ifdef IPCONFIG_RARP
1183 if (do_rarp)
1184 ic_rarp_cleanup();
1185 #endif
1187 if (!ic_got_reply) {
1188 ic_myaddr = NONE;
1189 return -1;
1192 printk("IP-Config: Got %s answer from %u.%u.%u.%u, ",
1193 ((ic_got_reply & IC_RARP) ? "RARP"
1194 : (ic_proto_enabled & IC_USE_DHCP) ? "DHCP" : "BOOTP"),
1195 NIPQUAD(ic_servaddr));
1196 printk("my address is %u.%u.%u.%u\n", NIPQUAD(ic_myaddr));
1198 return 0;
1201 #endif /* IPCONFIG_DYNAMIC */
1203 #ifdef CONFIG_PROC_FS
1205 static int pnp_seq_show(struct seq_file *seq, void *v)
1207 int i;
1209 if (ic_proto_used & IC_PROTO)
1210 seq_printf(seq, "#PROTO: %s\n",
1211 (ic_proto_used & IC_RARP) ? "RARP"
1212 : (ic_proto_used & IC_USE_DHCP) ? "DHCP" : "BOOTP");
1213 else
1214 seq_puts(seq, "#MANUAL\n");
1216 if (ic_domain[0])
1217 seq_printf(seq,
1218 "domain %s\n", ic_domain);
1219 for (i = 0; i < CONF_NAMESERVERS_MAX; i++) {
1220 if (ic_nameservers[i] != NONE)
1221 seq_printf(seq,
1222 "nameserver %u.%u.%u.%u\n",
1223 NIPQUAD(ic_nameservers[i]));
1225 if (ic_servaddr != NONE)
1226 seq_printf(seq,
1227 "bootserver %u.%u.%u.%u\n",
1228 NIPQUAD(ic_servaddr));
1229 return 0;
1232 static int pnp_seq_open(struct inode *indoe, struct file *file)
1234 return single_open(file, pnp_seq_show, NULL);
1237 static const struct file_operations pnp_seq_fops = {
1238 .owner = THIS_MODULE,
1239 .open = pnp_seq_open,
1240 .read = seq_read,
1241 .llseek = seq_lseek,
1242 .release = single_release,
1244 #endif /* CONFIG_PROC_FS */
1247 * Extract IP address from the parameter string if needed. Note that we
1248 * need to have root_server_addr set _before_ IPConfig gets called as it
1249 * can override it.
1251 __be32 __init root_nfs_parse_addr(char *name)
1253 __be32 addr;
1254 int octets = 0;
1255 char *cp, *cq;
1257 cp = cq = name;
1258 while (octets < 4) {
1259 while (*cp >= '0' && *cp <= '9')
1260 cp++;
1261 if (cp == cq || cp - cq > 3)
1262 break;
1263 if (*cp == '.' || octets == 3)
1264 octets++;
1265 if (octets < 4)
1266 cp++;
1267 cq = cp;
1269 if (octets == 4 && (*cp == ':' || *cp == '\0')) {
1270 if (*cp == ':')
1271 *cp++ = '\0';
1272 addr = in_aton(name);
1273 memmove(name, cp, strlen(cp) + 1);
1274 } else
1275 addr = NONE;
1277 return addr;
1281 * IP Autoconfig dispatcher.
1284 static int __init ip_auto_config(void)
1286 __be32 addr;
1288 #ifdef CONFIG_PROC_FS
1289 proc_net_fops_create(&init_net, "pnp", S_IRUGO, &pnp_seq_fops);
1290 #endif /* CONFIG_PROC_FS */
1292 if (!ic_enable)
1293 return 0;
1295 DBG(("IP-Config: Entered.\n"));
1296 #ifdef IPCONFIG_DYNAMIC
1297 try_try_again:
1298 #endif
1299 /* Give hardware a chance to settle */
1300 msleep(CONF_PRE_OPEN);
1302 /* Setup all network devices */
1303 if (ic_open_devs() < 0)
1304 return -1;
1306 /* Give drivers a chance to settle */
1307 ssleep(CONF_POST_OPEN);
1310 * If the config information is insufficient (e.g., our IP address or
1311 * IP address of the boot server is missing or we have multiple network
1312 * interfaces and no default was set), use BOOTP or RARP to get the
1313 * missing values.
1315 if (ic_myaddr == NONE ||
1316 #ifdef CONFIG_ROOT_NFS
1317 (root_server_addr == NONE
1318 && ic_servaddr == NONE
1319 && ROOT_DEV == Root_NFS) ||
1320 #endif
1321 ic_first_dev->next) {
1322 #ifdef IPCONFIG_DYNAMIC
1324 int retries = CONF_OPEN_RETRIES;
1326 if (ic_dynamic() < 0) {
1327 ic_close_devs();
1330 * I don't know why, but sometimes the
1331 * eepro100 driver (at least) gets upset and
1332 * doesn't work the first time it's opened.
1333 * But then if you close it and reopen it, it
1334 * works just fine. So we need to try that at
1335 * least once before giving up.
1337 * Also, if the root will be NFS-mounted, we
1338 * have nowhere to go if DHCP fails. So we
1339 * just have to keep trying forever.
1341 * -- Chip
1343 #ifdef CONFIG_ROOT_NFS
1344 if (ROOT_DEV == Root_NFS) {
1345 printk(KERN_ERR
1346 "IP-Config: Retrying forever (NFS root)...\n");
1347 goto try_try_again;
1349 #endif
1351 if (--retries) {
1352 printk(KERN_ERR
1353 "IP-Config: Reopening network devices...\n");
1354 goto try_try_again;
1357 /* Oh, well. At least we tried. */
1358 printk(KERN_ERR "IP-Config: Auto-configuration of network failed.\n");
1359 return -1;
1361 #else /* !DYNAMIC */
1362 printk(KERN_ERR "IP-Config: Incomplete network configuration information.\n");
1363 ic_close_devs();
1364 return -1;
1365 #endif /* IPCONFIG_DYNAMIC */
1366 } else {
1367 /* Device selected manually or only one device -> use it */
1368 ic_dev = ic_first_dev->dev;
1371 addr = root_nfs_parse_addr(root_server_path);
1372 if (root_server_addr == NONE)
1373 root_server_addr = addr;
1376 * Use defaults whereever applicable.
1378 if (ic_defaults() < 0)
1379 return -1;
1382 * Close all network devices except the device we've
1383 * autoconfigured and set up routes.
1385 ic_close_devs();
1386 if (ic_setup_if() < 0 || ic_setup_routes() < 0)
1387 return -1;
1390 * Record which protocol was actually used.
1392 #ifdef IPCONFIG_DYNAMIC
1393 ic_proto_used = ic_got_reply | (ic_proto_enabled & IC_USE_DHCP);
1394 #endif
1396 #ifndef IPCONFIG_SILENT
1398 * Clue in the operator.
1400 printk("IP-Config: Complete:");
1401 <<<<<<< HEAD:net/ipv4/ipconfig.c
1402 printk("\n device=%s", ic_dev->name);
1403 =======
1404 printk("\n device=%s", ic_dev->name);
1405 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:net/ipv4/ipconfig.c
1406 printk(", addr=%u.%u.%u.%u", NIPQUAD(ic_myaddr));
1407 printk(", mask=%u.%u.%u.%u", NIPQUAD(ic_netmask));
1408 printk(", gw=%u.%u.%u.%u", NIPQUAD(ic_gateway));
1409 printk(",\n host=%s, domain=%s, nis-domain=%s",
1410 utsname()->nodename, ic_domain, utsname()->domainname);
1411 printk(",\n bootserver=%u.%u.%u.%u", NIPQUAD(ic_servaddr));
1412 printk(", rootserver=%u.%u.%u.%u", NIPQUAD(root_server_addr));
1413 printk(", rootpath=%s", root_server_path);
1414 printk("\n");
1415 #endif /* !SILENT */
1417 return 0;
1420 late_initcall(ip_auto_config);
1424 * Decode any IP configuration options in the "ip=" or "nfsaddrs=" kernel
1425 * command line parameter. See Documentation/nfsroot.txt.
1427 static int __init ic_proto_name(char *name)
1429 if (!strcmp(name, "on") || !strcmp(name, "any")) {
1430 return 1;
1432 if (!strcmp(name, "off") || !strcmp(name, "none")) {
1433 return 0;
1435 #ifdef CONFIG_IP_PNP_DHCP
1436 else if (!strcmp(name, "dhcp")) {
1437 ic_proto_enabled &= ~IC_RARP;
1438 return 1;
1440 #endif
1441 #ifdef CONFIG_IP_PNP_BOOTP
1442 else if (!strcmp(name, "bootp")) {
1443 ic_proto_enabled &= ~(IC_RARP | IC_USE_DHCP);
1444 return 1;
1446 #endif
1447 #ifdef CONFIG_IP_PNP_RARP
1448 else if (!strcmp(name, "rarp")) {
1449 ic_proto_enabled &= ~(IC_BOOTP | IC_USE_DHCP);
1450 return 1;
1452 #endif
1453 #ifdef IPCONFIG_DYNAMIC
1454 else if (!strcmp(name, "both")) {
1455 ic_proto_enabled &= ~IC_USE_DHCP; /* backward compat :-( */
1456 return 1;
1458 #endif
1459 return 0;
1462 static int __init ip_auto_config_setup(char *addrs)
1464 char *cp, *ip, *dp;
1465 int num = 0;
1467 ic_set_manually = 1;
1468 ic_enable = 1;
1471 * If any dhcp, bootp etc options are set, leave autoconfig on
1472 * and skip the below static IP processing.
1474 if (ic_proto_name(addrs))
1475 return 1;
1477 /* If no static IP is given, turn off autoconfig and bail. */
1478 if (*addrs == 0 ||
1479 strcmp(addrs, "off") == 0 ||
1480 strcmp(addrs, "none") == 0) {
1481 ic_enable = 0;
1482 return 1;
1485 /* Parse string for static IP assignment. */
1486 ip = addrs;
1487 while (ip && *ip) {
1488 if ((cp = strchr(ip, ':')))
1489 *cp++ = '\0';
1490 if (strlen(ip) > 0) {
1491 DBG(("IP-Config: Parameter #%d: `%s'\n", num, ip));
1492 switch (num) {
1493 case 0:
1494 if ((ic_myaddr = in_aton(ip)) == INADDR_ANY)
1495 ic_myaddr = NONE;
1496 break;
1497 case 1:
1498 if ((ic_servaddr = in_aton(ip)) == INADDR_ANY)
1499 ic_servaddr = NONE;
1500 break;
1501 case 2:
1502 if ((ic_gateway = in_aton(ip)) == INADDR_ANY)
1503 ic_gateway = NONE;
1504 break;
1505 case 3:
1506 if ((ic_netmask = in_aton(ip)) == INADDR_ANY)
1507 ic_netmask = NONE;
1508 break;
1509 case 4:
1510 if ((dp = strchr(ip, '.'))) {
1511 *dp++ = '\0';
1512 strlcpy(utsname()->domainname, dp,
1513 sizeof(utsname()->domainname));
1515 strlcpy(utsname()->nodename, ip,
1516 sizeof(utsname()->nodename));
1517 ic_host_name_set = 1;
1518 break;
1519 case 5:
1520 strlcpy(user_dev_name, ip, sizeof(user_dev_name));
1521 break;
1522 case 6:
1523 if (ic_proto_name(ip) == 0 &&
1524 ic_myaddr == NONE) {
1525 ic_enable = 0;
1527 break;
1530 ip = cp;
1531 num++;
1534 return 1;
1537 static int __init nfsaddrs_config_setup(char *addrs)
1539 return ip_auto_config_setup(addrs);
1542 static int __init vendor_class_identifier_setup(char *addrs)
1544 if (strlcpy(vendor_class_identifier, addrs,
1545 sizeof(vendor_class_identifier))
1546 >= sizeof(vendor_class_identifier))
1547 printk(KERN_WARNING "DHCP: vendorclass too long, truncated to \"%s\"",
1548 vendor_class_identifier);
1549 return 1;
1552 __setup("ip=", ip_auto_config_setup);
1553 __setup("nfsaddrs=", nfsaddrs_config_setup);
1554 __setup("dhcpclass=", vendor_class_identifier_setup);