blob: 732eaf1eb6d94315ed847e92a268f683cf74c29f [file] [log] [blame]
Jamal Hadi Salim087f46e2013-09-29 07:33:42 -04001/*
2 * m_simple.c simple action
3 *
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 *
9 * Authors: J Hadi Salim <jhs@mojatatu.com>
10 *
Stephen Hemmingerb2e116d2014-12-03 19:28:34 -080011 * Pedagogical example. Adds a string that will be printed every time
Stephen Hemminger3d0b7432014-12-20 15:47:17 -080012 * the simple instance is hit.
Jamal Hadi Salim087f46e2013-09-29 07:33:42 -040013 * Use this as a skeleton action and keep modifying it to meet your needs.
14 * Look at linux/tc_act/tc_defact.h for the different components ids and
15 * definitions used in this actions
16 *
17 * example use, yell "Incoming ICMP!" every time you see an incoming ICMP on
18 * eth0. Steps are:
19 * 1) Add an ingress qdisc point to eth0
20 * 2) Start a chain on ingress of eth0 that first matches ICMP then invokes
21 * the simple action to shout.
22 * 3) display stats and show that no packet has been seen by the action
23 * 4) Send one ping packet to google (expect to receive a response back)
24 * 5) grep the logs to see the logged message
25 * 6) display stats again and observe increment by 1
26 *
27 hadi@noma1:$ tc qdisc add dev eth0 ingress
28 hadi@noma1:$tc filter add dev eth0 parent ffff: protocol ip prio 5 \
Stephen Hemminger3d0b7432014-12-20 15:47:17 -080029 u32 match ip protocol 1 0xff flowid 1:1 action simple "Incoming ICMP"
30
Jamal Hadi Salim087f46e2013-09-29 07:33:42 -040031 hadi@noma1:$ sudo tc -s filter ls dev eth0 parent ffff:
Stephen Hemminger3d0b7432014-12-20 15:47:17 -080032 filter protocol ip pref 5 u32
33 filter protocol ip pref 5 u32 fh 800: ht divisor 1
34 filter protocol ip pref 5 u32 fh 800::800 order 2048 key ht 800 bkt 0 flowid 1:1
Jamal Hadi Salim087f46e2013-09-29 07:33:42 -040035 match 00010000/00ff0000 at 8
Stephen Hemminger3d0b7432014-12-20 15:47:17 -080036 action order 1: Simple <Incoming ICMP>
37 index 4 ref 1 bind 1 installed 29 sec used 29 sec
38 Action statistics:
39 Sent 0 bytes 0 pkt (dropped 0, overlimits 0 requeues 0)
40 backlog 0b 0p requeues 0
41
42
Jamal Hadi Salim087f46e2013-09-29 07:33:42 -040043 hadi@noma1$ ping -c 1 www.google.ca
44 PING www.google.ca (74.125.225.120) 56(84) bytes of data.
45 64 bytes from ord08s08-in-f24.1e100.net (74.125.225.120): icmp_req=1 ttl=53 time=31.3 ms
46
47 --- www.google.ca ping statistics ---
48 1 packets transmitted, 1 received, 0% packet loss, time 0ms
49 rtt min/avg/max/mdev = 31.316/31.316/31.316/0.000 ms
50
51 hadi@noma1$ dmesg | grep simple
52 [135354.473951] simple: Incoming ICMP_1
53
54 hadi@noma1$ sudo tc/tc -s filter ls dev eth0 parent ffff:
Stephen Hemminger3d0b7432014-12-20 15:47:17 -080055 filter protocol ip pref 5 u32
56 filter protocol ip pref 5 u32 fh 800: ht divisor 1
57 filter protocol ip pref 5 u32 fh 800::800 order 2048 key ht 800 bkt 0 flowid 1:1
Jamal Hadi Salim087f46e2013-09-29 07:33:42 -040058 match 00010000/00ff0000 at 8
59 action order 1: Simple <Incoming ICMP>
60 index 4 ref 1 bind 1 installed 206 sec used 67 sec
61 Action statistics:
Stephen Hemminger3d0b7432014-12-20 15:47:17 -080062 Sent 84 bytes 1 pkt (dropped 0, overlimits 0 requeues 0)
63 backlog 0b 0p requeues 0
Jamal Hadi Salim087f46e2013-09-29 07:33:42 -040064*/
65
66#include <stdio.h>
67#include <stdlib.h>
68#include <unistd.h>
69#include <syslog.h>
70#include <fcntl.h>
71#include <sys/socket.h>
72#include <netinet/in.h>
73#include <arpa/inet.h>
74#include <string.h>
75#include "utils.h"
76#include "tc_util.h"
77#include <linux/tc_act/tc_defact.h>
78
79#ifndef SIMP_MAX_DATA
80#define SIMP_MAX_DATA 32
81#endif
82static void explain(void)
83{
Jamal Hadi Salimfdf1bdd2016-05-08 11:02:06 -040084 fprintf(stderr, "Usage:... simple [sdata STRING] [CONTROL] [index INDEX]\n");
85 fprintf(stderr, "\tSTRING being an arbitrary string\n"
86 "\tCONTROL := reclassify|pipe|drop|continue|ok\n"
87 "\tINDEX := optional index value used\n");
Jamal Hadi Salim087f46e2013-09-29 07:33:42 -040088}
89
90static void usage(void)
91{
92 explain();
93 exit(-1);
94}
95
96static int
97parse_simple(struct action_util *a, int *argc_p, char ***argv_p, int tca_id,
98 struct nlmsghdr *n)
99{
100 struct tc_defact sel = {};
101 int argc = *argc_p;
102 char **argv = *argv_p;
Jamal Hadi Salime70b9f12016-05-24 07:52:48 -0400103 int ok = 0;
Jamal Hadi Salim087f46e2013-09-29 07:33:42 -0400104 struct rtattr *tail;
105 char *simpdata = NULL;
106
Jamal Hadi Salim087f46e2013-09-29 07:33:42 -0400107 while (argc > 0) {
108 if (matches(*argv, "simple") == 0) {
109 NEXT_ARG();
Jamal Hadi Salimfdf1bdd2016-05-08 11:02:06 -0400110 } else if (matches(*argv, "sdata") == 0) {
111 NEXT_ARG();
112 ok += 1;
Jamal Hadi Salim087f46e2013-09-29 07:33:42 -0400113 simpdata = *argv;
Jamal Hadi Salim087f46e2013-09-29 07:33:42 -0400114 argc--;
115 argv++;
Jamal Hadi Salim087f46e2013-09-29 07:33:42 -0400116 } else if (matches(*argv, "help") == 0) {
117 usage();
118 } else {
119 break;
120 }
Jamal Hadi Salimfdf1bdd2016-05-08 11:02:06 -0400121 }
Jamal Hadi Salim087f46e2013-09-29 07:33:42 -0400122
Phil Sutter69f5aff2016-07-23 13:28:09 +0200123 if (argc && !action_a2n(*argv, &sel.action, false))
124 NEXT_ARG_FWD();
Jamal Hadi Salimfdf1bdd2016-05-08 11:02:06 -0400125
126 if (argc) {
127 if (matches(*argv, "index") == 0) {
128 NEXT_ARG();
129 if (get_u32(&sel.index, *argv, 10)) {
Jamal Hadi Salime70b9f12016-05-24 07:52:48 -0400130 fprintf(stderr, "simple: Illegal \"index\" (%s)\n",
Jamal Hadi Salimfdf1bdd2016-05-08 11:02:06 -0400131 *argv);
132 return -1;
133 }
134 ok += 1;
135 argc--;
136 argv++;
137 }
Jamal Hadi Salim087f46e2013-09-29 07:33:42 -0400138 }
139
140 if (!ok) {
141 explain();
142 return -1;
143 }
144
Jamal Hadi Salimfdf1bdd2016-05-08 11:02:06 -0400145 if (simpdata && (strlen(simpdata) > (SIMP_MAX_DATA - 1))) {
Stephen Hemminger32a121c2016-03-21 11:48:36 -0700146 fprintf(stderr, "simple: Illegal string len %zu <%s>\n",
Jamal Hadi Salim087f46e2013-09-29 07:33:42 -0400147 strlen(simpdata), simpdata);
148 return -1;
149 }
150
151 sel.action = TC_ACT_PIPE;
152
153 tail = NLMSG_TAIL(n);
154 addattr_l(n, MAX_MSG, tca_id, NULL, 0);
155 addattr_l(n, MAX_MSG, TCA_DEF_PARMS, &sel, sizeof(sel));
Jamal Hadi Salimfdf1bdd2016-05-08 11:02:06 -0400156 if (simpdata)
157 addattr_l(n, MAX_MSG, TCA_DEF_DATA, simpdata, SIMP_MAX_DATA);
Jamal Hadi Salim087f46e2013-09-29 07:33:42 -0400158 tail->rta_len = (char *)NLMSG_TAIL(n) - (char *)tail;
159
160 *argc_p = argc;
161 *argv_p = argv;
162 return 0;
163}
164
Stephen Hemminger32a121c2016-03-21 11:48:36 -0700165static int print_simple(struct action_util *au, FILE *f, struct rtattr *arg)
Jamal Hadi Salim087f46e2013-09-29 07:33:42 -0400166{
167 struct tc_defact *sel;
168 struct rtattr *tb[TCA_DEF_MAX + 1];
169 char *simpdata;
170
171 if (arg == NULL)
172 return -1;
173
174 parse_rtattr_nested(tb, TCA_DEF_MAX, arg);
175
176 if (tb[TCA_DEF_PARMS] == NULL) {
177 fprintf(f, "[NULL simple parameters]");
178 return -1;
179 }
180 sel = RTA_DATA(tb[TCA_DEF_PARMS]);
181
182 if (tb[TCA_DEF_DATA] == NULL) {
183 fprintf(f, "[missing simple string]");
184 return -1;
185 }
186
187 simpdata = RTA_DATA(tb[TCA_DEF_DATA]);
188
189 fprintf(f, "Simple <%s>\n", simpdata);
190 fprintf(f, "\t index %d ref %d bind %d", sel->index,
191 sel->refcnt, sel->bindcnt);
192
193 if (show_stats) {
194 if (tb[TCA_DEF_TM]) {
195 struct tcf_t *tm = RTA_DATA(tb[TCA_DEF_TM]);
Stephen Hemminger32a121c2016-03-21 11:48:36 -0700196
Jamal Hadi Salim087f46e2013-09-29 07:33:42 -0400197 print_tm(f, tm);
Jamal Hadi Salim087f46e2013-09-29 07:33:42 -0400198 }
199 }
Jamal Hadi Salim352f6f92013-12-22 07:50:09 -0500200 fprintf(f, "\n");
Jamal Hadi Salim087f46e2013-09-29 07:33:42 -0400201
202 return 0;
203}
204
205struct action_util simple_action_util = {
206 .id = "simple",
207 .parse_aopt = parse_simple,
208 .print_aopt = print_simple,
209};