annotate toys/other/ifconfig.c @ 1193:f6f56a002d9a draft

Add /prefix netmask support to ifconfig, ala "ifconfig eth0 192.168.1.42/28"
author Rob Landley <rob@landley.net>
date Tue, 04 Feb 2014 06:13:13 -0600
parents 63f8c7fa94d7
children 4f080cdb2f6e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
841
cb0c3a773437 Kyungwan Han submitted ifconfig.
Rob Landley <rob@landley.net>
parents:
diff changeset
1 /* ifconfig.c - Configure network interface.
cb0c3a773437 Kyungwan Han submitted ifconfig.
Rob Landley <rob@landley.net>
parents:
diff changeset
2 *
844
f8250900f94b More ifconfig cleanups, mostly removing unused code.
Rob Landley <rob@landley.net>
parents: 843
diff changeset
3 * Copyright 2012 Ranjan Kumar <ranjankumar.bth@gmail.com>
f8250900f94b More ifconfig cleanups, mostly removing unused code.
Rob Landley <rob@landley.net>
parents: 843
diff changeset
4 * Copyright 2012 Kyungwan Han <asura321@gamil.com>
f8250900f94b More ifconfig cleanups, mostly removing unused code.
Rob Landley <rob@landley.net>
parents: 843
diff changeset
5 * Reviewed by Kyungsu Kim <kaspyx@gmail.com>
841
cb0c3a773437 Kyungwan Han submitted ifconfig.
Rob Landley <rob@landley.net>
parents:
diff changeset
6 *
cb0c3a773437 Kyungwan Han submitted ifconfig.
Rob Landley <rob@landley.net>
parents:
diff changeset
7 * Not in SUSv4.
844
f8250900f94b More ifconfig cleanups, mostly removing unused code.
Rob Landley <rob@landley.net>
parents: 843
diff changeset
8
841
cb0c3a773437 Kyungwan Han submitted ifconfig.
Rob Landley <rob@landley.net>
parents:
diff changeset
9 USE_IFCONFIG(NEWTOY(ifconfig, "?a", TOYFLAG_BIN))
844
f8250900f94b More ifconfig cleanups, mostly removing unused code.
Rob Landley <rob@landley.net>
parents: 843
diff changeset
10
841
cb0c3a773437 Kyungwan Han submitted ifconfig.
Rob Landley <rob@landley.net>
parents:
diff changeset
11 config IFCONFIG
cb0c3a773437 Kyungwan Han submitted ifconfig.
Rob Landley <rob@landley.net>
parents:
diff changeset
12 bool "ifconfig"
921
6a37f642b572 Yet more ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 919
diff changeset
13 default y
841
cb0c3a773437 Kyungwan Han submitted ifconfig.
Rob Landley <rob@landley.net>
parents:
diff changeset
14 help
1133
f8c926309a21 Cleanup help text, remove dead fields unused by linux kernel.
Rob Landley <rob@landley.net>
parents: 1132
diff changeset
15 usage: ifconfig [-a] [INTERFACE [ACTION...]]
f8c926309a21 Cleanup help text, remove dead fields unused by linux kernel.
Rob Landley <rob@landley.net>
parents: 1132
diff changeset
16
f8c926309a21 Cleanup help text, remove dead fields unused by linux kernel.
Rob Landley <rob@landley.net>
parents: 1132
diff changeset
17 Display or configure network interface.
841
cb0c3a773437 Kyungwan Han submitted ifconfig.
Rob Landley <rob@landley.net>
parents:
diff changeset
18
1133
f8c926309a21 Cleanup help text, remove dead fields unused by linux kernel.
Rob Landley <rob@landley.net>
parents: 1132
diff changeset
19 With no arguments, display active interfaces. First argument is interface
f8c926309a21 Cleanup help text, remove dead fields unused by linux kernel.
Rob Landley <rob@landley.net>
parents: 1132
diff changeset
20 to operate on, one argument by itself displays that interface.
f8c926309a21 Cleanup help text, remove dead fields unused by linux kernel.
Rob Landley <rob@landley.net>
parents: 1132
diff changeset
21
f8c926309a21 Cleanup help text, remove dead fields unused by linux kernel.
Rob Landley <rob@landley.net>
parents: 1132
diff changeset
22 -a Show all interfaces, not just active ones
f8c926309a21 Cleanup help text, remove dead fields unused by linux kernel.
Rob Landley <rob@landley.net>
parents: 1132
diff changeset
23
f8c926309a21 Cleanup help text, remove dead fields unused by linux kernel.
Rob Landley <rob@landley.net>
parents: 1132
diff changeset
24 Additional arguments are actions to perform on the interface:
841
cb0c3a773437 Kyungwan Han submitted ifconfig.
Rob Landley <rob@landley.net>
parents:
diff changeset
25
1133
f8c926309a21 Cleanup help text, remove dead fields unused by linux kernel.
Rob Landley <rob@landley.net>
parents: 1132
diff changeset
26 ADDRESS[/NETMASK] - set IPv4 address (1.2.3.4/5)
f8c926309a21 Cleanup help text, remove dead fields unused by linux kernel.
Rob Landley <rob@landley.net>
parents: 1132
diff changeset
27 default - unset ipv4 address
f8c926309a21 Cleanup help text, remove dead fields unused by linux kernel.
Rob Landley <rob@landley.net>
parents: 1132
diff changeset
28 add|del ADDRESS[/PREFIXLEN] - add/remove IPv6 address (1111::8888/128)
f8c926309a21 Cleanup help text, remove dead fields unused by linux kernel.
Rob Landley <rob@landley.net>
parents: 1132
diff changeset
29 up - enable interface
f8c926309a21 Cleanup help text, remove dead fields unused by linux kernel.
Rob Landley <rob@landley.net>
parents: 1132
diff changeset
30 down - disable interface
f8c926309a21 Cleanup help text, remove dead fields unused by linux kernel.
Rob Landley <rob@landley.net>
parents: 1132
diff changeset
31
f8c926309a21 Cleanup help text, remove dead fields unused by linux kernel.
Rob Landley <rob@landley.net>
parents: 1132
diff changeset
32 netmask|broadcast|pointopoint ADDRESS - set more IPv4 characteristics
f8c926309a21 Cleanup help text, remove dead fields unused by linux kernel.
Rob Landley <rob@landley.net>
parents: 1132
diff changeset
33 hw ether|infiniband ADDRESS - set LAN hardware address (AA:BB:CC...)
f8c926309a21 Cleanup help text, remove dead fields unused by linux kernel.
Rob Landley <rob@landley.net>
parents: 1132
diff changeset
34 txqueuelen LEN - number of buffered packets before output blocks
f8c926309a21 Cleanup help text, remove dead fields unused by linux kernel.
Rob Landley <rob@landley.net>
parents: 1132
diff changeset
35 mtu LEN - size of outgoing packets (Maximum Transmission Unit)
f8c926309a21 Cleanup help text, remove dead fields unused by linux kernel.
Rob Landley <rob@landley.net>
parents: 1132
diff changeset
36
f8c926309a21 Cleanup help text, remove dead fields unused by linux kernel.
Rob Landley <rob@landley.net>
parents: 1132
diff changeset
37 Flags you can set on an interface (or -remove by prefixing with -):
f8c926309a21 Cleanup help text, remove dead fields unused by linux kernel.
Rob Landley <rob@landley.net>
parents: 1132
diff changeset
38 arp - don't use Address Resolution Protocol to map LAN routes
f8c926309a21 Cleanup help text, remove dead fields unused by linux kernel.
Rob Landley <rob@landley.net>
parents: 1132
diff changeset
39 promisc - don't discard packets that aren't to this LAN hardware address
f8c926309a21 Cleanup help text, remove dead fields unused by linux kernel.
Rob Landley <rob@landley.net>
parents: 1132
diff changeset
40 multicast - force interface into multicast mode if the driver doesn't
f8c926309a21 Cleanup help text, remove dead fields unused by linux kernel.
Rob Landley <rob@landley.net>
parents: 1132
diff changeset
41 allmulti - promisc for multicast packets
f8c926309a21 Cleanup help text, remove dead fields unused by linux kernel.
Rob Landley <rob@landley.net>
parents: 1132
diff changeset
42
f8c926309a21 Cleanup help text, remove dead fields unused by linux kernel.
Rob Landley <rob@landley.net>
parents: 1132
diff changeset
43 Obsolete fields included for historical purposes:
f8c926309a21 Cleanup help text, remove dead fields unused by linux kernel.
Rob Landley <rob@landley.net>
parents: 1132
diff changeset
44 irq|io_addr|mem_start ADDR - micromanage obsolete hardware
f8c926309a21 Cleanup help text, remove dead fields unused by linux kernel.
Rob Landley <rob@landley.net>
parents: 1132
diff changeset
45 outfill|keepalive INTEGER - SLIP analog dialup line quality monitoring
f8c926309a21 Cleanup help text, remove dead fields unused by linux kernel.
Rob Landley <rob@landley.net>
parents: 1132
diff changeset
46 metric INTEGER - added to Linux 0.9.10 with comment "never used", still true
841
cb0c3a773437 Kyungwan Han submitted ifconfig.
Rob Landley <rob@landley.net>
parents:
diff changeset
47 */
cb0c3a773437 Kyungwan Han submitted ifconfig.
Rob Landley <rob@landley.net>
parents:
diff changeset
48
cb0c3a773437 Kyungwan Han submitted ifconfig.
Rob Landley <rob@landley.net>
parents:
diff changeset
49 #define FOR_ifconfig
cb0c3a773437 Kyungwan Han submitted ifconfig.
Rob Landley <rob@landley.net>
parents:
diff changeset
50 #include "toys.h"
844
f8250900f94b More ifconfig cleanups, mostly removing unused code.
Rob Landley <rob@landley.net>
parents: 843
diff changeset
51
841
cb0c3a773437 Kyungwan Han submitted ifconfig.
Rob Landley <rob@landley.net>
parents:
diff changeset
52 #include <net/if_arp.h>
cb0c3a773437 Kyungwan Han submitted ifconfig.
Rob Landley <rob@landley.net>
parents:
diff changeset
53 #include <net/ethernet.h>
cb0c3a773437 Kyungwan Han submitted ifconfig.
Rob Landley <rob@landley.net>
parents:
diff changeset
54
866
0fa773e2a4fe Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 864
diff changeset
55 GLOBALS(
921
6a37f642b572 Yet more ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 919
diff changeset
56 int sockfd;
866
0fa773e2a4fe Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 864
diff changeset
57 )
0fa773e2a4fe Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 864
diff changeset
58
841
cb0c3a773437 Kyungwan Han submitted ifconfig.
Rob Landley <rob@landley.net>
parents:
diff changeset
59 //for ipv6 add/del
cb0c3a773437 Kyungwan Han submitted ifconfig.
Rob Landley <rob@landley.net>
parents:
diff changeset
60 struct ifreq_inet6 {
cb0c3a773437 Kyungwan Han submitted ifconfig.
Rob Landley <rob@landley.net>
parents:
diff changeset
61 struct in6_addr ifrinte6_addr;
cb0c3a773437 Kyungwan Han submitted ifconfig.
Rob Landley <rob@landley.net>
parents:
diff changeset
62 uint32_t ifrinet6_prefixlen;
cb0c3a773437 Kyungwan Han submitted ifconfig.
Rob Landley <rob@landley.net>
parents:
diff changeset
63 int ifrinet6_ifindex;
cb0c3a773437 Kyungwan Han submitted ifconfig.
Rob Landley <rob@landley.net>
parents:
diff changeset
64 };
cb0c3a773437 Kyungwan Han submitted ifconfig.
Rob Landley <rob@landley.net>
parents:
diff changeset
65
1128
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
66 // Convert hostname to binary address for AF_INET or AF_INET6
1193
f6f56a002d9a Add /prefix netmask support to ifconfig, ala "ifconfig eth0 192.168.1.42/28"
Rob Landley <rob@landley.net>
parents: 1155
diff changeset
67 // return /prefix (or range max if none)
f6f56a002d9a Add /prefix netmask support to ifconfig, ala "ifconfig eth0 192.168.1.42/28"
Rob Landley <rob@landley.net>
parents: 1155
diff changeset
68 int get_addrinfo(char *host, sa_family_t af, void *addr)
841
cb0c3a773437 Kyungwan Han submitted ifconfig.
Rob Landley <rob@landley.net>
parents:
diff changeset
69 {
1128
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
70 struct addrinfo hints, *result, *rp = 0;
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
71 int status, len;
1193
f6f56a002d9a Add /prefix netmask support to ifconfig, ala "ifconfig eth0 192.168.1.42/28"
Rob Landley <rob@landley.net>
parents: 1155
diff changeset
72 char *from, *slash;
841
cb0c3a773437 Kyungwan Han submitted ifconfig.
Rob Landley <rob@landley.net>
parents:
diff changeset
73
921
6a37f642b572 Yet more ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 919
diff changeset
74 memset(&hints, 0 , sizeof(struct addrinfo));
6a37f642b572 Yet more ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 919
diff changeset
75 hints.ai_family = af;
6a37f642b572 Yet more ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 919
diff changeset
76 hints.ai_socktype = SOCK_STREAM;
6a37f642b572 Yet more ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 919
diff changeset
77
1193
f6f56a002d9a Add /prefix netmask support to ifconfig, ala "ifconfig eth0 192.168.1.42/28"
Rob Landley <rob@landley.net>
parents: 1155
diff changeset
78 slash = strchr(host, '/');
f6f56a002d9a Add /prefix netmask support to ifconfig, ala "ifconfig eth0 192.168.1.42/28"
Rob Landley <rob@landley.net>
parents: 1155
diff changeset
79 if (slash) *slash = 0;
f6f56a002d9a Add /prefix netmask support to ifconfig, ala "ifconfig eth0 192.168.1.42/28"
Rob Landley <rob@landley.net>
parents: 1155
diff changeset
80
921
6a37f642b572 Yet more ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 919
diff changeset
81 status = getaddrinfo(host, NULL, &hints, &result);
1128
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
82 if (!status)
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
83 for (rp = result; rp; rp = rp->ai_next)
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
84 if (rp->ai_family == af) break;
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
85 if (!rp) error_exit("bad address '%s' : %s", host, gai_strerror(status));
852
6be04ec7b7ac More ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 844
diff changeset
86
1133
f8c926309a21 Cleanup help text, remove dead fields unused by linux kernel.
Rob Landley <rob@landley.net>
parents: 1132
diff changeset
87 // ai_addr isn't struct in_addr or in6_addr, it's struct sockaddr. Of course.
f8c926309a21 Cleanup help text, remove dead fields unused by linux kernel.
Rob Landley <rob@landley.net>
parents: 1132
diff changeset
88 // You'd think ipv4 and ipv6 would have some basic compatibility, but no.
f8c926309a21 Cleanup help text, remove dead fields unused by linux kernel.
Rob Landley <rob@landley.net>
parents: 1132
diff changeset
89 from = ((char *)rp->ai_addr) + 4;
1128
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
90 if (af == AF_INET6) {
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
91 len = 16;
1133
f8c926309a21 Cleanup help text, remove dead fields unused by linux kernel.
Rob Landley <rob@landley.net>
parents: 1132
diff changeset
92 from += 4; // skip "flowinfo" field ipv6 puts before address
f8c926309a21 Cleanup help text, remove dead fields unused by linux kernel.
Rob Landley <rob@landley.net>
parents: 1132
diff changeset
93 } else len = 4;
1128
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
94 memcpy(addr, from, len);
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
95 freeaddrinfo(result);
1193
f6f56a002d9a Add /prefix netmask support to ifconfig, ala "ifconfig eth0 192.168.1.42/28"
Rob Landley <rob@landley.net>
parents: 1155
diff changeset
96
f6f56a002d9a Add /prefix netmask support to ifconfig, ala "ifconfig eth0 192.168.1.42/28"
Rob Landley <rob@landley.net>
parents: 1155
diff changeset
97 len = -1;
f6f56a002d9a Add /prefix netmask support to ifconfig, ala "ifconfig eth0 192.168.1.42/28"
Rob Landley <rob@landley.net>
parents: 1155
diff changeset
98 if (slash) len = atolx_range(slash+1, 0, (af == AF_INET) ? 128 : 32);
f6f56a002d9a Add /prefix netmask support to ifconfig, ala "ifconfig eth0 192.168.1.42/28"
Rob Landley <rob@landley.net>
parents: 1155
diff changeset
99
f6f56a002d9a Add /prefix netmask support to ifconfig, ala "ifconfig eth0 192.168.1.42/28"
Rob Landley <rob@landley.net>
parents: 1155
diff changeset
100 return len;
841
cb0c3a773437 Kyungwan Han submitted ifconfig.
Rob Landley <rob@landley.net>
parents:
diff changeset
101 }
cb0c3a773437 Kyungwan Han submitted ifconfig.
Rob Landley <rob@landley.net>
parents:
diff changeset
102
958
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
103 static void display_ifconfig(char *name, int always, unsigned long long val[])
841
cb0c3a773437 Kyungwan Han submitted ifconfig.
Rob Landley <rob@landley.net>
parents:
diff changeset
104 {
cb0c3a773437 Kyungwan Han submitted ifconfig.
Rob Landley <rob@landley.net>
parents:
diff changeset
105 struct ifreq ifre;
879
bc7aa2d123b9 And another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 878
diff changeset
106 struct {
bc7aa2d123b9 And another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 878
diff changeset
107 int type;
bc7aa2d123b9 And another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 878
diff changeset
108 char *title;
bc7aa2d123b9 And another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 878
diff changeset
109 } types[] = {
bc7aa2d123b9 And another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 878
diff changeset
110 {ARPHRD_LOOPBACK, "Local Loopback"}, {ARPHRD_ETHER, "Ethernet"},
bc7aa2d123b9 And another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 878
diff changeset
111 {ARPHRD_PPP, "Point-to-Point Protocol"}, {ARPHRD_INFINIBAND, "InfiniBand"},
bc7aa2d123b9 And another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 878
diff changeset
112 {ARPHRD_SIT, "IPv6-in-IPv4"}, {-1, "UNSPEC"}
bc7aa2d123b9 And another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 878
diff changeset
113 };
bc7aa2d123b9 And another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 878
diff changeset
114 int i;
1127
e0a8cbb1a5e3 The return of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1104
diff changeset
115 char *pp;
921
6a37f642b572 Yet more ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 919
diff changeset
116 FILE *fp;
958
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
117 short flags;
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
118
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
119 xstrncpy(ifre.ifr_name, name, IFNAMSIZ);
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
120 if (ioctl(TT.sockfd, SIOCGIFFLAGS, &ifre)<0) perror_exit("%s", name);
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
121 flags = ifre.ifr_flags;
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
122 if (!always && !(flags & IFF_UP)) return;
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
123
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
124 // query hardware type and hardware address
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
125 i = ioctl(TT.sockfd, SIOCGIFHWADDR, &ifre);
841
cb0c3a773437 Kyungwan Han submitted ifconfig.
Rob Landley <rob@landley.net>
parents:
diff changeset
126
879
bc7aa2d123b9 And another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 878
diff changeset
127 for (i=0; i < (sizeof(types)/sizeof(*types))-1; i++)
958
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
128 if (ifre.ifr_hwaddr.sa_family == types[i].type) break;
879
bc7aa2d123b9 And another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 878
diff changeset
129
957
1ec29d7540e2 Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 921
diff changeset
130 xprintf("%-9s Link encap:%s ", name, types[i].title);
958
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
131 if(i >= 0 && ifre.ifr_hwaddr.sa_family == ARPHRD_ETHER) {
879
bc7aa2d123b9 And another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 878
diff changeset
132 xprintf("HWaddr ");
958
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
133 for (i=0; i<6; i++) xprintf(":%02X"+!i, ifre.ifr_hwaddr.sa_data[i]);
879
bc7aa2d123b9 And another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 878
diff changeset
134 }
852
6be04ec7b7ac More ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 844
diff changeset
135 xputc('\n');
866
0fa773e2a4fe Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 864
diff changeset
136
958
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
137 // If an address is assigned record that.
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
138
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
139 ifre.ifr_addr.sa_family = AF_INET;
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
140 memset(&ifre.ifr_addr, 0, sizeof(ifre.ifr_addr));
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
141 ioctl(TT.sockfd, SIOCGIFADDR, &ifre);
1127
e0a8cbb1a5e3 The return of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1104
diff changeset
142 pp = (char *)&ifre.ifr_addr;
e0a8cbb1a5e3 The return of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1104
diff changeset
143 for (i = 0; i<sizeof(ifre.ifr_addr); i++) if (pp[i]) break;
958
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
144
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
145 if (i != sizeof(ifre.ifr_addr)) {
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
146 struct sockaddr_in *si = (struct sockaddr_in *)&ifre.ifr_addr;
907
ecb0befac82a More ifconfig cleanup, inlining show_ip_addr(), hex_to_binary(), and set_hw_address().
Rob Landley <rob@landley.net>
parents: 906
diff changeset
147 struct {
ecb0befac82a More ifconfig cleanup, inlining show_ip_addr(), hex_to_binary(), and set_hw_address().
Rob Landley <rob@landley.net>
parents: 906
diff changeset
148 char *name;
958
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
149 int flag, ioctl;
907
ecb0befac82a More ifconfig cleanup, inlining show_ip_addr(), hex_to_binary(), and set_hw_address().
Rob Landley <rob@landley.net>
parents: 906
diff changeset
150 } addr[] = {
958
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
151 {"addr", 0, 0},
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
152 {"P-t-P", IFF_POINTOPOINT, SIOCGIFDSTADDR},
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
153 {"Bcast", IFF_BROADCAST, SIOCGIFBRDADDR},
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
154 {"Mask", 0, SIOCGIFNETMASK}
907
ecb0befac82a More ifconfig cleanup, inlining show_ip_addr(), hex_to_binary(), and set_hw_address().
Rob Landley <rob@landley.net>
parents: 906
diff changeset
155 };
879
bc7aa2d123b9 And another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 878
diff changeset
156
958
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
157 xprintf("%10c%s", ' ', (si->sin_family == AF_INET) ? "inet" :
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
158 (si->sin_family == AF_INET6) ? "inet6" : "unspec");
907
ecb0befac82a More ifconfig cleanup, inlining show_ip_addr(), hex_to_binary(), and set_hw_address().
Rob Landley <rob@landley.net>
parents: 906
diff changeset
159
ecb0befac82a More ifconfig cleanup, inlining show_ip_addr(), hex_to_binary(), and set_hw_address().
Rob Landley <rob@landley.net>
parents: 906
diff changeset
160 for (i=0; i < sizeof(addr)/sizeof(*addr); i++) {
958
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
161 if (!addr[i].flag || (flags & addr[i].flag)) {
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
162 if (addr[i].ioctl && ioctl(TT.sockfd, addr[i].ioctl, &ifre))
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
163 si->sin_family = 0;
907
ecb0befac82a More ifconfig cleanup, inlining show_ip_addr(), hex_to_binary(), and set_hw_address().
Rob Landley <rob@landley.net>
parents: 906
diff changeset
164 xprintf(" %s:%s ", addr[i].name,
958
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
165 (si->sin_family == 0xFFFF || !si->sin_family)
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
166 ? "[NOT SET]" : inet_ntoa(si->sin_addr));
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
167 }
907
ecb0befac82a More ifconfig cleanup, inlining show_ip_addr(), hex_to_binary(), and set_hw_address().
Rob Landley <rob@landley.net>
parents: 906
diff changeset
168 }
ecb0befac82a More ifconfig cleanup, inlining show_ip_addr(), hex_to_binary(), and set_hw_address().
Rob Landley <rob@landley.net>
parents: 906
diff changeset
169
879
bc7aa2d123b9 And another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 878
diff changeset
170 xputc('\n');
bc7aa2d123b9 And another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 878
diff changeset
171 }
bc7aa2d123b9 And another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 878
diff changeset
172
1127
e0a8cbb1a5e3 The return of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1104
diff changeset
173 fp = fopen(pp = "/proc/net/if_inet6", "r");
921
6a37f642b572 Yet more ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 919
diff changeset
174 if (fp) {
1127
e0a8cbb1a5e3 The return of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1104
diff changeset
175 char iface_name[IFNAMSIZ];
957
1ec29d7540e2 Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 921
diff changeset
176 int plen, iscope;
921
6a37f642b572 Yet more ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 919
diff changeset
177
1127
e0a8cbb1a5e3 The return of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1104
diff changeset
178 while (fgets(toybuf, sizeof(toybuf), fp)) {
e0a8cbb1a5e3 The return of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1104
diff changeset
179 int nitems;
e0a8cbb1a5e3 The return of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1104
diff changeset
180 char ipv6_addr[40];
e0a8cbb1a5e3 The return of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1104
diff changeset
181
921
6a37f642b572 Yet more ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 919
diff changeset
182 nitems = sscanf(toybuf, "%32s %*08x %02x %02x %*02x %15s\n",
1127
e0a8cbb1a5e3 The return of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1104
diff changeset
183 ipv6_addr, &plen, &iscope, iface_name);
e0a8cbb1a5e3 The return of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1104
diff changeset
184 if (nitems<0 && feof(fp)) break;
e0a8cbb1a5e3 The return of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1104
diff changeset
185 if (nitems != 4) perror_exit("bad %s", pp);
e0a8cbb1a5e3 The return of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1104
diff changeset
186
e0a8cbb1a5e3 The return of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1104
diff changeset
187 if (!strcmp(name, iface_name)) {
e0a8cbb1a5e3 The return of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1104
diff changeset
188 struct sockaddr_in6 s6;
e0a8cbb1a5e3 The return of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1104
diff changeset
189 char *ptr = ipv6_addr+sizeof(ipv6_addr)-1;
921
6a37f642b572 Yet more ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 919
diff changeset
190
1127
e0a8cbb1a5e3 The return of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1104
diff changeset
191 // convert giant hex string into colon-spearated ipv6 address by
e0a8cbb1a5e3 The return of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1104
diff changeset
192 // inserting ':' every 4 characters.
e0a8cbb1a5e3 The return of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1104
diff changeset
193 for (i = 32; i; i--)
e0a8cbb1a5e3 The return of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1104
diff changeset
194 if ((*(ptr--) = ipv6_addr[i])) if (!(i&3)) *(ptr--) = ':';
e0a8cbb1a5e3 The return of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1104
diff changeset
195
e0a8cbb1a5e3 The return of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1104
diff changeset
196 // Convert to binary and back to get abbreviated :: version
e0a8cbb1a5e3 The return of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1104
diff changeset
197 if (inet_pton(AF_INET6, ipv6_addr, (void *)&s6.sin6_addr) > 0) {
e0a8cbb1a5e3 The return of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1104
diff changeset
198 if (inet_ntop(AF_INET6, &s6.sin6_addr, toybuf, sizeof(toybuf))) {
957
1ec29d7540e2 Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 921
diff changeset
199 char *scopes[] = {"Global","Host","Link","Site","Compat"},
1ec29d7540e2 Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 921
diff changeset
200 *scope = "Unknown";
921
6a37f642b572 Yet more ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 919
diff changeset
201
1127
e0a8cbb1a5e3 The return of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1104
diff changeset
202 for (i=0; i < sizeof(scopes)/sizeof(*scopes); i++)
e0a8cbb1a5e3 The return of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1104
diff changeset
203 if (iscope == (!!i)<<(i+3)) scope = scopes[i];
e0a8cbb1a5e3 The return of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1104
diff changeset
204 xprintf("%10cinet6 addr: %s/%d Scope: %s\n",
e0a8cbb1a5e3 The return of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1104
diff changeset
205 ' ', toybuf, plen, scope);
921
6a37f642b572 Yet more ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 919
diff changeset
206 }
6a37f642b572 Yet more ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 919
diff changeset
207 }
6a37f642b572 Yet more ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 919
diff changeset
208 }
6a37f642b572 Yet more ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 919
diff changeset
209 }
6a37f642b572 Yet more ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 919
diff changeset
210 fclose(fp);
6a37f642b572 Yet more ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 919
diff changeset
211 }
6a37f642b572 Yet more ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 919
diff changeset
212
879
bc7aa2d123b9 And another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 878
diff changeset
213 xprintf("%10c", ' ');
866
0fa773e2a4fe Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 864
diff changeset
214
958
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
215 if (flags) {
866
0fa773e2a4fe Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 864
diff changeset
216 unsigned short mask = 1;
0fa773e2a4fe Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 864
diff changeset
217 char **s, *str[] = {
0fa773e2a4fe Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 864
diff changeset
218 "UP", "BROADCAST", "DEBUG", "LOOPBACK", "POINTOPOINT", "NOTRAILERS",
0fa773e2a4fe Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 864
diff changeset
219 "RUNNING", "NOARP", "PROMISC", "ALLMULTI", "MASTER", "SLAVE", "MULTICAST",
0fa773e2a4fe Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 864
diff changeset
220 "PORTSEL", "AUTOMEDIA", "DYNAMIC", NULL
0fa773e2a4fe Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 864
diff changeset
221 };
0fa773e2a4fe Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 864
diff changeset
222
1127
e0a8cbb1a5e3 The return of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1104
diff changeset
223 for (s = str; *s; s++) {
e0a8cbb1a5e3 The return of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1104
diff changeset
224 if (flags & mask) xprintf("%s ", *s);
866
0fa773e2a4fe Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 864
diff changeset
225 mask = mask << 1;
0fa773e2a4fe Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 864
diff changeset
226 }
0fa773e2a4fe Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 864
diff changeset
227 } else xprintf("[NO FLAGS] ");
0fa773e2a4fe Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 864
diff changeset
228
958
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
229 if (ioctl(TT.sockfd, SIOCGIFMTU, &ifre) < 0) ifre.ifr_mtu = 0;
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
230 xprintf(" MTU:%d", ifre.ifr_mtu);
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
231 if (ioctl(TT.sockfd, SIOCGIFMETRIC, &ifre) < 0) ifre.ifr_metric = 0;
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
232 if (!ifre.ifr_metric) ifre.ifr_metric = 1;
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
233 xprintf(" Metric:%d", ifre.ifr_metric);
866
0fa773e2a4fe Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 864
diff changeset
234
958
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
235 // non-virtual interface
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
236
1128
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
237 if (val) {
870
aa5bd0a358dd More ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 869
diff changeset
238 char *label[] = {"RX bytes", "RX packets", "errors", "dropped", "overruns",
aa5bd0a358dd More ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 869
diff changeset
239 "frame", 0, 0, "TX bytes", "TX packets", "errors", "dropped", "overruns",
aa5bd0a358dd More ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 869
diff changeset
240 "collisions", "carrier", 0, "txqueuelen"};
aa5bd0a358dd More ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 869
diff changeset
241 signed char order[] = {-1, 1, 2, 3, 4, 5, -1, 9, 10, 11, 12, 14, -1,
aa5bd0a358dd More ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 869
diff changeset
242 13, 16, -1, 0, 8};
aa5bd0a358dd More ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 869
diff changeset
243 int i;
aa5bd0a358dd More ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 869
diff changeset
244
958
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
245 // Query txqueuelen
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
246 if (ioctl(TT.sockfd, SIOCGIFTXQLEN, &ifre) >= 0) val[16] = ifre.ifr_qlen;
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
247 else val[16] = -1;
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
248
870
aa5bd0a358dd More ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 869
diff changeset
249 for (i = 0; i < sizeof(order); i++) {
aa5bd0a358dd More ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 869
diff changeset
250 int j = order[i];
841
cb0c3a773437 Kyungwan Han submitted ifconfig.
Rob Landley <rob@landley.net>
parents:
diff changeset
251
870
aa5bd0a358dd More ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 869
diff changeset
252 if (j < 0) xprintf("\n%10c", ' ');
958
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
253 else xprintf("%s:%llu ", label[j], val[j]);
870
aa5bd0a358dd More ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 869
diff changeset
254 }
842
af5aab6e6678 An ifconfig bugfix from the original submitter.
Rob Landley <rob@landley.net>
parents: 841
diff changeset
255 }
870
aa5bd0a358dd More ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 869
diff changeset
256 xputc('\n');
aa5bd0a358dd More ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 869
diff changeset
257
958
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
258 if(!ioctl(TT.sockfd, SIOCGIFMAP, &ifre) && (ifre.ifr_map.irq ||
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
259 ifre.ifr_map.mem_start || ifre.ifr_map.dma || ifre.ifr_map.base_addr))
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
260 {
866
0fa773e2a4fe Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 864
diff changeset
261 xprintf("%10c", ' ');
958
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
262 if(ifre.ifr_map.irq) xprintf("Interrupt:%d ", ifre.ifr_map.irq);
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
263 if(ifre.ifr_map.base_addr >= 0x100) // IO_MAP_INDEX
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
264 xprintf("Base address:0x%lx ", ifre.ifr_map.base_addr);
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
265 if(ifre.ifr_map.mem_start)
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
266 xprintf("Memory:%lx-%lx ", ifre.ifr_map.mem_start, ifre.ifr_map.mem_end);
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
267 if(ifre.ifr_map.dma) xprintf("DMA chan:%x ", ifre.ifr_map.dma);
852
6be04ec7b7ac More ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 844
diff changeset
268 xputc('\n');
841
cb0c3a773437 Kyungwan Han submitted ifconfig.
Rob Landley <rob@landley.net>
parents:
diff changeset
269 }
852
6be04ec7b7ac More ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 844
diff changeset
270 xputc('\n');
841
cb0c3a773437 Kyungwan Han submitted ifconfig.
Rob Landley <rob@landley.net>
parents:
diff changeset
271 }
cb0c3a773437 Kyungwan Han submitted ifconfig.
Rob Landley <rob@landley.net>
parents:
diff changeset
272
870
aa5bd0a358dd More ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 869
diff changeset
273 static void show_iface(char *iface_name)
841
cb0c3a773437 Kyungwan Han submitted ifconfig.
Rob Landley <rob@landley.net>
parents:
diff changeset
274 {
957
1ec29d7540e2 Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 921
diff changeset
275 char *name;
1ec29d7540e2 Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 921
diff changeset
276 struct string_list *ifaces = 0, *sl;
870
aa5bd0a358dd More ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 869
diff changeset
277 int i, j;
aa5bd0a358dd More ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 869
diff changeset
278 FILE *fp;
aa5bd0a358dd More ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 869
diff changeset
279
aa5bd0a358dd More ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 869
diff changeset
280 fp = xfopen("/proc/net/dev", "r");
aa5bd0a358dd More ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 869
diff changeset
281
aa5bd0a358dd More ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 869
diff changeset
282 for (i=0; fgets(toybuf, sizeof(toybuf), fp); i++) {
957
1ec29d7540e2 Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 921
diff changeset
283 char *buf = toybuf;
958
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
284 unsigned long long val[17];
870
aa5bd0a358dd More ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 869
diff changeset
285
aa5bd0a358dd More ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 869
diff changeset
286 if (i<2) continue;
866
0fa773e2a4fe Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 864
diff changeset
287
957
1ec29d7540e2 Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 921
diff changeset
288 while (isspace(*buf)) buf++;
870
aa5bd0a358dd More ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 869
diff changeset
289 name = strsep(&buf, ":");
aa5bd0a358dd More ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 869
diff changeset
290 if(!buf) error_exit("bad name %s", name);
aa5bd0a358dd More ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 869
diff changeset
291
aa5bd0a358dd More ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 869
diff changeset
292 errno = 0;
958
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
293 for (j=0; j<16 && !errno; j++) val[j] = strtoll(buf, &buf, 0);
870
aa5bd0a358dd More ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 869
diff changeset
294 if (errno) perror_exit("bad %s at %s", name, buf);
aa5bd0a358dd More ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 869
diff changeset
295
957
1ec29d7540e2 Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 921
diff changeset
296 if (iface_name) {
1ec29d7540e2 Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 921
diff changeset
297 if (!strcmp(iface_name, name)) {
1127
e0a8cbb1a5e3 The return of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1104
diff changeset
298 display_ifconfig(iface_name, 1, val);
957
1ec29d7540e2 Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 921
diff changeset
299
1ec29d7540e2 Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 921
diff changeset
300 return;
1ec29d7540e2 Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 921
diff changeset
301 }
1ec29d7540e2 Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 921
diff changeset
302 } else {
1ec29d7540e2 Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 921
diff changeset
303 sl = xmalloc(sizeof(*sl)+strlen(name)+1);
1ec29d7540e2 Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 921
diff changeset
304 strcpy(sl->str, name);
1ec29d7540e2 Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 921
diff changeset
305 sl->next = ifaces;
1ec29d7540e2 Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 921
diff changeset
306 ifaces = sl;
1ec29d7540e2 Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 921
diff changeset
307
1128
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
308 display_ifconfig(sl->str, toys.optflags & FLAG_a, val);
957
1ec29d7540e2 Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 921
diff changeset
309 }
870
aa5bd0a358dd More ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 869
diff changeset
310 }
aa5bd0a358dd More ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 869
diff changeset
311 fclose(fp);
842
af5aab6e6678 An ifconfig bugfix from the original submitter.
Rob Landley <rob@landley.net>
parents: 841
diff changeset
312
958
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
313 if (iface_name) display_ifconfig(iface_name, 1, 0);
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
314 else {
957
1ec29d7540e2 Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 921
diff changeset
315 struct ifconf ifcon;
1ec29d7540e2 Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 921
diff changeset
316 struct ifreq *ifre;
1ec29d7540e2 Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 921
diff changeset
317 int num;
1ec29d7540e2 Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 921
diff changeset
318
1ec29d7540e2 Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 921
diff changeset
319 // Loop until buffer's big enough
1ec29d7540e2 Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 921
diff changeset
320 ifcon.ifc_buf = NULL;
1ec29d7540e2 Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 921
diff changeset
321 for (num = 30;;num += 10) {
1ec29d7540e2 Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 921
diff changeset
322 ifcon.ifc_len = sizeof(struct ifreq)*num;
1ec29d7540e2 Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 921
diff changeset
323 ifcon.ifc_buf = xrealloc(ifcon.ifc_buf, ifcon.ifc_len);
1ec29d7540e2 Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 921
diff changeset
324 xioctl(TT.sockfd, SIOCGIFCONF, &ifcon);
1ec29d7540e2 Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 921
diff changeset
325 if (ifcon.ifc_len != sizeof(struct ifreq)*num) break;
1ec29d7540e2 Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 921
diff changeset
326 }
1ec29d7540e2 Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 921
diff changeset
327
1ec29d7540e2 Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 921
diff changeset
328 ifre = ifcon.ifc_req;
1ec29d7540e2 Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 921
diff changeset
329 for(num = 0; num < ifcon.ifc_len && ifre; num += sizeof(struct ifreq), ifre++)
1ec29d7540e2 Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 921
diff changeset
330 {
1ec29d7540e2 Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 921
diff changeset
331 // Skip duplicates
1ec29d7540e2 Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 921
diff changeset
332 for(sl = ifaces; sl; sl = sl->next)
1ec29d7540e2 Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 921
diff changeset
333 if(!strcmp(sl->str, ifre->ifr_name)) break;
1ec29d7540e2 Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 921
diff changeset
334
958
019f54d50c8b More ifconfig cleanup: Remove if_list, unify get_device_info and display_ifconfig(), inline another magic constant #define that's only used once.
Rob Landley <rob@landley.net>
parents: 957
diff changeset
335 if(!sl) display_ifconfig(ifre->ifr_name, toys.optflags & FLAG_a, 0);
841
cb0c3a773437 Kyungwan Han submitted ifconfig.
Rob Landley <rob@landley.net>
parents:
diff changeset
336 }
957
1ec29d7540e2 Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 921
diff changeset
337
1ec29d7540e2 Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 921
diff changeset
338 free(ifcon.ifc_buf);
841
cb0c3a773437 Kyungwan Han submitted ifconfig.
Rob Landley <rob@landley.net>
parents:
diff changeset
339 }
878
d4263ebf6f9b Yet more drive-by cleanup of ifconfig.
Rob Landley <rob@landley.net>
parents: 870
diff changeset
340
957
1ec29d7540e2 Another round of ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 921
diff changeset
341 llist_traverse(ifaces, free);
841
cb0c3a773437 Kyungwan Han submitted ifconfig.
Rob Landley <rob@landley.net>
parents:
diff changeset
342 }
869
571e95bdf6af ifconfig cleanup (Reorder functions to eliminate need for prototypes, put main at end).
Rob Landley <rob@landley.net>
parents: 866
diff changeset
343
919
a186f9a1406d More ifconfig cleanup, described on list.
Rob Landley <rob@landley.net>
parents: 907
diff changeset
344 // Encode offset and size of field into an int, and make result negative
a186f9a1406d More ifconfig cleanup, described on list.
Rob Landley <rob@landley.net>
parents: 907
diff changeset
345 #define IFREQ_OFFSZ(x) -(int)((offsetof(struct ifreq, x)<<16) + sizeof(ifre.x))
a186f9a1406d More ifconfig cleanup, described on list.
Rob Landley <rob@landley.net>
parents: 907
diff changeset
346
869
571e95bdf6af ifconfig cleanup (Reorder functions to eliminate need for prototypes, put main at end).
Rob Landley <rob@landley.net>
parents: 866
diff changeset
347 void ifconfig_main(void)
571e95bdf6af ifconfig cleanup (Reorder functions to eliminate need for prototypes, put main at end).
Rob Landley <rob@landley.net>
parents: 866
diff changeset
348 {
571e95bdf6af ifconfig cleanup (Reorder functions to eliminate need for prototypes, put main at end).
Rob Landley <rob@landley.net>
parents: 866
diff changeset
349 char **argv = toys.optargs;
898
f6db08574875 Ifconfig cleanup to option parsing.
Rob Landley <rob@landley.net>
parents: 883
diff changeset
350 struct ifreq ifre;
921
6a37f642b572 Yet more ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 919
diff changeset
351 int i;
869
571e95bdf6af ifconfig cleanup (Reorder functions to eliminate need for prototypes, put main at end).
Rob Landley <rob@landley.net>
parents: 866
diff changeset
352
921
6a37f642b572 Yet more ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 919
diff changeset
353 TT.sockfd = xsocket(AF_INET, SOCK_DGRAM, 0);
878
d4263ebf6f9b Yet more drive-by cleanup of ifconfig.
Rob Landley <rob@landley.net>
parents: 870
diff changeset
354 if(toys.optc < 2) {
870
aa5bd0a358dd More ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 869
diff changeset
355 show_iface(*argv);
869
571e95bdf6af ifconfig cleanup (Reorder functions to eliminate need for prototypes, put main at end).
Rob Landley <rob@landley.net>
parents: 866
diff changeset
356 return;
571e95bdf6af ifconfig cleanup (Reorder functions to eliminate need for prototypes, put main at end).
Rob Landley <rob@landley.net>
parents: 866
diff changeset
357 }
571e95bdf6af ifconfig cleanup (Reorder functions to eliminate need for prototypes, put main at end).
Rob Landley <rob@landley.net>
parents: 866
diff changeset
358
919
a186f9a1406d More ifconfig cleanup, described on list.
Rob Landley <rob@landley.net>
parents: 907
diff changeset
359 // Open interface
898
f6db08574875 Ifconfig cleanup to option parsing.
Rob Landley <rob@landley.net>
parents: 883
diff changeset
360 memset(&ifre, 0, sizeof(struct ifreq));
f6db08574875 Ifconfig cleanup to option parsing.
Rob Landley <rob@landley.net>
parents: 883
diff changeset
361 xstrncpy(ifre.ifr_name, *argv, IFNAMSIZ);
869
571e95bdf6af ifconfig cleanup (Reorder functions to eliminate need for prototypes, put main at end).
Rob Landley <rob@landley.net>
parents: 866
diff changeset
362
919
a186f9a1406d More ifconfig cleanup, described on list.
Rob Landley <rob@landley.net>
parents: 907
diff changeset
363 // Perform operations on interface
898
f6db08574875 Ifconfig cleanup to option parsing.
Rob Landley <rob@landley.net>
parents: 883
diff changeset
364 while(*++argv) {
1128
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
365 // Table of known operations
905
e875b03e1fcc Yet more ifconfig cleanup. (As described on the mailing list [CLEANUP] thread.)
Rob Landley <rob@landley.net>
parents: 898
diff changeset
366 struct argh {
898
f6db08574875 Ifconfig cleanup to option parsing.
Rob Landley <rob@landley.net>
parents: 883
diff changeset
367 char *name;
906
ce0a9368b82f Next round of ifconfig cleanup, to be described on mailing list.
Rob Landley <rob@landley.net>
parents: 905
diff changeset
368 int on, off; // set, clear
898
f6db08574875 Ifconfig cleanup to option parsing.
Rob Landley <rob@landley.net>
parents: 883
diff changeset
369 } try[] = {
1128
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
370 {0, IFF_UP|IFF_RUNNING, SIOCSIFADDR},
906
ce0a9368b82f Next round of ifconfig cleanup, to be described on mailing list.
Rob Landley <rob@landley.net>
parents: 905
diff changeset
371 {"up", IFF_UP|IFF_RUNNING, 0},
ce0a9368b82f Next round of ifconfig cleanup, to be described on mailing list.
Rob Landley <rob@landley.net>
parents: 905
diff changeset
372 {"down", 0, IFF_UP},
ce0a9368b82f Next round of ifconfig cleanup, to be described on mailing list.
Rob Landley <rob@landley.net>
parents: 905
diff changeset
373 {"arp", 0, IFF_NOARP},
ce0a9368b82f Next round of ifconfig cleanup, to be described on mailing list.
Rob Landley <rob@landley.net>
parents: 905
diff changeset
374 {"promisc", IFF_PROMISC, 0},
ce0a9368b82f Next round of ifconfig cleanup, to be described on mailing list.
Rob Landley <rob@landley.net>
parents: 905
diff changeset
375 {"allmulti", IFF_ALLMULTI, 0},
ce0a9368b82f Next round of ifconfig cleanup, to be described on mailing list.
Rob Landley <rob@landley.net>
parents: 905
diff changeset
376 {"multicast", IFF_MULTICAST, 0},
ce0a9368b82f Next round of ifconfig cleanup, to be described on mailing list.
Rob Landley <rob@landley.net>
parents: 905
diff changeset
377 {"pointopoint", IFF_POINTOPOINT, SIOCSIFDSTADDR},
ce0a9368b82f Next round of ifconfig cleanup, to be described on mailing list.
Rob Landley <rob@landley.net>
parents: 905
diff changeset
378 {"broadcast", IFF_BROADCAST, SIOCSIFBRDADDR},
ce0a9368b82f Next round of ifconfig cleanup, to be described on mailing list.
Rob Landley <rob@landley.net>
parents: 905
diff changeset
379 {"netmask", 0, SIOCSIFNETMASK},
919
a186f9a1406d More ifconfig cleanup, described on list.
Rob Landley <rob@landley.net>
parents: 907
diff changeset
380 {"dstaddr", 0, SIOCSIFDSTADDR},
a186f9a1406d More ifconfig cleanup, described on list.
Rob Landley <rob@landley.net>
parents: 907
diff changeset
381 {"mtu", IFREQ_OFFSZ(ifr_mtu), SIOCSIFMTU},
921
6a37f642b572 Yet more ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 919
diff changeset
382 {"keepalive", IFREQ_OFFSZ(ifr_data), SIOCDEVPRIVATE}, // SIOCSKEEPALIVE
6a37f642b572 Yet more ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 919
diff changeset
383 {"outfill", IFREQ_OFFSZ(ifr_data), SIOCDEVPRIVATE+2}, // SIOCSOUTFILL
919
a186f9a1406d More ifconfig cleanup, described on list.
Rob Landley <rob@landley.net>
parents: 907
diff changeset
384 {"metric", IFREQ_OFFSZ(ifr_metric), SIOCSIFMETRIC},
a186f9a1406d More ifconfig cleanup, described on list.
Rob Landley <rob@landley.net>
parents: 907
diff changeset
385 {"txqueuelen", IFREQ_OFFSZ(ifr_qlen), SIOCSIFTXQLEN},
a186f9a1406d More ifconfig cleanup, described on list.
Rob Landley <rob@landley.net>
parents: 907
diff changeset
386 {"mem_start", IFREQ_OFFSZ(ifr_map.mem_start), SIOCSIFMAP},
a186f9a1406d More ifconfig cleanup, described on list.
Rob Landley <rob@landley.net>
parents: 907
diff changeset
387 {"io_addr", IFREQ_OFFSZ(ifr_map.base_addr), SIOCSIFMAP},
a186f9a1406d More ifconfig cleanup, described on list.
Rob Landley <rob@landley.net>
parents: 907
diff changeset
388 {"irq", IFREQ_OFFSZ(ifr_map.irq), SIOCSIFMAP},
a186f9a1406d More ifconfig cleanup, described on list.
Rob Landley <rob@landley.net>
parents: 907
diff changeset
389 {"inet", 0, 0},
a186f9a1406d More ifconfig cleanup, described on list.
Rob Landley <rob@landley.net>
parents: 907
diff changeset
390 {"inet6", 0, 0}
898
f6db08574875 Ifconfig cleanup to option parsing.
Rob Landley <rob@landley.net>
parents: 883
diff changeset
391 };
f6db08574875 Ifconfig cleanup to option parsing.
Rob Landley <rob@landley.net>
parents: 883
diff changeset
392 char *s = *argv;
f6db08574875 Ifconfig cleanup to option parsing.
Rob Landley <rob@landley.net>
parents: 883
diff changeset
393 int rev = (*s == '-');
869
571e95bdf6af ifconfig cleanup (Reorder functions to eliminate need for prototypes, put main at end).
Rob Landley <rob@landley.net>
parents: 866
diff changeset
394
898
f6db08574875 Ifconfig cleanup to option parsing.
Rob Landley <rob@landley.net>
parents: 883
diff changeset
395 s += rev;
f6db08574875 Ifconfig cleanup to option parsing.
Rob Landley <rob@landley.net>
parents: 883
diff changeset
396
1128
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
397 // "set hardware address" is oddball enough to special case
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
398 if (!strcmp(*argv, "hw")) {
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
399 char *hw_addr, *ptr, *p;
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
400 struct sockaddr *sock = &ifre.ifr_hwaddr;
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
401 int count = 6;
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
402
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
403 ptr = p = (char *)sock->sa_data;
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
404 memset(sock, 0, sizeof(struct sockaddr));
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
405 if (!argv[1]) {
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
406 if (!strcmp("ether", *++argv)) sock->sa_family = ARPHRD_ETHER;
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
407 else if (!strcmp("infiniband", *argv)) {
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
408 sock->sa_family = ARPHRD_INFINIBAND;
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
409 count = 20;
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
410 p = ptr = toybuf;
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
411 }
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
412 }
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
413 if (!sock->sa_family || !argv[1]) {
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
414 toys.exithelp++;
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
415 error_exit("bad hw '%s'", *argv);
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
416 }
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
417 hw_addr = *++argv;
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
418
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
419 // Parse and verify address.
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
420 while (*hw_addr && (p-ptr) < count) {
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
421 int val, len = 0;
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
422
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
423 if (*hw_addr == ':') hw_addr++;
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
424 sscanf(hw_addr, "%2x%n", &val, &len);
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
425 if (len != 2) break;
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
426 hw_addr += len;
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
427 *p++ = val;
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
428 }
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
429
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
430 if ((p-ptr) != count || *hw_addr)
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
431 error_exit("bad hw-addr '%s'", hw_addr ? hw_addr : "");
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
432
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
433 // the linux kernel's "struct sockaddr" (include/linux/socket.h in the
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
434 // kernel source) only has 14 bytes of sa_data, and an infiniband address
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
435 // is 20. So if we go through the ioctl, the kernel will truncate
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
436 // infiniband addresses, meaning we have to go through sysfs instead.
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
437 if (sock->sa_family == ARPHRD_INFINIBAND && !strchr(ifre.ifr_name, '/')) {
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
438 int fd;
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
439
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
440 sprintf(toybuf, "/sys/class/net/%s/address", ifre.ifr_name);
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
441 fd = xopen(toybuf, O_RDWR);
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
442 xwrite(fd, *argv, strlen(*argv));
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
443 close(fd);
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
444 } else xioctl(TT.sockfd, SIOCSIFHWADDR, &ifre);
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
445 continue;
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
446
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
447 // Add/remove ipv6 address to interface
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
448
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
449 } else if (!strcmp(*argv, "add") || !strcmp(*argv, "del")) {
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
450 struct ifreq_inet6 {
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
451 struct in6_addr addr;
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
452 unsigned prefix;
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
453 int index;
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
454 } ifre6;
1193
f6f56a002d9a Add /prefix netmask support to ifconfig, ala "ifconfig eth0 192.168.1.42/28"
Rob Landley <rob@landley.net>
parents: 1155
diff changeset
455 int plen, fd6 = xsocket(AF_INET6, SOCK_DGRAM, 0);
1128
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
456
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
457 if (!argv[1]) {
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
458 toys.exithelp++;
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
459 error_exit(*argv);
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
460 }
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
461
1193
f6f56a002d9a Add /prefix netmask support to ifconfig, ala "ifconfig eth0 192.168.1.42/28"
Rob Landley <rob@landley.net>
parents: 1155
diff changeset
462 plen = get_addrinfo(argv[1], AF_INET6, &ifre6.addr);
f6f56a002d9a Add /prefix netmask support to ifconfig, ala "ifconfig eth0 192.168.1.42/28"
Rob Landley <rob@landley.net>
parents: 1155
diff changeset
463 if (plen < 0) plen = 128;
1128
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
464 xioctl(fd6, SIOCGIFINDEX, &ifre);
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
465 ifre6.index = ifre.ifr_ifindex;
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
466 ifre6.prefix = plen;
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
467 xioctl(fd6, **(argv++)=='a' ? SIOCSIFADDR : SIOCDIFADDR, &ifre6);
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
468
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
469 close(fd6);
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
470 continue;
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
471 // Iterate through table to find/perform operation
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
472 } else for (i = 0; i < sizeof(try)/sizeof(*try); i++) {
905
e875b03e1fcc Yet more ifconfig cleanup. (As described on the mailing list [CLEANUP] thread.)
Rob Landley <rob@landley.net>
parents: 898
diff changeset
473 struct argh *t = try+i;
906
ce0a9368b82f Next round of ifconfig cleanup, to be described on mailing list.
Rob Landley <rob@landley.net>
parents: 905
diff changeset
474 int on = t->on, off = t->off;
905
e875b03e1fcc Yet more ifconfig cleanup. (As described on the mailing list [CLEANUP] thread.)
Rob Landley <rob@landley.net>
parents: 898
diff changeset
475
1128
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
476 if (!t->name) {
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
477 if (isdigit(**argv) || !strcmp(*argv, "default")) argv--;
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
478 else continue;
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
479 } else if (strcmp(t->name, s)) continue;
898
f6db08574875 Ifconfig cleanup to option parsing.
Rob Landley <rob@landley.net>
parents: 883
diff changeset
480
906
ce0a9368b82f Next round of ifconfig cleanup, to be described on mailing list.
Rob Landley <rob@landley.net>
parents: 905
diff changeset
481 // Is this an SIOCSI entry?
919
a186f9a1406d More ifconfig cleanup, described on list.
Rob Landley <rob@landley.net>
parents: 907
diff changeset
482 if ((off|0xff) == 0x89ff) {
906
ce0a9368b82f Next round of ifconfig cleanup, to be described on mailing list.
Rob Landley <rob@landley.net>
parents: 905
diff changeset
483 if (!rev) {
1155
63f8c7fa94d7 Ashwini sharma pointed out that show_help() doesn't exit so "ifconfig eth0 netmask" would segfault. Replace it with an error_exit(), see list for aesthetic issue this raises re: help text.
Rob Landley <rob@landley.net>
parents: 1133
diff changeset
484 if (!*++argv) error_exit("%s needs argument", t->name);
919
a186f9a1406d More ifconfig cleanup, described on list.
Rob Landley <rob@landley.net>
parents: 907
diff changeset
485
a186f9a1406d More ifconfig cleanup, described on list.
Rob Landley <rob@landley.net>
parents: 907
diff changeset
486 // Assign value to ifre field and call ioctl? (via IFREQ_OFFSZ.)
a186f9a1406d More ifconfig cleanup, described on list.
Rob Landley <rob@landley.net>
parents: 907
diff changeset
487 if (on < 0) {
a186f9a1406d More ifconfig cleanup, described on list.
Rob Landley <rob@landley.net>
parents: 907
diff changeset
488 long l = strtoul(*argv, 0, 0);
a186f9a1406d More ifconfig cleanup, described on list.
Rob Landley <rob@landley.net>
parents: 907
diff changeset
489
921
6a37f642b572 Yet more ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 919
diff changeset
490 if (off == SIOCSIFMAP) xioctl(TT.sockfd, SIOCGIFMAP, &ifre);
919
a186f9a1406d More ifconfig cleanup, described on list.
Rob Landley <rob@landley.net>
parents: 907
diff changeset
491 on = -on;
a186f9a1406d More ifconfig cleanup, described on list.
Rob Landley <rob@landley.net>
parents: 907
diff changeset
492 poke((on>>16) + (char *)&ifre, l, on&15);
921
6a37f642b572 Yet more ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 919
diff changeset
493 xioctl(TT.sockfd, off, &ifre);
919
a186f9a1406d More ifconfig cleanup, described on list.
Rob Landley <rob@landley.net>
parents: 907
diff changeset
494 break;
1128
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
495 } else if (t->name || !strchr(ifre.ifr_name, ':')) {
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
496 struct sockaddr_in *si = (struct sockaddr_in *)&ifre.ifr_addr;
1193
f6f56a002d9a Add /prefix netmask support to ifconfig, ala "ifconfig eth0 192.168.1.42/28"
Rob Landley <rob@landley.net>
parents: 1155
diff changeset
497 int mask = -1;
1128
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
498
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
499 si->sin_family = AF_INET;
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
500
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
501 if (!strcmp(*argv, "default")) si->sin_addr.s_addr = INADDR_ANY;
1193
f6f56a002d9a Add /prefix netmask support to ifconfig, ala "ifconfig eth0 192.168.1.42/28"
Rob Landley <rob@landley.net>
parents: 1155
diff changeset
502 else mask = get_addrinfo(*argv, AF_INET, &si->sin_addr);
1128
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
503 xioctl(TT.sockfd, off, &ifre);
1193
f6f56a002d9a Add /prefix netmask support to ifconfig, ala "ifconfig eth0 192.168.1.42/28"
Rob Landley <rob@landley.net>
parents: 1155
diff changeset
504
f6f56a002d9a Add /prefix netmask support to ifconfig, ala "ifconfig eth0 192.168.1.42/28"
Rob Landley <rob@landley.net>
parents: 1155
diff changeset
505 // Handle /netmask
f6f56a002d9a Add /prefix netmask support to ifconfig, ala "ifconfig eth0 192.168.1.42/28"
Rob Landley <rob@landley.net>
parents: 1155
diff changeset
506 if (mask >= 0) {
f6f56a002d9a Add /prefix netmask support to ifconfig, ala "ifconfig eth0 192.168.1.42/28"
Rob Landley <rob@landley.net>
parents: 1155
diff changeset
507 // sin_addr probably isn't unaligned, but just in case...
f6f56a002d9a Add /prefix netmask support to ifconfig, ala "ifconfig eth0 192.168.1.42/28"
Rob Landley <rob@landley.net>
parents: 1155
diff changeset
508 mask = htonl((~0)<<(32-mask));
f6f56a002d9a Add /prefix netmask support to ifconfig, ala "ifconfig eth0 192.168.1.42/28"
Rob Landley <rob@landley.net>
parents: 1155
diff changeset
509 memcpy(&si->sin_addr, &mask, 4);
f6f56a002d9a Add /prefix netmask support to ifconfig, ala "ifconfig eth0 192.168.1.42/28"
Rob Landley <rob@landley.net>
parents: 1155
diff changeset
510 xioctl(TT.sockfd, SIOCSIFNETMASK, &ifre);
f6f56a002d9a Add /prefix netmask support to ifconfig, ala "ifconfig eth0 192.168.1.42/28"
Rob Landley <rob@landley.net>
parents: 1155
diff changeset
511 }
1128
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
512 }
906
ce0a9368b82f Next round of ifconfig cleanup, to be described on mailing list.
Rob Landley <rob@landley.net>
parents: 905
diff changeset
513 }
ce0a9368b82f Next round of ifconfig cleanup, to be described on mailing list.
Rob Landley <rob@landley.net>
parents: 905
diff changeset
514 off = 0;
905
e875b03e1fcc Yet more ifconfig cleanup. (As described on the mailing list [CLEANUP] thread.)
Rob Landley <rob@landley.net>
parents: 898
diff changeset
515 }
919
a186f9a1406d More ifconfig cleanup, described on list.
Rob Landley <rob@landley.net>
parents: 907
diff changeset
516
a186f9a1406d More ifconfig cleanup, described on list.
Rob Landley <rob@landley.net>
parents: 907
diff changeset
517 // Set flags
906
ce0a9368b82f Next round of ifconfig cleanup, to be described on mailing list.
Rob Landley <rob@landley.net>
parents: 905
diff changeset
518 if (on || off) {
921
6a37f642b572 Yet more ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 919
diff changeset
519 xioctl(TT.sockfd, SIOCGIFFLAGS, &ifre);
906
ce0a9368b82f Next round of ifconfig cleanup, to be described on mailing list.
Rob Landley <rob@landley.net>
parents: 905
diff changeset
520 ifre.ifr_flags &= ~(rev ? on : off);
ce0a9368b82f Next round of ifconfig cleanup, to be described on mailing list.
Rob Landley <rob@landley.net>
parents: 905
diff changeset
521 ifre.ifr_flags |= (rev ? off : on);
921
6a37f642b572 Yet more ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 919
diff changeset
522 xioctl(TT.sockfd, SIOCSIFFLAGS, &ifre);
905
e875b03e1fcc Yet more ifconfig cleanup. (As described on the mailing list [CLEANUP] thread.)
Rob Landley <rob@landley.net>
parents: 898
diff changeset
523 }
898
f6db08574875 Ifconfig cleanup to option parsing.
Rob Landley <rob@landley.net>
parents: 883
diff changeset
524
f6db08574875 Ifconfig cleanup to option parsing.
Rob Landley <rob@landley.net>
parents: 883
diff changeset
525 break;
f6db08574875 Ifconfig cleanup to option parsing.
Rob Landley <rob@landley.net>
parents: 883
diff changeset
526 }
1128
9eaec92e3713 Ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 1127
diff changeset
527 if (i == sizeof(try)/sizeof(*try)) {
919
a186f9a1406d More ifconfig cleanup, described on list.
Rob Landley <rob@landley.net>
parents: 907
diff changeset
528 toys.exithelp++;
a186f9a1406d More ifconfig cleanup, described on list.
Rob Landley <rob@landley.net>
parents: 907
diff changeset
529 error_exit("bad argument '%s'", *argv);
869
571e95bdf6af ifconfig cleanup (Reorder functions to eliminate need for prototypes, put main at end).
Rob Landley <rob@landley.net>
parents: 866
diff changeset
530 }
919
a186f9a1406d More ifconfig cleanup, described on list.
Rob Landley <rob@landley.net>
parents: 907
diff changeset
531 }
921
6a37f642b572 Yet more ifconfig cleanup.
Rob Landley <rob@landley.net>
parents: 919
diff changeset
532 close(TT.sockfd);
869
571e95bdf6af ifconfig cleanup (Reorder functions to eliminate need for prototypes, put main at end).
Rob Landley <rob@landley.net>
parents: 866
diff changeset
533 }