]> git.proxmox.com Git - mirror_iproute2.git/blob - ip/ip.c
ip: add MACsec support
[mirror_iproute2.git] / ip / ip.c
1 /*
2 * ip.c "ip" utility frontend.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
8 *
9 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
10 */
11
12 #include <stdio.h>
13 #include <stdlib.h>
14 #include <unistd.h>
15 #include <syslog.h>
16 #include <fcntl.h>
17 #include <sys/socket.h>
18 #include <netinet/in.h>
19 #include <string.h>
20 #include <errno.h>
21
22 #include "SNAPSHOT.h"
23 #include "utils.h"
24 #include "ip_common.h"
25 #include "namespace.h"
26 #include "color.h"
27
28 int preferred_family = AF_UNSPEC;
29 int human_readable;
30 int use_iec;
31 int show_stats;
32 int show_details;
33 int resolve_hosts;
34 int oneline;
35 int brief;
36 int timestamp;
37 const char *_SL_;
38 int force;
39 int max_flush_loops = 10;
40 int batch_mode;
41 bool do_all;
42
43 struct rtnl_handle rth = { .fd = -1 };
44
45 static void usage(void) __attribute__((noreturn));
46
47 static void usage(void)
48 {
49 fprintf(stderr,
50 "Usage: ip [ OPTIONS ] OBJECT { COMMAND | help }\n"
51 " ip [ -force ] -batch filename\n"
52 "where OBJECT := { link | address | addrlabel | route | rule | neigh | ntable |\n"
53 " tunnel | tuntap | maddress | mroute | mrule | monitor | xfrm |\n"
54 " netns | l2tp | fou | macsec | tcp_metrics | token | netconf }\n"
55 " OPTIONS := { -V[ersion] | -s[tatistics] | -d[etails] | -r[esolve] |\n"
56 " -h[uman-readable] | -iec |\n"
57 " -f[amily] { inet | inet6 | ipx | dnet | mpls | bridge | link } |\n"
58 " -4 | -6 | -I | -D | -B | -0 |\n"
59 " -l[oops] { maximum-addr-flush-attempts } | -br[ief] |\n"
60 " -o[neline] | -t[imestamp] | -ts[hort] | -b[atch] [filename] |\n"
61 " -rc[vbuf] [size] | -n[etns] name | -a[ll] | -c[olor]}\n");
62 exit(-1);
63 }
64
65 static int do_help(int argc, char **argv)
66 {
67 usage();
68 return 0;
69 }
70
71 static const struct cmd {
72 const char *cmd;
73 int (*func)(int argc, char **argv);
74 } cmds[] = {
75 { "address", do_ipaddr },
76 { "addrlabel", do_ipaddrlabel },
77 { "maddress", do_multiaddr },
78 { "route", do_iproute },
79 { "rule", do_iprule },
80 { "neighbor", do_ipneigh },
81 { "neighbour", do_ipneigh },
82 { "ntable", do_ipntable },
83 { "ntbl", do_ipntable },
84 { "link", do_iplink },
85 { "l2tp", do_ipl2tp },
86 { "fou", do_ipfou },
87 { "macsec", do_ipmacsec },
88 { "tunnel", do_iptunnel },
89 { "tunl", do_iptunnel },
90 { "tuntap", do_iptuntap },
91 { "tap", do_iptuntap },
92 { "token", do_iptoken },
93 { "tcpmetrics", do_tcp_metrics },
94 { "tcp_metrics", do_tcp_metrics },
95 { "monitor", do_ipmonitor },
96 { "xfrm", do_xfrm },
97 { "mroute", do_multiroute },
98 { "mrule", do_multirule },
99 { "netns", do_netns },
100 { "netconf", do_ipnetconf },
101 { "help", do_help },
102 { 0 }
103 };
104
105 static int do_cmd(const char *argv0, int argc, char **argv)
106 {
107 const struct cmd *c;
108
109 for (c = cmds; c->cmd; ++c) {
110 if (matches(argv0, c->cmd) == 0)
111 return -(c->func(argc-1, argv+1));
112 }
113
114 fprintf(stderr, "Object \"%s\" is unknown, try \"ip help\".\n", argv0);
115 return EXIT_FAILURE;
116 }
117
118 static int batch(const char *name)
119 {
120 char *line = NULL;
121 size_t len = 0;
122 int ret = EXIT_SUCCESS;
123 int orig_family = preferred_family;
124
125 batch_mode = 1;
126
127 if (name && strcmp(name, "-") != 0) {
128 if (freopen(name, "r", stdin) == NULL) {
129 fprintf(stderr,
130 "Cannot open file \"%s\" for reading: %s\n",
131 name, strerror(errno));
132 return EXIT_FAILURE;
133 }
134 }
135
136 if (rtnl_open(&rth, 0) < 0) {
137 fprintf(stderr, "Cannot open rtnetlink\n");
138 return EXIT_FAILURE;
139 }
140
141 cmdlineno = 0;
142 while (getcmdline(&line, &len, stdin) != -1) {
143 char *largv[100];
144 int largc;
145
146 preferred_family = orig_family;
147
148 largc = makeargs(line, largv, 100);
149 if (largc == 0)
150 continue; /* blank line */
151
152 if (do_cmd(largv[0], largc, largv)) {
153 fprintf(stderr, "Command failed %s:%d\n",
154 name, cmdlineno);
155 ret = EXIT_FAILURE;
156 if (!force)
157 break;
158 }
159 }
160 if (line)
161 free(line);
162
163 rtnl_close(&rth);
164 return ret;
165 }
166
167
168 int main(int argc, char **argv)
169 {
170 char *basename;
171 char *batch_file = NULL;
172
173 basename = strrchr(argv[0], '/');
174 if (basename == NULL)
175 basename = argv[0];
176 else
177 basename++;
178
179 while (argc > 1) {
180 char *opt = argv[1];
181
182 if (strcmp(opt, "--") == 0) {
183 argc--; argv++;
184 break;
185 }
186 if (opt[0] != '-')
187 break;
188 if (opt[1] == '-')
189 opt++;
190 if (matches(opt, "-loops") == 0) {
191 argc--;
192 argv++;
193 if (argc <= 1)
194 usage();
195 max_flush_loops = atoi(argv[1]);
196 } else if (matches(opt, "-family") == 0) {
197 argc--;
198 argv++;
199 if (argc <= 1)
200 usage();
201 if (strcmp(argv[1], "help") == 0)
202 usage();
203 else
204 preferred_family = read_family(argv[1]);
205 if (preferred_family == AF_UNSPEC)
206 invarg("invalid protocol family", argv[1]);
207 } else if (strcmp(opt, "-4") == 0) {
208 preferred_family = AF_INET;
209 } else if (strcmp(opt, "-6") == 0) {
210 preferred_family = AF_INET6;
211 } else if (strcmp(opt, "-0") == 0) {
212 preferred_family = AF_PACKET;
213 } else if (strcmp(opt, "-I") == 0) {
214 preferred_family = AF_IPX;
215 } else if (strcmp(opt, "-D") == 0) {
216 preferred_family = AF_DECnet;
217 } else if (strcmp(opt, "-M") == 0) {
218 preferred_family = AF_MPLS;
219 } else if (strcmp(opt, "-B") == 0) {
220 preferred_family = AF_BRIDGE;
221 } else if (matches(opt, "-human") == 0 ||
222 matches(opt, "-human-readable") == 0) {
223 ++human_readable;
224 } else if (matches(opt, "-iec") == 0) {
225 ++use_iec;
226 } else if (matches(opt, "-stats") == 0 ||
227 matches(opt, "-statistics") == 0) {
228 ++show_stats;
229 } else if (matches(opt, "-details") == 0) {
230 ++show_details;
231 } else if (matches(opt, "-resolve") == 0) {
232 ++resolve_hosts;
233 } else if (matches(opt, "-oneline") == 0) {
234 ++oneline;
235 } else if (matches(opt, "-timestamp") == 0) {
236 ++timestamp;
237 } else if (matches(opt, "-tshort") == 0) {
238 ++timestamp;
239 ++timestamp_short;
240 #if 0
241 } else if (matches(opt, "-numeric") == 0) {
242 rtnl_names_numeric++;
243 #endif
244 } else if (matches(opt, "-Version") == 0) {
245 printf("ip utility, iproute2-ss%s\n", SNAPSHOT);
246 exit(0);
247 } else if (matches(opt, "-force") == 0) {
248 ++force;
249 } else if (matches(opt, "-batch") == 0) {
250 argc--;
251 argv++;
252 if (argc <= 1)
253 usage();
254 batch_file = argv[1];
255 } else if (matches(opt, "-brief") == 0) {
256 ++brief;
257 } else if (matches(opt, "-rcvbuf") == 0) {
258 unsigned int size;
259
260 argc--;
261 argv++;
262 if (argc <= 1)
263 usage();
264 if (get_unsigned(&size, argv[1], 0)) {
265 fprintf(stderr, "Invalid rcvbuf size '%s'\n",
266 argv[1]);
267 exit(-1);
268 }
269 rcvbuf = size;
270 } else if (matches(opt, "-color") == 0) {
271 enable_color();
272 } else if (matches(opt, "-help") == 0) {
273 usage();
274 } else if (matches(opt, "-netns") == 0) {
275 NEXT_ARG();
276 if (netns_switch(argv[1]))
277 exit(-1);
278 } else if (matches(opt, "-all") == 0) {
279 do_all = true;
280 } else {
281 fprintf(stderr,
282 "Option \"%s\" is unknown, try \"ip -help\".\n",
283 opt);
284 exit(-1);
285 }
286 argc--; argv++;
287 }
288
289 _SL_ = oneline ? "\\" : "\n";
290
291 if (batch_file)
292 return batch(batch_file);
293
294 if (rtnl_open(&rth, 0) < 0)
295 exit(1);
296
297 if (strlen(basename) > 2)
298 return do_cmd(basename+2, argc, argv);
299
300 if (argc > 1)
301 return do_cmd(argv[1], argc-1, argv+1);
302
303 rtnl_close(&rth);
304 usage();
305 }