c1331a420acde88a4502cb3c2ad236c3a21b8c80
[iproute2.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 static int xfrm_policy_print(const struct sockaddr_nl *who, 
335                              struct nlmsghdr *n, void *arg)
336 {
337         FILE *fp = (FILE*)arg;
338         struct xfrm_userpolicy_info *xpinfo = NLMSG_DATA(n);
339         int len = n->nlmsg_len;
340         struct rtattr * tb[XFRMA_MAX+1];
341
342         if (n->nlmsg_type != XFRM_MSG_NEWPOLICY &&
343             n->nlmsg_type != XFRM_MSG_DELPOLICY) {
344                 fprintf(stderr, "Not a policy: %08x %08x %08x\n",
345                         n->nlmsg_len, n->nlmsg_type, n->nlmsg_flags);
346                 return 0;
347         }
348
349         len -= NLMSG_LENGTH(sizeof(*xpinfo));
350         if (len < 0) {
351                 fprintf(stderr, "BUG: wrong nlmsg len %d\n", len);
352                 return -1;
353         }
354
355         if (!xfrm_policy_filter_match(xpinfo))
356                 return 0;
357
358         parse_rtattr(tb, XFRMA_MAX, XFRMP_RTA(xpinfo), len);
359
360         if (n->nlmsg_type == XFRM_MSG_DELPOLICY)
361                 fprintf(fp, "Deleted ");
362
363         xfrm_selector_print(&xpinfo->sel, preferred_family, fp, NULL);
364
365         fprintf(fp, "\t");
366         fprintf(fp, "dir ");
367         switch (xpinfo->dir) {
368         case XFRM_POLICY_IN:
369                 fprintf(fp, "in");
370                 break;
371         case XFRM_POLICY_OUT:
372                 fprintf(fp, "out");
373                 break;
374         case XFRM_POLICY_FWD:
375                 fprintf(fp, "fwd");
376                 break;
377         default:
378                 fprintf(fp, "%u", xpinfo->dir);
379                 break;
380         }
381         fprintf(fp, " ");
382
383         switch (xpinfo->action) {
384         case XFRM_POLICY_ALLOW:
385                 if (show_stats > 0)
386                         fprintf(fp, "action allow ");
387                 break;
388         case XFRM_POLICY_BLOCK:
389                 fprintf(fp, "action block ");
390                 break;
391         default:
392                 fprintf(fp, "action %u ", xpinfo->action);
393                 break;
394         }
395
396         if (show_stats)
397                 fprintf(fp, "index %u ", xpinfo->index);
398         fprintf(fp, "priority %u ", xpinfo->priority);
399         if (show_stats > 0) {
400                 fprintf(fp, "share %s ", strxf_share(xpinfo->share));
401                 fprintf(fp, "flag 0x%s", strxf_mask8(xpinfo->flags));
402         }
403         fprintf(fp, "%s", _SL_);
404
405         if (show_stats > 0)
406                 xfrm_lifetime_print(&xpinfo->lft, &xpinfo->curlft, fp, "\t");
407
408         xfrm_xfrma_print(tb, xpinfo->sel.family, fp, "\t");
409
410         if (oneline)
411                 fprintf(fp, "\n");
412
413         return 0;
414 }
415
416 static int xfrm_policy_get_or_delete(int argc, char **argv, int delete,
417                                      void *res_nlbuf)
418 {
419         struct rtnl_handle rth;
420         struct {
421                 struct nlmsghdr                 n;
422                 struct xfrm_userpolicy_id       xpid;
423         } req;
424         char *dirp = NULL;
425         char *selp = NULL;
426         char *indexp = NULL;
427
428         memset(&req, 0, sizeof(req));
429
430         req.n.nlmsg_len = NLMSG_LENGTH(sizeof(req.xpid));
431         req.n.nlmsg_flags = NLM_F_REQUEST;
432         req.n.nlmsg_type = delete ? XFRM_MSG_DELPOLICY : XFRM_MSG_GETPOLICY;
433
434         while (argc > 0) {
435                 if (strcmp(*argv, "dir") == 0) {
436                         if (dirp)
437                                 duparg("dir", *argv);
438                         dirp = *argv;
439
440                         NEXT_ARG();
441                         xfrm_policy_dir_parse(&req.xpid.dir, &argc, &argv);
442
443                 } else if (strcmp(*argv, "index") == 0) {
444                         if (indexp)
445                                 duparg("index", *argv);
446                         indexp = *argv;
447
448                         NEXT_ARG();
449                         if (get_u32(&req.xpid.index, *argv, 0))
450                                 invarg("\"INDEX\" is invalid", *argv);
451
452                 } else {
453                         if (selp)
454                                 invarg("unknown", *argv);
455                         selp = *argv;
456
457                         xfrm_selector_parse(&req.xpid.sel, &argc, &argv);
458                         if (preferred_family == AF_UNSPEC)
459                                 preferred_family = req.xpid.sel.family;
460
461                 }
462
463                 argc--; argv++;
464         }
465
466         if (!dirp) {
467                 fprintf(stderr, "Not enough information: \"DIR\" is required.\n");
468                 exit(1);
469         }
470         if (!selp && !indexp) {
471                 fprintf(stderr, "Not enough information: either \"SELECTOR\" or \"INDEX\" is required.\n");
472                 exit(1);
473         }
474         if (selp && indexp)
475                 duparg2("SELECTOR", "INDEX");
476
477         if (rtnl_open_byproto(&rth, 0, NETLINK_XFRM) < 0)
478                 exit(1);
479
480         if (req.xpid.sel.family == AF_UNSPEC)
481                 req.xpid.sel.family = AF_INET;
482
483         if (rtnl_talk(&rth, &req.n, 0, 0, res_nlbuf, NULL, NULL) < 0)
484                 exit(2);
485
486         rtnl_close(&rth);
487
488         return 0;
489 }
490
491 static int xfrm_policy_delete(int argc, char **argv)
492 {
493         return xfrm_policy_get_or_delete(argc, argv, 1, NULL);
494 }
495
496 static int xfrm_policy_get(int argc, char **argv)
497 {
498         char buf[NLMSG_BUF_SIZE];
499         struct nlmsghdr *n = (struct nlmsghdr *)buf;
500
501         memset(buf, 0, sizeof(buf));
502
503         xfrm_policy_get_or_delete(argc, argv, 0, n);
504
505         if (xfrm_policy_print(NULL, n, (void*)stdout) < 0) {
506                 fprintf(stderr, "An error :-)\n");
507                 exit(1);
508         }
509
510         return 0;
511 }
512
513 /*
514  * With an existing policy of nlmsg, make new nlmsg for deleting the policy
515  * and store it to buffer.
516  */
517 static int xfrm_policy_keep(const struct sockaddr_nl *who,
518                             struct nlmsghdr *n,
519                             void *arg)
520 {
521         struct xfrm_buffer *xb = (struct xfrm_buffer *)arg;
522         struct rtnl_handle *rth = xb->rth;
523         struct xfrm_userpolicy_info *xpinfo = NLMSG_DATA(n);
524         int len = n->nlmsg_len;
525         struct nlmsghdr *new_n;
526         struct xfrm_userpolicy_id *xpid;
527
528         if (n->nlmsg_type != XFRM_MSG_NEWPOLICY) {
529                 fprintf(stderr, "Not a policy: %08x %08x %08x\n",
530                         n->nlmsg_len, n->nlmsg_type, n->nlmsg_flags);
531                 return 0;
532         }
533
534         len -= NLMSG_LENGTH(sizeof(*xpinfo));
535         if (len < 0) {
536                 fprintf(stderr, "BUG: wrong nlmsg len %d\n", len);
537                 return -1;
538         }
539
540         if (!xfrm_policy_filter_match(xpinfo))
541                 return 0;
542
543         if (xb->offset > xb->size) {
544                 fprintf(stderr, "Flush buffer overflow\n");
545                 return -1;
546         }
547
548         new_n = (struct nlmsghdr *)(xb->buf + xb->offset);
549         new_n->nlmsg_len = NLMSG_LENGTH(sizeof(*xpid));
550         new_n->nlmsg_flags = NLM_F_REQUEST;
551         new_n->nlmsg_type = XFRM_MSG_DELPOLICY;
552         new_n->nlmsg_seq = ++rth->seq;
553
554         xpid = NLMSG_DATA(new_n);
555         memcpy(&xpid->sel, &xpinfo->sel, sizeof(xpid->sel));
556         xpid->dir = xpinfo->dir;
557         xpid->index = xpinfo->index;
558
559         xb->offset += new_n->nlmsg_len;
560         xb->nlmsg_count ++;
561
562         return 0;
563 }
564
565 static int xfrm_policy_list_or_flush(int argc, char **argv, int flush)
566 {
567         char *selp = NULL;
568         struct rtnl_handle rth;
569
570         if (argc > 0)
571                 filter.use = 1;
572         filter.xpinfo.sel.family = preferred_family;
573
574         while (argc > 0) {
575                 if (strcmp(*argv, "dir") == 0) {
576                         NEXT_ARG();
577                         xfrm_policy_dir_parse(&filter.xpinfo.dir, &argc, &argv);
578
579                         filter.dir_mask = XFRM_FILTER_MASK_FULL;
580
581                 } else if (strcmp(*argv, "index") == 0) {
582                         NEXT_ARG();
583                         if (get_u32(&filter.xpinfo.index, *argv, 0))
584                                 invarg("\"INDEX\" is invalid", *argv);
585
586                         filter.index_mask = XFRM_FILTER_MASK_FULL;
587
588                 } else if (strcmp(*argv, "action") == 0) {
589                         NEXT_ARG();
590                         if (strcmp(*argv, "allow") == 0)
591                                 filter.xpinfo.action = XFRM_POLICY_ALLOW;
592                         else if (strcmp(*argv, "block") == 0)
593                                 filter.xpinfo.action = XFRM_POLICY_BLOCK;
594                         else
595                                 invarg("\"ACTION\" is invalid\n", *argv);
596
597                         filter.action_mask = XFRM_FILTER_MASK_FULL;
598
599                 } else if (strcmp(*argv, "priority") == 0) {
600                         NEXT_ARG();
601                         if (get_u32(&filter.xpinfo.priority, *argv, 0))
602                                 invarg("\"PRIORITY\" is invalid", *argv);
603
604                         filter.priority_mask = XFRM_FILTER_MASK_FULL;
605
606                 } else {
607                         if (selp)
608                                 invarg("unknown", *argv);
609                         selp = *argv;
610
611                         xfrm_selector_parse(&filter.xpinfo.sel, &argc, &argv);
612                         if (preferred_family == AF_UNSPEC)
613                                 preferred_family = filter.xpinfo.sel.family;
614
615                 }
616
617                 argc--; argv++;
618         }
619
620         if (rtnl_open_byproto(&rth, 0, NETLINK_XFRM) < 0)
621                 exit(1);
622
623         if (flush) {
624                 struct xfrm_buffer xb;
625                 char buf[NLMSG_FLUSH_BUF_SIZE];
626                 int i;
627
628                 xb.buf = buf;
629                 xb.size = sizeof(buf);
630                 xb.rth = &rth;
631
632                 for (i = 0; ; i++) {
633                         xb.offset = 0;
634                         xb.nlmsg_count = 0;
635
636                         if (show_stats > 1)
637                                 fprintf(stderr, "Flush round = %d\n", i);
638
639                         if (rtnl_wilddump_request(&rth, preferred_family, XFRM_MSG_GETPOLICY) < 0) {
640                                 perror("Cannot send dump request");
641                                 exit(1);
642                         }
643
644                         if (rtnl_dump_filter(&rth, xfrm_policy_keep, &xb, NULL, NULL) < 0) {
645                                 fprintf(stderr, "Flush terminated\n");
646                                 exit(1);
647                         }
648                         if (xb.nlmsg_count == 0) {
649                                 if (show_stats > 1)
650                                         fprintf(stderr, "Flush completed\n");
651                                 break;
652                         }
653
654                         if (rtnl_send(&rth, xb.buf, xb.offset) < 0) {
655                                 perror("Failed to send flush request\n");
656                                 exit(1);
657                         }
658                         if (show_stats > 1)
659                                 fprintf(stderr, "Flushed nlmsg count = %d\n", xb.nlmsg_count);
660
661                         xb.offset = 0;
662                         xb.nlmsg_count = 0;
663                 }
664         } else {
665                 if (rtnl_wilddump_request(&rth, preferred_family, XFRM_MSG_GETPOLICY) < 0) {
666                         perror("Cannot send dump request");
667                         exit(1);
668                 }
669
670                 if (rtnl_dump_filter(&rth, xfrm_policy_print, stdout, NULL, NULL) < 0) {
671                         fprintf(stderr, "Dump terminated\n");
672                         exit(1);
673                 }
674         }
675
676         rtnl_close(&rth);
677
678         exit(0);
679 }
680
681 static int xfrm_policy_flush_all(void)
682 {
683         struct rtnl_handle rth;
684         struct {
685                 struct nlmsghdr n;
686         } req;
687
688         memset(&req, 0, sizeof(req));
689
690         req.n.nlmsg_len = NLMSG_LENGTH(0); /* nlmsg data is nothing */
691         req.n.nlmsg_flags = NLM_F_REQUEST;
692         req.n.nlmsg_type = XFRM_MSG_FLUSHPOLICY;
693
694         if (rtnl_open_byproto(&rth, 0, NETLINK_XFRM) < 0)
695                 exit(1);
696
697         if (show_stats > 1)
698                 fprintf(stderr, "Flush all\n");
699
700         if (rtnl_talk(&rth, &req.n, 0, 0, NULL, NULL, NULL) < 0)
701                 exit(2);
702
703         rtnl_close(&rth);
704
705         return 0;
706 }
707
708 int do_xfrm_policy(int argc, char **argv)
709 {
710         if (argc < 1)
711                 return xfrm_policy_list_or_flush(0, NULL, 0);
712
713         if (matches(*argv, "add") == 0)
714                 return xfrm_policy_modify(XFRM_MSG_NEWPOLICY, 0,
715                                           argc-1, argv+1);
716         if (matches(*argv, "update") == 0)
717                 return xfrm_policy_modify(XFRM_MSG_UPDPOLICY, 0,
718                                           argc-1, argv+1);
719         if (matches(*argv, "delete") == 0 || matches(*argv, "del") == 0)
720                 return xfrm_policy_delete(argc-1, argv+1);
721         if (matches(*argv, "list") == 0 || matches(*argv, "show") == 0
722             || matches(*argv, "lst") == 0)
723                 return xfrm_policy_list_or_flush(argc-1, argv+1, 0);
724         if (matches(*argv, "get") == 0)
725                 return xfrm_policy_get(argc-1, argv+1);
726         if (matches(*argv, "flush") == 0) {
727                 if (argc-1 < 1)
728                         return xfrm_policy_flush_all();
729                 else
730                         return xfrm_policy_list_or_flush(argc-1, argv+1, 1);
731         }
732         if (matches(*argv, "help") == 0)
733                 usage();
734         fprintf(stderr, "Command \"%s\" is unknown, try \"ip xfrm policy help\".\n", *argv);
735         exit(-1);
736 }