blob: 64aad4d22ac90abe3abee5630d7154f659610ba4 [file] [log] [blame]
net[shemminger]!shemminger00fa8482004-12-08 20:13:56 +00001/*
Stephen Hemmingerae665a52006-12-05 10:10:22 -08002 * m_egress.c ingress/egress packet mirror/redir actions module
net[shemminger]!shemminger00fa8482004-12-08 20:13:56 +00003 *
4 * This program is free software; you can distribute 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 *
Stephen Hemmingerae665a52006-12-05 10:10:22 -08009 * Authors: J Hadi Salim (hadi@cyberus.ca)
10 *
net[shemminger]!shemminger00fa8482004-12-08 20:13:56 +000011 * TODO: Add Ingress support
12 *
13 */
14
15#include <stdio.h>
16#include <stdlib.h>
17#include <unistd.h>
18#include <syslog.h>
19#include <fcntl.h>
20#include <sys/socket.h>
21#include <netinet/in.h>
22#include <arpa/inet.h>
23#include <string.h>
24#include "utils.h"
25#include "tc_util.h"
site!shemmingerc1027a72005-03-14 22:19:16 +000026#include "tc_common.h"
net[shemminger]!shemminger00fa8482004-12-08 20:13:56 +000027#include <linux/tc_act/tc_mirred.h>
28
net[shemminger]!shemminger00fa8482004-12-08 20:13:56 +000029static void
30explain(void)
31{
Stephen Hemminger32a121c2016-03-21 11:48:36 -070032 fprintf(stderr, "Usage: mirred <DIRECTION> <ACTION> [index INDEX] <dev DEVICENAME>\n");
33 fprintf(stderr, "where:\n");
Jamal Hadi Salimebf32082006-08-08 12:10:08 -070034 fprintf(stderr, "\tDIRECTION := <ingress | egress>\n");
35 fprintf(stderr, "\tACTION := <mirror | redirect>\n");
36 fprintf(stderr, "\tINDEX is the specific policy instance id\n");
Stephen Hemminger32a121c2016-03-21 11:48:36 -070037 fprintf(stderr, "\tDEVICENAME is the devicename\n");
Jamal Hadi Salimebf32082006-08-08 12:10:08 -070038
net[shemminger]!shemminger00fa8482004-12-08 20:13:56 +000039}
40
Jamal Hadi Salimebf32082006-08-08 12:10:08 -070041static void
42usage(void)
43{
44 explain();
45 exit(-1);
46}
net[shemminger]!shemminger00fa8482004-12-08 20:13:56 +000047
Stephen Hemmingerd1f28cf2013-02-12 11:09:03 -080048static const char *mirred_n2a(int action)
net[shemminger]!shemminger00fa8482004-12-08 20:13:56 +000049{
50 switch (action) {
51 case TCA_EGRESS_REDIR:
52 return "Egress Redirect";
53 case TCA_INGRESS_REDIR:
54 return "Ingress Redirect";
55 case TCA_EGRESS_MIRROR:
56 return "Egress Mirror";
57 case TCA_INGRESS_MIRROR:
58 return "Ingress Mirror";
59 default:
60 return "unknown";
61 }
62}
63
Stephen Hemmingerd1f28cf2013-02-12 11:09:03 -080064static int
65parse_egress(struct action_util *a, int *argc_p, char ***argv_p,
66 int tca_id, struct nlmsghdr *n)
net[shemminger]!shemminger00fa8482004-12-08 20:13:56 +000067{
68
69 int argc = *argc_p;
70 char **argv = *argv_p;
Stephen Hemminger32a121c2016-03-21 11:48:36 -070071 int ok = 0, iok = 0, mirror = 0, redir = 0;
net[shemminger]!shemminger00fa8482004-12-08 20:13:56 +000072 struct tc_mirred p;
73 struct rtattr *tail;
74 char d[16];
net[shemminger]!shemminger00fa8482004-12-08 20:13:56 +000075
Stephen Hemminger32a121c2016-03-21 11:48:36 -070076 memset(d, 0, sizeof(d)-1);
77 memset(&p, 0, sizeof(struct tc_mirred));
net[shemminger]!shemminger00fa8482004-12-08 20:13:56 +000078
79 while (argc > 0) {
80
81 if (matches(*argv, "action") == 0) {
82 break;
83 } else if (matches(*argv, "egress") == 0) {
84 NEXT_ARG();
85 ok++;
86 continue;
87 } else {
88
89 if (matches(*argv, "index") == 0) {
90 NEXT_ARG();
91 if (get_u32(&p.index, *argv, 10)) {
92 fprintf(stderr, "Illegal \"index\"\n");
93 return -1;
94 }
95 iok++;
96 if (!ok) {
97 argc--;
98 argv++;
99 break;
100 }
Stephen Hemminger32a121c2016-03-21 11:48:36 -0700101 } else if (!ok) {
net[shemminger]!shemminger00fa8482004-12-08 20:13:56 +0000102 fprintf(stderr, "was expecting egress (%s)\n", *argv);
103 break;
104
105 } else if (!mirror && matches(*argv, "mirror") == 0) {
Stephen Hemminger32a121c2016-03-21 11:48:36 -0700106 mirror = 1;
net[shemminger]!shemminger00fa8482004-12-08 20:13:56 +0000107 if (redir) {
Stephen Hemmingerb8a45892013-08-04 15:10:05 -0700108 fprintf(stderr, "Can't have both mirror and redir\n");
net[shemminger]!shemminger00fa8482004-12-08 20:13:56 +0000109 return -1;
110 }
111 p.eaction = TCA_EGRESS_MIRROR;
112 p.action = TC_ACT_PIPE;
113 ok++;
114 } else if (!redir && matches(*argv, "redirect") == 0) {
Stephen Hemminger32a121c2016-03-21 11:48:36 -0700115 redir = 1;
net[shemminger]!shemminger00fa8482004-12-08 20:13:56 +0000116 if (mirror) {
Stephen Hemmingerb8a45892013-08-04 15:10:05 -0700117 fprintf(stderr, "Can't have both mirror and redir\n");
net[shemminger]!shemminger00fa8482004-12-08 20:13:56 +0000118 return -1;
119 }
120 p.eaction = TCA_EGRESS_REDIR;
121 p.action = TC_ACT_STOLEN;
122 ok++;
123 } else if ((redir || mirror) && matches(*argv, "dev") == 0) {
124 NEXT_ARG();
125 if (strlen(d))
126 duparg("dev", *argv);
127
128 strncpy(d, *argv, sizeof(d)-1);
129 argc--;
130 argv++;
131
132 break;
133
134 }
135 }
136
137 NEXT_ARG();
138 }
139
140 if (!ok && !iok) {
net[shemminger]!shemminger00fa8482004-12-08 20:13:56 +0000141 return -1;
142 }
143
144
145
146 if (d[0]) {
147 int idx;
Stephen Hemminger32a121c2016-03-21 11:48:36 -0700148
net[shemminger]!shemminger00fa8482004-12-08 20:13:56 +0000149 ll_init_map(&rth);
150
net[shemminger]!shemminger00fa8482004-12-08 20:13:56 +0000151 if ((idx = ll_name_to_index(d)) == 0) {
152 fprintf(stderr, "Cannot find device \"%s\"\n", d);
net[shemminger]!shemminger00fa8482004-12-08 20:13:56 +0000153 return -1;
154 }
155
156 p.ifindex = idx;
net[shemminger]!shemminger00fa8482004-12-08 20:13:56 +0000157 }
158
159
160 if (argc && p.eaction == TCA_EGRESS_MIRROR) {
161
162 if (matches(*argv, "reclassify") == 0) {
163 p.action = TC_POLICE_RECLASSIFY;
164 NEXT_ARG();
165 } else if (matches(*argv, "pipe") == 0) {
166 p.action = TC_POLICE_PIPE;
167 NEXT_ARG();
168 } else if (matches(*argv, "drop") == 0 ||
169 matches(*argv, "shot") == 0) {
170 p.action = TC_POLICE_SHOT;
171 NEXT_ARG();
172 } else if (matches(*argv, "continue") == 0) {
173 p.action = TC_POLICE_UNSPEC;
174 NEXT_ARG();
Jamal Hadi Salim43726b72016-05-07 09:39:36 -0400175 } else if (matches(*argv, "pass") == 0 ||
176 matches(*argv, "ok") == 0) {
net[shemminger]!shemminger00fa8482004-12-08 20:13:56 +0000177 p.action = TC_POLICE_OK;
178 NEXT_ARG();
179 }
180
181 }
182
183 if (argc) {
184 if (iok && matches(*argv, "index") == 0) {
185 fprintf(stderr, "mirred: Illegal double index\n");
186 return -1;
187 } else {
188 if (matches(*argv, "index") == 0) {
189 NEXT_ARG();
190 if (get_u32(&p.index, *argv, 10)) {
191 fprintf(stderr, "mirred: Illegal \"index\"\n");
192 return -1;
193 }
194 argc--;
195 argv++;
196 }
197 }
198 }
199
3!tgraf60a383a2005-01-18 01:24:18 +0000200 tail = NLMSG_TAIL(n);
net[shemminger]!shemminger00fa8482004-12-08 20:13:56 +0000201 addattr_l(n, MAX_MSG, tca_id, NULL, 0);
Stephen Hemminger32a121c2016-03-21 11:48:36 -0700202 addattr_l(n, MAX_MSG, TCA_MIRRED_PARMS, &p, sizeof(p));
3!tgraf60a383a2005-01-18 01:24:18 +0000203 tail->rta_len = (void *) NLMSG_TAIL(n) - (void *) tail;
net[shemminger]!shemminger00fa8482004-12-08 20:13:56 +0000204
205 *argc_p = argc;
206 *argv_p = argv;
207 return 0;
208}
209
210
Stephen Hemmingerd1f28cf2013-02-12 11:09:03 -0800211static int
212parse_mirred(struct action_util *a, int *argc_p, char ***argv_p,
213 int tca_id, struct nlmsghdr *n)
net[shemminger]!shemminger00fa8482004-12-08 20:13:56 +0000214{
215
216 int argc = *argc_p;
217 char **argv = *argv_p;
218
219 if (argc < 0) {
Stephen Hemminger32a121c2016-03-21 11:48:36 -0700220 fprintf(stderr, "mirred bad argument count %d\n", argc);
net[shemminger]!shemminger00fa8482004-12-08 20:13:56 +0000221 return -1;
222 }
223
224 if (matches(*argv, "mirred") == 0) {
225 NEXT_ARG();
226 } else {
Stephen Hemminger32a121c2016-03-21 11:48:36 -0700227 fprintf(stderr, "mirred bad argument %s\n", *argv);
net[shemminger]!shemminger00fa8482004-12-08 20:13:56 +0000228 return -1;
229 }
230
231
232 if (matches(*argv, "egress") == 0 || matches(*argv, "index") == 0) {
233 int ret = parse_egress(a, &argc, &argv, tca_id, n);
Stephen Hemminger32a121c2016-03-21 11:48:36 -0700234
net[shemminger]!shemminger00fa8482004-12-08 20:13:56 +0000235 if (ret == 0) {
236 *argc_p = argc;
237 *argv_p = argv;
238 return 0;
239 }
240
241 } else if (matches(*argv, "ingress") == 0) {
Stephen Hemminger32a121c2016-03-21 11:48:36 -0700242 fprintf(stderr, "mirred ingress not supported at the moment\n");
Jamal Hadi Salimebf32082006-08-08 12:10:08 -0700243 } else if (matches(*argv, "help") == 0) {
244 usage();
net[shemminger]!shemminger00fa8482004-12-08 20:13:56 +0000245 } else {
Stephen Hemminger32a121c2016-03-21 11:48:36 -0700246 fprintf(stderr, "mirred option not supported %s\n", *argv);
net[shemminger]!shemminger00fa8482004-12-08 20:13:56 +0000247 }
248
249 return -1;
Stephen Hemmingerae665a52006-12-05 10:10:22 -0800250
net[shemminger]!shemminger00fa8482004-12-08 20:13:56 +0000251}
252
Stephen Hemmingerd1f28cf2013-02-12 11:09:03 -0800253static int
Stephen Hemminger32a121c2016-03-21 11:48:36 -0700254print_mirred(struct action_util *au, FILE * f, struct rtattr *arg)
net[shemminger]!shemminger00fa8482004-12-08 20:13:56 +0000255{
256 struct tc_mirred *p;
257 struct rtattr *tb[TCA_MIRRED_MAX + 1];
net[shemminger]!shemminger00fa8482004-12-08 20:13:56 +0000258 const char *dev;
Stephen Hemminger32a121c2016-03-21 11:48:36 -0700259
net[shemminger]!shemminger00fa8482004-12-08 20:13:56 +0000260 SPRINT_BUF(b1);
261
262 if (arg == NULL)
263 return -1;
264
3!tgraf5cb5ee32005-01-18 22:11:58 +0000265 parse_rtattr_nested(tb, TCA_MIRRED_MAX, arg);
net[shemminger]!shemminger00fa8482004-12-08 20:13:56 +0000266
267 if (tb[TCA_MIRRED_PARMS] == NULL) {
268 fprintf(f, "[NULL mirred parameters]");
269 return -1;
270 }
271 p = RTA_DATA(tb[TCA_MIRRED_PARMS]);
272
osdl.net!shemminger6ce88ca2005-03-30 18:43:30 +0000273 /*
net[shemminger]!shemminger00fa8482004-12-08 20:13:56 +0000274 ll_init_map(&rth);
osdl.net!shemminger6ce88ca2005-03-30 18:43:30 +0000275 */
276
net[shemminger]!shemminger00fa8482004-12-08 20:13:56 +0000277
net[shemminger]!shemminger00fa8482004-12-08 20:13:56 +0000278 if ((dev = ll_index_to_name(p->ifindex)) == 0) {
279 fprintf(stderr, "Cannot find device %d\n", p->ifindex);
net[shemminger]!shemminger00fa8482004-12-08 20:13:56 +0000280 return -1;
281 }
282
Stephen Hemminger32a121c2016-03-21 11:48:36 -0700283 fprintf(f, "mirred (%s to device %s) %s", mirred_n2a(p->eaction), dev, action_n2a(p->action, b1, sizeof (b1)));
net[shemminger]!shemminger00fa8482004-12-08 20:13:56 +0000284
285 fprintf(f, "\n ");
Stephen Hemminger32a121c2016-03-21 11:48:36 -0700286 fprintf(f, "\tindex %d ref %d bind %d", p->index, p->refcnt, p->bindcnt);
net[shemminger]!shemminger00fa8482004-12-08 20:13:56 +0000287
288 if (show_stats) {
289 if (tb[TCA_MIRRED_TM]) {
290 struct tcf_t *tm = RTA_DATA(tb[TCA_MIRRED_TM]);
Stephen Hemminger32a121c2016-03-21 11:48:36 -0700291
292 print_tm(f, tm);
net[shemminger]!shemminger00fa8482004-12-08 20:13:56 +0000293 }
294 }
295 fprintf(f, "\n ");
net[shemminger]!shemminger00fa8482004-12-08 20:13:56 +0000296 return 0;
297}
298
osdl.net!shemminger6ce88ca2005-03-30 18:43:30 +0000299struct action_util mirred_action_util = {
net[shemminger]!shemminger00fa8482004-12-08 20:13:56 +0000300 .id = "mirred",
301 .parse_aopt = parse_mirred,
302 .print_aopt = print_mirred,
303};