2 * m_egress.c ingress/egress packet mirror/redir actions module
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.
9 * Authors: J Hadi Salim (hadi@cyberus.ca)
11 * TODO: Add Ingress support
20 #include <sys/socket.h>
21 #include <netinet/in.h>
22 #include <arpa/inet.h>
26 #include "tc_common.h"
27 #include <linux/tc_act/tc_mirred.h>
32 fprintf(stderr
, "Usage: mirred <DIRECTION> <ACTION> [index INDEX] <dev DEVICENAME>\n");
33 fprintf(stderr
, "where:\n");
34 fprintf(stderr
, "\tDIRECTION := <ingress | egress>\n");
35 fprintf(stderr
, "\tACTION := <mirror | redirect>\n");
36 fprintf(stderr
, "\tINDEX is the specific policy instance id\n");
37 fprintf(stderr
, "\tDEVICENAME is the devicename\n");
48 static const char *mirred_n2a(int 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";
65 parse_egress(struct action_util
*a
, int *argc_p
, char ***argv_p
,
66 int tca_id
, struct nlmsghdr
*n
)
70 char **argv
= *argv_p
;
71 int ok
= 0, iok
= 0, mirror
= 0, redir
= 0;
72 struct tc_mirred p
= {};
78 if (matches(*argv
, "action") == 0) {
80 } else if (matches(*argv
, "egress") == 0) {
86 if (matches(*argv
, "index") == 0) {
88 if (get_u32(&p
.index
, *argv
, 10)) {
89 fprintf(stderr
, "Illegal \"index\"\n");
99 fprintf(stderr
, "was expecting egress (%s)\n", *argv
);
102 } else if (!mirror
&& matches(*argv
, "mirror") == 0) {
105 fprintf(stderr
, "Can't have both mirror and redir\n");
108 p
.eaction
= TCA_EGRESS_MIRROR
;
109 p
.action
= TC_ACT_PIPE
;
111 } else if (!redir
&& matches(*argv
, "redirect") == 0) {
114 fprintf(stderr
, "Can't have both mirror and redir\n");
117 p
.eaction
= TCA_EGRESS_REDIR
;
118 p
.action
= TC_ACT_STOLEN
;
120 } else if ((redir
|| mirror
) && matches(*argv
, "dev") == 0) {
123 duparg("dev", *argv
);
125 strncpy(d
, *argv
, sizeof(d
)-1);
148 if ((idx
= ll_name_to_index(d
)) == 0) {
149 fprintf(stderr
, "Cannot find device \"%s\"\n", d
);
157 if (argc
&& p
.eaction
== TCA_EGRESS_MIRROR
) {
159 if (matches(*argv
, "reclassify") == 0) {
160 p
.action
= TC_POLICE_RECLASSIFY
;
162 } else if (matches(*argv
, "pipe") == 0) {
163 p
.action
= TC_POLICE_PIPE
;
165 } else if (matches(*argv
, "drop") == 0 ||
166 matches(*argv
, "shot") == 0) {
167 p
.action
= TC_POLICE_SHOT
;
169 } else if (matches(*argv
, "continue") == 0) {
170 p
.action
= TC_POLICE_UNSPEC
;
172 } else if (matches(*argv
, "pass") == 0 ||
173 matches(*argv
, "ok") == 0) {
174 p
.action
= TC_POLICE_OK
;
181 if (iok
&& matches(*argv
, "index") == 0) {
182 fprintf(stderr
, "mirred: Illegal double index\n");
185 if (matches(*argv
, "index") == 0) {
187 if (get_u32(&p
.index
, *argv
, 10)) {
188 fprintf(stderr
, "mirred: Illegal \"index\"\n");
197 tail
= NLMSG_TAIL(n
);
198 addattr_l(n
, MAX_MSG
, tca_id
, NULL
, 0);
199 addattr_l(n
, MAX_MSG
, TCA_MIRRED_PARMS
, &p
, sizeof(p
));
200 tail
->rta_len
= (void *) NLMSG_TAIL(n
) - (void *) tail
;
209 parse_mirred(struct action_util
*a
, int *argc_p
, char ***argv_p
,
210 int tca_id
, struct nlmsghdr
*n
)
214 char **argv
= *argv_p
;
217 fprintf(stderr
, "mirred bad argument count %d\n", argc
);
221 if (matches(*argv
, "mirred") == 0) {
224 fprintf(stderr
, "mirred bad argument %s\n", *argv
);
229 if (matches(*argv
, "egress") == 0 || matches(*argv
, "index") == 0) {
230 int ret
= parse_egress(a
, &argc
, &argv
, tca_id
, n
);
238 } else if (matches(*argv
, "ingress") == 0) {
239 fprintf(stderr
, "mirred ingress not supported at the moment\n");
240 } else if (matches(*argv
, "help") == 0) {
243 fprintf(stderr
, "mirred option not supported %s\n", *argv
);
251 print_mirred(struct action_util
*au
, FILE * f
, struct rtattr
*arg
)
254 struct rtattr
*tb
[TCA_MIRRED_MAX
+ 1];
262 parse_rtattr_nested(tb
, TCA_MIRRED_MAX
, arg
);
264 if (tb
[TCA_MIRRED_PARMS
] == NULL
) {
265 fprintf(f
, "[NULL mirred parameters]");
268 p
= RTA_DATA(tb
[TCA_MIRRED_PARMS
]);
275 if ((dev
= ll_index_to_name(p
->ifindex
)) == 0) {
276 fprintf(stderr
, "Cannot find device %d\n", p
->ifindex
);
280 fprintf(f
, "mirred (%s to device %s) %s", mirred_n2a(p
->eaction
), dev
, action_n2a(p
->action
, b1
, sizeof (b1
)));
283 fprintf(f
, "\tindex %d ref %d bind %d", p
->index
, p
->refcnt
, p
->bindcnt
);
286 if (tb
[TCA_MIRRED_TM
]) {
287 struct tcf_t
*tm
= RTA_DATA(tb
[TCA_MIRRED_TM
]);
296 struct action_util mirred_action_util
= {
298 .parse_aopt
= parse_mirred
,
299 .print_aopt
= print_mirred
,