]> git.proxmox.com Git - mirror_iproute2.git/blame - ip/ipfou.c
bridge: fdb: add support for src_vni option
[mirror_iproute2.git] / ip / ipfou.c
CommitLineData
6928747b
TH
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"
41b99db1 25#include "json_print.h"
6928747b
TH
26
27static void usage(void)
28{
5c92c2ee
SH
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");
6928747b
TH
36
37 exit(-1);
38}
39
40/* netlink socket */
41static struct rtnl_handle genl_rth = { .fd = -1 };
42static 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
48static 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;
33f6dd23 56 __u8 family = AF_INET;
6928747b
TH
57
58 while (argc > 0) {
59 if (!matches(*argv, "port")) {
60 NEXT_ARG();
61
9f7401fa 62 if (get_be16(&port, *argv, 0) || port == 0)
6928747b 63 invarg("invalid port", *argv);
6928747b
TH
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;
8bd31d8d
TH
78 } else if (!matches(*argv, "-6")) {
79 family = AF_INET6;
6928747b 80 } else {
5c92c2ee
SH
81 fprintf(stderr
82 , "fou: unknown command \"%s\"?\n", *argv);
6928747b
TH
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);
33f6dd23 108 addattr8(n, 1024, FOU_ATTR_AF, family);
6928747b
TH
109
110 if (ipproto_set)
111 addattr8(n, 1024, FOU_ATTR_IPPROTO, ipproto);
112
113 return 0;
114}
115
116static 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
86bf43c7 122 if (rtnl_talk(&genl_rth, &req.n, NULL) < 0)
6928747b
TH
123 return -2;
124
125 return 0;
126}
127
128static 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
86bf43c7 134 if (rtnl_talk(&genl_rth, &req.n, NULL) < 0)
6928747b
TH
135 return -2;
136
137 return 0;
138}
139
cd554f2c 140static int print_fou_mapping(struct nlmsghdr *n, void *arg)
cf4caf33 141{
cf4caf33
GG
142 struct genlmsghdr *ghdr;
143 struct rtattr *tb[FOU_ATTR_MAX + 1];
144 int len = n->nlmsg_len;
cf4caf33
GG
145
146 if (n->nlmsg_type != genl_family)
147 return 0;
148
149 len -= NLMSG_LENGTH(GENL_HDRLEN);
150 if (len < 0)
151 return -1;
152
153 ghdr = NLMSG_DATA(n);
154 parse_rtattr(tb, FOU_ATTR_MAX, (void *) ghdr + GENL_HDRLEN, len);
155
41b99db1 156 open_json_object(NULL);
cf4caf33 157 if (tb[FOU_ATTR_PORT])
41b99db1
SH
158 print_uint(PRINT_ANY, "port", "port %u",
159 ntohs(rta_getattr_u16(tb[FOU_ATTR_PORT])));
160
161 if (tb[FOU_ATTR_TYPE] &&
162 rta_getattr_u8(tb[FOU_ATTR_TYPE]) == FOU_ENCAP_GUE)
163 print_null(PRINT_ANY, "gue", " gue", NULL);
cf4caf33 164 else if (tb[FOU_ATTR_IPPROTO])
41b99db1
SH
165 print_uint(PRINT_ANY, "ipproto",
166 " ipproto %u", rta_getattr_u8(tb[FOU_ATTR_IPPROTO]));
167
cf4caf33 168 if (tb[FOU_ATTR_AF]) {
41b99db1
SH
169 __u8 family = rta_getattr_u8(tb[FOU_ATTR_AF]);
170
171 print_string(PRINT_JSON, "family", NULL,
172 family_name(family));
173
cf4caf33 174 if (family == AF_INET6)
41b99db1
SH
175 print_string(PRINT_FP, NULL,
176 " -6", NULL);
cf4caf33 177 }
41b99db1
SH
178 print_string(PRINT_FP, NULL, "\n", NULL);
179 close_json_object();
cf4caf33
GG
180
181 return 0;
182}
183
184static int do_show(int argc, char **argv)
185{
186 FOU_REQUEST(req, 4096, FOU_CMD_GET, NLM_F_REQUEST | NLM_F_DUMP);
187
188 if (argc > 0) {
5c92c2ee
SH
189 fprintf(stderr,
190 "\"ip fou show\" does not take any arguments.\n");
cf4caf33
GG
191 return -1;
192 }
193
194 if (rtnl_send(&genl_rth, &req.n, req.n.nlmsg_len) < 0) {
195 perror("Cannot send show request");
196 exit(1);
197 }
198
41b99db1 199 new_json_obj(json);
cf4caf33
GG
200 if (rtnl_dump_filter(&genl_rth, print_fou_mapping, stdout) < 0) {
201 fprintf(stderr, "Dump terminated\n");
202 return 1;
203 }
41b99db1
SH
204 delete_json_obj();
205 fflush(stdout);
cf4caf33
GG
206
207 return 0;
208}
209
6928747b
TH
210int do_ipfou(int argc, char **argv)
211{
6928747b
TH
212 if (argc < 1)
213 usage();
214
d240a0e1
SD
215 if (matches(*argv, "help") == 0)
216 usage();
217
218 if (genl_init_handle(&genl_rth, FOU_GENL_NAME, &genl_family))
219 exit(1);
220
6928747b
TH
221 if (matches(*argv, "add") == 0)
222 return do_add(argc-1, argv+1);
223 if (matches(*argv, "delete") == 0)
224 return do_del(argc-1, argv+1);
cf4caf33
GG
225 if (matches(*argv, "show") == 0)
226 return do_show(argc-1, argv+1);
5c92c2ee
SH
227
228 fprintf(stderr,
229 "Command \"%s\" is unknown, try \"ip fou help\".\n", *argv);
6928747b
TH
230 exit(-1);
231}