]> git.proxmox.com Git - mirror_iproute2.git/blame - tc/m_connmark.c
devlink: add support for updating device flash
[mirror_iproute2.git] / tc / m_connmark.c
CommitLineData
b8d5c9a7
FF
1/*
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
5c32fa1d 16 * this program; if not, see <http://www.gnu.org/licenses>.
b8d5c9a7
FF
17 */
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{
1672f421 30 fprintf(stderr, "Usage: ... connmark [zone ZONE] [CONTROL] [index <INDEX>]\n");
b8d5c9a7
FF
31 fprintf(stderr, "where :\n"
32 "\tZONE is the conntrack zone\n"
d19f72f7
JP
33 "\tCONTROL := reclassify | pipe | drop | continue | ok |\n"
34 "\t goto chain <CHAIN_INDEX>\n");
b8d5c9a7
FF
35}
36
37static void
38usage(void)
39{
40 explain();
41 exit(-1);
42}
43
44static int
45parse_connmark(struct action_util *a, int *argc_p, char ***argv_p, int tca_id,
46 struct nlmsghdr *n)
47{
48 struct tc_connmark sel = {};
49 char **argv = *argv_p;
50 int argc = *argc_p;
51 int ok = 0;
52 struct rtattr *tail;
53
54 while (argc > 0) {
55 if (matches(*argv, "connmark") == 0) {
56 ok = 1;
57 argc--;
58 argv++;
59 } else if (matches(*argv, "help") == 0) {
60 usage();
61 } else {
62 break;
63 }
64
65 }
66
67 if (!ok) {
68 explain();
69 return -1;
70 }
71
72 if (argc) {
73 if (matches(*argv, "zone") == 0) {
74 NEXT_ARG();
75 if (get_u16(&sel.zone, *argv, 10)) {
76 fprintf(stderr, "simple: Illegal \"index\"\n");
77 return -1;
78 }
79 argc--;
80 argv++;
81 }
82 }
83
e67aba55 84 parse_action_control_dflt(&argc, &argv, &sel.action, false, TC_ACT_PIPE);
b8d5c9a7
FF
85
86 if (argc) {
87 if (matches(*argv, "index") == 0) {
88 NEXT_ARG();
89 if (get_u32(&sel.index, *argv, 10)) {
90 fprintf(stderr, "simple: Illegal \"index\"\n");
91 return -1;
92 }
93 argc--;
94 argv++;
95 }
96 }
97
c14f9d92 98 tail = addattr_nest(n, MAX_MSG, tca_id);
b8d5c9a7 99 addattr_l(n, MAX_MSG, TCA_CONNMARK_PARMS, &sel, sizeof(sel));
c14f9d92 100 addattr_nest_end(n, tail);
b8d5c9a7
FF
101
102 *argc_p = argc;
103 *argv_p = argv;
104 return 0;
105}
106
107static int print_connmark(struct action_util *au, FILE *f, struct rtattr *arg)
108{
109 struct rtattr *tb[TCA_CONNMARK_MAX + 1];
110 struct tc_connmark *ci;
111
112 if (arg == NULL)
113 return -1;
114
115 parse_rtattr_nested(tb, TCA_CONNMARK_MAX, arg);
116 if (tb[TCA_CONNMARK_PARMS] == NULL) {
1d3c91a7 117 print_string(PRINT_FP, NULL, "%s", "[NULL connmark parameters]");
b8d5c9a7
FF
118 return -1;
119 }
120
121 ci = RTA_DATA(tb[TCA_CONNMARK_PARMS]);
122
1d3c91a7
RM
123 print_string(PRINT_ANY, "kind", "%s ", "connmark");
124 print_uint(PRINT_ANY, "zone", "zone %u", ci->zone);
125 print_action_control(f, " ", ci->action, "");
126
127 print_string(PRINT_FP, NULL, "%s", _SL_);
128 print_uint(PRINT_ANY, "index", "\t index %u", ci->index);
129 print_int(PRINT_ANY, "ref", " ref %d", ci->refcnt);
130 print_int(PRINT_ANY, "bind", " bind %d", ci->bindcnt);
b8d5c9a7
FF
131
132 if (show_stats) {
133 if (tb[TCA_CONNMARK_TM]) {
134 struct tcf_t *tm = RTA_DATA(tb[TCA_CONNMARK_TM]);
32a121cb 135
b8d5c9a7
FF
136 print_tm(f, tm);
137 }
138 }
1d3c91a7 139 print_string(PRINT_FP, NULL, "%s", _SL_);
b8d5c9a7
FF
140
141 return 0;
142}
143
144struct action_util connmark_action_util = {
145 .id = "connmark",
146 .parse_aopt = parse_connmark,
147 .print_aopt = print_connmark,
148};