blob: 1c33ca3d3f065d71370613ddde630997e908668c [file] [log] [blame]
shemmingerc428e912005-06-23 20:29:43 +00001/*
2 * f_basic.c Basic Classifier
3 *
Stephen Hemminger84d66882008-02-07 22:10:14 -08004 * This program is free software; you can distribute it and/or
shemmingerc428e912005-06-23 20:29:43 +00005 * 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: Thomas Graf <tgraf@suug.ch>
10 *
11 */
12
13#include <stdio.h>
14#include <stdlib.h>
15#include <unistd.h>
16#include <syslog.h>
17#include <fcntl.h>
18#include <sys/socket.h>
19#include <netinet/in.h>
20#include <arpa/inet.h>
21#include <string.h>
22#include <linux/if.h>
23
24#include "utils.h"
25#include "tc_util.h"
26#include "m_ematch.h"
27
28static void explain(void)
29{
Jamal Hadi Salim863ecb02014-10-06 07:41:21 -040030 fprintf(stderr, "Usage: ... basic [ match EMATCH_TREE ] \n");
shemmingerc428e912005-06-23 20:29:43 +000031 fprintf(stderr, " [ action ACTION_SPEC ] [ classid CLASSID ]\n");
32 fprintf(stderr, "\n");
33 fprintf(stderr, "Where: SELECTOR := SAMPLE SAMPLE ...\n");
34 fprintf(stderr, " FILTERID := X:Y:Z\n");
Jamal Hadi Salim863ecb02014-10-06 07:41:21 -040035 fprintf(stderr, " ACTION_SPEC := ... look at individual actions\n");
PJ Waskiewicze9acc242008-02-13 03:49:09 -080036 fprintf(stderr, "\nNOTE: CLASSID is parsed as hexadecimal input.\n");
shemmingerc428e912005-06-23 20:29:43 +000037}
38
39static int basic_parse_opt(struct filter_util *qu, char *handle,
40 int argc, char **argv, struct nlmsghdr *n)
41{
42 struct tcmsg *t = NLMSG_DATA(n);
43 struct rtattr *tail;
44 long h = 0;
45
46 if (argc == 0)
47 return 0;
48
49 if (handle) {
50 h = strtol(handle, NULL, 0);
51 if (h == LONG_MIN || h == LONG_MAX) {
52 fprintf(stderr, "Illegal handle \"%s\", must be numeric.\n",
53 handle);
54 return -1;
55 }
56 }
Stephen Hemmingerae665a52006-12-05 10:10:22 -080057
shemmingerc428e912005-06-23 20:29:43 +000058 t->tcm_handle = h;
59
60 tail = (struct rtattr*)(((void*)n)+NLMSG_ALIGN(n->nlmsg_len));
61 addattr_l(n, MAX_MSG, TCA_OPTIONS, NULL, 0);
62
63 while (argc > 0) {
64 if (matches(*argv, "match") == 0) {
65 NEXT_ARG();
66 if (parse_ematch(&argc, &argv, TCA_BASIC_EMATCHES, n)) {
67 fprintf(stderr, "Illegal \"ematch\"\n");
68 return -1;
69 }
70 continue;
71 } else if (matches(*argv, "classid") == 0 ||
72 strcmp(*argv, "flowid") == 0) {
73 unsigned handle;
74 NEXT_ARG();
75 if (get_tc_classid(&handle, *argv)) {
76 fprintf(stderr, "Illegal \"classid\"\n");
77 return -1;
78 }
79 addattr_l(n, MAX_MSG, TCA_BASIC_CLASSID, &handle, 4);
80 } else if (matches(*argv, "action") == 0) {
81 NEXT_ARG();
82 if (parse_action(&argc, &argv, TCA_BASIC_ACT, n)) {
83 fprintf(stderr, "Illegal \"action\"\n");
84 return -1;
85 }
86 continue;
87
88 } else if (matches(*argv, "police") == 0) {
89 NEXT_ARG();
90 if (parse_police(&argc, &argv, TCA_BASIC_POLICE, n)) {
91 fprintf(stderr, "Illegal \"police\"\n");
92 return -1;
93 }
94 continue;
95 } else if (strcmp(*argv, "help") == 0) {
96 explain();
97 return -1;
98 } else {
99 fprintf(stderr, "What is \"%s\"?\n", *argv);
100 explain();
101 return -1;
102 }
103 argc--; argv++;
104 }
105
106 tail->rta_len = (((void*)n)+n->nlmsg_len) - (void*)tail;
107 return 0;
108}
109
110static int basic_print_opt(struct filter_util *qu, FILE *f,
111 struct rtattr *opt, __u32 handle)
112{
113 struct rtattr *tb[TCA_BASIC_MAX+1];
114
115 if (opt == NULL)
116 return 0;
117
118 parse_rtattr_nested(tb, TCA_BASIC_MAX, opt);
119
120 if (handle)
121 fprintf(f, "handle 0x%x ", handle);
122
123 if (tb[TCA_BASIC_CLASSID]) {
124 SPRINT_BUF(b1);
125 fprintf(f, "flowid %s ",
Stephen Hemmingerff247462012-04-10 08:47:55 -0700126 sprint_tc_classid(rta_getattr_u32(tb[TCA_BASIC_CLASSID]), b1));
shemmingerc428e912005-06-23 20:29:43 +0000127 }
128
129 if (tb[TCA_BASIC_EMATCHES])
130 print_ematch(f, tb[TCA_BASIC_EMATCHES]);
131
132 if (tb[TCA_BASIC_POLICE]) {
133 fprintf(f, "\n");
134 tc_print_police(f, tb[TCA_BASIC_POLICE]);
135 }
136
137 if (tb[TCA_BASIC_ACT]) {
138 tc_print_action(f, tb[TCA_BASIC_ACT]);
139 }
140
141 return 0;
142}
143
144struct filter_util basic_filter_util = {
145 .id = "basic",
146 .parse_fopt = basic_parse_opt,
147 .print_fopt = basic_print_opt,
148};