]> rtime.felk.cvut.cz Git - lisovros/iproute2_canprio.git/blob - ip/xfrm_policy.c
Monitor time patch from Masahide NAKAMURA
[lisovros/iproute2_canprio.git] / ip / xfrm_policy.c
1 /* $USAGI: $ */
2
3 /*
4  * Copyright (C)2004 USAGI/WIDE Project
5  * 
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  * 
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  * 
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20 /*
21  * based on iproute.c
22  */
23 /*
24  * Authors:
25  *      Masahide NAKAMURA @USAGI
26  */
27
28 #include <stdio.h>
29 #include <stdlib.h>
30 #include <string.h>
31 #include <netdb.h>
32 #include <linux/netlink.h>
33 #include <linux/xfrm.h>
34 #include "utils.h"
35 #include "xfrm.h"
36 #include "ip_common.h"
37
38 //#define NLMSG_FLUSH_BUF_SIZE (4096-512)
39 #define NLMSG_FLUSH_BUF_SIZE 8192
40
41 /*
42  * Receiving buffer defines:
43  * nlmsg
44  *   data = struct xfrm_userpolicy_info
45  *   rtattr
46  *     data = struct xfrm_user_tmpl[]
47  */
48 #define NLMSG_BUF_SIZE 4096
49 #define RTA_BUF_SIZE 2048
50 #define XFRM_TMPLS_BUF_SIZE 1024
51
52 static void usage(void) __attribute__((noreturn));
53
54 static void usage(void)
55 {
56         fprintf(stderr, "Usage: ip xfrm policy { add | update } dir DIR SELECTOR [ index INDEX ] \n");
57         fprintf(stderr, "        [ action ACTION ] [ priority PRIORITY ] [ LIMIT-LIST ] [ TMPL-LIST ]\n");
58         fprintf(stderr, "Usage: ip xfrm policy { delete | get } dir DIR [ SELECTOR | index INDEX ]\n");
59         fprintf(stderr, "Usage: ip xfrm policy { flush | list } [ dir DIR ] [ SELECTOR ]\n");
60         fprintf(stderr, "        [ index INDEX ] [ action ACTION ] [ priority PRIORITY ]\n");
61         fprintf(stderr, "DIR := [ in | out | fwd ]\n");
62
63         fprintf(stderr, "SELECTOR := src ADDR[/PLEN] dst ADDR[/PLEN] [ UPSPEC ] [ dev DEV ]\n");
64
65         fprintf(stderr, "UPSPEC := proto PROTO [ [ sport PORT ] [ dport PORT ] |\n");
66         fprintf(stderr, "                        [ type NUMBER ] [ code NUMBER ] ]\n");
67
68         //fprintf(stderr, "DEV - device name(default=none)\n");
69
70         fprintf(stderr, "ACTION := [ allow | block ](default=allow)\n");
71
72         //fprintf(stderr, "PRIORITY - priority value(default=0)\n");
73
74         fprintf(stderr, "LIMIT-LIST := [ LIMIT-LIST ] | [ limit LIMIT ]\n");
75         fprintf(stderr, "LIMIT := [ [time-soft|time-hard|time-use-soft|time-use-hard] SECONDS ] |\n");
76         fprintf(stderr, "         [ [byte-soft|byte-hard] SIZE ] | [ [packet-soft|packet-hard] NUMBER ]\n");
77
78         fprintf(stderr, "TMPL-LIST := [ TMPL-LIST ] | [ tmpl TMPL ]\n");
79         fprintf(stderr, "TMPL := ID [ mode MODE ] [ reqid REQID ] [ level LEVEL ]\n");
80         fprintf(stderr, "ID := [ src ADDR ] [ dst ADDR ] [ proto XFRM_PROTO ] [ spi SPI ]\n");
81
82         //fprintf(stderr, "XFRM_PROTO := [ esp | ah | comp ]\n");
83         fprintf(stderr, "XFRM_PROTO := [ ");
84         fprintf(stderr, "%s | ", strxf_xfrmproto(IPPROTO_ESP));
85         fprintf(stderr, "%s | ", strxf_xfrmproto(IPPROTO_AH));
86         fprintf(stderr, "%s", strxf_xfrmproto(IPPROTO_COMP));
87         fprintf(stderr, " ]\n");
88
89         fprintf(stderr, "MODE := [ transport | tunnel ](default=transport)\n");
90         //fprintf(stderr, "REQID - number(default=0)\n");
91         fprintf(stderr, "LEVEL := [ required | use ](default=required)\n");
92
93         exit(-1);
94 }
95
96 static int xfrm_policy_dir_parse(__u8 *dir, int *argcp, char ***argvp)
97 {
98         int argc = *argcp;
99         char **argv = *argvp;
100
101         if (strcmp(*argv, "in") == 0)
102                 *dir = XFRM_POLICY_IN;
103         else if (strcmp(*argv, "out") == 0)
104                 *dir = XFRM_POLICY_OUT;
105         else if (strcmp(*argv, "fwd") == 0)
106                 *dir = XFRM_POLICY_FWD;
107         else
108                 invarg("\"DIR\" is invalid", *argv);
109
110         *argcp = argc;
111         *argvp = argv;
112
113         return 0;
114 }
115
116 static int xfrm_tmpl_parse(struct xfrm_user_tmpl *tmpl,
117                            int *argcp, char ***argvp)
118 {
119         int argc = *argcp;
120         char **argv = *argvp;
121         char *idp = NULL;
122
123         while (1) {
124                 if (strcmp(*argv, "mode") == 0) {
125                         NEXT_ARG();
126                         xfrm_mode_parse(&tmpl->mode,  &argc, &argv);
127                 } else if (strcmp(*argv, "reqid") == 0) {
128                         NEXT_ARG();
129                         xfrm_reqid_parse(&tmpl->reqid, &argc, &argv);
130                 } else if (strcmp(*argv, "level") == 0) {
131                         NEXT_ARG();
132
133                         if (strcmp(*argv, "required") == 0)
134                                 tmpl->optional = 0;
135                         else if (strcmp(*argv, "use") == 0)
136                                 tmpl->optional = 1;
137                         else
138                                 invarg("\"LEVEL\" is invalid\n", *argv);
139
140                 } else {
141                         if (idp) {
142                                 PREV_ARG(); /* back track */
143                                 break;
144                         }
145                         idp = *argv;
146                         xfrm_id_parse(&tmpl->saddr, &tmpl->id, &tmpl->family,
147                                       0, &argc, &argv);
148                         if (preferred_family == AF_UNSPEC)
149                                 preferred_family = tmpl->family;
150                 }
151
152                 if (!NEXT_ARG_OK())
153                         break;
154
155                 NEXT_ARG();
156         }
157         if (argc == *argcp)
158                 missarg("TMPL");
159
160         *argcp = argc;
161         *argvp = argv;
162
163         return 0;
164 }
165
166 static int xfrm_policy_modify(int cmd, unsigned flags, int argc, char **argv)
167 {
168         struct rtnl_handle rth;
169         struct {
170                 struct nlmsghdr                 n;
171                 struct xfrm_userpolicy_info     xpinfo;
172                 char                            buf[RTA_BUF_SIZE];
173         } req;
174         char *dirp = NULL;
175         char *selp = NULL;
176         char tmpls_buf[XFRM_TMPLS_BUF_SIZE];
177         int tmpls_len = 0;
178
179         memset(&req, 0, sizeof(req));
180         memset(&tmpls_buf, 0, sizeof(tmpls_buf));
181
182         req.n.nlmsg_len = NLMSG_LENGTH(sizeof(req.xpinfo));
183         req.n.nlmsg_flags = NLM_F_REQUEST|flags;
184         req.n.nlmsg_type = cmd;
185         req.xpinfo.sel.family = preferred_family;
186
187         req.xpinfo.lft.soft_byte_limit = XFRM_INF;
188         req.xpinfo.lft.hard_byte_limit = XFRM_INF;
189         req.xpinfo.lft.soft_packet_limit = XFRM_INF;
190         req.xpinfo.lft.hard_packet_limit = XFRM_INF;
191
192         while (argc > 0) {
193                 if (strcmp(*argv, "dir") == 0) {
194                         if (dirp)
195                                 duparg("dir", *argv);
196                         dirp = *argv;
197
198                         NEXT_ARG();
199                         xfrm_policy_dir_parse(&req.xpinfo.dir, &argc, &argv);
200
201                         filter.dir_mask = XFRM_FILTER_MASK_FULL;
202
203                 } else if (strcmp(*argv, "index") == 0) {
204                         NEXT_ARG();
205                         if (get_u32(&req.xpinfo.index, *argv, 0))
206                                 invarg("\"INDEX\" is invalid", *argv);
207
208                         filter.index_mask = XFRM_FILTER_MASK_FULL;
209
210                 } else if (strcmp(*argv, "action") == 0) {
211                         NEXT_ARG();
212                         if (strcmp(*argv, "allow") == 0)
213                                 req.xpinfo.action = XFRM_POLICY_ALLOW;
214                         else if (strcmp(*argv, "block") == 0)
215                                 req.xpinfo.action = XFRM_POLICY_BLOCK;
216                         else
217                                 invarg("\"action\" value is invalid\n", *argv);
218
219                         filter.action_mask = XFRM_FILTER_MASK_FULL;
220
221                 } else if (strcmp(*argv, "priority") == 0) {
222                         NEXT_ARG();
223                         if (get_u32(&req.xpinfo.priority, *argv, 0))
224                                 invarg("\"PRIORITY\" is invalid", *argv);
225
226                         filter.priority_mask = XFRM_FILTER_MASK_FULL;
227
228                 } else if (strcmp(*argv, "limit") == 0) {
229                         NEXT_ARG();
230                         xfrm_lifetime_cfg_parse(&req.xpinfo.lft, &argc, &argv);
231                 } else if (strcmp(*argv, "tmpl") == 0) {
232                         struct xfrm_user_tmpl *tmpl;
233
234                         if (tmpls_len + sizeof(*tmpl) > sizeof(tmpls_buf)) {
235                                 fprintf(stderr, "Too many tmpls: buffer overflow\n");
236                                 exit(1);
237                         }
238                         tmpl = (struct xfrm_user_tmpl *)((char *)tmpls_buf + tmpls_len);
239
240                         tmpl->family = preferred_family;
241                         tmpl->aalgos = (~(__u32)0);
242                         tmpl->ealgos = (~(__u32)0);
243                         tmpl->calgos = (~(__u32)0);
244
245                         NEXT_ARG();
246                         xfrm_tmpl_parse(tmpl, &argc, &argv);
247
248                         tmpls_len += sizeof(*tmpl);
249                 } else {
250                         if (selp)
251                                 duparg("unknown", *argv);
252                         selp = *argv;
253
254                         xfrm_selector_parse(&req.xpinfo.sel, &argc, &argv);
255                         if (preferred_family == AF_UNSPEC)
256                                 preferred_family = req.xpinfo.sel.family;
257                 }
258
259                 argc--; argv++;
260         }
261
262         if (!dirp) {
263                 fprintf(stderr, "Not enough information: \"DIR\" is required.\n");
264                 exit(1);
265         }
266
267         if (tmpls_len > 0) {
268                 addattr_l(&req.n, sizeof(req), XFRMA_TMPL,
269                           (void *)tmpls_buf, tmpls_len);
270         }
271
272         if (rtnl_open_byproto(&rth, 0, NETLINK_XFRM) < 0)
273                 exit(1);
274
275         if (req.xpinfo.sel.family == AF_UNSPEC)
276                 req.xpinfo.sel.family = AF_INET;
277
278         if (rtnl_talk(&rth, &req.n, 0, 0, NULL, NULL, NULL) < 0)
279                 exit(2);
280
281         rtnl_close(&rth);
282
283         return 0;
284 }
285
286 static int xfrm_policy_filter_match(struct xfrm_userpolicy_info *xpinfo)
287 {
288         if (!filter.use)
289                 return 1;
290
291         if ((xpinfo->dir^filter.xpinfo.dir)&filter.dir_mask)
292                 return 0;
293
294         if (filter.sel_src_mask) {
295                 if (xfrm_addr_match(&xpinfo->sel.saddr, &filter.xpinfo.sel.saddr,
296                                     filter.sel_src_mask))
297                         return 0;
298         }
299
300         if (filter.sel_dst_mask) {
301                 if (xfrm_addr_match(&xpinfo->sel.daddr, &filter.xpinfo.sel.daddr,
302                                     filter.sel_dst_mask))
303                         return 0;
304         }
305
306         if ((xpinfo->sel.ifindex^filter.xpinfo.sel.ifindex)&filter.sel_dev_mask)
307                 return 0;
308
309         if ((xpinfo->sel.proto^filter.xpinfo.sel.proto)&filter.upspec_proto_mask)
310                 return 0;
311
312         if (filter.upspec_sport_mask) {
313                 if ((xpinfo->sel.sport^filter.xpinfo.sel.sport)&filter.upspec_sport_mask)
314                         return 0;
315         }
316
317         if (filter.upspec_dport_mask) {
318                 if ((xpinfo->sel.dport^filter.xpinfo.sel.dport)&filter.upspec_dport_mask)
319                         return 0;
320         }
321
322         if ((xpinfo->index^filter.xpinfo.index)&filter.index_mask)
323                 return 0;
324
325         if ((xpinfo->action^filter.xpinfo.action)&filter.action_mask)
326                 return 0;
327
328         if ((xpinfo->priority^filter.xpinfo.priority)&filter.priority_mask)
329                 return 0;
330
331         return 1;
332 }
333
334 int xfrm_policy_print(const struct sockaddr_nl *who, struct nlmsghdr *n,
335                       void *arg)
336 {
337         FILE *fp = (FILE*)arg;
338         struct xfrm_userpolicy_info *xpinfo;
339         struct xfrm_user_polexpire *xpexp;
340         int len = n->nlmsg_len;
341         struct rtattr * tb[XFRMA_MAX+1];
342         struct rtattr * rta;
343
344         if (n->nlmsg_type != XFRM_MSG_NEWPOLICY &&
345             n->nlmsg_type != XFRM_MSG_DELPOLICY &&
346             n->nlmsg_type != XFRM_MSG_POLEXPIRE) {
347                 fprintf(stderr, "Not a policy: %08x %08x %08x\n",
348                         n->nlmsg_len, n->nlmsg_type, n->nlmsg_flags);
349                 return 0;
350         }
351
352         if (n->nlmsg_type == XFRM_MSG_POLEXPIRE) {
353                 xpexp = NLMSG_DATA(n);
354                 xpinfo = &xpexp->pol;
355
356                 len -= NLMSG_LENGTH(sizeof(*xpexp));
357         } else {
358                 xpexp = NULL;
359                 xpinfo = NLMSG_DATA(n);
360
361                 len -= NLMSG_LENGTH(sizeof(*xpinfo));
362         }
363
364         if (len < 0) {
365                 fprintf(stderr, "BUG: wrong nlmsg len %d\n", len);
366                 return -1;
367         }
368
369         if (!xfrm_policy_filter_match(xpinfo))
370                 return 0;
371
372         if (n->nlmsg_type == XFRM_MSG_POLEXPIRE)
373                 rta = XFRMPEXP_RTA(xpexp);
374         else
375                 rta = XFRMP_RTA(xpinfo);
376
377         parse_rtattr(tb, XFRMA_MAX, rta, len);
378
379         if (n->nlmsg_type == XFRM_MSG_DELPOLICY)
380                 fprintf(fp, "Deleted ");
381         else if (n->nlmsg_type == XFRM_MSG_POLEXPIRE)
382                 fprintf(fp, "Expired ");
383
384         xfrm_policy_info_print(xpinfo, tb, fp, NULL, NULL);
385
386         if (n->nlmsg_type == XFRM_MSG_POLEXPIRE) {
387                 fprintf(fp, "\t");
388                 fprintf(fp, "hard %u", xpexp->hard);
389                 fprintf(fp, "%s", _SL_);
390         }
391
392         if (oneline)
393                 fprintf(fp, "\n");
394
395         return 0;
396 }
397
398 static int xfrm_policy_get_or_delete(int argc, char **argv, int delete,
399                                      void *res_nlbuf)
400 {
401         struct rtnl_handle rth;
402         struct {
403                 struct nlmsghdr                 n;
404                 struct xfrm_userpolicy_id       xpid;
405         } req;
406         char *dirp = NULL;
407         char *selp = NULL;
408         char *indexp = NULL;
409
410         memset(&req, 0, sizeof(req));
411
412         req.n.nlmsg_len = NLMSG_LENGTH(sizeof(req.xpid));
413         req.n.nlmsg_flags = NLM_F_REQUEST;
414         req.n.nlmsg_type = delete ? XFRM_MSG_DELPOLICY : XFRM_MSG_GETPOLICY;
415
416         while (argc > 0) {
417                 if (strcmp(*argv, "dir") == 0) {
418                         if (dirp)
419                                 duparg("dir", *argv);
420                         dirp = *argv;
421
422                         NEXT_ARG();
423                         xfrm_policy_dir_parse(&req.xpid.dir, &argc, &argv);
424
425                 } else if (strcmp(*argv, "index") == 0) {
426                         if (indexp)
427                                 duparg("index", *argv);
428                         indexp = *argv;
429
430                         NEXT_ARG();
431                         if (get_u32(&req.xpid.index, *argv, 0))
432                                 invarg("\"INDEX\" is invalid", *argv);
433
434                 } else {
435                         if (selp)
436                                 invarg("unknown", *argv);
437                         selp = *argv;
438
439                         xfrm_selector_parse(&req.xpid.sel, &argc, &argv);
440                         if (preferred_family == AF_UNSPEC)
441                                 preferred_family = req.xpid.sel.family;
442
443                 }
444
445                 argc--; argv++;
446         }
447
448         if (!dirp) {
449                 fprintf(stderr, "Not enough information: \"DIR\" is required.\n");
450                 exit(1);
451         }
452         if (!selp && !indexp) {
453                 fprintf(stderr, "Not enough information: either \"SELECTOR\" or \"INDEX\" is required.\n");
454                 exit(1);
455         }
456         if (selp && indexp)
457                 duparg2("SELECTOR", "INDEX");
458
459         if (rtnl_open_byproto(&rth, 0, NETLINK_XFRM) < 0)
460                 exit(1);
461
462         if (req.xpid.sel.family == AF_UNSPEC)
463                 req.xpid.sel.family = AF_INET;
464
465         if (rtnl_talk(&rth, &req.n, 0, 0, res_nlbuf, NULL, NULL) < 0)
466                 exit(2);
467
468         rtnl_close(&rth);
469
470         return 0;
471 }
472
473 static int xfrm_policy_delete(int argc, char **argv)
474 {
475         return xfrm_policy_get_or_delete(argc, argv, 1, NULL);
476 }
477
478 static int xfrm_policy_get(int argc, char **argv)
479 {
480         char buf[NLMSG_BUF_SIZE];
481         struct nlmsghdr *n = (struct nlmsghdr *)buf;
482
483         memset(buf, 0, sizeof(buf));
484
485         xfrm_policy_get_or_delete(argc, argv, 0, n);
486
487         if (xfrm_policy_print(NULL, n, (void*)stdout) < 0) {
488                 fprintf(stderr, "An error :-)\n");
489                 exit(1);
490         }
491
492         return 0;
493 }
494
495 /*
496  * With an existing policy of nlmsg, make new nlmsg for deleting the policy
497  * and store it to buffer.
498  */
499 static int xfrm_policy_keep(const struct sockaddr_nl *who,
500                             struct nlmsghdr *n,
501                             void *arg)
502 {
503         struct xfrm_buffer *xb = (struct xfrm_buffer *)arg;
504         struct rtnl_handle *rth = xb->rth;
505         struct xfrm_userpolicy_info *xpinfo = NLMSG_DATA(n);
506         int len = n->nlmsg_len;
507         struct nlmsghdr *new_n;
508         struct xfrm_userpolicy_id *xpid;
509
510         if (n->nlmsg_type != XFRM_MSG_NEWPOLICY) {
511                 fprintf(stderr, "Not a policy: %08x %08x %08x\n",
512                         n->nlmsg_len, n->nlmsg_type, n->nlmsg_flags);
513                 return 0;
514         }
515
516         len -= NLMSG_LENGTH(sizeof(*xpinfo));
517         if (len < 0) {
518                 fprintf(stderr, "BUG: wrong nlmsg len %d\n", len);
519                 return -1;
520         }
521
522         if (!xfrm_policy_filter_match(xpinfo))
523                 return 0;
524
525         if (xb->offset > xb->size) {
526                 fprintf(stderr, "Flush buffer overflow\n");
527                 return -1;
528         }
529
530         new_n = (struct nlmsghdr *)(xb->buf + xb->offset);
531         new_n->nlmsg_len = NLMSG_LENGTH(sizeof(*xpid));
532         new_n->nlmsg_flags = NLM_F_REQUEST;
533         new_n->nlmsg_type = XFRM_MSG_DELPOLICY;
534         new_n->nlmsg_seq = ++rth->seq;
535
536         xpid = NLMSG_DATA(new_n);
537         memcpy(&xpid->sel, &xpinfo->sel, sizeof(xpid->sel));
538         xpid->dir = xpinfo->dir;
539         xpid->index = xpinfo->index;
540
541         xb->offset += new_n->nlmsg_len;
542         xb->nlmsg_count ++;
543
544         return 0;
545 }
546
547 static int xfrm_policy_list_or_flush(int argc, char **argv, int flush)
548 {
549         char *selp = NULL;
550         struct rtnl_handle rth;
551
552         if (argc > 0)
553                 filter.use = 1;
554         filter.xpinfo.sel.family = preferred_family;
555
556         while (argc > 0) {
557                 if (strcmp(*argv, "dir") == 0) {
558                         NEXT_ARG();
559                         xfrm_policy_dir_parse(&filter.xpinfo.dir, &argc, &argv);
560
561                         filter.dir_mask = XFRM_FILTER_MASK_FULL;
562
563                 } else if (strcmp(*argv, "index") == 0) {
564                         NEXT_ARG();
565                         if (get_u32(&filter.xpinfo.index, *argv, 0))
566                                 invarg("\"INDEX\" is invalid", *argv);
567
568                         filter.index_mask = XFRM_FILTER_MASK_FULL;
569
570                 } else if (strcmp(*argv, "action") == 0) {
571                         NEXT_ARG();
572                         if (strcmp(*argv, "allow") == 0)
573                                 filter.xpinfo.action = XFRM_POLICY_ALLOW;
574                         else if (strcmp(*argv, "block") == 0)
575                                 filter.xpinfo.action = XFRM_POLICY_BLOCK;
576                         else
577                                 invarg("\"ACTION\" is invalid\n", *argv);
578
579                         filter.action_mask = XFRM_FILTER_MASK_FULL;
580
581                 } else if (strcmp(*argv, "priority") == 0) {
582                         NEXT_ARG();
583                         if (get_u32(&filter.xpinfo.priority, *argv, 0))
584                                 invarg("\"PRIORITY\" is invalid", *argv);
585
586                         filter.priority_mask = XFRM_FILTER_MASK_FULL;
587
588                 } else {
589                         if (selp)
590                                 invarg("unknown", *argv);
591                         selp = *argv;
592
593                         xfrm_selector_parse(&filter.xpinfo.sel, &argc, &argv);
594                         if (preferred_family == AF_UNSPEC)
595                                 preferred_family = filter.xpinfo.sel.family;
596
597                 }
598
599                 argc--; argv++;
600         }
601
602         if (rtnl_open_byproto(&rth, 0, NETLINK_XFRM) < 0)
603                 exit(1);
604
605         if (flush) {
606                 struct xfrm_buffer xb;
607                 char buf[NLMSG_FLUSH_BUF_SIZE];
608                 int i;
609
610                 xb.buf = buf;
611                 xb.size = sizeof(buf);
612                 xb.rth = &rth;
613
614                 for (i = 0; ; i++) {
615                         xb.offset = 0;
616                         xb.nlmsg_count = 0;
617
618                         if (show_stats > 1)
619                                 fprintf(stderr, "Flush round = %d\n", i);
620
621                         if (rtnl_wilddump_request(&rth, preferred_family, XFRM_MSG_GETPOLICY) < 0) {
622                                 perror("Cannot send dump request");
623                                 exit(1);
624                         }
625
626                         if (rtnl_dump_filter(&rth, xfrm_policy_keep, &xb, NULL, NULL) < 0) {
627                                 fprintf(stderr, "Flush terminated\n");
628                                 exit(1);
629                         }
630                         if (xb.nlmsg_count == 0) {
631                                 if (show_stats > 1)
632                                         fprintf(stderr, "Flush completed\n");
633                                 break;
634                         }
635
636                         if (rtnl_send(&rth, xb.buf, xb.offset) < 0) {
637                                 perror("Failed to send flush request\n");
638                                 exit(1);
639                         }
640                         if (show_stats > 1)
641                                 fprintf(stderr, "Flushed nlmsg count = %d\n", xb.nlmsg_count);
642
643                         xb.offset = 0;
644                         xb.nlmsg_count = 0;
645                 }
646         } else {
647                 if (rtnl_wilddump_request(&rth, preferred_family, XFRM_MSG_GETPOLICY) < 0) {
648                         perror("Cannot send dump request");
649                         exit(1);
650                 }
651
652                 if (rtnl_dump_filter(&rth, xfrm_policy_print, stdout, NULL, NULL) < 0) {
653                         fprintf(stderr, "Dump terminated\n");
654                         exit(1);
655                 }
656         }
657
658         rtnl_close(&rth);
659
660         exit(0);
661 }
662
663 static int xfrm_policy_flush_all(void)
664 {
665         struct rtnl_handle rth;
666         struct {
667                 struct nlmsghdr n;
668         } req;
669
670         memset(&req, 0, sizeof(req));
671
672         req.n.nlmsg_len = NLMSG_LENGTH(0); /* nlmsg data is nothing */
673         req.n.nlmsg_flags = NLM_F_REQUEST;
674         req.n.nlmsg_type = XFRM_MSG_FLUSHPOLICY;
675
676         if (rtnl_open_byproto(&rth, 0, NETLINK_XFRM) < 0)
677                 exit(1);
678
679         if (show_stats > 1)
680                 fprintf(stderr, "Flush all\n");
681
682         if (rtnl_talk(&rth, &req.n, 0, 0, NULL, NULL, NULL) < 0)
683                 exit(2);
684
685         rtnl_close(&rth);
686
687         return 0;
688 }
689
690 int do_xfrm_policy(int argc, char **argv)
691 {
692         if (argc < 1)
693                 return xfrm_policy_list_or_flush(0, NULL, 0);
694
695         if (matches(*argv, "add") == 0)
696                 return xfrm_policy_modify(XFRM_MSG_NEWPOLICY, 0,
697                                           argc-1, argv+1);
698         if (matches(*argv, "update") == 0)
699                 return xfrm_policy_modify(XFRM_MSG_UPDPOLICY, 0,
700                                           argc-1, argv+1);
701         if (matches(*argv, "delete") == 0 || matches(*argv, "del") == 0)
702                 return xfrm_policy_delete(argc-1, argv+1);
703         if (matches(*argv, "list") == 0 || matches(*argv, "show") == 0
704             || matches(*argv, "lst") == 0)
705                 return xfrm_policy_list_or_flush(argc-1, argv+1, 0);
706         if (matches(*argv, "get") == 0)
707                 return xfrm_policy_get(argc-1, argv+1);
708         if (matches(*argv, "flush") == 0) {
709                 if (argc-1 < 1)
710                         return xfrm_policy_flush_all();
711                 else
712                         return xfrm_policy_list_or_flush(argc-1, argv+1, 1);
713         }
714         if (matches(*argv, "help") == 0)
715                 usage();
716         fprintf(stderr, "Command \"%s\" is unknown, try \"ip xfrm policy help\".\n", *argv);
717         exit(-1);
718 }