]> git.proxmox.com Git - mirror_iproute2.git/blob - ip/ipfou.c
0cb5e3c7a0c7c8504286320a3df312ad9c6578bb
[mirror_iproute2.git] / ip / ipfou.c
1 /*
2 * ipfou.c FOU (foo over UDP) support
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: Tom Herbert <therbert@google.com>
10 */
11
12 #include <netdb.h>
13 #include <stdio.h>
14 #include <stdlib.h>
15 #include <string.h>
16 #include <net/if.h>
17 #include <linux/fou.h>
18 #include <linux/genetlink.h>
19 #include <linux/ip.h>
20 #include <arpa/inet.h>
21
22 #include "libgenl.h"
23 #include "utils.h"
24 #include "ip_common.h"
25 #include "json_print.h"
26
27 static void usage(void)
28 {
29 fprintf(stderr,
30 "Usage: ip fou add port PORT { ipproto PROTO | gue } [ -6 ]\n"
31 " ip fou del port PORT [ -6 ]\n"
32 " ip fou show\n"
33 "\n"
34 "Where: PROTO { ipproto-name | 1..255 }\n"
35 " PORT { 1..65535 }\n");
36
37 exit(-1);
38 }
39
40 /* netlink socket */
41 static struct rtnl_handle genl_rth = { .fd = -1 };
42 static int genl_family = -1;
43
44 #define FOU_REQUEST(_req, _bufsiz, _cmd, _flags) \
45 GENL_REQUEST(_req, _bufsiz, genl_family, 0, \
46 FOU_GENL_VERSION, _cmd, _flags)
47
48 static int fou_parse_opt(int argc, char **argv, struct nlmsghdr *n,
49 bool adding)
50 {
51 __u16 port;
52 int port_set = 0;
53 __u8 ipproto, type;
54 bool gue_set = false;
55 int ipproto_set = 0;
56 __u8 family = AF_INET;
57
58 while (argc > 0) {
59 if (!matches(*argv, "port")) {
60 NEXT_ARG();
61
62 if (get_be16(&port, *argv, 0) || port == 0)
63 invarg("invalid port", *argv);
64 port_set = 1;
65 } else if (!matches(*argv, "ipproto")) {
66 struct protoent *servptr;
67
68 NEXT_ARG();
69
70 servptr = getprotobyname(*argv);
71 if (servptr)
72 ipproto = servptr->p_proto;
73 else if (get_u8(&ipproto, *argv, 0) || ipproto == 0)
74 invarg("invalid ipproto", *argv);
75 ipproto_set = 1;
76 } else if (!matches(*argv, "gue")) {
77 gue_set = true;
78 } else if (!matches(*argv, "-6")) {
79 family = AF_INET6;
80 } else {
81 fprintf(stderr
82 , "fou: unknown command \"%s\"?\n", *argv);
83 usage();
84 return -1;
85 }
86 argc--, argv++;
87 }
88
89 if (!port_set) {
90 fprintf(stderr, "fou: missing port\n");
91 return -1;
92 }
93
94 if (!ipproto_set && !gue_set && adding) {
95 fprintf(stderr, "fou: must set ipproto or gue\n");
96 return -1;
97 }
98
99 if (ipproto_set && gue_set) {
100 fprintf(stderr, "fou: cannot set ipproto and gue\n");
101 return -1;
102 }
103
104 type = gue_set ? FOU_ENCAP_GUE : FOU_ENCAP_DIRECT;
105
106 addattr16(n, 1024, FOU_ATTR_PORT, port);
107 addattr8(n, 1024, FOU_ATTR_TYPE, type);
108 addattr8(n, 1024, FOU_ATTR_AF, family);
109
110 if (ipproto_set)
111 addattr8(n, 1024, FOU_ATTR_IPPROTO, ipproto);
112
113 return 0;
114 }
115
116 static int do_add(int argc, char **argv)
117 {
118 FOU_REQUEST(req, 1024, FOU_CMD_ADD, NLM_F_REQUEST);
119
120 fou_parse_opt(argc, argv, &req.n, true);
121
122 if (rtnl_talk(&genl_rth, &req.n, NULL) < 0)
123 return -2;
124
125 return 0;
126 }
127
128 static int do_del(int argc, char **argv)
129 {
130 FOU_REQUEST(req, 1024, FOU_CMD_DEL, NLM_F_REQUEST);
131
132 fou_parse_opt(argc, argv, &req.n, false);
133
134 if (rtnl_talk(&genl_rth, &req.n, NULL) < 0)
135 return -2;
136
137 return 0;
138 }
139
140 static int print_fou_mapping(const struct sockaddr_nl *who,
141 struct nlmsghdr *n, void *arg)
142 {
143 struct genlmsghdr *ghdr;
144 struct rtattr *tb[FOU_ATTR_MAX + 1];
145 int len = n->nlmsg_len;
146
147 if (n->nlmsg_type != genl_family)
148 return 0;
149
150 len -= NLMSG_LENGTH(GENL_HDRLEN);
151 if (len < 0)
152 return -1;
153
154 ghdr = NLMSG_DATA(n);
155 parse_rtattr(tb, FOU_ATTR_MAX, (void *) ghdr + GENL_HDRLEN, len);
156
157 open_json_object(NULL);
158 if (tb[FOU_ATTR_PORT])
159 print_uint(PRINT_ANY, "port", "port %u",
160 ntohs(rta_getattr_u16(tb[FOU_ATTR_PORT])));
161
162 if (tb[FOU_ATTR_TYPE] &&
163 rta_getattr_u8(tb[FOU_ATTR_TYPE]) == FOU_ENCAP_GUE)
164 print_null(PRINT_ANY, "gue", " gue", NULL);
165 else if (tb[FOU_ATTR_IPPROTO])
166 print_uint(PRINT_ANY, "ipproto",
167 " ipproto %u", rta_getattr_u8(tb[FOU_ATTR_IPPROTO]));
168
169 if (tb[FOU_ATTR_AF]) {
170 __u8 family = rta_getattr_u8(tb[FOU_ATTR_AF]);
171
172 print_string(PRINT_JSON, "family", NULL,
173 family_name(family));
174
175 if (family == AF_INET6)
176 print_string(PRINT_FP, NULL,
177 " -6", NULL);
178 }
179 print_string(PRINT_FP, NULL, "\n", NULL);
180 close_json_object();
181
182 return 0;
183 }
184
185 static int do_show(int argc, char **argv)
186 {
187 FOU_REQUEST(req, 4096, FOU_CMD_GET, NLM_F_REQUEST | NLM_F_DUMP);
188
189 if (argc > 0) {
190 fprintf(stderr,
191 "\"ip fou show\" does not take any arguments.\n");
192 return -1;
193 }
194
195 if (rtnl_send(&genl_rth, &req.n, req.n.nlmsg_len) < 0) {
196 perror("Cannot send show request");
197 exit(1);
198 }
199
200 new_json_obj(json);
201 if (rtnl_dump_filter(&genl_rth, print_fou_mapping, stdout) < 0) {
202 fprintf(stderr, "Dump terminated\n");
203 return 1;
204 }
205 delete_json_obj();
206 fflush(stdout);
207
208 return 0;
209 }
210
211 int do_ipfou(int argc, char **argv)
212 {
213 if (argc < 1)
214 usage();
215
216 if (matches(*argv, "help") == 0)
217 usage();
218
219 if (genl_init_handle(&genl_rth, FOU_GENL_NAME, &genl_family))
220 exit(1);
221
222 if (matches(*argv, "add") == 0)
223 return do_add(argc-1, argv+1);
224 if (matches(*argv, "delete") == 0)
225 return do_del(argc-1, argv+1);
226 if (matches(*argv, "show") == 0)
227 return do_show(argc-1, argv+1);
228
229 fprintf(stderr,
230 "Command \"%s\" is unknown, try \"ip fou help\".\n", *argv);
231 exit(-1);
232 }