]> rtime.felk.cvut.cz Git - lisovros/iproute2_canprio.git/blob - tc/tc.c
Fix off-by-one while generating argument vector
[lisovros/iproute2_canprio.git] / tc / tc.c
1 /*
2  * tc.c         "tc" utility frontend.
3  *
4  *              This program is free software; you can redistribute 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:     Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
10  *
11  * Fixes:
12  *
13  * Petri Mattila <petri@prihateam.fi> 990308: wrong memset's resulted in faults
14  */
15
16 #include <stdio.h>
17 #include <stdlib.h>
18 #include <unistd.h>
19 #include <syslog.h>
20 #include <fcntl.h>
21 #include <dlfcn.h>
22 #include <sys/socket.h>
23 #include <netinet/in.h>
24 #include <arpa/inet.h>
25 #include <string.h>
26 #include <errno.h>
27
28 #include "SNAPSHOT.h"
29 #include "utils.h"
30 #include "tc_util.h"
31 #include "tc_common.h"
32
33 int show_stats = 0;
34 int show_details = 0;
35 int show_raw = 0;
36 int resolve_hosts = 0;
37 int use_iec = 0;
38 int force = 0;
39 struct rtnl_handle rth;
40
41 static void *BODY;      /* cached handle dlopen(NULL) */
42 static struct qdisc_util * qdisc_list;
43 static struct filter_util * filter_list;
44
45 static int print_noqopt(struct qdisc_util *qu, FILE *f, 
46                         struct rtattr *opt)
47 {
48         if (opt && RTA_PAYLOAD(opt))
49                 fprintf(f, "[Unknown qdisc, optlen=%u] ", 
50                         (unsigned) RTA_PAYLOAD(opt));
51         return 0;
52 }
53
54 static int parse_noqopt(struct qdisc_util *qu, int argc, char **argv, struct nlmsghdr *n)
55 {
56         if (argc) {
57                 fprintf(stderr, "Unknown qdisc \"%s\", hence option \"%s\" is unparsable\n", qu->id, *argv);
58                 return -1;
59         }
60         return 0;
61 }
62
63 static int print_nofopt(struct filter_util *qu, FILE *f, struct rtattr *opt, __u32 fhandle)
64 {
65         if (opt && RTA_PAYLOAD(opt))
66                 fprintf(f, "fh %08x [Unknown filter, optlen=%u] ", 
67                         fhandle, (unsigned) RTA_PAYLOAD(opt));
68         else if (fhandle)
69                 fprintf(f, "fh %08x ", fhandle);
70         return 0;
71 }
72
73 static int parse_nofopt(struct filter_util *qu, char *fhandle, int argc, char **argv, struct nlmsghdr *n)
74 {
75         __u32 handle;
76
77         if (argc) {
78                 fprintf(stderr, "Unknown filter \"%s\", hence option \"%s\" is unparsable\n", qu->id, *argv);
79                 return -1;
80         }
81         if (fhandle) {
82                 struct tcmsg *t = NLMSG_DATA(n);
83                 if (get_u32(&handle, fhandle, 16)) {
84                         fprintf(stderr, "Unparsable filter ID \"%s\"\n", fhandle);
85                         return -1;
86                 }
87                 t->tcm_handle = handle;
88         }
89         return 0;
90 }
91
92 struct qdisc_util *get_qdisc_kind(const char *str)
93 {
94         void *dlh;
95         char buf[256];
96         struct qdisc_util *q;
97
98         for (q = qdisc_list; q; q = q->next)
99                 if (strcmp(q->id, str) == 0)
100                         return q;
101
102         snprintf(buf, sizeof(buf), "/usr/lib/tc/q_%s.so", str);
103         dlh = dlopen(buf, RTLD_LAZY);
104         if (!dlh) {
105                 /* look in current binary, only open once */
106                 dlh = BODY;
107                 if (dlh == NULL) {
108                         dlh = BODY = dlopen(NULL, RTLD_LAZY);
109                         if (dlh == NULL)
110                                 goto noexist;
111                 }
112         }
113
114         snprintf(buf, sizeof(buf), "%s_qdisc_util", str);
115         q = dlsym(dlh, buf);
116         if (q == NULL)
117                 goto noexist;
118
119 reg:
120         q->next = qdisc_list;
121         qdisc_list = q;
122         return q;
123
124 noexist:
125         q = malloc(sizeof(*q));
126         if (q) {
127
128                 memset(q, 0, sizeof(*q));
129                 q->id = strcpy(malloc(strlen(str)+1), str);
130                 q->parse_qopt = parse_noqopt;
131                 q->print_qopt = print_noqopt;
132                 goto reg;
133         }
134         return q;
135 }
136
137
138 struct filter_util *get_filter_kind(const char *str)
139 {
140         void *dlh;
141         char buf[256];
142         struct filter_util *q;
143
144         for (q = filter_list; q; q = q->next)
145                 if (strcmp(q->id, str) == 0)
146                         return q;
147
148         snprintf(buf, sizeof(buf), "/usr/lib/tc/f_%s.so", str);
149         dlh = dlopen(buf, RTLD_LAZY);
150         if (dlh == NULL) {
151                 dlh = BODY;
152                 if (dlh == NULL) {
153                         dlh = BODY = dlopen(NULL, RTLD_LAZY);
154                         if (dlh == NULL)
155                                 goto noexist;
156                 }
157         }
158
159         snprintf(buf, sizeof(buf), "%s_filter_util", str);
160         q = dlsym(dlh, buf);
161         if (q == NULL)
162                 goto noexist;
163
164 reg:
165         q->next = filter_list;
166         filter_list = q;
167         return q;
168 noexist:
169         q = malloc(sizeof(*q));
170         if (q) {
171                 memset(q, 0, sizeof(*q));
172                 strncpy(q->id, str, 15);
173                 q->parse_fopt = parse_nofopt;
174                 q->print_fopt = print_nofopt;
175                 goto reg;
176         }
177         return q;
178 }
179
180 static void usage(void)
181 {
182         fprintf(stderr, "Usage: tc [ OPTIONS ] OBJECT { COMMAND | help }\n"
183                         "where  OBJECT := { qdisc | class | filter | action }\n"
184                         "       OPTIONS := { -s[tatistics] | -d[etails] | -r[aw] | -b[atch] [file] }\n");
185 }
186
187 static int do_cmd(int argc, char **argv)
188 {
189         if (matches(*argv, "qdisc") == 0)
190                 return do_qdisc(argc-1, argv+1);
191
192         if (matches(*argv, "class") == 0)
193                 return do_class(argc-1, argv+1);
194
195         if (matches(*argv, "filter") == 0)
196                 return do_filter(argc-1, argv+1);
197
198         if (matches(*argv, "actions") == 0)
199                 return do_action(argc-1, argv+1);
200
201         if (matches(*argv, "help") == 0) {
202                 usage();
203                 return 0;
204         }
205         
206         fprintf(stderr, "Object \"%s\" is unknown, try \"tc help\".\n", 
207                 *argv);
208         return -1;
209 }
210
211 /* split command line into argument vector */
212 static int makeargs(char *line, char *argv[], int maxargs)
213 {
214         static const char ws[] = " \t\r\n";
215         char *cp;
216         int argc = 0;
217
218         for (cp = strtok(line, ws); cp; cp = strtok(NULL, ws)) {
219                 if (argc >= (maxargs - 1)) {
220                         fprintf(stderr, "Too many arguments to command\n");
221                         exit(1);
222                 }
223                 argv[argc++] = cp;
224         }
225         argv[argc] = NULL;
226
227         return argc;
228 }
229
230 static int lineno;
231 /* Like glibc getline but handle continuation lines and comments */
232 static size_t getcmdline(char **linep, size_t *lenp, FILE *in)
233 {
234         size_t cc;
235         char *cp;
236                 
237         if ((cc = getline(linep, lenp, in)) < 0)
238                 return cc;      /* eof or error */
239         ++lineno;
240
241         cp = strchr(*linep, '#');
242         if (cp) 
243                 *cp = '\0';
244         
245         while ((cp = strstr(*linep, "\\\n")) != NULL) {
246                 char *line1 = NULL;
247                 ssize_t len1 = 0;
248                 size_t cc1;
249
250                 if ((cc1 = getline(&line1, &len1, in)) < 0) {
251                         fprintf(stderr, "Missing continuation line\n");
252                         return cc1;
253                 }
254
255                 ++lineno;
256                 *cp = 0;
257
258                 cp = strchr(line1, '#');
259                 if (cp) 
260                         *cp = '\0';
261
262                 *linep = realloc(*linep, strlen(*linep) + strlen(line1) + 1);
263                 if (!*linep) {
264                         fprintf(stderr, "Out of memory\n");
265                         return -1;
266                 }
267                 cc += cc1 - 2;
268                 strcat(*linep, line1);
269                 free(line1);
270         }
271         return cc;
272 }
273
274 static int batch(const char *name)
275 {
276         char *line = NULL;
277         size_t len = 0;
278         int ret = 0;
279
280         if (name && strcmp(name, "-") != 0) {
281                 if (freopen(name, "r", stdin) == NULL) {
282                         fprintf(stderr, "Cannot open file \"%s\" for reading: %s=n",
283                                 name, strerror(errno));
284                         return -1;
285                 }
286         }
287
288         tc_core_init();
289
290         if (rtnl_open(&rth, 0) < 0) {
291                 fprintf(stderr, "Cannot open rtnetlink\n");
292                 return -1;
293         }
294
295         lineno = 0;
296         while (getcmdline(&line, &len, stdin) != -1) {
297                 char *largv[100];
298                 int largc;
299
300                 largc = makeargs(line, largv, 100);
301                 if (largc == 0)
302                         continue;       /* blank line */
303
304                 if (do_cmd(largc, largv)) {
305                         fprintf(stderr, "Command failed %s:%d\n", name, lineno);
306                         ret = 1;
307                         if (!force)
308                                 break;
309                 }
310         }
311
312         rtnl_close(&rth);
313         return ret;
314 }
315
316
317 int main(int argc, char **argv)
318 {
319         int ret;
320         int do_batching = 0;
321         char *batchfile = NULL;
322
323         while (argc > 1) {
324                 if (argv[1][0] != '-')
325                         break;
326                 if (matches(argv[1], "-stats") == 0 ||
327                          matches(argv[1], "-statistics") == 0) {
328                         ++show_stats;
329                 } else if (matches(argv[1], "-details") == 0) {
330                         ++show_details;
331                 } else if (matches(argv[1], "-raw") == 0) {
332                         ++show_raw;
333                 } else if (matches(argv[1], "-Version") == 0) {
334                         printf("tc utility, iproute2-ss%s\n", SNAPSHOT);
335                         return 0;
336                 } else if (matches(argv[1], "-iec") == 0) {
337                         ++use_iec;
338                 } else if (matches(argv[1], "-help") == 0) {
339                         usage();
340                         return 0;
341                 } else if (matches(argv[1], "-force") == 0) {
342                         ++force;
343                 } else  if (matches(argv[1], "-batch") == 0) {
344                         do_batching = 1;
345                         if (argc > 2)
346                                 batchfile = argv[2];
347                         argc--; argv++;
348                 } else {
349                         fprintf(stderr, "Option \"%s\" is unknown, try \"tc -help\".\n", argv[1]);
350                         return -1;
351                 }
352                 argc--; argv++;
353         }
354
355         if (do_batching)
356                 return batch(batchfile);
357
358         if (argc <= 1) {
359                 usage();
360                 return 0;
361         }
362
363         tc_core_init();
364         if (rtnl_open(&rth, 0) < 0) {
365                 fprintf(stderr, "Cannot open rtnetlink\n");
366                 exit(1);
367         }
368
369         ret = do_cmd(argc-1, argv+1);
370         rtnl_close(&rth);
371
372         return ret;
373 }