blob: 0369e15a377fa7754cf4e2aff5d7a27f57bff40d [file] [log] [blame]
shemminger311b4142005-06-23 20:25:16 +00001/*
2 * em_u32.c U32 Ematch
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: Thomas Graf <tgraf@suug.ch>
10 */
11
12#include <stdio.h>
13#include <stdlib.h>
14#include <unistd.h>
15#include <syslog.h>
16#include <fcntl.h>
17#include <sys/socket.h>
18#include <netinet/in.h>
19#include <arpa/inet.h>
20#include <string.h>
shemminger311b4142005-06-23 20:25:16 +000021#include <errno.h>
22
23#include "m_ematch.h"
24
25extern struct ematch_util u32_ematch_util;
26
27static void u32_print_usage(FILE *fd)
28{
29 fprintf(fd,
30 "Usage: u32(ALIGN VALUE MASK at [ nexthdr+ ] OFFSET)\n" \
31 "where: ALIGN := { u8 | u16 | u32 }\n" \
32 "\n" \
33 "Example: u32(u16 0x1122 0xffff at nexthdr+4)\n");
34}
35
36static int u32_parse_eopt(struct nlmsghdr *n, struct tcf_ematch_hdr *hdr,
37 struct bstr *args)
38{
39 struct bstr *a;
40 int align, nh_len;
41 unsigned long key, mask, offmask = 0, offset;
42 struct tc_u32_key u_key;
43
44 memset(&u_key, 0, sizeof(u_key));
45
46#define PARSE_ERR(CARG, FMT, ARGS...) \
Stephen Hemminger32a121c2016-03-21 11:48:36 -070047 em_parse_error(EINVAL, args, CARG, &u32_ematch_util, FMT, ##ARGS)
shemminger311b4142005-06-23 20:25:16 +000048
49 if (args == NULL)
50 return PARSE_ERR(args, "u32: missing arguments");
51
52 if (!bstrcmp(args, "u8"))
53 align = 1;
54 else if (!bstrcmp(args, "u16"))
55 align = 2;
56 else if (!bstrcmp(args, "u32"))
57 align = 4;
58 else
59 return PARSE_ERR(args, "u32: invalid alignment");
60
61 a = bstr_next(args);
62 if (a == NULL)
63 return PARSE_ERR(a, "u32: missing key");
64
65 key = bstrtoul(a);
66 if (key == ULONG_MAX)
67 return PARSE_ERR(a, "u32: invalid key, must be numeric");
68
69 a = bstr_next(a);
70 if (a == NULL)
71 return PARSE_ERR(a, "u32: missing mask");
72
73 mask = bstrtoul(a);
74 if (mask == ULONG_MAX)
75 return PARSE_ERR(a, "u32: invalid mask, must be numeric");
76
77 a = bstr_next(a);
78 if (a == NULL || bstrcmp(a, "at") != 0)
79 return PARSE_ERR(a, "u32: missing \"at\"");
80
81 a = bstr_next(a);
82 if (a == NULL)
83 return PARSE_ERR(a, "u32: missing offset");
84
85 nh_len = strlen("nexthdr+");
86 if (a->len > nh_len && !memcmp(a->data, "nexthdr+", nh_len)) {
87 char buf[a->len - nh_len + 1];
Stephen Hemminger32a121c2016-03-21 11:48:36 -070088
shemminger311b4142005-06-23 20:25:16 +000089 offmask = -1;
90 memcpy(buf, a->data + nh_len, a->len - nh_len);
91 offset = strtoul(buf, NULL, 0);
92 } else if (!bstrcmp(a, "nexthdr+")) {
93 a = bstr_next(a);
94 if (a == NULL)
95 return PARSE_ERR(a, "u32: missing offset");
96 offset = bstrtoul(a);
97 } else
98 offset = bstrtoul(a);
Stephen Hemmingerae665a52006-12-05 10:10:22 -080099
shemminger311b4142005-06-23 20:25:16 +0000100 if (offset == ULONG_MAX)
101 return PARSE_ERR(a, "u32: invalid offset");
102
103 if (a->next)
104 return PARSE_ERR(a->next, "u32: unexpected trailer");
105
106 switch (align) {
107 case 1:
108 if (key > 0xFF)
109 return PARSE_ERR(a, "Illegal key (>0xFF)");
110 if (mask > 0xFF)
111 return PARSE_ERR(a, "Illegal mask (>0xFF)");
112
113 key <<= 24 - ((offset & 3) * 8);
114 mask <<= 24 - ((offset & 3) * 8);
115 offset &= ~3;
116 break;
117
118 case 2:
119 if (key > 0xFFFF)
120 return PARSE_ERR(a, "Illegal key (>0xFFFF)");
121 if (mask > 0xFFFF)
122 return PARSE_ERR(a, "Illegal mask (>0xFFFF)");
123
124 if ((offset & 3) == 0) {
125 key <<= 16;
126 mask <<= 16;
127 }
128 offset &= ~3;
129 break;
130 }
131
132 key = htonl(key);
133 mask = htonl(mask);
134
135 if (offset % 4)
136 return PARSE_ERR(a, "u32: invalid offset alignment, " \
137 "must be aligned to 4.");
138
139 key &= mask;
140
141 u_key.mask = mask;
142 u_key.val = key;
143 u_key.off = offset;
144 u_key.offmask = offmask;
145
146 addraw_l(n, MAX_MSG, hdr, sizeof(*hdr));
147 addraw_l(n, MAX_MSG, &u_key, sizeof(u_key));
148
149#undef PARSE_ERR
150 return 0;
151}
152
153static int u32_print_eopt(FILE *fd, struct tcf_ematch_hdr *hdr, void *data,
154 int data_len)
155{
156 struct tc_u32_key *u_key = data;
157
158 if (data_len < sizeof(*u_key)) {
159 fprintf(stderr, "U32 header size mismatch\n");
160 return -1;
161 }
162
163 fprintf(fd, "%08x/%08x at %s%d",
164 (unsigned int) ntohl(u_key->val),
165 (unsigned int) ntohl(u_key->mask),
166 u_key->offmask ? "nexthdr+" : "",
167 u_key->off);
168
169 return 0;
170}
171
172struct ematch_util u32_ematch_util = {
173 .kind = "u32",
174 .kind_num = TCF_EM_U32,
175 .parse_eopt = u32_parse_eopt,
176 .print_eopt = u32_print_eopt,
177 .print_usage = u32_print_usage
178};