5a3df95e323df38a4f99d3e463cb9de9c4dda3cd
[framework/connectivity/connman.git] / tools / iptables-test.c
1 /*
2  *  Connection Manager
3  *
4  *  Copyright (C) 2007-2011  Intel Corporation. All rights reserved.
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 version 2 as
8  *  published by the Free Software Foundation.
9  *
10  *  This program is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *  GNU General Public License for more details.
14  *
15  *  You should have received a copy of the GNU General Public License
16  *  along with this program; if not, write to the Free Software
17  *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18  *
19  */
20
21 #include <getopt.h>
22 #include <stdlib.h>
23 #include <stdio.h>
24 #include <string.h>
25 #include <unistd.h>
26 #include <sys/errno.h>
27 #include <sys/socket.h>
28 #include <sys/types.h>
29 #include <arpa/inet.h>
30 #include <xtables.h>
31
32 #include <linux/netfilter_ipv4/ip_tables.h>
33
34 #include <glib.h>
35
36 static const char *hooknames[] = {
37         [NF_IP_PRE_ROUTING]     = "PREROUTING",
38         [NF_IP_LOCAL_IN]        = "INPUT",
39         [NF_IP_FORWARD]         = "FORWARD",
40         [NF_IP_LOCAL_OUT]       = "OUTPUT",
41         [NF_IP_POST_ROUTING]    = "POSTROUTING",
42 };
43
44 #define LABEL_ACCEPT  "ACCEPT"
45 #define LABEL_DROP    "DROP"
46 #define LABEL_QUEUE   "QUEUE"
47 #define LABEL_RETURN  "RETURN"
48
49 #define XT_OPTION_OFFSET_SCALE 256
50
51 /* fn returns 0 to continue iteration */
52 #define _XT_ENTRY_ITERATE_CONTINUE(type, entries, size, n, fn, args...) \
53 ({                                                              \
54         unsigned int __i;                                       \
55         int __n;                                                \
56         int __ret = 0;                                          \
57         type *__entry;                                          \
58                                                                 \
59         for (__i = 0, __n = 0; __i < (size);                    \
60              __i += __entry->next_offset, __n++) {              \
61                 __entry = (void *)(entries) + __i;              \
62                 if (__n < n)                                    \
63                         continue;                               \
64                                                                 \
65                 __ret = fn(__entry,  ## args);                  \
66                 if (__ret != 0)                                 \
67                         break;                                  \
68         }                                                       \
69         __ret;                                                  \
70 })
71
72 /* fn returns 0 to continue iteration */
73 #define _XT_ENTRY_ITERATE(type, entries, size, fn, args...) \
74         _XT_ENTRY_ITERATE_CONTINUE(type, entries, size, 0, fn, args)
75
76 #define ENTRY_ITERATE(entries, size, fn, args...) \
77         _XT_ENTRY_ITERATE(struct ipt_entry, entries, size, fn, ## args)
78
79 #define MIN_ALIGN (__alignof__(struct ipt_entry))
80
81 #define ALIGN(s) (((s) + ((MIN_ALIGN)-1)) & ~((MIN_ALIGN)-1))
82
83 struct error_target {
84         struct xt_entry_target t;
85         char error[IPT_TABLE_MAXNAMELEN];
86 };
87
88 struct connman_iptables_entry {
89         int offset;
90         int builtin;
91
92         struct ipt_entry *entry;
93 };
94
95 struct connman_iptables {
96         int ipt_sock;
97
98         struct ipt_getinfo *info;
99         struct ipt_get_entries *blob_entries;
100
101         unsigned int num_entries;
102         unsigned int old_entries;
103         unsigned int size;
104
105         unsigned int underflow[NF_INET_NUMHOOKS];
106         unsigned int hook_entry[NF_INET_NUMHOOKS];
107
108         GList *entries;
109 };
110
111
112 static struct ipt_entry *get_entry(struct connman_iptables *table,
113                                         unsigned int offset)
114 {
115         return (struct ipt_entry *)((char *)table->blob_entries->entrytable +
116                                                                         offset);
117 }
118
119 static int is_hook_entry(struct connman_iptables *table,
120                                 struct ipt_entry *entry)
121 {
122         unsigned int i;
123
124         for (i = 0; i < NF_INET_NUMHOOKS; i++) {
125                 if ((table->info->valid_hooks & (1 << i))
126                 && get_entry(table, table->info->hook_entry[i]) == entry)
127                         return i;
128         }
129
130         return -1;
131 }
132
133 static unsigned long entry_to_offset(struct connman_iptables *table,
134                                         struct ipt_entry *entry)
135 {
136         return (void *)entry - (void *)table->blob_entries->entrytable;
137 }
138
139 static int target_to_verdict(char *target_name)
140 {
141         if (!strcmp(target_name, LABEL_ACCEPT))
142                 return -NF_ACCEPT - 1;
143
144         if (!strcmp(target_name, LABEL_DROP))
145                 return -NF_DROP - 1;
146
147         if (!strcmp(target_name, LABEL_QUEUE))
148                 return -NF_QUEUE - 1;
149
150         if (!strcmp(target_name, LABEL_RETURN))
151                 return XT_RETURN;
152
153         return 0;
154 }
155
156 static gboolean is_builtin_target(char *target_name)
157 {
158         if (!strcmp(target_name, LABEL_ACCEPT) ||
159                 !strcmp(target_name, LABEL_DROP) ||
160                 !strcmp(target_name, LABEL_QUEUE) ||
161                 !strcmp(target_name, LABEL_RETURN))
162                 return TRUE;
163
164         return FALSE;
165 }
166
167 static gboolean is_jump(struct connman_iptables_entry *e)
168 {
169         struct xt_entry_target *target;
170
171         target = ipt_get_target(e->entry);
172
173         if (!strcmp(target->u.user.name, IPT_STANDARD_TARGET)) {
174                 struct xt_standard_target *t;
175
176                 t = (struct xt_standard_target *)target;
177
178                 switch (t->verdict) {
179                 case XT_RETURN:
180                 case -NF_ACCEPT - 1:
181                 case -NF_DROP - 1:
182                 case -NF_QUEUE - 1:
183                 case -NF_STOP - 1:
184                         return false;
185
186                 default:
187                         return true;
188                 }
189         }
190
191         return false;
192 }
193
194 static gboolean is_chain(struct connman_iptables *table,
195                                 struct connman_iptables_entry *e)
196 {
197         struct ipt_entry *entry;
198         struct xt_entry_target *target;
199
200         entry = e->entry;
201         if (e->builtin >= 0)
202                 return TRUE;
203
204         target = ipt_get_target(entry);
205         if (!strcmp(target->u.user.name, IPT_ERROR_TARGET))
206                 return TRUE;
207
208         return FALSE;
209 }
210
211 static GList *find_chain_head(struct connman_iptables *table,
212                                 char *chain_name)
213 {
214         GList *list;
215         struct connman_iptables_entry *head;
216         struct ipt_entry *entry;
217         struct xt_entry_target *target;
218         int builtin;
219
220         for (list = table->entries; list; list = list->next) {
221                 head = list->data;
222                 entry = head->entry;
223
224                 /* Buit-in chain */
225                 builtin = head->builtin;
226                 if (builtin >= 0 && !strcmp(hooknames[builtin], chain_name))
227                         break;
228
229                 /* User defined chain */
230                 target = ipt_get_target(entry);
231                 if (!strcmp(target->u.user.name, IPT_ERROR_TARGET) &&
232                     !strcmp((char *)target->data, chain_name))
233                         break;
234         }
235
236         return list;
237 }
238
239 static GList *find_chain_tail(struct connman_iptables *table,
240                                 char *chain_name)
241 {
242         GList *chain_head, *list;
243         struct connman_iptables_entry *tail;
244
245         chain_head = find_chain_head(table, chain_name);
246         if (chain_head == NULL)
247                 return NULL;
248
249         /* Then we look for the next chain */
250         for (list = chain_head->next; list; list = list->next) {
251                 tail = list->data;
252
253                 if (is_chain(table, tail))
254                         return list;
255         }
256
257         /* Nothing found, we return the table end */
258         return g_list_last(table->entries);
259 }
260
261 static void update_offsets(struct connman_iptables *table)
262 {
263         GList *list, *prev;
264         struct connman_iptables_entry *entry, *prev_entry;
265
266         for (list = table->entries; list; list = list->next) {
267                 entry = list->data;
268
269                 if (list == table->entries) {
270                         entry->offset = 0;
271
272                         continue;
273                 }
274
275                 prev = list->prev;
276                 prev_entry = prev->data;
277
278                 entry->offset = prev_entry->offset +
279                                         prev_entry->entry->next_offset;
280         }
281 }
282
283 static void update_targets_reference(struct connman_iptables *table,
284                                 struct connman_iptables_entry *entry_before,
285                                 struct connman_iptables_entry *modified_entry,
286                                 gboolean is_removing)
287 {
288         struct connman_iptables_entry *tmp;
289         struct xt_standard_target *t;
290         GList *list;
291         int offset;
292
293         offset = modified_entry->entry->next_offset;
294
295         for (list = table->entries; list; list = list->next) {
296                 tmp = list->data;
297
298                 if (!is_jump(tmp))
299                         continue;
300
301                 t = (struct xt_standard_target *)ipt_get_target(tmp->entry);
302
303                 if (is_removing == TRUE) {
304                         if (t->verdict >= entry_before->offset)
305                                 t->verdict -= offset;
306                 } else {
307                         if (t->verdict > entry_before->offset)
308                                 t->verdict += offset;
309                 }
310         }
311 }
312
313 static int connman_add_entry(struct connman_iptables *table,
314                                 struct ipt_entry *entry, GList *before,
315                                         int builtin)
316 {
317         struct connman_iptables_entry *e, *entry_before;
318
319         if (table == NULL)
320                 return -1;
321
322         e = g_try_malloc0(sizeof(struct connman_iptables_entry));
323         if (e == NULL)
324                 return -1;
325
326         e->entry = entry;
327         e->builtin = builtin;
328
329         table->entries = g_list_insert_before(table->entries, before, e);
330         table->num_entries++;
331         table->size += entry->next_offset;
332
333         if (before == NULL) {
334                 e->offset = table->size - entry->next_offset;
335
336                 return 0;
337         }
338
339         entry_before = before->data;
340
341         /*
342          * We've just appended/insterted a new entry. All references
343          * should be bumped accordingly.
344          */
345         update_targets_reference(table, entry_before, e, FALSE);
346
347         update_offsets(table);
348
349         return 0;
350 }
351
352 static int remove_table_entry(struct connman_iptables *table,
353                                         struct connman_iptables_entry *entry)
354 {
355         int removed = 0;
356
357         table->num_entries--;
358         table->size -= entry->entry->next_offset;
359         removed = entry->entry->next_offset;
360
361         g_free(entry->entry);
362
363         table->entries = g_list_remove(table->entries, entry);
364
365         return removed;
366 }
367
368 static int connman_iptables_flush_chain(struct connman_iptables *table,
369                                                 char *name)
370 {
371         GList *chain_head, *chain_tail, *list, *next;
372         struct connman_iptables_entry *entry;
373         int builtin, removed = 0;
374
375         chain_head = find_chain_head(table, name);
376         if (chain_head == NULL)
377                 return -EINVAL;
378
379         chain_tail = find_chain_tail(table, name);
380         if (chain_tail == NULL)
381                 return -EINVAL;
382
383         entry = chain_head->data;
384         builtin = entry->builtin;
385
386         if (builtin >= 0)
387                 list = chain_head;
388         else
389                 list = chain_head->next;
390
391         if (list == chain_tail->prev)
392                 return 0;
393
394         while (list != chain_tail->prev) {
395                 entry = list->data;
396                 next = g_list_next(list);
397
398                 removed += remove_table_entry(table, entry);
399
400                 list = next;
401         }
402
403         if (builtin >= 0) {
404                 struct connman_iptables_entry *e;
405
406                 entry = list->data;
407
408                 entry->builtin = builtin;
409
410                 table->underflow[builtin] -= removed;
411
412                 for (list = chain_tail; list; list = list->next) {
413                         e = list->data;
414
415                         builtin = e->builtin;
416                         if (builtin < 0)
417                                 continue;
418
419                         table->hook_entry[builtin] -= removed;
420                         table->underflow[builtin] -= removed;
421                 }
422         }
423
424         update_offsets(table);
425
426         return 0;
427 }
428
429 static int connman_iptables_delete_chain(struct connman_iptables *table,
430                                                 char *name)
431 {
432         GList *chain_head, *chain_tail;
433         struct connman_iptables_entry *entry;
434
435         chain_head = find_chain_head(table, name);
436         if (chain_head == NULL)
437                 return -EINVAL;
438
439         entry = chain_head->data;
440
441         /* We cannot remove builtin chain */
442         if (entry->builtin >= 0)
443                 return -EINVAL;
444
445         chain_tail = find_chain_tail(table, name);
446         if (chain_tail == NULL)
447                 return -EINVAL;
448
449         /* Chain must be flushed */
450         if (chain_head->next != chain_tail->prev)
451                 return -EINVAL;
452
453         remove_table_entry(table, entry);
454
455         entry = chain_tail->prev->data;
456         remove_table_entry(table, entry);
457
458         update_offsets(table);
459
460         return 0;
461 }
462
463 static int connman_iptables_add_chain(struct connman_iptables *table,
464                                         char *name)
465 {
466         GList *last;
467         struct ipt_entry *entry_head;
468         struct ipt_entry *entry_return;
469         struct error_target *error;
470         struct ipt_standard_target *standard;
471         u_int16_t entry_head_size, entry_return_size;
472
473         last = g_list_last(table->entries);
474
475         /*
476          * An empty chain is composed of:
477          * - A head entry, with no match and an error target.
478          *   The error target data is the chain name.
479          * - A tail entry, with no match and a standard target.
480          *   The standard target verdict is XT_RETURN (return to the
481          *   caller).
482          */
483
484         /* head entry */
485         entry_head_size = sizeof(struct ipt_entry) +
486                                 sizeof(struct error_target);
487         entry_head = g_try_malloc0(entry_head_size);
488         if (entry_head == NULL)
489                 goto err_head;
490
491         memset(entry_head, 0, entry_head_size);
492
493         entry_head->target_offset = sizeof(struct ipt_entry);
494         entry_head->next_offset = entry_head_size;
495
496         error = (struct error_target *) entry_head->elems;
497         strcpy(error->t.u.user.name, IPT_ERROR_TARGET);
498         error->t.u.user.target_size = ALIGN(sizeof(struct error_target));
499         strcpy(error->error, name);
500
501         if (connman_add_entry(table, entry_head, last, -1) < 0)
502                 goto err_head;
503
504         /* tail entry */
505         entry_return_size = sizeof(struct ipt_entry) +
506                                 sizeof(struct ipt_standard_target);
507         entry_return = g_try_malloc0(entry_return_size);
508         if (entry_return == NULL)
509                 goto err;
510
511         memset(entry_return, 0, entry_return_size);
512
513         entry_return->target_offset = sizeof(struct ipt_entry);
514         entry_return->next_offset = entry_return_size;
515
516         standard = (struct ipt_standard_target *) entry_return->elems;
517         standard->target.u.user.target_size =
518                                 ALIGN(sizeof(struct ipt_standard_target));
519         standard->verdict = XT_RETURN;
520
521         if (connman_add_entry(table, entry_return, last, -1) < 0)
522                 goto err;
523
524         return 0;
525
526 err:
527         g_free(entry_return);
528 err_head:
529         g_free(entry_head);
530
531         return -ENOMEM;
532 }
533
534 static struct ipt_entry *new_rule(struct ipt_ip *ip,
535                         char *target_name, struct xtables_target *xt_t,
536                         struct xtables_rule_match *xt_rm)
537 {
538         struct xtables_rule_match *tmp_xt_rm;
539         struct ipt_entry *new_entry;
540         size_t match_size, target_size;
541
542         match_size = 0;
543         for (tmp_xt_rm = xt_rm; tmp_xt_rm != NULL; tmp_xt_rm = tmp_xt_rm->next)
544                 match_size += tmp_xt_rm->match->m->u.match_size;
545
546         if (xt_t)
547                 target_size = ALIGN(xt_t->t->u.target_size);
548         else
549                 target_size = ALIGN(sizeof(struct xt_standard_target));
550
551         new_entry = g_try_malloc0(sizeof(struct ipt_entry) + target_size +
552                                                                 match_size);
553         if (new_entry == NULL)
554                 return NULL;
555
556         memcpy(&new_entry->ip, ip, sizeof(struct ipt_ip));
557
558         new_entry->target_offset = sizeof(struct ipt_entry) + match_size;
559         new_entry->next_offset = sizeof(struct ipt_entry) + target_size +
560                                                                 match_size;
561
562         match_size = 0;
563         for (tmp_xt_rm = xt_rm; tmp_xt_rm != NULL;
564                                 tmp_xt_rm = tmp_xt_rm->next) {
565                 memcpy(new_entry->elems + match_size, tmp_xt_rm->match->m,
566                                         tmp_xt_rm->match->m->u.match_size);
567                 match_size += tmp_xt_rm->match->m->u.match_size;
568         }
569
570         if (xt_t) {
571                 struct xt_entry_target *entry_target;
572
573                 entry_target = ipt_get_target(new_entry);
574                 memcpy(entry_target, xt_t->t, target_size);
575         }
576
577         return new_entry;
578 }
579
580 static void update_hooks(struct connman_iptables *table, GList *chain_head,
581                                 struct ipt_entry *entry)
582 {
583         GList *list;
584         struct connman_iptables_entry *head, *e;
585         int builtin;
586
587         if (chain_head == NULL)
588                 return;
589
590         head = chain_head->data;
591
592         builtin = head->builtin;
593         if (builtin < 0)
594                 return;
595
596         table->underflow[builtin] += entry->next_offset;
597
598         for (list = chain_head->next; list; list = list->next) {
599                 e = list->data;
600
601                 builtin = e->builtin;
602                 if (builtin < 0)
603                         continue;
604
605                 table->hook_entry[builtin] += entry->next_offset;
606                 table->underflow[builtin] += entry->next_offset;
607         }
608 }
609
610 static struct ipt_entry *prepare_rule_inclusion(struct connman_iptables *table,
611                                 struct ipt_ip *ip, char *chain_name,
612                                 char *target_name, struct xtables_target *xt_t,
613                                 int *builtin, struct xtables_rule_match *xt_rm)
614 {
615         GList *chain_tail, *chain_head;
616         struct ipt_entry *new_entry;
617         struct connman_iptables_entry *head;
618
619         chain_head = find_chain_head(table, chain_name);
620         if (chain_head == NULL)
621                 return NULL;
622
623         chain_tail = find_chain_tail(table, chain_name);
624         if (chain_tail == NULL)
625                 return NULL;
626
627         new_entry = new_rule(ip, target_name, xt_t, xt_rm);
628         if (new_entry == NULL)
629                 return NULL;
630
631         update_hooks(table, chain_head, new_entry);
632
633         /*
634          * If the chain is builtin, and does not have any rule,
635          * then the one that we're inserting is becoming the head
636          * and thus needs the builtin flag.
637          */
638         head = chain_head->data;
639         if (head->builtin < 0)
640                 *builtin = -1;
641         else if (chain_head == chain_tail->prev) {
642                 *builtin = head->builtin;
643                 head->builtin = -1;
644         }
645
646         return new_entry;
647 }
648
649 static int connman_iptables_append_rule(struct connman_iptables *table,
650                                 struct ipt_ip *ip, char *chain_name,
651                                 char *target_name, struct xtables_target *xt_t,
652                                 struct xtables_rule_match *xt_rm)
653 {
654         GList *chain_tail;
655         struct ipt_entry *new_entry;
656         int builtin = -1, ret;
657
658         chain_tail = find_chain_tail(table, chain_name);
659         if (chain_tail == NULL)
660                 return -EINVAL;
661
662         new_entry = prepare_rule_inclusion(table, ip, chain_name,
663                                         target_name, xt_t, &builtin, xt_rm);
664         if (new_entry == NULL)
665                 return -EINVAL;
666
667         ret = connman_add_entry(table, new_entry, chain_tail->prev, builtin);
668         if (ret < 0)
669                 g_free(new_entry);
670
671         return ret;
672 }
673
674 static int connman_iptables_insert_rule(struct connman_iptables *table,
675                                 struct ipt_ip *ip, char *chain_name,
676                                 char *target_name, struct xtables_target *xt_t,
677                                 struct xtables_rule_match *xt_rm)
678 {
679         GList *chain_head;
680         struct ipt_entry *new_entry;
681         int builtin = -1, ret;
682
683         chain_head = find_chain_head(table, chain_name);
684         if (chain_head == NULL)
685                 return -EINVAL;
686
687         new_entry = prepare_rule_inclusion(table, ip, chain_name,
688                                         target_name, xt_t, &builtin, xt_rm);
689         if (new_entry == NULL)
690                 return -EINVAL;
691
692         ret = connman_add_entry(table, new_entry, chain_head->next, builtin);
693         if (ret < 0)
694                 g_free(new_entry);
695
696         return ret;
697 }
698
699 static gboolean is_same_ipt_entry(struct ipt_entry *i_e1,
700                                         struct ipt_entry *i_e2)
701 {
702         if (memcmp(&i_e1->ip, &i_e2->ip, sizeof(struct ipt_ip)) != 0)
703                 return FALSE;
704
705         if (i_e1->target_offset != i_e2->target_offset)
706                 return FALSE;
707
708         if (i_e1->next_offset != i_e2->next_offset)
709                 return FALSE;
710
711         return TRUE;
712 }
713
714 static gboolean is_same_target(struct xt_entry_target *xt_e_t1,
715                                         struct xt_entry_target *xt_e_t2)
716 {
717         if (xt_e_t1 == NULL || xt_e_t2 == NULL)
718                 return FALSE;
719
720         if (strcmp(xt_e_t1->u.user.name, IPT_STANDARD_TARGET) == 0) {
721                 struct xt_standard_target *xt_s_t1;
722                 struct xt_standard_target *xt_s_t2;
723
724                 xt_s_t1 = (struct xt_standard_target *) xt_e_t1;
725                 xt_s_t2 = (struct xt_standard_target *) xt_e_t2;
726
727                 if (xt_s_t1->verdict != xt_s_t2->verdict)
728                         return FALSE;
729         } else {
730                 if (xt_e_t1->u.target_size != xt_e_t2->u.target_size)
731                         return FALSE;
732
733                 if (strcmp(xt_e_t1->u.user.name, xt_e_t2->u.user.name) != 0)
734                         return FALSE;
735         }
736
737         return TRUE;
738 }
739
740 static gboolean is_same_match(struct xt_entry_match *xt_e_m1,
741                                 struct xt_entry_match *xt_e_m2)
742 {
743         if (xt_e_m1 == NULL || xt_e_m2 == NULL)
744                 return FALSE;
745
746         if (xt_e_m1->u.match_size != xt_e_m2->u.match_size)
747                 return FALSE;
748
749         if (xt_e_m1->u.user.revision != xt_e_m2->u.user.revision)
750                 return FALSE;
751
752         if (strcmp(xt_e_m1->u.user.name, xt_e_m2->u.user.name) != 0)
753                 return FALSE;
754
755         return TRUE;
756 }
757
758 static int connman_iptables_delete_rule(struct connman_iptables *table,
759                                 struct ipt_ip *ip, char *chain_name,
760                                 char *target_name, struct xtables_target *xt_t,
761                                 struct xtables_match *xt_m,
762                                 struct xtables_rule_match *xt_rm)
763 {
764         GList *chain_tail, *chain_head, *list;
765         struct xt_entry_target *xt_e_t = NULL;
766         struct xt_entry_match *xt_e_m = NULL;
767         struct connman_iptables_entry *entry;
768         struct ipt_entry *entry_test;
769         int builtin, removed;
770
771         removed = 0;
772
773         chain_head = find_chain_head(table, chain_name);
774         if (chain_head == NULL)
775                 return -EINVAL;
776
777         chain_tail = find_chain_tail(table, chain_name);
778         if (chain_tail == NULL)
779                 return -EINVAL;
780
781         if (!xt_t && !xt_m)
782                 return -EINVAL;
783
784         entry_test = new_rule(ip, target_name, xt_t, xt_rm);
785         if (entry_test == NULL)
786                 return -EINVAL;
787
788         if (xt_t != NULL)
789                 xt_e_t = ipt_get_target(entry_test);
790         if (xt_m != NULL)
791                 xt_e_m = (struct xt_entry_match *)entry_test->elems;
792
793         entry = chain_head->data;
794         builtin = entry->builtin;
795
796         if (builtin >= 0)
797                 list = chain_head;
798         else
799                 list = chain_head->next;
800
801         for (entry = NULL; list != chain_tail->prev; list = list->next) {
802                 struct connman_iptables_entry *tmp;
803                 struct ipt_entry *tmp_e;
804
805                 tmp = list->data;
806                 tmp_e = tmp->entry;
807
808                 if (is_same_ipt_entry(entry_test, tmp_e) == FALSE)
809                         continue;
810
811                 if (xt_t != NULL) {
812                         struct xt_entry_target *tmp_xt_e_t;
813
814                         tmp_xt_e_t = ipt_get_target(tmp_e);
815
816                         if (!is_same_target(tmp_xt_e_t, xt_e_t))
817                                 continue;
818                 }
819
820                 if (xt_m != NULL) {
821                         struct xt_entry_match *tmp_xt_e_m;
822
823                         tmp_xt_e_m = (struct xt_entry_match *)tmp_e->elems;
824
825                         if (!is_same_match(tmp_xt_e_m, xt_e_m))
826                                 continue;
827                 }
828
829                 entry = tmp;
830                 break;
831         }
832
833         if (entry == NULL) {
834                 g_free(entry_test);
835                 return -EINVAL;
836         }
837
838         /* We have deleted a rule,
839          * all references should be bumped accordingly */
840         if (list->next != NULL)
841                 update_targets_reference(table, list->next->data,
842                                                 list->data, TRUE);
843
844         removed += remove_table_entry(table, entry);
845
846         if (builtin >= 0) {
847                 list = list->next;
848                 if (list) {
849                         entry = list->data;
850                         entry->builtin = builtin;
851                 }
852
853                 table->underflow[builtin] -= removed;
854                 for (list = chain_tail; list; list = list->next) {
855                         entry = list->data;
856
857                         builtin = entry->builtin;
858                         if (builtin < 0)
859                                 continue;
860
861                         table->hook_entry[builtin] -= removed;
862                         table->underflow[builtin] -= removed;
863                 }
864         }
865
866         update_offsets(table);
867
868         return 0;
869 }
870
871 static struct ipt_replace *connman_iptables_blob(struct connman_iptables *table)
872 {
873         struct ipt_replace *r;
874         GList *list;
875         struct connman_iptables_entry *e;
876         unsigned char *entry_index;
877
878         r = g_try_malloc0(sizeof(struct ipt_replace) + table->size);
879         if (r == NULL)
880                 return NULL;
881
882         memset(r, 0, sizeof(*r) + table->size);
883
884         r->counters = g_try_malloc0(sizeof(struct xt_counters)
885                                 * table->old_entries);
886         if (r->counters == NULL) {
887                 g_free(r);
888                 return NULL;
889         }
890
891         strcpy(r->name, table->info->name);
892         r->num_entries = table->num_entries;
893         r->size = table->size;
894
895         r->num_counters = table->old_entries;
896         r->valid_hooks  = table->info->valid_hooks;
897
898         memcpy(r->hook_entry, table->hook_entry, sizeof(table->hook_entry));
899         memcpy(r->underflow, table->underflow, sizeof(table->underflow));
900
901         entry_index = (unsigned char *)r->entries;
902         for (list = table->entries; list; list = list->next) {
903                 e = list->data;
904
905                 memcpy(entry_index, e->entry, e->entry->next_offset);
906                 entry_index += e->entry->next_offset;
907         }
908
909         return r;
910 }
911
912 static void dump_target(struct connman_iptables *table,
913                                 struct ipt_entry *entry)
914
915 {
916         struct xtables_target *xt_t;
917         struct xt_entry_target *target;
918
919         target = ipt_get_target(entry);
920
921         if (!strcmp(target->u.user.name, IPT_STANDARD_TARGET)) {
922                 struct xt_standard_target *t;
923
924                 t = (struct xt_standard_target *)target;
925
926                 switch (t->verdict) {
927                 case XT_RETURN:
928                         printf("\ttarget RETURN\n");
929                         break;
930
931                 case -NF_ACCEPT - 1:
932                         printf("\ttarget ACCEPT\n");
933                         break;
934
935                 case -NF_DROP - 1:
936                         printf("\ttarget DROP\n");
937                         break;
938
939                 case -NF_QUEUE - 1:
940                         printf("\ttarget QUEUE\n");
941                         break;
942
943                 case -NF_STOP - 1:
944                         printf("\ttarget STOP\n");
945                         break;
946
947                 default:
948                         printf("\tJUMP @%p (0x%x)\n",
949                                 (char*)table->blob_entries->entrytable +
950                                 t->verdict, t->verdict);
951                         break;
952                 }
953
954                 xt_t = xtables_find_target(IPT_STANDARD_TARGET,
955                                                 XTF_LOAD_MUST_SUCCEED);
956
957                 if(xt_t->print != NULL)
958                         xt_t->print(NULL, target, 1);
959         } else {
960                 xt_t = xtables_find_target(target->u.user.name, XTF_TRY_LOAD);
961                 if (xt_t == NULL) {
962                         printf("\ttarget %s\n", target->u.user.name);
963                         return;
964                 }
965
966                 if(xt_t->print != NULL) {
967                         printf("\ttarget ");
968                         xt_t->print(NULL, target, 1);
969                         printf("\n");
970                 }
971         }
972 }
973
974 static void dump_match(struct connman_iptables *table, struct ipt_entry *entry)
975 {
976         struct xtables_match *xt_m;
977         struct xt_entry_match *match;
978
979         if (entry->elems == (unsigned char *)entry + entry->target_offset)
980                 return;
981
982         match = (struct xt_entry_match *) entry->elems;
983
984         if (!strlen(match->u.user.name))
985                 return;
986
987         xt_m = xtables_find_match(match->u.user.name, XTF_TRY_LOAD, NULL);
988         if (xt_m == NULL)
989                 goto out;
990
991         if(xt_m->print != NULL) {
992                 printf("\tmatch ");
993                 xt_m->print(NULL, match, 1);
994                 printf("\n");
995
996                 return;
997         }
998
999 out:
1000         printf("\tmatch %s\n", match->u.user.name);
1001
1002 }
1003
1004 static int connman_iptables_dump_entry(struct ipt_entry *entry,
1005                                         struct connman_iptables *table)
1006 {
1007         struct xt_entry_target *target;
1008         unsigned int offset;
1009         int builtin;
1010
1011         offset = (char *)entry - (char *)table->blob_entries->entrytable;
1012         target = ipt_get_target(entry);
1013         builtin = is_hook_entry(table, entry);
1014
1015         if (entry_to_offset(table, entry) + entry->next_offset ==
1016                                         table->blob_entries->size) {
1017                 printf("End of CHAIN 0x%x\n", offset);
1018                 return 0;
1019         }
1020
1021         if (!strcmp(target->u.user.name, IPT_ERROR_TARGET)) {
1022                 printf("USER CHAIN (%s) %p  match %p  target %p  size %d\n",
1023                         target->data, entry, entry->elems,
1024                         (char *)entry + entry->target_offset,
1025                                 entry->next_offset);
1026
1027                 return 0;
1028         } else if (builtin >= 0) {
1029                 printf("CHAIN (%s) %p  match %p  target %p  size %d\n",
1030                         hooknames[builtin], entry, entry->elems,
1031                         (char *)entry + entry->target_offset,
1032                                 entry->next_offset);
1033         } else {
1034                 printf("RULE %p  match %p  target %p  size %d\n", entry,
1035                         entry->elems,
1036                         (char *)entry + entry->target_offset,
1037                                 entry->next_offset);
1038         }
1039
1040         dump_match(table, entry);
1041         dump_target(table, entry);
1042
1043         return 0;
1044 }
1045
1046 static void connman_iptables_dump_hook(struct connman_iptables *table)
1047 {
1048         int i;
1049         printf("hooks: \n");
1050         for (i = 0; i < NF_INET_NUMHOOKS; i++) {
1051                 if ((table->info->valid_hooks & (1 << i)))
1052                         printf("%s entry %p underflow %p (%#x)\n",
1053                                 hooknames[i],
1054                                 table->blob_entries->entrytable +
1055                                                 table->info->hook_entry[i],
1056                                 table->blob_entries->entrytable +
1057                                                 table->info->underflow[i],
1058                                         table->info->underflow[i]);
1059         }
1060 }
1061
1062 static void connman_iptables_dump(struct connman_iptables *table)
1063 {
1064         printf("%s valid_hooks=0x%08x, num_entries=%u, size=%u\n",
1065                 table->info->name,
1066                 table->info->valid_hooks, table->info->num_entries,
1067                 table->info->size);
1068
1069         connman_iptables_dump_hook(table);
1070
1071         ENTRY_ITERATE(table->blob_entries->entrytable,
1072                         table->blob_entries->size,
1073                         connman_iptables_dump_entry, table);
1074
1075 }
1076
1077 static int connman_iptables_get_entries(struct connman_iptables *table)
1078 {
1079         socklen_t entry_size;
1080
1081         entry_size = sizeof(struct ipt_get_entries) + table->info->size;
1082
1083         return getsockopt(table->ipt_sock, IPPROTO_IP, IPT_SO_GET_ENTRIES,
1084                                 table->blob_entries, &entry_size);
1085 }
1086
1087 static int connman_iptables_replace(struct connman_iptables *table,
1088                                         struct ipt_replace *r)
1089 {
1090         return setsockopt(table->ipt_sock, IPPROTO_IP, IPT_SO_SET_REPLACE, r,
1091                          sizeof(*r) + r->size);
1092 }
1093
1094 static void connman_iptables_cleanup(struct connman_iptables *table)
1095 {
1096         GList *list;
1097         struct connman_iptables_entry *entry;
1098
1099         close(table->ipt_sock);
1100
1101         for (list = table->entries; list; list = list->next) {
1102                 entry = list->data;
1103
1104                 g_free(entry->entry);
1105         }
1106
1107         g_free(table->info);
1108         g_free(table->blob_entries);
1109         g_free(table);
1110
1111         xtables_free_opts(1);
1112 }
1113
1114 static int connman_iptables_commit(struct connman_iptables *table)
1115 {
1116         struct ipt_replace *repl;
1117
1118         repl = connman_iptables_blob(table);
1119
1120         return connman_iptables_replace(table, repl);
1121 }
1122
1123 static int add_entry(struct ipt_entry *entry, struct connman_iptables *table)
1124 {
1125         struct ipt_entry *new_entry;
1126         int builtin;
1127
1128         new_entry = g_try_malloc0(entry->next_offset);
1129         if (new_entry == NULL)
1130                 return -ENOMEM;
1131
1132         memcpy(new_entry, entry, entry->next_offset);
1133
1134         builtin = is_hook_entry(table, entry);
1135
1136         return connman_add_entry(table, new_entry, NULL, builtin);
1137 }
1138
1139 static struct connman_iptables *connman_iptables_init(const char *table_name)
1140 {
1141         struct connman_iptables *table = NULL;
1142         char *module = NULL;
1143         socklen_t s;
1144
1145         if (xtables_insmod("ip_tables", NULL, TRUE) != 0)
1146                 goto err;
1147
1148         module = g_strconcat("iptable_", table_name, NULL);
1149         if (module == NULL)
1150                 goto err;
1151
1152         if (xtables_insmod(module, NULL, TRUE) != 0)
1153                 goto err;
1154
1155         g_free(module);
1156         module = NULL;
1157
1158         table =  g_try_new0(struct connman_iptables, 1);
1159         if (table == NULL)
1160                 return NULL;
1161
1162         table->info =  g_try_new0(struct ipt_getinfo, 1);
1163         if (table->info == NULL)
1164                 goto err;
1165
1166         table->ipt_sock = socket(AF_INET, SOCK_RAW | SOCK_CLOEXEC, IPPROTO_RAW);
1167         if (table->ipt_sock < 0)
1168                 goto err;
1169
1170         s = sizeof(*table->info);
1171         strcpy(table->info->name, table_name);
1172         if (getsockopt(table->ipt_sock, IPPROTO_IP, IPT_SO_GET_INFO,
1173                                                 table->info, &s) < 0)
1174                 goto err;
1175
1176         table->blob_entries = g_try_malloc0(sizeof(struct ipt_get_entries) +
1177                                                 table->info->size);
1178         if (table->blob_entries == NULL)
1179                 goto err;
1180
1181         strcpy(table->blob_entries->name, table_name);
1182         table->blob_entries->size = table->info->size;
1183
1184         if (connman_iptables_get_entries(table) < 0)
1185                 goto err;
1186
1187         table->num_entries = 0;
1188         table->old_entries = table->info->num_entries;
1189         table->size = 0;
1190
1191         memcpy(table->underflow, table->info->underflow,
1192                                 sizeof(table->info->underflow));
1193         memcpy(table->hook_entry, table->info->hook_entry,
1194                                 sizeof(table->info->hook_entry));
1195
1196         ENTRY_ITERATE(table->blob_entries->entrytable,
1197                         table->blob_entries->size,
1198                                 add_entry, table);
1199
1200         return table;
1201
1202 err:
1203         g_free(module);
1204
1205         connman_iptables_cleanup(table);
1206
1207         return NULL;
1208 }
1209
1210 static struct option connman_iptables_opts[] = {
1211         {.name = "append",        .has_arg = 1, .val = 'A'},
1212         {.name = "delete",        .has_arg = 1, .val = 'D'},
1213         {.name = "flush-chain",   .has_arg = 1, .val = 'F'},
1214         {.name = "insert",        .has_arg = 1, .val = 'I'},
1215         {.name = "list",          .has_arg = 2, .val = 'L'},
1216         {.name = "new-chain",     .has_arg = 1, .val = 'N'},
1217         {.name = "delete-chain",  .has_arg = 1, .val = 'X'},
1218         {.name = "destination",   .has_arg = 1, .val = 'd'},
1219         {.name = "in-interface",  .has_arg = 1, .val = 'i'},
1220         {.name = "jump",          .has_arg = 1, .val = 'j'},
1221         {.name = "match",         .has_arg = 1, .val = 'm'},
1222         {.name = "out-interface", .has_arg = 1, .val = 'o'},
1223         {.name = "source",        .has_arg = 1, .val = 's'},
1224         {.name = "table",         .has_arg = 1, .val = 't'},
1225         {NULL},
1226 };
1227
1228 struct xtables_globals connman_iptables_globals = {
1229         .option_offset = 0,
1230         .opts = connman_iptables_opts,
1231         .orig_opts = connman_iptables_opts,
1232 };
1233
1234 static struct xtables_target *prepare_target(struct connman_iptables *table,
1235                                                         char *target_name)
1236 {
1237         struct xtables_target *xt_t = NULL;
1238         gboolean is_builtin, is_user_defined;
1239         GList *chain_head = NULL;
1240         size_t target_size;
1241
1242         is_builtin = FALSE;
1243         is_user_defined = FALSE;
1244
1245         if (is_builtin_target(target_name))
1246                 is_builtin = TRUE;
1247         else {
1248                 chain_head = find_chain_head(table, target_name);
1249                 if (chain_head != NULL && chain_head->next != NULL)
1250                         is_user_defined = TRUE;
1251         }
1252
1253         if (is_builtin || is_user_defined)
1254                 xt_t = xtables_find_target(IPT_STANDARD_TARGET,
1255                                                 XTF_LOAD_MUST_SUCCEED);
1256         else
1257                 xt_t = xtables_find_target(target_name, XTF_TRY_LOAD);
1258
1259         if (xt_t == NULL)
1260                 return NULL;
1261
1262         target_size = ALIGN(sizeof(struct ipt_entry_target)) + xt_t->size;
1263
1264         xt_t->t = g_try_malloc0(target_size);
1265         if (xt_t->t == NULL)
1266                 return NULL;
1267
1268         xt_t->t->u.target_size = target_size;
1269
1270         if (is_builtin || is_user_defined) {
1271                 struct xt_standard_target *target;
1272
1273                 target = (struct xt_standard_target *)(xt_t->t);
1274                 strcpy(target->target.u.user.name, IPT_STANDARD_TARGET);
1275
1276                 if (is_builtin == TRUE)
1277                         target->verdict = target_to_verdict(target_name);
1278                 else if (is_user_defined == TRUE) {
1279                         struct connman_iptables_entry *target_rule;
1280
1281                         if (chain_head == NULL) {
1282                                 g_free(xt_t->t);
1283                                 return NULL;
1284                         }
1285
1286                         target_rule = chain_head->next->data;
1287                         target->verdict = target_rule->offset;
1288                 }
1289         } else {
1290                 strcpy(xt_t->t->u.user.name, target_name);
1291                 xt_t->t->u.user.revision = xt_t->revision;
1292                 if (xt_t->init != NULL)
1293                         xt_t->init(xt_t->t);
1294         }
1295
1296         if (xt_t->x6_options != NULL)
1297                 connman_iptables_globals.opts =
1298                         xtables_options_xfrm(
1299 #if XTABLES_VERSION_CODE > 5
1300                                 connman_iptables_globals.orig_opts,
1301 #endif
1302                                 connman_iptables_globals.opts,
1303                                 xt_t->x6_options,
1304                                 &xt_t->option_offset);
1305         else
1306                 connman_iptables_globals.opts =
1307                         xtables_merge_options(
1308 #if XTABLES_VERSION_CODE > 5
1309                                 connman_iptables_globals.orig_opts,
1310 #endif
1311                                 connman_iptables_globals.opts,
1312                                 xt_t->extra_opts,
1313                                 &xt_t->option_offset);
1314
1315         if (connman_iptables_globals.opts == NULL) {
1316                 g_free(xt_t->t);
1317                 xt_t = NULL;
1318         }
1319
1320         return xt_t;
1321 }
1322
1323 static struct xtables_match *prepare_matches(struct connman_iptables *table,
1324                         struct xtables_rule_match **xt_rm, char *match_name)
1325 {
1326         struct xtables_match *xt_m;
1327         size_t match_size;
1328
1329         if (match_name == NULL)
1330                 return NULL;
1331
1332         xt_m = xtables_find_match(match_name, XTF_LOAD_MUST_SUCCEED, xt_rm);
1333         match_size = ALIGN(sizeof(struct ipt_entry_match)) + xt_m->size;
1334
1335         xt_m->m = g_try_malloc0(match_size);
1336         if (xt_m->m == NULL)
1337                 return NULL;
1338
1339         xt_m->m->u.match_size = match_size;
1340         strcpy(xt_m->m->u.user.name, xt_m->name);
1341         xt_m->m->u.user.revision = xt_m->revision;
1342
1343         if (xt_m->init != NULL)
1344                 xt_m->init(xt_m->m);
1345
1346         if (xt_m == xt_m->next)
1347                 goto done;
1348
1349         if (xt_m->x6_options != NULL)
1350                 connman_iptables_globals.opts =
1351                         xtables_options_xfrm(
1352 #if XTABLES_VERSION_CODE > 5
1353                                 connman_iptables_globals.orig_opts,
1354 #endif
1355                                 connman_iptables_globals.opts,
1356                                 xt_m->x6_options,
1357                                 &xt_m->option_offset);
1358         else
1359                 connman_iptables_globals.opts =
1360                         xtables_merge_options(
1361 #if XTABLES_VERSION_CODE > 5
1362                                 connman_iptables_globals.orig_opts,
1363 #endif
1364                                 connman_iptables_globals.opts,
1365                                 xt_m->extra_opts,
1366                                 &xt_m->option_offset);
1367
1368         if (connman_iptables_globals.opts == NULL) {
1369                 g_free(xt_m->m);
1370                 xt_m = NULL;
1371         }
1372
1373 done:
1374         return xt_m;
1375 }
1376
1377 int main(int argc, char *argv[])
1378 {
1379         struct connman_iptables *table;
1380         struct xtables_rule_match *xt_rm, *tmp_xt_rm;
1381         struct xtables_match *xt_m, *xt_m_t;
1382         struct xtables_target *xt_t;
1383         struct ipt_ip ip;
1384         char *table_name, *chain, *new_chain, *match_name, *target_name;
1385         char *delete_chain, *flush_chain;
1386         int c, in_len, out_len;
1387         gboolean dump, invert, delete, insert, delete_rule;
1388         struct in_addr src, dst;
1389
1390         xtables_init_all(&connman_iptables_globals, NFPROTO_IPV4);
1391
1392         dump = FALSE;
1393         invert = FALSE;
1394         delete = FALSE;
1395         insert = FALSE;
1396         delete_rule = FALSE;
1397         table_name = chain = new_chain = match_name = target_name = NULL;
1398         delete_chain = flush_chain = NULL;
1399         memset(&ip, 0, sizeof(struct ipt_ip));
1400         table = NULL;
1401         xt_rm = NULL;
1402         xt_m = NULL;
1403         xt_t = NULL;
1404
1405         while ((c = getopt_long(argc, argv, "-A:D:F:I:L::N:X:d:i:j:m:o:s:t:",
1406                                 connman_iptables_globals.opts, NULL)) != -1) {
1407                 switch (c) {
1408                 case 'A':
1409                         /* It is either -A, -D or -I at once */
1410                         if (chain)
1411                                 goto out;
1412
1413                         chain = optarg;
1414                         break;
1415
1416                 case 'D':
1417                         /* It is either -A, -D or -I at once */
1418                         if (chain)
1419                                 goto out;
1420
1421                         chain = optarg;
1422                         delete_rule = TRUE;
1423                         break;
1424
1425                 case 'F':
1426                         flush_chain = optarg;
1427                         break;
1428
1429                 case 'I':
1430                         /* It is either -A, -D or -I at once */
1431                         if (chain)
1432                                 goto out;
1433
1434                         chain = optarg;
1435                         insert = TRUE;
1436                         break;
1437
1438                 case 'L':
1439                         dump = true;
1440                         break;
1441
1442                 case 'N':
1443                         new_chain = optarg;
1444                         break;
1445
1446                 case 'X':
1447                         delete = true;
1448                         delete_chain = optarg;
1449                         break;
1450
1451                 case 'd':
1452                         if (!inet_pton(AF_INET, optarg, &dst))
1453                                 break;
1454
1455                         ip.dst = dst;
1456                         inet_pton(AF_INET, "255.255.255.255", &ip.dmsk);
1457
1458                         if (invert)
1459                                 ip.invflags |= IPT_INV_DSTIP;
1460
1461                         break;
1462
1463                 case 'i':
1464                         in_len = strlen(optarg);
1465
1466                         if (in_len + 1 > IFNAMSIZ)
1467                                 break;
1468
1469                         strcpy(ip.iniface, optarg);
1470                         memset(ip.iniface_mask, 0xff, in_len + 1);
1471
1472                         if (invert)
1473                                 ip.invflags |= IPT_INV_VIA_IN;
1474
1475                         break;
1476
1477                 case 'j':
1478                         target_name = optarg;
1479                         xt_t = prepare_target(table, target_name);
1480                         if (xt_t == NULL)
1481                                 goto out;
1482
1483                         break;
1484
1485                 case 'm':
1486                         match_name = optarg;
1487                         xt_m = prepare_matches(table, &xt_rm, match_name);
1488                         if (xt_m == NULL)
1489                                 goto out;
1490
1491                         break;
1492
1493                 case 'o':
1494                         out_len = strlen(optarg);
1495
1496                         if (out_len + 1 > IFNAMSIZ)
1497                                 break;
1498
1499                         strcpy(ip.outiface, optarg);
1500                         memset(ip.outiface_mask, 0xff, out_len + 1);
1501
1502                         if (invert)
1503                                 ip.invflags |= IPT_INV_VIA_OUT;
1504
1505                         break;
1506
1507                 case 's':
1508                         if (!inet_pton(AF_INET, optarg, &src))
1509                                 break;
1510
1511                         ip.src = src;
1512                         inet_pton(AF_INET, "255.255.255.255", &ip.smsk);
1513
1514                         if (invert)
1515                                 ip.invflags |= IPT_INV_SRCIP;
1516
1517                         break;
1518
1519                 case 't':
1520                         table_name = optarg;
1521                         break;
1522
1523                 case 1:
1524                         if (optarg[0] == '!' && optarg[1] == '\0') {
1525                                 if (invert)
1526                                         printf("Consecutive ! not allowed\n");
1527
1528                                 invert = TRUE;
1529                                 optarg[0] = '\0';
1530                                 continue;
1531                         }
1532
1533                         printf("Invalid option\n");
1534
1535                         return -1;
1536
1537                 default:
1538                         if (xt_t != NULL && (xt_t->x6_parse != NULL ||
1539                                                 xt_t->parse != NULL) &&
1540                                         (c >= (int) xt_t->option_offset &&
1541                                         c < (int) xt_t->option_offset +
1542                                         XT_OPTION_OFFSET_SCALE)) {
1543                                 xtables_option_tpcall(c, argv,
1544                                                         invert, xt_t, NULL);
1545
1546                                 break;
1547                         }
1548
1549                         for (tmp_xt_rm = xt_rm; tmp_xt_rm != NULL;
1550                                                 tmp_xt_rm = tmp_xt_rm->next) {
1551                                 xt_m_t = tmp_xt_rm->match;
1552
1553                                 if (tmp_xt_rm->completed ||
1554                                                 (xt_m_t->x6_parse == NULL &&
1555                                                  xt_m_t->parse == NULL))
1556                                         continue;
1557
1558                                 if (c < (int) xt_m_t->option_offset ||
1559                                         c >= (int) xt_m_t->option_offset
1560                                         + XT_OPTION_OFFSET_SCALE)
1561                                         continue;
1562
1563                                 xtables_option_mpcall(c, argv,
1564                                                         invert, xt_m_t, NULL);
1565
1566                                 break;
1567                         }
1568
1569                         break;
1570                 }
1571         }
1572
1573         for (tmp_xt_rm = xt_rm; tmp_xt_rm != NULL;
1574                                 tmp_xt_rm = tmp_xt_rm->next)
1575                 xtables_option_mfcall(tmp_xt_rm->match);
1576
1577         if (xt_t != NULL)
1578                 xtables_option_tfcall(xt_t);
1579
1580         if (table_name == NULL)
1581                 table_name = "filter";
1582
1583         table = connman_iptables_init(table_name);
1584         if (table == NULL)
1585                 return -1;
1586
1587         if (delete) {
1588                 if (delete_chain == NULL)
1589                         goto out;
1590
1591                 printf("Delete chain %s\n", delete_chain);
1592
1593                 connman_iptables_delete_chain(table, delete_chain);
1594
1595                 goto commit;
1596         }
1597
1598         if (flush_chain) {
1599                 printf("Flush chain %s\n", flush_chain);
1600
1601                 connman_iptables_flush_chain(table, flush_chain);
1602
1603                 goto commit;
1604         }
1605
1606         if (dump) {
1607                 connman_iptables_dump(table);
1608
1609                 return 0;
1610         }
1611
1612         if (chain && new_chain)
1613                 return -1;
1614
1615         if (new_chain) {
1616                 printf("New chain %s\n", new_chain);
1617
1618                 connman_iptables_add_chain(table, new_chain);
1619
1620                 goto commit;
1621         }
1622
1623         if (chain) {
1624                 if (delete_rule == TRUE) {
1625                         printf("Deleting %s to %s (match %s)\n", target_name,
1626                                         chain, match_name);
1627
1628                         connman_iptables_delete_rule(table, &ip, chain,
1629                                         target_name, xt_t, xt_m, xt_rm);
1630
1631                         goto commit;
1632                 }
1633
1634                 if (insert == TRUE) {
1635                         printf("Inserting %s to %s (match %s)\n", target_name,
1636                                         chain, match_name);
1637
1638                         connman_iptables_insert_rule(table, &ip, chain,
1639                                                 target_name, xt_t, xt_rm);
1640                 } else {
1641                         printf("Appending %s to %s (match %s)\n", target_name,
1642                                         chain, match_name);
1643
1644                         connman_iptables_append_rule(table, &ip, chain,
1645                                                 target_name, xt_t, xt_rm);
1646                 }
1647         }
1648
1649 commit:
1650
1651         connman_iptables_commit(table);
1652
1653 out:
1654         connman_iptables_cleanup(table);
1655
1656         if (xt_t)
1657                 g_free(xt_t->t);
1658
1659         if (xt_m)
1660                 g_free(xt_m->m);
1661
1662         return 0;
1663 }