blob: 143d75de66b8b01b02cd0cf68787dcec7054a566 [file] [log] [blame]
Felix Fietkaub8d5c9a2015-02-15 11:57:19 -05001/*
2 * m_connmark.c Connection tracking marking import
3 *
4 * Copyright (c) 2011 Felix Fietkau <nbd@openwrt.org>
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions of the GNU General Public License,
8 * version 2, as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
15 * You should have received a copy of the GNU General Public License along with
Phil Sutter5c32fa12015-09-18 20:17:02 +020016 * this program; if not, see <http://www.gnu.org/licenses>.
Felix Fietkaub8d5c9a2015-02-15 11:57:19 -050017 */
18
19#include <stdio.h>
20#include <stdlib.h>
21#include <unistd.h>
22#include <string.h>
23#include "utils.h"
24#include "tc_util.h"
25#include <linux/tc_act/tc_connmark.h>
26
27static void
28explain(void)
29{
Phil Sutter1672f422016-03-22 15:48:33 +010030 fprintf(stderr, "Usage: ... connmark [zone ZONE] [CONTROL] [index <INDEX>]\n");
Felix Fietkaub8d5c9a2015-02-15 11:57:19 -050031 fprintf(stderr, "where :\n"
32 "\tZONE is the conntrack zone\n"
Phil Sutter1672f422016-03-22 15:48:33 +010033 "\tCONTROL := reclassify|pipe|drop|continue|ok\n");
Felix Fietkaub8d5c9a2015-02-15 11:57:19 -050034}
35
36static void
37usage(void)
38{
39 explain();
40 exit(-1);
41}
42
43static int
44parse_connmark(struct action_util *a, int *argc_p, char ***argv_p, int tca_id,
45 struct nlmsghdr *n)
46{
47 struct tc_connmark sel = {};
48 char **argv = *argv_p;
49 int argc = *argc_p;
50 int ok = 0;
51 struct rtattr *tail;
52
53 while (argc > 0) {
54 if (matches(*argv, "connmark") == 0) {
55 ok = 1;
56 argc--;
57 argv++;
58 } else if (matches(*argv, "help") == 0) {
59 usage();
60 } else {
61 break;
62 }
63
64 }
65
66 if (!ok) {
67 explain();
68 return -1;
69 }
70
71 if (argc) {
72 if (matches(*argv, "zone") == 0) {
73 NEXT_ARG();
74 if (get_u16(&sel.zone, *argv, 10)) {
75 fprintf(stderr, "simple: Illegal \"index\"\n");
76 return -1;
77 }
78 argc--;
79 argv++;
80 }
81 }
82
83 sel.action = TC_ACT_PIPE;
84 if (argc) {
85 if (matches(*argv, "reclassify") == 0) {
86 sel.action = TC_ACT_RECLASSIFY;
87 argc--;
88 argv++;
89 } else if (matches(*argv, "pipe") == 0) {
90 sel.action = TC_ACT_PIPE;
91 argc--;
92 argv++;
93 } else if (matches(*argv, "drop") == 0 ||
94 matches(*argv, "shot") == 0) {
95 sel.action = TC_ACT_SHOT;
96 argc--;
97 argv++;
98 } else if (matches(*argv, "continue") == 0) {
99 sel.action = TC_ACT_UNSPEC;
100 argc--;
101 argv++;
Jamal Hadi Salim43726b72016-05-07 09:39:36 -0400102 } else if (matches(*argv, "pass") == 0 ||
103 matches(*argv, "ok") == 0) {
Felix Fietkaub8d5c9a2015-02-15 11:57:19 -0500104 sel.action = TC_ACT_OK;
105 argc--;
106 argv++;
107 }
108 }
109
110 if (argc) {
111 if (matches(*argv, "index") == 0) {
112 NEXT_ARG();
113 if (get_u32(&sel.index, *argv, 10)) {
114 fprintf(stderr, "simple: Illegal \"index\"\n");
115 return -1;
116 }
117 argc--;
118 argv++;
119 }
120 }
121
122 tail = NLMSG_TAIL(n);
123 addattr_l(n, MAX_MSG, tca_id, NULL, 0);
124 addattr_l(n, MAX_MSG, TCA_CONNMARK_PARMS, &sel, sizeof(sel));
125 tail->rta_len = (char *)NLMSG_TAIL(n) - (char *)tail;
126
127 *argc_p = argc;
128 *argv_p = argv;
129 return 0;
130}
131
132static int print_connmark(struct action_util *au, FILE *f, struct rtattr *arg)
133{
134 struct rtattr *tb[TCA_CONNMARK_MAX + 1];
135 struct tc_connmark *ci;
136
137 if (arg == NULL)
138 return -1;
139
140 parse_rtattr_nested(tb, TCA_CONNMARK_MAX, arg);
141 if (tb[TCA_CONNMARK_PARMS] == NULL) {
142 fprintf(f, "[NULL connmark parameters]");
143 return -1;
144 }
145
146 ci = RTA_DATA(tb[TCA_CONNMARK_PARMS]);
147
148 fprintf(f, " connmark zone %d\n", ci->zone);
149 fprintf(f, "\t index %d ref %d bind %d", ci->index,
150 ci->refcnt, ci->bindcnt);
151
152 if (show_stats) {
153 if (tb[TCA_CONNMARK_TM]) {
154 struct tcf_t *tm = RTA_DATA(tb[TCA_CONNMARK_TM]);
Stephen Hemminger32a121c2016-03-21 11:48:36 -0700155
Felix Fietkaub8d5c9a2015-02-15 11:57:19 -0500156 print_tm(f, tm);
157 }
158 }
159 fprintf(f, "\n");
160
161 return 0;
162}
163
164struct action_util connmark_action_util = {
165 .id = "connmark",
166 .parse_aopt = parse_connmark,
167 .print_aopt = print_connmark,
168};