ifconfig.c revision 1.186 1 1.186 martin /* $NetBSD: ifconfig.c,v 1.186 2008/04/28 20:23:08 martin Exp $ */
2 1.24 thorpej
3 1.41 thorpej /*-
4 1.64 thorpej * Copyright (c) 1997, 1998, 2000 The NetBSD Foundation, Inc.
5 1.24 thorpej * All rights reserved.
6 1.24 thorpej *
7 1.41 thorpej * This code is derived from software contributed to The NetBSD Foundation
8 1.41 thorpej * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
9 1.41 thorpej * NASA Ames Research Center.
10 1.41 thorpej *
11 1.24 thorpej * Redistribution and use in source and binary forms, with or without
12 1.24 thorpej * modification, are permitted provided that the following conditions
13 1.24 thorpej * are met:
14 1.24 thorpej * 1. Redistributions of source code must retain the above copyright
15 1.24 thorpej * notice, this list of conditions and the following disclaimer.
16 1.24 thorpej * 2. Redistributions in binary form must reproduce the above copyright
17 1.24 thorpej * notice, this list of conditions and the following disclaimer in the
18 1.24 thorpej * documentation and/or other materials provided with the distribution.
19 1.24 thorpej *
20 1.41 thorpej * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
21 1.41 thorpej * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
22 1.41 thorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23 1.41 thorpej * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
24 1.41 thorpej * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 1.41 thorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 1.41 thorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 1.41 thorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 1.41 thorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 1.41 thorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 1.41 thorpej * POSSIBILITY OF SUCH DAMAGE.
31 1.24 thorpej */
32 1.19 cgd
33 1.1 cgd /*
34 1.13 mycroft * Copyright (c) 1983, 1993
35 1.13 mycroft * The Regents of the University of California. All rights reserved.
36 1.1 cgd *
37 1.1 cgd * Redistribution and use in source and binary forms, with or without
38 1.1 cgd * modification, are permitted provided that the following conditions
39 1.1 cgd * are met:
40 1.1 cgd * 1. Redistributions of source code must retain the above copyright
41 1.1 cgd * notice, this list of conditions and the following disclaimer.
42 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
43 1.1 cgd * notice, this list of conditions and the following disclaimer in the
44 1.1 cgd * documentation and/or other materials provided with the distribution.
45 1.138 agc * 3. Neither the name of the University nor the names of its contributors
46 1.1 cgd * may be used to endorse or promote products derived from this software
47 1.1 cgd * without specific prior written permission.
48 1.1 cgd *
49 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
50 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
51 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
52 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
53 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
54 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
55 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
56 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
57 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
58 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
59 1.1 cgd * SUCH DAMAGE.
60 1.1 cgd */
61 1.1 cgd
62 1.39 lukem #include <sys/cdefs.h>
63 1.1 cgd #ifndef lint
64 1.39 lukem __COPYRIGHT("@(#) Copyright (c) 1983, 1993\n\
65 1.39 lukem The Regents of the University of California. All rights reserved.\n");
66 1.1 cgd #endif /* not lint */
67 1.1 cgd
68 1.1 cgd #ifndef lint
69 1.19 cgd #if 0
70 1.19 cgd static char sccsid[] = "@(#)ifconfig.c 8.2 (Berkeley) 2/16/94";
71 1.19 cgd #else
72 1.186 martin __RCSID("$NetBSD: ifconfig.c,v 1.186 2008/04/28 20:23:08 martin Exp $");
73 1.19 cgd #endif
74 1.1 cgd #endif /* not lint */
75 1.1 cgd
76 1.1 cgd #include <sys/param.h>
77 1.1 cgd #include <sys/socket.h>
78 1.1 cgd #include <sys/ioctl.h>
79 1.1 cgd
80 1.1 cgd #include <net/if.h>
81 1.30 thorpej #include <net/if_dl.h>
82 1.24 thorpej #include <net/if_media.h>
83 1.62 chopps #include <net/if_ether.h>
84 1.166 thorpej #include <netinet/in.h> /* XXX */
85 1.166 thorpej #include <netinet/in_var.h> /* XXX */
86 1.1 cgd
87 1.13 mycroft #include <netdb.h>
88 1.1 cgd
89 1.1 cgd #include <sys/protosw.h>
90 1.1 cgd
91 1.13 mycroft #include <ctype.h>
92 1.13 mycroft #include <err.h>
93 1.13 mycroft #include <errno.h>
94 1.185 dyoung #include <stdbool.h>
95 1.50 chopps #include <stddef.h>
96 1.1 cgd #include <stdio.h>
97 1.1 cgd #include <stdlib.h>
98 1.1 cgd #include <string.h>
99 1.13 mycroft #include <unistd.h>
100 1.78 itojun #include <ifaddrs.h>
101 1.130 christos #include <util.h>
102 1.1 cgd
103 1.156 thorpej #include "extern.h"
104 1.161 thorpej
105 1.161 thorpej #ifndef INET_ONLY
106 1.161 thorpej #include "af_atalk.h"
107 1.163 thorpej #include "af_iso.h"
108 1.161 thorpej #endif /* ! INET_ONLY */
109 1.166 thorpej #include "af_inet.h"
110 1.164 thorpej #ifdef INET6
111 1.164 thorpej #include "af_inet6.h"
112 1.164 thorpej #endif /* INET6 */
113 1.161 thorpej
114 1.153 yamt #include "agr.h"
115 1.171 liamjfoy #include "carp.h"
116 1.159 thorpej #include "ieee80211.h"
117 1.157 thorpej #include "tunnel.h"
118 1.155 thorpej #include "vlan.h"
119 1.153 yamt
120 1.79 enami struct ifreq ifr, ridreq;
121 1.35 thorpej struct ifaliasreq addreq __attribute__((aligned(4)));
122 1.32 christos
123 1.1 cgd char name[30];
124 1.130 christos u_short flags;
125 1.166 thorpej int setaddr, doalias;
126 1.178 dyoung u_long metric, mtu, preference;
127 1.16 cgd int clearaddr, s;
128 1.36 lukem int newaddr = -1;
129 1.112 david int conflicting = 0;
130 1.173 martin int check_up_state = -1;
131 1.24 thorpej int af;
132 1.134 perry int aflag, bflag, Cflag, dflag, lflag, mflag, sflag, uflag, vflag, zflag;
133 1.169 rpaulo int hflag;
134 1.178 dyoung int have_preference = 0;
135 1.53 itojun #ifdef INET6
136 1.53 itojun int Lflag;
137 1.53 itojun #endif
138 1.53 itojun int explicit_prefix = 0;
139 1.1 cgd
140 1.108 thorpej struct ifcapreq g_ifcr;
141 1.108 thorpej int g_ifcr_updated;
142 1.108 thorpej
143 1.145 dsl void notealias(const char *, int);
144 1.145 dsl void notrailers(const char *, int);
145 1.145 dsl void setifaddr(const char *, int);
146 1.145 dsl void setifdstaddr(const char *, int);
147 1.145 dsl void setifflags(const char *, int);
148 1.173 martin void check_ifflags_up(const char *);
149 1.145 dsl void setifcaps(const char *, int);
150 1.145 dsl void setifbroadaddr(const char *, int);
151 1.145 dsl void setifipdst(const char *, int);
152 1.145 dsl void setifmetric(const char *, int);
153 1.178 dyoung void setifpreference(const char *, int);
154 1.145 dsl void setifmtu(const char *, int);
155 1.145 dsl void setifnetmask(const char *, int);
156 1.145 dsl void setifprefixlen(const char *, int);
157 1.145 dsl void setmedia(const char *, int);
158 1.145 dsl void setmediamode(const char *, int);
159 1.145 dsl void setmediaopt(const char *, int);
160 1.145 dsl void unsetmediaopt(const char *, int);
161 1.145 dsl void setmediainst(const char *, int);
162 1.145 dsl void clone_create(const char *, int);
163 1.145 dsl void clone_destroy(const char *, int);
164 1.145 dsl int main(int, char *[]);
165 1.178 dyoung void do_setifpreference(void);
166 1.1 cgd
167 1.45 thorpej /*
168 1.45 thorpej * Media stuff. Whenever a media command is first performed, the
169 1.45 thorpej * currently select media is grabbed for this interface. If `media'
170 1.45 thorpej * is given, the current media word is modifed. `mediaopt' commands
171 1.45 thorpej * only modify the set and clear words. They then operate on the
172 1.45 thorpej * current media word later.
173 1.45 thorpej */
174 1.45 thorpej int media_current;
175 1.45 thorpej int mediaopt_set;
176 1.45 thorpej int mediaopt_clear;
177 1.45 thorpej
178 1.46 thorpej int actions; /* Actions performed */
179 1.45 thorpej
180 1.46 thorpej #define A_MEDIA 0x0001 /* media command */
181 1.46 thorpej #define A_MEDIAOPTSET 0x0002 /* mediaopt command */
182 1.46 thorpej #define A_MEDIAOPTCLR 0x0004 /* -mediaopt command */
183 1.46 thorpej #define A_MEDIAOPT (A_MEDIAOPTSET|A_MEDIAOPTCLR)
184 1.47 thorpej #define A_MEDIAINST 0x0008 /* instance or inst command */
185 1.139 dyoung #define A_MEDIAMODE 0x0010 /* mode command */
186 1.45 thorpej
187 1.1 cgd #define NEXTARG 0xffffff
188 1.80 thorpej #define NEXTARG2 0xfffffe
189 1.1 cgd
190 1.80 thorpej const struct cmd {
191 1.80 thorpej const char *c_name;
192 1.80 thorpej int c_parameter; /* NEXTARG means next argv */
193 1.46 thorpej int c_action; /* defered action */
194 1.145 dsl void (*c_func)(const char *, int);
195 1.1 cgd } cmds[] = {
196 1.45 thorpej { "up", IFF_UP, 0, setifflags } ,
197 1.45 thorpej { "down", -IFF_UP, 0, setifflags },
198 1.45 thorpej { "trailers", -1, 0, notrailers },
199 1.45 thorpej { "-trailers", 1, 0, notrailers },
200 1.45 thorpej { "arp", -IFF_NOARP, 0, setifflags },
201 1.45 thorpej { "-arp", IFF_NOARP, 0, setifflags },
202 1.45 thorpej { "debug", IFF_DEBUG, 0, setifflags },
203 1.45 thorpej { "-debug", -IFF_DEBUG, 0, setifflags },
204 1.45 thorpej { "alias", IFF_UP, 0, notealias },
205 1.45 thorpej { "-alias", -IFF_UP, 0, notealias },
206 1.45 thorpej { "delete", -IFF_UP, 0, notealias },
207 1.45 thorpej { "netmask", NEXTARG, 0, setifnetmask },
208 1.45 thorpej { "metric", NEXTARG, 0, setifmetric },
209 1.45 thorpej { "mtu", NEXTARG, 0, setifmtu },
210 1.131 thorpej { "bssid", NEXTARG, 0, setifbssid },
211 1.131 thorpej { "-bssid", -1, 0, setifbssid },
212 1.131 thorpej { "chan", NEXTARG, 0, setifchan },
213 1.133 onoe { "-chan", -1, 0, setifchan },
214 1.180 dyoung { "frag", NEXTARG, 0, setiffrag },
215 1.180 dyoung { "-frag", -1, 0, setiffrag },
216 1.141 perry { "ssid", NEXTARG, 0, setifnwid },
217 1.62 chopps { "nwid", NEXTARG, 0, setifnwid },
218 1.88 onoe { "nwkey", NEXTARG, 0, setifnwkey },
219 1.88 onoe { "-nwkey", -1, 0, setifnwkey },
220 1.92 thorpej { "powersave", 1, 0, setifpowersave },
221 1.92 thorpej { "-powersave", 0, 0, setifpowersave },
222 1.92 thorpej { "powersavesleep", NEXTARG, 0, setifpowersavesleep },
223 1.170 rpaulo { "hidessid", 1, 0, sethidessid },
224 1.170 rpaulo { "-hidessid", 0, 0, sethidessid },
225 1.170 rpaulo { "apbridge", 1, 0, setapbridge },
226 1.170 rpaulo { "-apbridge", 0, 0, setapbridge },
227 1.45 thorpej { "broadcast", NEXTARG, 0, setifbroadaddr },
228 1.45 thorpej { "ipdst", NEXTARG, 0, setifipdst },
229 1.144 dsl { "prefixlen", NEXTARG, 0, setifprefixlen},
230 1.178 dyoung { "preference", NEXTARG, 0, setifpreference},
231 1.181 degroote { "list", NEXTARG, 0, setiflist},
232 1.171 liamjfoy #ifndef INET_ONLY
233 1.171 liamjfoy /* CARP */
234 1.171 liamjfoy { "advbase", NEXTARG, 0, setcarp_advbase },
235 1.171 liamjfoy { "advskew", NEXTARG, 0, setcarp_advskew },
236 1.171 liamjfoy { "pass", NEXTARG, 0, setcarp_passwd },
237 1.171 liamjfoy { "vhid", NEXTARG, 0, setcarp_vhid },
238 1.171 liamjfoy { "state", NEXTARG, 0, setcarp_state },
239 1.171 liamjfoy { "carpdev", NEXTARG, 0, setcarpdev },
240 1.171 liamjfoy { "-carpdev", 1, 0, unsetcarpdev },
241 1.171 liamjfoy #endif
242 1.53 itojun #ifdef INET6
243 1.53 itojun { "anycast", IN6_IFF_ANYCAST, 0, setia6flags },
244 1.53 itojun { "-anycast", -IN6_IFF_ANYCAST, 0, setia6flags },
245 1.53 itojun { "tentative", IN6_IFF_TENTATIVE, 0, setia6flags },
246 1.53 itojun { "-tentative", -IN6_IFF_TENTATIVE, 0, setia6flags },
247 1.104 itojun { "deprecated", IN6_IFF_DEPRECATED, 0, setia6flags },
248 1.104 itojun { "-deprecated", -IN6_IFF_DEPRECATED, 0, setia6flags },
249 1.53 itojun { "pltime", NEXTARG, 0, setia6pltime },
250 1.53 itojun { "vltime", NEXTARG, 0, setia6vltime },
251 1.127 itojun { "eui64", 0, 0, setia6eui64 },
252 1.53 itojun #endif /*INET6*/
253 1.21 gwr #ifndef INET_ONLY
254 1.45 thorpej { "range", NEXTARG, 0, setatrange },
255 1.45 thorpej { "phase", NEXTARG, 0, setatphase },
256 1.45 thorpej { "snpaoffset", NEXTARG, 0, setsnpaoffset },
257 1.45 thorpej { "nsellength", NEXTARG, 0, setnsellength },
258 1.21 gwr #endif /* INET_ONLY */
259 1.177 christos { "tunnel", NEXTARG2, 0, (void (*)(const char *, int))
260 1.80 thorpej settunnel } ,
261 1.80 thorpej { "deletetunnel", 0, 0, deletetunnel },
262 1.89 thorpej { "vlan", NEXTARG, 0, setvlan } ,
263 1.89 thorpej { "vlanif", NEXTARG, 0, setvlanif } ,
264 1.89 thorpej { "-vlanif", 0, 0, unsetvlanif } ,
265 1.81 thorpej #if 0
266 1.81 thorpej /* XXX `create' special-cased below */
267 1.81 thorpej { "create", 0, 0, clone_create } ,
268 1.81 thorpej #endif
269 1.81 thorpej { "destroy", 0, 0, clone_destroy } ,
270 1.45 thorpej { "link0", IFF_LINK0, 0, setifflags } ,
271 1.45 thorpej { "-link0", -IFF_LINK0, 0, setifflags } ,
272 1.45 thorpej { "link1", IFF_LINK1, 0, setifflags } ,
273 1.45 thorpej { "-link1", -IFF_LINK1, 0, setifflags } ,
274 1.45 thorpej { "link2", IFF_LINK2, 0, setifflags } ,
275 1.45 thorpej { "-link2", -IFF_LINK2, 0, setifflags } ,
276 1.46 thorpej { "media", NEXTARG, A_MEDIA, setmedia },
277 1.46 thorpej { "mediaopt", NEXTARG, A_MEDIAOPTSET, setmediaopt },
278 1.46 thorpej { "-mediaopt", NEXTARG, A_MEDIAOPTCLR, unsetmediaopt },
279 1.139 dyoung { "mode", NEXTARG, A_MEDIAMODE, setmediamode },
280 1.47 thorpej { "instance", NEXTARG, A_MEDIAINST, setmediainst },
281 1.47 thorpej { "inst", NEXTARG, A_MEDIAINST, setmediainst },
282 1.168 yamt { "ip4csum-tx", IFCAP_CSUM_IPv4_Tx,0, setifcaps },
283 1.168 yamt { "-ip4csum-tx",-IFCAP_CSUM_IPv4_Tx,0, setifcaps },
284 1.168 yamt { "ip4csum-rx", IFCAP_CSUM_IPv4_Rx,0, setifcaps },
285 1.168 yamt { "-ip4csum-rx",-IFCAP_CSUM_IPv4_Rx,0, setifcaps },
286 1.168 yamt { "tcp4csum-tx",IFCAP_CSUM_TCPv4_Tx,0, setifcaps },
287 1.168 yamt { "-tcp4csum-tx",-IFCAP_CSUM_TCPv4_Tx,0, setifcaps },
288 1.115 thorpej { "tcp4csum-rx",IFCAP_CSUM_TCPv4_Rx,0, setifcaps },
289 1.115 thorpej { "-tcp4csum-rx",-IFCAP_CSUM_TCPv4_Rx,0, setifcaps },
290 1.168 yamt { "udp4csum-tx",IFCAP_CSUM_UDPv4_Tx,0, setifcaps },
291 1.168 yamt { "-udp4csum-tx",-IFCAP_CSUM_UDPv4_Tx,0, setifcaps },
292 1.115 thorpej { "udp4csum-rx",IFCAP_CSUM_UDPv4_Rx,0, setifcaps },
293 1.115 thorpej { "-udp4csum-rx",-IFCAP_CSUM_UDPv4_Rx,0, setifcaps },
294 1.168 yamt { "tcp6csum-tx",IFCAP_CSUM_TCPv6_Tx,0, setifcaps },
295 1.168 yamt { "-tcp6csum-tx",-IFCAP_CSUM_TCPv6_Tx,0, setifcaps },
296 1.168 yamt { "tcp6csum-rx",IFCAP_CSUM_TCPv6_Rx,0, setifcaps },
297 1.168 yamt { "-tcp6csum-rx",-IFCAP_CSUM_TCPv6_Rx,0, setifcaps },
298 1.168 yamt { "udp6csum-tx",IFCAP_CSUM_UDPv6_Tx,0, setifcaps },
299 1.168 yamt { "-udp6csum-tx",-IFCAP_CSUM_UDPv6_Tx,0, setifcaps },
300 1.168 yamt { "udp6csum-rx",IFCAP_CSUM_UDPv6_Rx,0, setifcaps },
301 1.168 yamt { "-udp6csum-rx",-IFCAP_CSUM_UDPv6_Rx,0, setifcaps },
302 1.168 yamt { "ip4csum", IFCAP_CSUM_IPv4_Tx|IFCAP_CSUM_IPv4_Rx,
303 1.168 yamt 0, setifcaps },
304 1.168 yamt { "-ip4csum", -(IFCAP_CSUM_IPv4_Tx|IFCAP_CSUM_IPv4_Rx),
305 1.168 yamt 0, setifcaps },
306 1.168 yamt { "tcp4csum", IFCAP_CSUM_TCPv4_Tx|IFCAP_CSUM_TCPv4_Rx,
307 1.168 yamt 0, setifcaps },
308 1.168 yamt { "-tcp4csum", -(IFCAP_CSUM_TCPv4_Tx|IFCAP_CSUM_TCPv4_Rx),
309 1.168 yamt 0, setifcaps },
310 1.168 yamt { "udp4csum", IFCAP_CSUM_UDPv4_Tx|IFCAP_CSUM_UDPv4_Rx,
311 1.168 yamt 0, setifcaps },
312 1.168 yamt { "-udp4csum", -(IFCAP_CSUM_UDPv4_Tx|IFCAP_CSUM_UDPv4_Rx),
313 1.168 yamt 0, setifcaps },
314 1.168 yamt { "tcp6csum", IFCAP_CSUM_TCPv6_Tx|IFCAP_CSUM_TCPv6_Rx,
315 1.168 yamt 0, setifcaps },
316 1.168 yamt { "-tcp6csum", -(IFCAP_CSUM_TCPv6_Tx|IFCAP_CSUM_TCPv6_Rx),
317 1.168 yamt 0, setifcaps },
318 1.168 yamt { "udp6csum", IFCAP_CSUM_UDPv6_Tx|IFCAP_CSUM_UDPv6_Rx,
319 1.168 yamt 0, setifcaps },
320 1.168 yamt { "-udp6csum", -(IFCAP_CSUM_UDPv6_Tx|IFCAP_CSUM_UDPv6_Rx),
321 1.168 yamt 0, setifcaps },
322 1.152 matt { "tso4", IFCAP_TSOv4, 0, setifcaps },
323 1.152 matt { "-tso4", -IFCAP_TSOv4, 0, setifcaps },
324 1.179 yamt { "tso6", IFCAP_TSOv6, 0, setifcaps },
325 1.179 yamt { "-tso6", -IFCAP_TSOv6, 0, setifcaps },
326 1.153 yamt { "agrport", NEXTARG, 0, agraddport } ,
327 1.153 yamt { "-agrport", NEXTARG, 0, agrremport } ,
328 1.182 dyoung { NULL, 0, 0, setifaddr },
329 1.182 dyoung { NULL, 0, 0, setifdstaddr },
330 1.1 cgd };
331 1.1 cgd
332 1.145 dsl int getinfo(struct ifreq *);
333 1.145 dsl int carrier(void);
334 1.145 dsl void printall(const char *);
335 1.145 dsl void list_cloners(void);
336 1.145 dsl void status(const struct sockaddr_dl *);
337 1.145 dsl void usage(void);
338 1.145 dsl
339 1.147 dsl void print_media_word(int, const char *);
340 1.145 dsl void process_media_commands(void);
341 1.145 dsl void init_current_media(void);
342 1.24 thorpej
343 1.1 cgd /* Known address families */
344 1.160 thorpej const struct afswtch afs[] = {
345 1.95 itojun { "inet", AF_INET, in_status, in_getaddr, in_getprefix,
346 1.144 dsl SIOCDIFADDR, SIOCAIFADDR, SIOCGIFADDR, &ridreq, &in_addreq },
347 1.53 itojun #ifdef INET6
348 1.53 itojun { "inet6", AF_INET6, in6_status, in6_getaddr, in6_getprefix,
349 1.76 enami SIOCDIFADDR_IN6, SIOCAIFADDR_IN6,
350 1.76 enami /*
351 1.76 enami * Deleting the first address before setting new one is
352 1.76 enami * not prefered way in this protocol.
353 1.76 enami */
354 1.76 enami 0,
355 1.144 dsl &in6_ridreq, &in6_addreq },
356 1.53 itojun #endif
357 1.21 gwr #ifndef INET_ONLY /* small version, for boot media */
358 1.53 itojun { "atalk", AF_APPLETALK, at_status, at_getaddr, NULL,
359 1.144 dsl SIOCDIFADDR, SIOCAIFADDR, SIOCGIFADDR, &addreq, &addreq },
360 1.53 itojun { "iso", AF_ISO, iso_status, iso_getaddr, NULL,
361 1.76 enami SIOCDIFADDR_ISO, SIOCAIFADDR_ISO, SIOCGIFADDR_ISO,
362 1.144 dsl &iso_ridreq, &iso_addreq },
363 1.21 gwr #endif /* INET_ONLY */
364 1.177 christos { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }
365 1.1 cgd };
366 1.1 cgd
367 1.160 thorpej const struct afswtch *afp; /*the address family being set or asked about*/
368 1.1 cgd
369 1.16 cgd int
370 1.145 dsl main(int argc, char *argv[])
371 1.1 cgd {
372 1.49 christos int ch;
373 1.24 thorpej
374 1.24 thorpej /* Parse command-line options */
375 1.134 perry aflag = mflag = vflag = zflag = 0;
376 1.169 rpaulo while ((ch = getopt(argc, argv, "AabCdhlmsuvz"
377 1.53 itojun #ifdef INET6
378 1.53 itojun "L"
379 1.53 itojun #endif
380 1.53 itojun )) != -1) {
381 1.24 thorpej switch (ch) {
382 1.49 christos case 'A':
383 1.107 itojun warnx("-A is deprecated");
384 1.49 christos break;
385 1.49 christos
386 1.24 thorpej case 'a':
387 1.24 thorpej aflag = 1;
388 1.24 thorpej break;
389 1.24 thorpej
390 1.54 sommerfe case 'b':
391 1.54 sommerfe bflag = 1;
392 1.54 sommerfe break;
393 1.54 sommerfe
394 1.87 thorpej case 'C':
395 1.87 thorpej Cflag = 1;
396 1.87 thorpej break;
397 1.87 thorpej
398 1.34 lukem case 'd':
399 1.34 lukem dflag = 1;
400 1.34 lukem break;
401 1.169 rpaulo case 'h':
402 1.169 rpaulo hflag = 1;
403 1.169 rpaulo break;
404 1.53 itojun #ifdef INET6
405 1.53 itojun case 'L':
406 1.53 itojun Lflag = 1;
407 1.53 itojun break;
408 1.53 itojun #endif
409 1.53 itojun
410 1.31 thorpej case 'l':
411 1.31 thorpej lflag = 1;
412 1.31 thorpej break;
413 1.31 thorpej
414 1.24 thorpej case 'm':
415 1.24 thorpej mflag = 1;
416 1.24 thorpej break;
417 1.1 cgd
418 1.54 sommerfe case 's':
419 1.54 sommerfe sflag = 1;
420 1.54 sommerfe break;
421 1.54 sommerfe
422 1.34 lukem case 'u':
423 1.34 lukem uflag = 1;
424 1.34 lukem break;
425 1.34 lukem
426 1.124 matt case 'v':
427 1.124 matt vflag = 1;
428 1.124 matt break;
429 1.124 matt
430 1.134 perry case 'z':
431 1.134 perry zflag = 1;
432 1.134 perry break;
433 1.134 perry
434 1.54 sommerfe
435 1.24 thorpej default:
436 1.24 thorpej usage();
437 1.24 thorpej /* NOTREACHED */
438 1.24 thorpej }
439 1.1 cgd }
440 1.24 thorpej argc -= optind;
441 1.24 thorpej argv += optind;
442 1.24 thorpej
443 1.31 thorpej /*
444 1.31 thorpej * -l means "list all interfaces", and is mutally exclusive with
445 1.31 thorpej * all other flags/commands.
446 1.31 thorpej *
447 1.87 thorpej * -C means "list all names of cloners", and it mutually exclusive
448 1.87 thorpej * with all other flags/commands.
449 1.87 thorpej *
450 1.31 thorpej * -a means "print status of all interfaces".
451 1.31 thorpej */
452 1.134 perry if ((lflag || Cflag) && (aflag || mflag || vflag || argc || zflag))
453 1.54 sommerfe usage();
454 1.54 sommerfe #ifdef INET6
455 1.87 thorpej if ((lflag || Cflag) && Lflag)
456 1.31 thorpej usage();
457 1.54 sommerfe #endif
458 1.87 thorpej if (lflag && Cflag)
459 1.87 thorpej usage();
460 1.87 thorpej if (Cflag) {
461 1.87 thorpej if (argc)
462 1.87 thorpej usage();
463 1.87 thorpej list_cloners();
464 1.87 thorpej exit(0);
465 1.87 thorpej }
466 1.31 thorpej if (aflag || lflag) {
467 1.24 thorpej if (argc > 1)
468 1.18 glass usage();
469 1.24 thorpej else if (argc == 1) {
470 1.158 thorpej afp = lookup_af_byname(argv[0]);
471 1.24 thorpej if (afp == NULL)
472 1.24 thorpej usage();
473 1.32 christos }
474 1.32 christos if (afp)
475 1.32 christos af = ifr.ifr_addr.sa_family = afp->af_af;
476 1.32 christos else
477 1.32 christos af = ifr.ifr_addr.sa_family = afs[0].af_af;
478 1.107 itojun printall(NULL);
479 1.5 deraadt exit(0);
480 1.5 deraadt }
481 1.24 thorpej
482 1.24 thorpej /* Make sure there's an interface name. */
483 1.24 thorpej if (argc < 1)
484 1.24 thorpej usage();
485 1.140 itojun if (strlcpy(name, argv[0], sizeof(name)) >= sizeof(name))
486 1.140 itojun errx(1, "interface name '%s' too long", argv[0]);
487 1.24 thorpej argc--; argv++;
488 1.24 thorpej
489 1.81 thorpej /*
490 1.81 thorpej * NOTE: We must special-case the `create' command right
491 1.81 thorpej * here as we would otherwise fail in getinfo().
492 1.81 thorpej */
493 1.81 thorpej if (argc > 0 && strcmp(argv[0], "create") == 0) {
494 1.81 thorpej clone_create(argv[0], 0);
495 1.81 thorpej argc--, argv++;
496 1.81 thorpej if (argc == 0)
497 1.81 thorpej exit(0);
498 1.81 thorpej }
499 1.81 thorpej
500 1.24 thorpej /* Check for address family. */
501 1.24 thorpej afp = NULL;
502 1.24 thorpej if (argc > 0) {
503 1.158 thorpej afp = lookup_af_byname(argv[0]);
504 1.24 thorpej if (afp != NULL) {
505 1.24 thorpej argv++;
506 1.24 thorpej argc--;
507 1.24 thorpej }
508 1.24 thorpej }
509 1.24 thorpej
510 1.51 thorpej /* Initialize af, just for use in getinfo(). */
511 1.24 thorpej if (afp == NULL)
512 1.51 thorpej af = afs->af_af;
513 1.52 thorpej else
514 1.52 thorpej af = afp->af_af;
515 1.24 thorpej
516 1.24 thorpej /* Get information about the interface. */
517 1.172 elad estrlcpy(ifr.ifr_name, name, sizeof(ifr.ifr_name));
518 1.13 mycroft if (getinfo(&ifr) < 0)
519 1.1 cgd exit(1);
520 1.24 thorpej
521 1.54 sommerfe if (sflag) {
522 1.54 sommerfe if (argc != 0)
523 1.54 sommerfe usage();
524 1.54 sommerfe else
525 1.54 sommerfe exit(carrier());
526 1.54 sommerfe }
527 1.54 sommerfe
528 1.24 thorpej /* No more arguments means interface status. */
529 1.13 mycroft if (argc == 0) {
530 1.107 itojun printall(name);
531 1.5 deraadt exit(0);
532 1.5 deraadt }
533 1.51 thorpej
534 1.69 enami /* The following operations assume inet family as the default. */
535 1.51 thorpej if (afp == NULL)
536 1.51 thorpej afp = afs;
537 1.51 thorpej af = ifr.ifr_addr.sa_family = afp->af_af;
538 1.24 thorpej
539 1.24 thorpej /* Process commands. */
540 1.182 dyoung for (; argc > 0; argc--, argv++) {
541 1.80 thorpej const struct cmd *p;
542 1.1 cgd
543 1.182 dyoung for (p = cmds; p->c_name != NULL; p++) {
544 1.24 thorpej if (strcmp(argv[0], p->c_name) == 0)
545 1.1 cgd break;
546 1.182 dyoung }
547 1.182 dyoung if (p->c_name == NULL && setaddr) {
548 1.57 thorpej if ((flags & IFF_POINTOPOINT) == 0) {
549 1.127 itojun errx(EXIT_FAILURE,
550 1.127 itojun "can't set destination address %s",
551 1.182 dyoung "on non-point-to-point link");
552 1.57 thorpej }
553 1.1 cgd p++; /* got src, do dst */
554 1.55 darrenr }
555 1.182 dyoung if (p->c_func == NULL)
556 1.182 dyoung continue;
557 1.182 dyoung if (p->c_parameter == NEXTARG) {
558 1.182 dyoung if (argc < 2)
559 1.182 dyoung errx(EXIT_FAILURE, "'%s' requires argument",
560 1.182 dyoung p->c_name);
561 1.182 dyoung (*p->c_func)(argv[1], 0);
562 1.182 dyoung argc--, argv++;
563 1.182 dyoung } else if (p->c_parameter == NEXTARG2) {
564 1.182 dyoung if (argc < 3)
565 1.182 dyoung errx(EXIT_FAILURE, "'%s' requires 2 arguments",
566 1.182 dyoung p->c_name);
567 1.182 dyoung ((void (*)(const char *, const char *))
568 1.182 dyoung *p->c_func)(argv[1], argv[2]);
569 1.182 dyoung argc -= 2, argv += 2;
570 1.182 dyoung } else
571 1.182 dyoung (*p->c_func)(argv[0], p->c_parameter);
572 1.182 dyoung actions |= p->c_action;
573 1.1 cgd }
574 1.21 gwr
575 1.113 david /*
576 1.113 david * See if multiple alias, -alias, or delete commands were
577 1.113 david * specified. More than one constitutes an invalid command line
578 1.113 david */
579 1.112 david
580 1.112 david if (conflicting > 1)
581 1.143 yamt errx(EXIT_FAILURE,
582 1.120 atatat "Only one use of alias, -alias or delete is valid.");
583 1.112 david
584 1.45 thorpej /* Process any media commands that may have been issued. */
585 1.45 thorpej process_media_commands();
586 1.45 thorpej
587 1.53 itojun if (af == AF_INET6 && explicit_prefix == 0) {
588 1.53 itojun /*
589 1.53 itojun * Aggregatable address architecture defines all prefixes
590 1.53 itojun * are 64. So, it is convenient to set prefixlen to 64 if
591 1.53 itojun * it is not specified.
592 1.53 itojun */
593 1.53 itojun setifprefixlen("64", 0);
594 1.53 itojun /* in6_getprefix("64", MASK) if MASK is available here... */
595 1.53 itojun }
596 1.53 itojun
597 1.21 gwr #ifndef INET_ONLY
598 1.32 christos if (af == AF_APPLETALK)
599 1.161 thorpej checkatrange(&addreq.ifra_addr);
600 1.21 gwr #endif /* INET_ONLY */
601 1.21 gwr
602 1.1 cgd if (clearaddr) {
603 1.172 elad estrlcpy(afp->af_ridreq, name, sizeof ifr.ifr_name);
604 1.120 atatat if (ioctl(s, afp->af_difaddr, afp->af_ridreq) == -1)
605 1.120 atatat err(EXIT_FAILURE, "SIOCDIFADDR");
606 1.1 cgd }
607 1.36 lukem if (newaddr > 0) {
608 1.172 elad estrlcpy(afp->af_addreq, name, sizeof ifr.ifr_name);
609 1.120 atatat if (ioctl(s, afp->af_aifaddr, afp->af_addreq) == -1)
610 1.13 mycroft warn("SIOCAIFADDR");
611 1.173 martin else if (check_up_state < 0)
612 1.173 martin check_up_state = 1;
613 1.1 cgd }
614 1.79 enami
615 1.178 dyoung if (have_preference)
616 1.178 dyoung do_setifpreference();
617 1.108 thorpej if (g_ifcr_updated) {
618 1.172 elad strlcpy(g_ifcr.ifcr_name, name,
619 1.108 thorpej sizeof(g_ifcr.ifcr_name));
620 1.144 dsl if (ioctl(s, SIOCSIFCAP, &g_ifcr) == -1)
621 1.120 atatat err(EXIT_FAILURE, "SIOCSIFCAP");
622 1.108 thorpej }
623 1.108 thorpej
624 1.173 martin if (check_up_state == 1)
625 1.173 martin check_ifflags_up(name);
626 1.173 martin
627 1.13 mycroft exit(0);
628 1.13 mycroft }
629 1.13 mycroft
630 1.160 thorpej const struct afswtch *
631 1.158 thorpej lookup_af_byname(const char *cp)
632 1.24 thorpej {
633 1.160 thorpej const struct afswtch *a;
634 1.24 thorpej
635 1.24 thorpej for (a = afs; a->af_name != NULL; a++)
636 1.24 thorpej if (strcmp(a->af_name, cp) == 0)
637 1.24 thorpej return (a);
638 1.24 thorpej return (NULL);
639 1.24 thorpej }
640 1.24 thorpej
641 1.160 thorpej const struct afswtch *
642 1.158 thorpej lookup_af_bynum(int afnum)
643 1.158 thorpej {
644 1.160 thorpej const struct afswtch *a;
645 1.158 thorpej
646 1.158 thorpej for (a = afs; a->af_name != NULL; a++)
647 1.158 thorpej if (a->af_af == afnum)
648 1.158 thorpej return (a);
649 1.158 thorpej return (NULL);
650 1.158 thorpej }
651 1.158 thorpej
652 1.13 mycroft void
653 1.145 dsl getsock(int naf)
654 1.13 mycroft {
655 1.13 mycroft static int oaf = -1;
656 1.13 mycroft
657 1.13 mycroft if (oaf == naf)
658 1.13 mycroft return;
659 1.13 mycroft if (oaf != -1)
660 1.13 mycroft close(s);
661 1.13 mycroft s = socket(naf, SOCK_DGRAM, 0);
662 1.13 mycroft if (s < 0)
663 1.13 mycroft oaf = -1;
664 1.13 mycroft else
665 1.13 mycroft oaf = naf;
666 1.13 mycroft }
667 1.13 mycroft
668 1.13 mycroft int
669 1.145 dsl getinfo(struct ifreq *giifr)
670 1.13 mycroft {
671 1.5 deraadt
672 1.13 mycroft getsock(af);
673 1.13 mycroft if (s < 0)
674 1.120 atatat err(EXIT_FAILURE, "socket");
675 1.144 dsl if (ioctl(s, SIOCGIFFLAGS, giifr) == -1) {
676 1.121 lukem warn("SIOCGIFFLAGS %s", giifr->ifr_name);
677 1.13 mycroft return (-1);
678 1.13 mycroft }
679 1.121 lukem flags = giifr->ifr_flags;
680 1.144 dsl if (ioctl(s, SIOCGIFMETRIC, giifr) == -1) {
681 1.121 lukem warn("SIOCGIFMETRIC %s", giifr->ifr_name);
682 1.13 mycroft metric = 0;
683 1.13 mycroft } else
684 1.121 lukem metric = giifr->ifr_metric;
685 1.144 dsl if (ioctl(s, SIOCGIFMTU, giifr) == -1)
686 1.33 is mtu = 0;
687 1.33 is else
688 1.121 lukem mtu = giifr->ifr_mtu;
689 1.108 thorpej
690 1.108 thorpej memset(&g_ifcr, 0, sizeof(g_ifcr));
691 1.172 elad estrlcpy(g_ifcr.ifcr_name, giifr->ifr_name, sizeof(g_ifcr.ifcr_name));
692 1.144 dsl (void) ioctl(s, SIOCGIFCAP, &g_ifcr);
693 1.108 thorpej
694 1.13 mycroft return (0);
695 1.1 cgd }
696 1.5 deraadt
697 1.13 mycroft void
698 1.145 dsl printall(const char *ifname)
699 1.5 deraadt {
700 1.78 itojun struct ifaddrs *ifap, *ifa;
701 1.121 lukem struct ifreq paifr;
702 1.94 itojun const struct sockaddr_dl *sdl = NULL;
703 1.78 itojun int idx;
704 1.78 itojun char *p;
705 1.78 itojun
706 1.78 itojun if (getifaddrs(&ifap) != 0)
707 1.120 atatat err(EXIT_FAILURE, "getifaddrs");
708 1.78 itojun p = NULL;
709 1.78 itojun idx = 0;
710 1.78 itojun for (ifa = ifap; ifa; ifa = ifa->ifa_next) {
711 1.121 lukem memset(&paifr, 0, sizeof(paifr));
712 1.172 elad estrlcpy(paifr.ifr_name, ifa->ifa_name, sizeof(paifr.ifr_name));
713 1.121 lukem if (sizeof(paifr.ifr_addr) >= ifa->ifa_addr->sa_len) {
714 1.121 lukem memcpy(&paifr.ifr_addr, ifa->ifa_addr,
715 1.78 itojun ifa->ifa_addr->sa_len);
716 1.78 itojun }
717 1.78 itojun
718 1.107 itojun if (ifname && strcmp(ifname, ifa->ifa_name) != 0)
719 1.107 itojun continue;
720 1.78 itojun if (ifa->ifa_addr->sa_family == AF_LINK)
721 1.78 itojun sdl = (const struct sockaddr_dl *) ifa->ifa_addr;
722 1.78 itojun if (p && strcmp(p, ifa->ifa_name) == 0)
723 1.78 itojun continue;
724 1.140 itojun if (strlcpy(name, ifa->ifa_name, sizeof(name)) >= sizeof(name))
725 1.140 itojun continue;
726 1.78 itojun p = ifa->ifa_name;
727 1.78 itojun
728 1.121 lukem if (getinfo(&paifr) < 0)
729 1.78 itojun continue;
730 1.135 lukem if (bflag && (ifa->ifa_flags & IFF_BROADCAST) == 0)
731 1.78 itojun continue;
732 1.78 itojun if (dflag && (ifa->ifa_flags & IFF_UP) != 0)
733 1.78 itojun continue;
734 1.78 itojun if (uflag && (ifa->ifa_flags & IFF_UP) == 0)
735 1.78 itojun continue;
736 1.78 itojun
737 1.78 itojun if (sflag && carrier())
738 1.78 itojun continue;
739 1.78 itojun idx++;
740 1.78 itojun /*
741 1.78 itojun * Are we just listing the interfaces?
742 1.78 itojun */
743 1.78 itojun if (lflag) {
744 1.78 itojun if (idx > 1)
745 1.147 dsl printf(" ");
746 1.78 itojun fputs(name, stdout);
747 1.78 itojun continue;
748 1.78 itojun }
749 1.78 itojun
750 1.119 bjh21 status(sdl);
751 1.119 bjh21 sdl = NULL;
752 1.78 itojun }
753 1.78 itojun if (lflag)
754 1.147 dsl printf("\n");
755 1.78 itojun freeifaddrs(ifap);
756 1.87 thorpej }
757 1.87 thorpej
758 1.87 thorpej void
759 1.87 thorpej list_cloners(void)
760 1.87 thorpej {
761 1.87 thorpej struct if_clonereq ifcr;
762 1.87 thorpej char *cp, *buf;
763 1.87 thorpej int idx;
764 1.87 thorpej
765 1.87 thorpej memset(&ifcr, 0, sizeof(ifcr));
766 1.87 thorpej
767 1.87 thorpej getsock(AF_INET);
768 1.87 thorpej
769 1.120 atatat if (ioctl(s, SIOCIFGCLONERS, &ifcr) == -1)
770 1.120 atatat err(EXIT_FAILURE, "SIOCIFGCLONERS for count");
771 1.87 thorpej
772 1.87 thorpej buf = malloc(ifcr.ifcr_total * IFNAMSIZ);
773 1.87 thorpej if (buf == NULL)
774 1.120 atatat err(EXIT_FAILURE, "unable to allocate cloner name buffer");
775 1.87 thorpej
776 1.87 thorpej ifcr.ifcr_count = ifcr.ifcr_total;
777 1.87 thorpej ifcr.ifcr_buffer = buf;
778 1.87 thorpej
779 1.120 atatat if (ioctl(s, SIOCIFGCLONERS, &ifcr) == -1)
780 1.120 atatat err(EXIT_FAILURE, "SIOCIFGCLONERS for names");
781 1.87 thorpej
782 1.87 thorpej /*
783 1.87 thorpej * In case some disappeared in the mean time, clamp it down.
784 1.87 thorpej */
785 1.87 thorpej if (ifcr.ifcr_count > ifcr.ifcr_total)
786 1.87 thorpej ifcr.ifcr_count = ifcr.ifcr_total;
787 1.87 thorpej
788 1.87 thorpej for (cp = buf, idx = 0; idx < ifcr.ifcr_count; idx++, cp += IFNAMSIZ) {
789 1.87 thorpej if (idx > 0)
790 1.147 dsl printf(" ");
791 1.87 thorpej printf("%s", cp);
792 1.87 thorpej }
793 1.87 thorpej
794 1.147 dsl printf("\n");
795 1.87 thorpej free(buf);
796 1.87 thorpej return;
797 1.5 deraadt }
798 1.5 deraadt
799 1.81 thorpej /*ARGSUSED*/
800 1.81 thorpej void
801 1.145 dsl clone_create(const char *addr, int param)
802 1.81 thorpej {
803 1.81 thorpej
804 1.81 thorpej /* We're called early... */
805 1.81 thorpej getsock(AF_INET);
806 1.81 thorpej
807 1.172 elad estrlcpy(ifr.ifr_name, name, sizeof(ifr.ifr_name));
808 1.120 atatat if (ioctl(s, SIOCIFCREATE, &ifr) == -1)
809 1.120 atatat err(EXIT_FAILURE, "SIOCIFCREATE");
810 1.81 thorpej }
811 1.81 thorpej
812 1.81 thorpej /*ARGSUSED*/
813 1.81 thorpej void
814 1.145 dsl clone_destroy(const char *addr, int param)
815 1.81 thorpej {
816 1.81 thorpej
817 1.172 elad estrlcpy(ifr.ifr_name, name, sizeof(ifr.ifr_name));
818 1.120 atatat if (ioctl(s, SIOCIFDESTROY, &ifr) == -1)
819 1.120 atatat err(EXIT_FAILURE, "SIOCIFDESTROY");
820 1.81 thorpej }
821 1.81 thorpej
822 1.1 cgd /*ARGSUSED*/
823 1.16 cgd void
824 1.145 dsl setifaddr(const char *addr, int param)
825 1.1 cgd {
826 1.121 lukem struct ifreq *siifr; /* XXX */
827 1.76 enami
828 1.1 cgd /*
829 1.1 cgd * Delay the ioctl to set the interface addr until flags are all set.
830 1.1 cgd * The address interpretation may depend on the flags,
831 1.1 cgd * and the flags may change when the address is set.
832 1.1 cgd */
833 1.1 cgd setaddr++;
834 1.36 lukem if (newaddr == -1)
835 1.36 lukem newaddr = 1;
836 1.76 enami if (doalias == 0 && afp->af_gifaddr != 0) {
837 1.121 lukem siifr = (struct ifreq *)afp->af_ridreq;
838 1.172 elad estrlcpy(siifr->ifr_name, name, sizeof(siifr->ifr_name));
839 1.121 lukem siifr->ifr_addr.sa_family = afp->af_af;
840 1.76 enami if (ioctl(s, afp->af_gifaddr, afp->af_ridreq) == 0)
841 1.76 enami clearaddr = 1;
842 1.76 enami else if (errno == EADDRNOTAVAIL)
843 1.76 enami /* No address was assigned yet. */
844 1.76 enami ;
845 1.76 enami else
846 1.120 atatat err(EXIT_FAILURE, "SIOCGIFADDR");
847 1.76 enami }
848 1.76 enami
849 1.1 cgd (*afp->af_getaddr)(addr, (doalias >= 0 ? ADDR : RIDADDR));
850 1.1 cgd }
851 1.1 cgd
852 1.16 cgd void
853 1.145 dsl setifnetmask(const char *addr, int d)
854 1.1 cgd {
855 1.1 cgd (*afp->af_getaddr)(addr, MASK);
856 1.1 cgd }
857 1.1 cgd
858 1.16 cgd void
859 1.145 dsl setifbroadaddr(const char *addr, int d)
860 1.1 cgd {
861 1.1 cgd (*afp->af_getaddr)(addr, DSTADDR);
862 1.1 cgd }
863 1.1 cgd
864 1.1 cgd #define rqtosa(x) (&(((struct ifreq *)(afp->x))->ifr_addr))
865 1.1 cgd /*ARGSUSED*/
866 1.16 cgd void
867 1.145 dsl notealias(const char *addr, int param)
868 1.1 cgd {
869 1.1 cgd if (setaddr && doalias == 0 && param < 0)
870 1.32 christos (void) memcpy(rqtosa(af_ridreq), rqtosa(af_addreq),
871 1.32 christos rqtosa(af_addreq)->sa_len);
872 1.1 cgd doalias = param;
873 1.1 cgd if (param < 0) {
874 1.1 cgd clearaddr = 1;
875 1.1 cgd newaddr = 0;
876 1.112 david conflicting++;
877 1.113 david } else {
878 1.1 cgd clearaddr = 0;
879 1.112 david conflicting++;
880 1.113 david }
881 1.1 cgd }
882 1.1 cgd
883 1.1 cgd /*ARGSUSED*/
884 1.16 cgd void
885 1.145 dsl notrailers(const char *vname, int value)
886 1.13 mycroft {
887 1.34 lukem puts("Note: trailers are no longer sent, but always received");
888 1.13 mycroft }
889 1.13 mycroft
890 1.13 mycroft /*ARGSUSED*/
891 1.16 cgd void
892 1.145 dsl setifdstaddr(const char *addr, int param)
893 1.1 cgd {
894 1.1 cgd (*afp->af_getaddr)(addr, DSTADDR);
895 1.1 cgd }
896 1.1 cgd
897 1.16 cgd void
898 1.173 martin check_ifflags_up(const char *vname)
899 1.173 martin {
900 1.173 martin struct ifreq ifreq;
901 1.173 martin
902 1.173 martin estrlcpy(ifreq.ifr_name, name, sizeof(ifreq.ifr_name));
903 1.173 martin if (ioctl(s, SIOCGIFFLAGS, &ifreq) == -1)
904 1.173 martin err(EXIT_FAILURE, "SIOCGIFFLAGS");
905 1.173 martin if (ifreq.ifr_flags & IFF_UP)
906 1.173 martin return;
907 1.173 martin ifreq.ifr_flags |= IFF_UP;
908 1.173 martin if (ioctl(s, SIOCSIFFLAGS, &ifreq) == -1)
909 1.173 martin err(EXIT_FAILURE, "SIOCSIFFLAGS");
910 1.173 martin }
911 1.173 martin
912 1.173 martin void
913 1.145 dsl setifflags(const char *vname, int value)
914 1.1 cgd {
915 1.79 enami struct ifreq ifreq;
916 1.79 enami
917 1.172 elad estrlcpy(ifreq.ifr_name, name, sizeof(ifreq.ifr_name));
918 1.144 dsl if (ioctl(s, SIOCGIFFLAGS, &ifreq) == -1)
919 1.120 atatat err(EXIT_FAILURE, "SIOCGIFFLAGS");
920 1.79 enami flags = ifreq.ifr_flags;
921 1.1 cgd
922 1.1 cgd if (value < 0) {
923 1.1 cgd value = -value;
924 1.173 martin if (value == IFF_UP)
925 1.173 martin check_up_state = 0;
926 1.1 cgd flags &= ~value;
927 1.1 cgd } else
928 1.1 cgd flags |= value;
929 1.79 enami ifreq.ifr_flags = flags;
930 1.144 dsl if (ioctl(s, SIOCSIFFLAGS, &ifreq) == -1)
931 1.120 atatat err(EXIT_FAILURE, "SIOCSIFFLAGS");
932 1.1 cgd }
933 1.1 cgd
934 1.108 thorpej void
935 1.145 dsl setifcaps(const char *vname, int value)
936 1.108 thorpej {
937 1.108 thorpej
938 1.108 thorpej if (value < 0) {
939 1.108 thorpej value = -value;
940 1.108 thorpej g_ifcr.ifcr_capenable &= ~value;
941 1.108 thorpej } else
942 1.108 thorpej g_ifcr.ifcr_capenable |= value;
943 1.108 thorpej
944 1.108 thorpej g_ifcr_updated = 1;
945 1.108 thorpej }
946 1.108 thorpej
947 1.16 cgd void
948 1.145 dsl setifmetric(const char *val, int d)
949 1.1 cgd {
950 1.126 itojun char *ep = NULL;
951 1.125 itojun
952 1.172 elad estrlcpy(ifr.ifr_name, name, sizeof (ifr.ifr_name));
953 1.125 itojun ifr.ifr_metric = strtoul(val, &ep, 10);
954 1.125 itojun if (!ep || *ep)
955 1.127 itojun errx(EXIT_FAILURE, "%s: invalid metric", val);
956 1.144 dsl if (ioctl(s, SIOCSIFMETRIC, &ifr) == -1)
957 1.13 mycroft warn("SIOCSIFMETRIC");
958 1.1 cgd }
959 1.1 cgd
960 1.24 thorpej void
961 1.178 dyoung setifpreference(const char *val, int d)
962 1.178 dyoung {
963 1.178 dyoung char *end = NULL;
964 1.178 dyoung if (setaddr <= 0) {
965 1.178 dyoung errx(EXIT_FAILURE,
966 1.178 dyoung "set address preference: first specify an address");
967 1.178 dyoung }
968 1.178 dyoung preference = strtoul(val, &end, 10);
969 1.178 dyoung if (end == NULL || *end != '\0' || preference > UINT16_MAX)
970 1.178 dyoung errx(EXIT_FAILURE, "invalid preference %s", val);
971 1.178 dyoung have_preference = 1;
972 1.178 dyoung }
973 1.178 dyoung
974 1.178 dyoung void
975 1.178 dyoung do_setifpreference(void)
976 1.178 dyoung {
977 1.178 dyoung struct if_addrprefreq ifap;
978 1.178 dyoung (void)strncpy(ifap.ifap_name, name, sizeof(ifap.ifap_name));
979 1.178 dyoung ifap.ifap_preference = (uint16_t)preference;
980 1.178 dyoung (void)memcpy(&ifap.ifap_addr, rqtosa(af_addreq),
981 1.178 dyoung MIN(sizeof(ifap.ifap_addr), rqtosa(af_addreq)->sa_len));
982 1.178 dyoung if (ioctl(s, SIOCSIFADDRPREF, &ifap) == -1)
983 1.178 dyoung warn("SIOCSIFADDRPREF");
984 1.178 dyoung }
985 1.178 dyoung
986 1.178 dyoung void
987 1.145 dsl setifmtu(const char *val, int d)
988 1.33 is {
989 1.126 itojun char *ep = NULL;
990 1.125 itojun
991 1.172 elad estrlcpy(ifr.ifr_name, name, sizeof(ifr.ifr_name));
992 1.125 itojun ifr.ifr_mtu = strtoul(val, &ep, 10);
993 1.125 itojun if (!ep || *ep)
994 1.127 itojun errx(EXIT_FAILURE, "%s: invalid mtu", val);
995 1.144 dsl if (ioctl(s, SIOCSIFMTU, &ifr) == -1)
996 1.33 is warn("SIOCSIFMTU");
997 1.33 is }
998 1.33 is
999 1.88 onoe const char *
1000 1.145 dsl get_string(const char *val, const char *sep, u_int8_t *buf, int *lenp)
1001 1.62 chopps {
1002 1.85 onoe int len;
1003 1.185 dyoung bool hexstr;
1004 1.82 onoe u_int8_t *p;
1005 1.62 chopps
1006 1.88 onoe len = *lenp;
1007 1.88 onoe p = buf;
1008 1.88 onoe hexstr = (val[0] == '0' && tolower((u_char)val[1]) == 'x');
1009 1.88 onoe if (hexstr)
1010 1.82 onoe val += 2;
1011 1.88 onoe for (;;) {
1012 1.88 onoe if (*val == '\0')
1013 1.88 onoe break;
1014 1.88 onoe if (sep != NULL && strchr(sep, *val) != NULL) {
1015 1.88 onoe val++;
1016 1.88 onoe break;
1017 1.88 onoe }
1018 1.88 onoe if (hexstr) {
1019 1.88 onoe if (!isxdigit((u_char)val[0]) ||
1020 1.88 onoe !isxdigit((u_char)val[1])) {
1021 1.88 onoe warnx("bad hexadecimal digits");
1022 1.88 onoe return NULL;
1023 1.85 onoe }
1024 1.88 onoe }
1025 1.88 onoe if (p > buf + len) {
1026 1.88 onoe if (hexstr)
1027 1.88 onoe warnx("hexadecimal digits too long");
1028 1.88 onoe else
1029 1.88 onoe warnx("strings too long");
1030 1.88 onoe return NULL;
1031 1.88 onoe }
1032 1.88 onoe if (hexstr) {
1033 1.82 onoe #define tohex(x) (isdigit(x) ? (x) - '0' : tolower(x) - 'a' + 10)
1034 1.84 onoe *p++ = (tohex((u_char)val[0]) << 4) |
1035 1.84 onoe tohex((u_char)val[1]);
1036 1.82 onoe #undef tohex
1037 1.82 onoe val += 2;
1038 1.88 onoe } else
1039 1.88 onoe *p++ = *val++;
1040 1.88 onoe }
1041 1.88 onoe len = p - buf;
1042 1.88 onoe if (len < *lenp)
1043 1.88 onoe memset(p, 0, *lenp - len);
1044 1.88 onoe *lenp = len;
1045 1.88 onoe return val;
1046 1.88 onoe }
1047 1.88 onoe
1048 1.88 onoe void
1049 1.145 dsl print_string(const u_int8_t *buf, int len)
1050 1.88 onoe {
1051 1.88 onoe int i;
1052 1.185 dyoung bool hasspc;
1053 1.88 onoe
1054 1.88 onoe i = 0;
1055 1.185 dyoung hasspc = false;
1056 1.88 onoe if (len < 2 || buf[0] != '0' || tolower(buf[1]) != 'x') {
1057 1.88 onoe for (; i < len; i++) {
1058 1.88 onoe if (!isprint(buf[i]))
1059 1.88 onoe break;
1060 1.88 onoe if (isspace(buf[i]))
1061 1.185 dyoung hasspc = true;
1062 1.88 onoe }
1063 1.88 onoe }
1064 1.88 onoe if (i == len) {
1065 1.88 onoe if (hasspc || len == 0)
1066 1.88 onoe printf("\"%.*s\"", len, buf);
1067 1.88 onoe else
1068 1.88 onoe printf("%.*s", len, buf);
1069 1.88 onoe } else {
1070 1.88 onoe printf("0x");
1071 1.88 onoe for (i = 0; i < len; i++)
1072 1.88 onoe printf("%02x", buf[i]);
1073 1.88 onoe }
1074 1.88 onoe }
1075 1.88 onoe
1076 1.147 dsl static void
1077 1.147 dsl media_error(int type, const char *val, const char *opt)
1078 1.147 dsl {
1079 1.147 dsl errx(EXIT_FAILURE, "unknown %s media %s: %s",
1080 1.147 dsl get_media_type_string(type), opt, val);
1081 1.147 dsl }
1082 1.147 dsl
1083 1.62 chopps void
1084 1.145 dsl init_current_media(void)
1085 1.24 thorpej {
1086 1.24 thorpej struct ifmediareq ifmr;
1087 1.24 thorpej
1088 1.45 thorpej /*
1089 1.45 thorpej * If we have not yet done so, grab the currently-selected
1090 1.45 thorpej * media.
1091 1.45 thorpej */
1092 1.139 dyoung if ((actions & (A_MEDIA|A_MEDIAOPT|A_MEDIAMODE)) == 0) {
1093 1.45 thorpej (void) memset(&ifmr, 0, sizeof(ifmr));
1094 1.172 elad estrlcpy(ifmr.ifm_name, name, sizeof(ifmr.ifm_name));
1095 1.45 thorpej
1096 1.144 dsl if (ioctl(s, SIOCGIFMEDIA, &ifmr) == -1) {
1097 1.45 thorpej /*
1098 1.45 thorpej * If we get E2BIG, the kernel is telling us
1099 1.45 thorpej * that there are more, so we can ignore it.
1100 1.45 thorpej */
1101 1.45 thorpej if (errno != E2BIG)
1102 1.120 atatat err(EXIT_FAILURE, "SGIOCGIFMEDIA");
1103 1.45 thorpej }
1104 1.24 thorpej
1105 1.45 thorpej media_current = ifmr.ifm_current;
1106 1.24 thorpej }
1107 1.24 thorpej
1108 1.45 thorpej /* Sanity. */
1109 1.45 thorpej if (IFM_TYPE(media_current) == 0)
1110 1.127 itojun errx(EXIT_FAILURE, "%s: no link type?", name);
1111 1.45 thorpej }
1112 1.45 thorpej
1113 1.45 thorpej void
1114 1.145 dsl process_media_commands(void)
1115 1.45 thorpej {
1116 1.45 thorpej
1117 1.139 dyoung if ((actions & (A_MEDIA|A_MEDIAOPT|A_MEDIAMODE)) == 0) {
1118 1.45 thorpej /* Nothing to do. */
1119 1.45 thorpej return;
1120 1.45 thorpej }
1121 1.24 thorpej
1122 1.24 thorpej /*
1123 1.45 thorpej * Media already set up, and commands sanity-checked. Set/clear
1124 1.45 thorpej * any options, and we're ready to go.
1125 1.24 thorpej */
1126 1.45 thorpej media_current |= mediaopt_set;
1127 1.45 thorpej media_current &= ~mediaopt_clear;
1128 1.24 thorpej
1129 1.172 elad estrlcpy(ifr.ifr_name, name, sizeof(ifr.ifr_name));
1130 1.45 thorpej ifr.ifr_media = media_current;
1131 1.24 thorpej
1132 1.144 dsl if (ioctl(s, SIOCSIFMEDIA, &ifr) == -1)
1133 1.120 atatat err(EXIT_FAILURE, "SIOCSIFMEDIA");
1134 1.24 thorpej }
1135 1.24 thorpej
1136 1.24 thorpej void
1137 1.145 dsl setmedia(const char *val, int d)
1138 1.24 thorpej {
1139 1.45 thorpej int type, subtype, inst;
1140 1.45 thorpej
1141 1.45 thorpej init_current_media();
1142 1.45 thorpej
1143 1.45 thorpej /* Only one media command may be given. */
1144 1.46 thorpej if (actions & A_MEDIA)
1145 1.127 itojun errx(EXIT_FAILURE, "only one `media' command may be issued");
1146 1.24 thorpej
1147 1.139 dyoung /* Must not come after mode commands */
1148 1.139 dyoung if (actions & A_MEDIAMODE)
1149 1.139 dyoung errx(EXIT_FAILURE,
1150 1.139 dyoung "may not issue `media' after `mode' commands");
1151 1.139 dyoung
1152 1.45 thorpej /* Must not come after mediaopt commands */
1153 1.46 thorpej if (actions & A_MEDIAOPT)
1154 1.127 itojun errx(EXIT_FAILURE,
1155 1.127 itojun "may not issue `media' after `mediaopt' commands");
1156 1.45 thorpej
1157 1.47 thorpej /*
1158 1.47 thorpej * No need to check if `instance' has been issued; setmediainst()
1159 1.47 thorpej * craps out if `media' has not been specified.
1160 1.47 thorpej */
1161 1.47 thorpej
1162 1.45 thorpej type = IFM_TYPE(media_current);
1163 1.45 thorpej inst = IFM_INST(media_current);
1164 1.45 thorpej
1165 1.45 thorpej /* Look up the subtype. */
1166 1.45 thorpej subtype = get_media_subtype(type, val);
1167 1.147 dsl if (subtype == -1)
1168 1.147 dsl media_error(type, val, "subtype");
1169 1.24 thorpej
1170 1.45 thorpej /* Build the new current media word. */
1171 1.45 thorpej media_current = IFM_MAKEWORD(type, subtype, 0, inst);
1172 1.24 thorpej
1173 1.45 thorpej /* Media will be set after other processing is complete. */
1174 1.24 thorpej }
1175 1.24 thorpej
1176 1.24 thorpej void
1177 1.145 dsl setmediaopt(const char *val, int d)
1178 1.24 thorpej {
1179 1.147 dsl char *invalid;
1180 1.24 thorpej
1181 1.45 thorpej init_current_media();
1182 1.24 thorpej
1183 1.45 thorpej /* Can only issue `mediaopt' once. */
1184 1.46 thorpej if (actions & A_MEDIAOPTSET)
1185 1.127 itojun errx(EXIT_FAILURE, "only one `mediaopt' command may be issued");
1186 1.26 thorpej
1187 1.47 thorpej /* Can't issue `mediaopt' if `instance' has already been issued. */
1188 1.47 thorpej if (actions & A_MEDIAINST)
1189 1.127 itojun errx(EXIT_FAILURE, "may not issue `mediaopt' after `instance'");
1190 1.47 thorpej
1191 1.147 dsl mediaopt_set = get_media_options(media_current, val, &invalid);
1192 1.147 dsl if (mediaopt_set == -1)
1193 1.147 dsl media_error(media_current, invalid, "option");
1194 1.24 thorpej
1195 1.45 thorpej /* Media will be set after other processing is complete. */
1196 1.45 thorpej }
1197 1.24 thorpej
1198 1.45 thorpej void
1199 1.145 dsl unsetmediaopt(const char *val, int d)
1200 1.45 thorpej {
1201 1.147 dsl char *invalid;
1202 1.26 thorpej
1203 1.45 thorpej init_current_media();
1204 1.26 thorpej
1205 1.45 thorpej /* Can only issue `-mediaopt' once. */
1206 1.46 thorpej if (actions & A_MEDIAOPTCLR)
1207 1.127 itojun errx(EXIT_FAILURE,
1208 1.127 itojun "only one `-mediaopt' command may be issued");
1209 1.26 thorpej
1210 1.45 thorpej /* May not issue `media' and `-mediaopt'. */
1211 1.46 thorpej if (actions & A_MEDIA)
1212 1.127 itojun errx(EXIT_FAILURE,
1213 1.127 itojun "may not issue both `media' and `-mediaopt'");
1214 1.24 thorpej
1215 1.47 thorpej /*
1216 1.47 thorpej * No need to check for A_MEDIAINST, since the test for A_MEDIA
1217 1.47 thorpej * implicitly checks for A_MEDIAINST.
1218 1.47 thorpej */
1219 1.47 thorpej
1220 1.147 dsl mediaopt_clear = get_media_options(media_current, val, &invalid);
1221 1.147 dsl if (mediaopt_clear == -1)
1222 1.147 dsl media_error(media_current, invalid, "option");
1223 1.24 thorpej
1224 1.45 thorpej /* Media will be set after other processing is complete. */
1225 1.24 thorpej }
1226 1.24 thorpej
1227 1.47 thorpej void
1228 1.145 dsl setmediainst(const char *val, int d)
1229 1.47 thorpej {
1230 1.47 thorpej int type, subtype, options, inst;
1231 1.47 thorpej
1232 1.47 thorpej init_current_media();
1233 1.47 thorpej
1234 1.47 thorpej /* Can only issue `instance' once. */
1235 1.47 thorpej if (actions & A_MEDIAINST)
1236 1.127 itojun errx(EXIT_FAILURE, "only one `instance' command may be issued");
1237 1.47 thorpej
1238 1.47 thorpej /* Must have already specified `media' */
1239 1.47 thorpej if ((actions & A_MEDIA) == 0)
1240 1.127 itojun errx(EXIT_FAILURE, "must specify `media' before `instance'");
1241 1.47 thorpej
1242 1.47 thorpej type = IFM_TYPE(media_current);
1243 1.47 thorpej subtype = IFM_SUBTYPE(media_current);
1244 1.47 thorpej options = IFM_OPTIONS(media_current);
1245 1.47 thorpej
1246 1.47 thorpej inst = atoi(val);
1247 1.47 thorpej if (inst < 0 || inst > IFM_INST_MAX)
1248 1.127 itojun errx(EXIT_FAILURE, "invalid media instance: %s", val);
1249 1.47 thorpej
1250 1.47 thorpej media_current = IFM_MAKEWORD(type, subtype, options, inst);
1251 1.47 thorpej
1252 1.47 thorpej /* Media will be set after other processing is complete. */
1253 1.47 thorpej }
1254 1.47 thorpej
1255 1.139 dyoung void
1256 1.145 dsl setmediamode(const char *val, int d)
1257 1.139 dyoung {
1258 1.139 dyoung int type, subtype, options, inst, mode;
1259 1.139 dyoung
1260 1.139 dyoung init_current_media();
1261 1.139 dyoung
1262 1.139 dyoung /* Can only issue `mode' once. */
1263 1.139 dyoung if (actions & A_MEDIAMODE)
1264 1.139 dyoung errx(EXIT_FAILURE, "only one `mode' command may be issued");
1265 1.139 dyoung
1266 1.139 dyoung type = IFM_TYPE(media_current);
1267 1.139 dyoung subtype = IFM_SUBTYPE(media_current);
1268 1.139 dyoung options = IFM_OPTIONS(media_current);
1269 1.139 dyoung inst = IFM_INST(media_current);
1270 1.139 dyoung
1271 1.147 dsl mode = get_media_mode(type, val);
1272 1.147 dsl if (mode == -1)
1273 1.147 dsl media_error(type, val, "mode");
1274 1.139 dyoung
1275 1.139 dyoung media_current = IFM_MAKEWORD(type, subtype, options, inst) | mode;
1276 1.139 dyoung
1277 1.139 dyoung /* Media will be set after other processing is complete. */
1278 1.139 dyoung }
1279 1.139 dyoung
1280 1.24 thorpej void
1281 1.147 dsl print_media_word(int ifmw, const char *opt_sep)
1282 1.24 thorpej {
1283 1.147 dsl const char *str;
1284 1.24 thorpej
1285 1.147 dsl printf("%s", get_media_subtype_string(ifmw));
1286 1.139 dyoung
1287 1.139 dyoung /* Find mode. */
1288 1.139 dyoung if (IFM_MODE(ifmw) != 0) {
1289 1.147 dsl str = get_media_mode_string(ifmw);
1290 1.147 dsl if (str != NULL)
1291 1.147 dsl printf(" mode %s", str);
1292 1.139 dyoung }
1293 1.24 thorpej
1294 1.24 thorpej /* Find options. */
1295 1.147 dsl for (; (str = get_media_option_string(&ifmw)) != NULL; opt_sep = ",")
1296 1.147 dsl printf("%s%s", opt_sep, str);
1297 1.147 dsl
1298 1.43 thorpej if (IFM_INST(ifmw) != 0)
1299 1.47 thorpej printf(" instance %d", IFM_INST(ifmw));
1300 1.24 thorpej }
1301 1.54 sommerfe
1302 1.145 dsl int
1303 1.145 dsl carrier(void)
1304 1.54 sommerfe {
1305 1.54 sommerfe struct ifmediareq ifmr;
1306 1.54 sommerfe
1307 1.54 sommerfe (void) memset(&ifmr, 0, sizeof(ifmr));
1308 1.172 elad estrlcpy(ifmr.ifm_name, name, sizeof(ifmr.ifm_name));
1309 1.54 sommerfe
1310 1.144 dsl if (ioctl(s, SIOCGIFMEDIA, &ifmr) == -1) {
1311 1.54 sommerfe /*
1312 1.54 sommerfe * Interface doesn't support SIOC{G,S}IFMEDIA;
1313 1.54 sommerfe * assume ok.
1314 1.54 sommerfe */
1315 1.54 sommerfe return 0;
1316 1.54 sommerfe }
1317 1.54 sommerfe if ((ifmr.ifm_status & IFM_AVALID) == 0) {
1318 1.54 sommerfe /*
1319 1.54 sommerfe * Interface doesn't report media-valid status.
1320 1.54 sommerfe * assume ok.
1321 1.54 sommerfe */
1322 1.54 sommerfe return 0;
1323 1.54 sommerfe }
1324 1.54 sommerfe /* otherwise, return ok for active, not-ok if not active. */
1325 1.54 sommerfe return !(ifmr.ifm_status & IFM_ACTIVE);
1326 1.54 sommerfe }
1327 1.54 sommerfe
1328 1.24 thorpej
1329 1.63 thorpej const int ifm_status_valid_list[] = IFM_STATUS_VALID_LIST;
1330 1.63 thorpej
1331 1.63 thorpej const struct ifmedia_status_description ifm_status_descriptions[] =
1332 1.63 thorpej IFM_STATUS_DESCRIPTIONS;
1333 1.63 thorpej
1334 1.1 cgd /*
1335 1.1 cgd * Print the status of the interface. If an address family was
1336 1.1 cgd * specified, show it and it only; otherwise, show them all.
1337 1.1 cgd */
1338 1.16 cgd void
1339 1.145 dsl status(const struct sockaddr_dl *sdl)
1340 1.1 cgd {
1341 1.160 thorpej const struct afswtch *p = afp;
1342 1.24 thorpej struct ifmediareq ifmr;
1343 1.124 matt struct ifdatareq ifdr;
1344 1.24 thorpej int *media_list, i;
1345 1.119 bjh21 char hbuf[NI_MAXHOST];
1346 1.130 christos char fbuf[BUFSIZ];
1347 1.1 cgd
1348 1.130 christos (void)snprintb(fbuf, sizeof(fbuf), IFFBITS, flags);
1349 1.130 christos printf("%s: flags=%s", name, &fbuf[2]);
1350 1.1 cgd if (metric)
1351 1.125 itojun printf(" metric %lu", metric);
1352 1.33 is if (mtu)
1353 1.125 itojun printf(" mtu %lu", mtu);
1354 1.147 dsl printf("\n");
1355 1.108 thorpej
1356 1.108 thorpej if (g_ifcr.ifcr_capabilities) {
1357 1.130 christos (void)snprintb(fbuf, sizeof(fbuf), IFCAPBITS,
1358 1.130 christos g_ifcr.ifcr_capabilities);
1359 1.130 christos printf("\tcapabilities=%s\n", &fbuf[2]);
1360 1.130 christos (void)snprintb(fbuf, sizeof(fbuf), IFCAPBITS,
1361 1.130 christos g_ifcr.ifcr_capenable);
1362 1.130 christos printf("\tenabled=%s\n", &fbuf[2]);
1363 1.108 thorpej }
1364 1.65 thorpej
1365 1.65 thorpej ieee80211_status();
1366 1.89 thorpej vlan_status();
1367 1.171 liamjfoy #ifndef INET_ONLY
1368 1.171 liamjfoy carp_status();
1369 1.171 liamjfoy #endif
1370 1.80 thorpej tunnel_status();
1371 1.153 yamt agr_status();
1372 1.65 thorpej
1373 1.119 bjh21 if (sdl != NULL &&
1374 1.150 xtraeme getnameinfo((const struct sockaddr *)sdl, sdl->sdl_len,
1375 1.119 bjh21 hbuf, sizeof(hbuf), NULL, 0, NI_NUMERICHOST) == 0 &&
1376 1.119 bjh21 hbuf[0] != '\0')
1377 1.119 bjh21 printf("\taddress: %s\n", hbuf);
1378 1.24 thorpej
1379 1.32 christos (void) memset(&ifmr, 0, sizeof(ifmr));
1380 1.172 elad estrlcpy(ifmr.ifm_name, name, sizeof(ifmr.ifm_name));
1381 1.24 thorpej
1382 1.144 dsl if (ioctl(s, SIOCGIFMEDIA, &ifmr) == -1) {
1383 1.24 thorpej /*
1384 1.24 thorpej * Interface doesn't support SIOC{G,S}IFMEDIA.
1385 1.24 thorpej */
1386 1.124 matt goto iface_stats;
1387 1.24 thorpej }
1388 1.24 thorpej
1389 1.24 thorpej if (ifmr.ifm_count == 0) {
1390 1.29 thorpej warnx("%s: no media types?", name);
1391 1.124 matt goto iface_stats;
1392 1.24 thorpej }
1393 1.24 thorpej
1394 1.24 thorpej media_list = (int *)malloc(ifmr.ifm_count * sizeof(int));
1395 1.24 thorpej if (media_list == NULL)
1396 1.120 atatat err(EXIT_FAILURE, "malloc");
1397 1.24 thorpej ifmr.ifm_ulist = media_list;
1398 1.24 thorpej
1399 1.144 dsl if (ioctl(s, SIOCGIFMEDIA, &ifmr) == -1)
1400 1.120 atatat err(EXIT_FAILURE, "SIOCGIFMEDIA");
1401 1.24 thorpej
1402 1.147 dsl printf("\tmedia: %s ", get_media_type_string(ifmr.ifm_current));
1403 1.147 dsl print_media_word(ifmr.ifm_current, " ");
1404 1.24 thorpej if (ifmr.ifm_active != ifmr.ifm_current) {
1405 1.147 dsl printf(" (");
1406 1.147 dsl print_media_word(ifmr.ifm_active, " ");
1407 1.147 dsl printf(")");
1408 1.24 thorpej }
1409 1.147 dsl printf("\n");
1410 1.24 thorpej
1411 1.63 thorpej if (ifmr.ifm_status & IFM_STATUS_VALID) {
1412 1.63 thorpej const struct ifmedia_status_description *ifms;
1413 1.63 thorpej int bitno, found = 0;
1414 1.63 thorpej
1415 1.42 thorpej printf("\tstatus: ");
1416 1.63 thorpej for (bitno = 0; ifm_status_valid_list[bitno] != 0; bitno++) {
1417 1.63 thorpej for (ifms = ifm_status_descriptions;
1418 1.63 thorpej ifms->ifms_valid != 0; ifms++) {
1419 1.63 thorpej if (ifms->ifms_type !=
1420 1.66 thorpej IFM_TYPE(ifmr.ifm_current) ||
1421 1.63 thorpej ifms->ifms_valid !=
1422 1.63 thorpej ifm_status_valid_list[bitno])
1423 1.63 thorpej continue;
1424 1.63 thorpej printf("%s%s", found ? ", " : "",
1425 1.63 thorpej IFM_STATUS_DESC(ifms, ifmr.ifm_status));
1426 1.63 thorpej found = 1;
1427 1.63 thorpej
1428 1.63 thorpej /*
1429 1.63 thorpej * For each valid indicator bit, there's
1430 1.63 thorpej * only one entry for each media type, so
1431 1.63 thorpej * terminate the inner loop now.
1432 1.63 thorpej */
1433 1.63 thorpej break;
1434 1.63 thorpej }
1435 1.63 thorpej }
1436 1.24 thorpej
1437 1.63 thorpej if (found == 0)
1438 1.42 thorpej printf("unknown");
1439 1.147 dsl printf("\n");
1440 1.24 thorpej }
1441 1.24 thorpej
1442 1.24 thorpej if (mflag) {
1443 1.44 thorpej int type, printed_type;
1444 1.44 thorpej
1445 1.44 thorpej for (type = IFM_NMIN; type <= IFM_NMAX; type += IFM_NMIN) {
1446 1.44 thorpej for (i = 0, printed_type = 0; i < ifmr.ifm_count; i++) {
1447 1.147 dsl if (IFM_TYPE(media_list[i]) != type)
1448 1.147 dsl continue;
1449 1.147 dsl if (printed_type == 0) {
1450 1.147 dsl printf("\tsupported %s media:\n",
1451 1.147 dsl get_media_type_string(type));
1452 1.147 dsl printed_type = 1;
1453 1.44 thorpej }
1454 1.147 dsl printf("\t\tmedia ");
1455 1.147 dsl print_media_word(media_list[i], " mediaopt ");
1456 1.147 dsl printf("\n");
1457 1.44 thorpej }
1458 1.24 thorpej }
1459 1.24 thorpej }
1460 1.24 thorpej
1461 1.24 thorpej free(media_list);
1462 1.24 thorpej
1463 1.124 matt iface_stats:
1464 1.134 perry if (!vflag && !zflag)
1465 1.124 matt goto proto_status;
1466 1.124 matt
1467 1.172 elad estrlcpy(ifdr.ifdr_name, name, sizeof(ifdr.ifdr_name));
1468 1.124 matt
1469 1.144 dsl if (ioctl(s, zflag ? SIOCZIFDATA:SIOCGIFDATA, &ifdr) == -1) {
1470 1.134 perry err(EXIT_FAILURE, zflag ? "SIOCZIFDATA" : "SIOCGIFDATA");
1471 1.134 perry } else {
1472 1.124 matt struct if_data * const ifi = &ifdr.ifdr_data;
1473 1.169 rpaulo char buf[5];
1474 1.169 rpaulo
1475 1.124 matt #define PLURAL(n) ((n) == 1 ? "" : "s")
1476 1.169 rpaulo #define PLURALSTR(s) ((atof(s)) == 1.0 ? "" : "s")
1477 1.169 rpaulo printf("\tinput: %llu packet%s, ",
1478 1.124 matt (unsigned long long) ifi->ifi_ipackets,
1479 1.169 rpaulo PLURAL(ifi->ifi_ipackets));
1480 1.169 rpaulo if (hflag) {
1481 1.169 rpaulo (void) humanize_number(buf, sizeof(buf),
1482 1.169 rpaulo (int64_t) ifi->ifi_ibytes, "", HN_AUTOSCALE,
1483 1.169 rpaulo HN_NOSPACE | HN_DECIMAL);
1484 1.169 rpaulo printf("%s byte%s", buf,
1485 1.169 rpaulo PLURALSTR(buf));
1486 1.169 rpaulo } else
1487 1.169 rpaulo printf("%llu byte%s",
1488 1.169 rpaulo (unsigned long long) ifi->ifi_ibytes,
1489 1.169 rpaulo PLURAL(ifi->ifi_ibytes));
1490 1.124 matt if (ifi->ifi_imcasts)
1491 1.124 matt printf(", %llu multicast%s",
1492 1.124 matt (unsigned long long) ifi->ifi_imcasts,
1493 1.124 matt PLURAL(ifi->ifi_imcasts));
1494 1.124 matt if (ifi->ifi_ierrors)
1495 1.124 matt printf(", %llu error%s",
1496 1.124 matt (unsigned long long) ifi->ifi_ierrors,
1497 1.124 matt PLURAL(ifi->ifi_ierrors));
1498 1.124 matt if (ifi->ifi_iqdrops)
1499 1.124 matt printf(", %llu queue drop%s",
1500 1.124 matt (unsigned long long) ifi->ifi_iqdrops,
1501 1.124 matt PLURAL(ifi->ifi_iqdrops));
1502 1.124 matt if (ifi->ifi_noproto)
1503 1.124 matt printf(", %llu unknown protocol",
1504 1.124 matt (unsigned long long) ifi->ifi_noproto);
1505 1.169 rpaulo printf("\n\toutput: %llu packet%s, ",
1506 1.124 matt (unsigned long long) ifi->ifi_opackets,
1507 1.169 rpaulo PLURAL(ifi->ifi_opackets));
1508 1.169 rpaulo if (hflag) {
1509 1.169 rpaulo (void) humanize_number(buf, sizeof(buf),
1510 1.169 rpaulo (int64_t) ifi->ifi_obytes, "", HN_AUTOSCALE,
1511 1.169 rpaulo HN_NOSPACE | HN_DECIMAL);
1512 1.169 rpaulo printf("%s byte%s", buf,
1513 1.169 rpaulo PLURALSTR(buf));
1514 1.169 rpaulo } else
1515 1.169 rpaulo printf("%llu byte%s",
1516 1.169 rpaulo (unsigned long long) ifi->ifi_obytes,
1517 1.169 rpaulo PLURAL(ifi->ifi_obytes));
1518 1.124 matt if (ifi->ifi_omcasts)
1519 1.124 matt printf(", %llu multicast%s",
1520 1.124 matt (unsigned long long) ifi->ifi_omcasts,
1521 1.124 matt PLURAL(ifi->ifi_omcasts));
1522 1.124 matt if (ifi->ifi_oerrors)
1523 1.124 matt printf(", %llu error%s",
1524 1.124 matt (unsigned long long) ifi->ifi_oerrors,
1525 1.124 matt PLURAL(ifi->ifi_oerrors));
1526 1.124 matt if (ifi->ifi_collisions)
1527 1.124 matt printf(", %llu collision%s",
1528 1.124 matt (unsigned long long) ifi->ifi_collisions,
1529 1.124 matt PLURAL(ifi->ifi_collisions));
1530 1.124 matt printf("\n");
1531 1.124 matt #undef PLURAL
1532 1.169 rpaulo #undef PLURALSTR
1533 1.124 matt }
1534 1.124 matt
1535 1.149 dyoung ieee80211_statistics();
1536 1.149 dyoung
1537 1.24 thorpej proto_status:
1538 1.1 cgd if ((p = afp) != NULL) {
1539 1.1 cgd (*p->af_status)(1);
1540 1.1 cgd } else for (p = afs; p->af_name; p++) {
1541 1.1 cgd ifr.ifr_addr.sa_family = p->af_af;
1542 1.1 cgd (*p->af_status)(0);
1543 1.49 christos }
1544 1.49 christos }
1545 1.49 christos
1546 1.49 christos void
1547 1.145 dsl setifprefixlen(const char *addr, int d)
1548 1.53 itojun {
1549 1.53 itojun if (*afp->af_getprefix)
1550 1.53 itojun (*afp->af_getprefix)(addr, MASK);
1551 1.53 itojun explicit_prefix = 1;
1552 1.53 itojun }
1553 1.53 itojun
1554 1.18 glass void
1555 1.145 dsl usage(void)
1556 1.18 glass {
1557 1.99 cgd const char *progname = getprogname();
1558 1.80 thorpej
1559 1.31 thorpej fprintf(stderr,
1560 1.169 rpaulo "usage: %s [-h] [-m] [-v] [-z] "
1561 1.53 itojun #ifdef INET6
1562 1.134 perry "[-L] "
1563 1.53 itojun #endif
1564 1.80 thorpej "interface\n"
1565 1.105 itojun "\t[ af [ address [ dest_addr ] ] [ netmask mask ] [ prefixlen n ]\n"
1566 1.105 itojun "\t\t[ alias | -alias ] ]\n"
1567 1.104 itojun "\t[ up ] [ down ] [ metric n ] [ mtu n ]\n"
1568 1.93 onoe "\t[ nwid network_id ] [ nwkey network_key | -nwkey ]\n"
1569 1.181 degroote "\t[ list scan ]\n"
1570 1.93 onoe "\t[ powersave | -powersave ] [ powersavesleep duration ]\n"
1571 1.170 rpaulo "\t[ hidessid | -hidessid ] [ apbridge | -apbridge ]\n"
1572 1.93 onoe "\t[ [ af ] tunnel src_addr dest_addr ] [ deletetunnel ]\n"
1573 1.80 thorpej "\t[ arp | -arp ]\n"
1574 1.93 onoe "\t[ media type ] [ mediaopt opts ] [ -mediaopt opts ] "
1575 1.93 onoe "[ instance minst ]\n"
1576 1.178 dyoung "\t[ preference n ]\n"
1577 1.89 thorpej "\t[ vlan n vlanif i ]\n"
1578 1.154 yamt "\t[ agrport i ] [ -agrport i ]\n"
1579 1.104 itojun "\t[ anycast | -anycast ] [ deprecated | -deprecated ]\n"
1580 1.127 itojun "\t[ tentative | -tentative ] [ pltime n ] [ vltime n ] [ eui64 ]\n"
1581 1.80 thorpej "\t[ link0 | -link0 ] [ link1 | -link1 ] [ link2 | -link2 ]\n"
1582 1.169 rpaulo " %s -a [-b] [-h] [-m] [-d] [-u] [-v] [-z] [ af ]\n"
1583 1.134 perry " %s -l [-b] [-d] [-u] [-s]\n"
1584 1.101 christos " %s -C\n"
1585 1.81 thorpej " %s interface create\n"
1586 1.81 thorpej " %s interface destroy\n",
1587 1.101 christos progname, progname, progname, progname, progname, progname);
1588 1.18 glass exit(1);
1589 1.1 cgd }
1590