test: refactoring rule finding part into iptables-test
[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 GList *find_existing_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;
770
771         chain_head = find_chain_head(table, chain_name);
772         if (chain_head == NULL)
773                 return NULL;
774
775         chain_tail = find_chain_tail(table, chain_name);
776         if (chain_tail == NULL)
777                 return NULL;
778
779         if (!xt_t && !xt_m)
780                 return NULL;
781
782         entry_test = new_rule(ip, target_name, xt_t, xt_rm);
783         if (entry_test == NULL)
784                 return NULL;
785
786         if (xt_t != NULL)
787                 xt_e_t = ipt_get_target(entry_test);
788         if (xt_m != NULL)
789                 xt_e_m = (struct xt_entry_match *)entry_test->elems;
790
791         entry = chain_head->data;
792         builtin = entry->builtin;
793
794         if (builtin >= 0)
795                 list = chain_head;
796         else
797                 list = chain_head->next;
798
799         for (; list != chain_tail->prev; list = list->next) {
800                 struct connman_iptables_entry *tmp;
801                 struct ipt_entry *tmp_e;
802
803                 tmp = list->data;
804                 tmp_e = tmp->entry;
805
806                 if (is_same_ipt_entry(entry_test, tmp_e) == FALSE)
807                         continue;
808
809                 if (xt_t != NULL) {
810                         struct xt_entry_target *tmp_xt_e_t;
811
812                         tmp_xt_e_t = ipt_get_target(tmp_e);
813
814                         if (!is_same_target(tmp_xt_e_t, xt_e_t))
815                                 continue;
816                 }
817
818                 if (xt_m != NULL) {
819                         struct xt_entry_match *tmp_xt_e_m;
820
821                         tmp_xt_e_m = (struct xt_entry_match *)tmp_e->elems;
822
823                         if (!is_same_match(tmp_xt_e_m, xt_e_m))
824                                 continue;
825                 }
826
827                 break;
828         }
829
830         g_free(entry_test);
831
832         if (list != chain_tail->prev)
833                 return list;
834
835         return NULL;
836 }
837
838 static int connman_iptables_delete_rule(struct connman_iptables *table,
839                                 struct ipt_ip *ip, char *chain_name,
840                                 char *target_name, struct xtables_target *xt_t,
841                                 struct xtables_match *xt_m,
842                                 struct xtables_rule_match *xt_rm)
843 {
844         struct connman_iptables_entry *entry;
845         GList *chain_tail, *list;
846         int builtin, removed;
847
848         removed = 0;
849
850         chain_tail = find_chain_tail(table, chain_name);
851         if (chain_tail == NULL)
852                 return -EINVAL;
853
854         list = find_existing_rule(table, ip, chain_name, target_name,
855                                                         xt_t, xt_m, xt_rm);
856         if (list == NULL)
857                 return -EINVAL;
858
859         entry = list->data;
860
861         if (entry == NULL)
862                 return -EINVAL;
863
864         builtin = entry->builtin;
865
866         /* We have deleted a rule,
867          * all references should be bumped accordingly */
868         if (list->next != NULL)
869                 update_targets_reference(table, list->next->data,
870                                                 list->data, TRUE);
871
872         removed += remove_table_entry(table, entry);
873
874         if (builtin >= 0) {
875                 list = list->next;
876                 if (list) {
877                         entry = list->data;
878                         entry->builtin = builtin;
879                 }
880
881                 table->underflow[builtin] -= removed;
882                 for (list = chain_tail; list; list = list->next) {
883                         entry = list->data;
884
885                         builtin = entry->builtin;
886                         if (builtin < 0)
887                                 continue;
888
889                         table->hook_entry[builtin] -= removed;
890                         table->underflow[builtin] -= removed;
891                 }
892         }
893
894         update_offsets(table);
895
896         return 0;
897 }
898
899 static int connman_iptables_change_policy(struct connman_iptables *table,
900                                                 char *chain_name, char *policy)
901 {
902         GList *chain_head;
903         struct connman_iptables_entry *entry;
904         struct xt_entry_target *target;
905         struct xt_standard_target *t;
906         int verdict;
907
908         verdict = target_to_verdict(policy);
909         if (verdict == 0)
910                 return -EINVAL;
911
912         chain_head = find_chain_head(table, chain_name);
913         if (chain_head == NULL)
914                 return -EINVAL;
915
916         entry = chain_head->data;
917         if (entry->builtin < 0)
918                 return -EINVAL;
919
920         target = ipt_get_target(entry->entry);
921
922         t = (struct xt_standard_target *)target;
923         t->verdict = verdict;
924
925         return 0;
926 }
927
928 static struct ipt_replace *connman_iptables_blob(struct connman_iptables *table)
929 {
930         struct ipt_replace *r;
931         GList *list;
932         struct connman_iptables_entry *e;
933         unsigned char *entry_index;
934
935         r = g_try_malloc0(sizeof(struct ipt_replace) + table->size);
936         if (r == NULL)
937                 return NULL;
938
939         memset(r, 0, sizeof(*r) + table->size);
940
941         r->counters = g_try_malloc0(sizeof(struct xt_counters)
942                                 * table->old_entries);
943         if (r->counters == NULL) {
944                 g_free(r);
945                 return NULL;
946         }
947
948         strcpy(r->name, table->info->name);
949         r->num_entries = table->num_entries;
950         r->size = table->size;
951
952         r->num_counters = table->old_entries;
953         r->valid_hooks  = table->info->valid_hooks;
954
955         memcpy(r->hook_entry, table->hook_entry, sizeof(table->hook_entry));
956         memcpy(r->underflow, table->underflow, sizeof(table->underflow));
957
958         entry_index = (unsigned char *)r->entries;
959         for (list = table->entries; list; list = list->next) {
960                 e = list->data;
961
962                 memcpy(entry_index, e->entry, e->entry->next_offset);
963                 entry_index += e->entry->next_offset;
964         }
965
966         return r;
967 }
968
969 static void dump_target(struct connman_iptables *table,
970                                 struct ipt_entry *entry)
971
972 {
973         struct xtables_target *xt_t;
974         struct xt_entry_target *target;
975
976         target = ipt_get_target(entry);
977
978         if (!strcmp(target->u.user.name, IPT_STANDARD_TARGET)) {
979                 struct xt_standard_target *t;
980
981                 t = (struct xt_standard_target *)target;
982
983                 switch (t->verdict) {
984                 case XT_RETURN:
985                         printf("\ttarget RETURN\n");
986                         break;
987
988                 case -NF_ACCEPT - 1:
989                         printf("\ttarget ACCEPT\n");
990                         break;
991
992                 case -NF_DROP - 1:
993                         printf("\ttarget DROP\n");
994                         break;
995
996                 case -NF_QUEUE - 1:
997                         printf("\ttarget QUEUE\n");
998                         break;
999
1000                 case -NF_STOP - 1:
1001                         printf("\ttarget STOP\n");
1002                         break;
1003
1004                 default:
1005                         printf("\tJUMP @%p (0x%x)\n",
1006                                 (char*)table->blob_entries->entrytable +
1007                                 t->verdict, t->verdict);
1008                         break;
1009                 }
1010
1011                 xt_t = xtables_find_target(IPT_STANDARD_TARGET,
1012                                                 XTF_LOAD_MUST_SUCCEED);
1013
1014                 if(xt_t->print != NULL)
1015                         xt_t->print(NULL, target, 1);
1016         } else {
1017                 xt_t = xtables_find_target(target->u.user.name, XTF_TRY_LOAD);
1018                 if (xt_t == NULL) {
1019                         printf("\ttarget %s\n", target->u.user.name);
1020                         return;
1021                 }
1022
1023                 if(xt_t->print != NULL) {
1024                         printf("\ttarget ");
1025                         xt_t->print(NULL, target, 1);
1026                         printf("\n");
1027                 }
1028         }
1029 }
1030
1031 static void dump_match(struct connman_iptables *table, struct ipt_entry *entry)
1032 {
1033         struct xtables_match *xt_m;
1034         struct xt_entry_match *match;
1035
1036         if (entry->elems == (unsigned char *)entry + entry->target_offset)
1037                 return;
1038
1039         match = (struct xt_entry_match *) entry->elems;
1040
1041         if (!strlen(match->u.user.name))
1042                 return;
1043
1044         xt_m = xtables_find_match(match->u.user.name, XTF_TRY_LOAD, NULL);
1045         if (xt_m == NULL)
1046                 goto out;
1047
1048         if(xt_m->print != NULL) {
1049                 printf("\tmatch ");
1050                 xt_m->print(NULL, match, 1);
1051                 printf("\n");
1052
1053                 return;
1054         }
1055
1056 out:
1057         printf("\tmatch %s\n", match->u.user.name);
1058
1059 }
1060
1061 static int connman_iptables_dump_entry(struct ipt_entry *entry,
1062                                         struct connman_iptables *table)
1063 {
1064         struct xt_entry_target *target;
1065         unsigned int offset;
1066         int builtin;
1067
1068         offset = (char *)entry - (char *)table->blob_entries->entrytable;
1069         target = ipt_get_target(entry);
1070         builtin = is_hook_entry(table, entry);
1071
1072         if (entry_to_offset(table, entry) + entry->next_offset ==
1073                                         table->blob_entries->size) {
1074                 printf("End of CHAIN 0x%x\n", offset);
1075                 return 0;
1076         }
1077
1078         if (!strcmp(target->u.user.name, IPT_ERROR_TARGET)) {
1079                 printf("USER CHAIN (%s) %p  match %p  target %p  size %d\n",
1080                         target->data, entry, entry->elems,
1081                         (char *)entry + entry->target_offset,
1082                                 entry->next_offset);
1083
1084                 return 0;
1085         } else if (builtin >= 0) {
1086                 printf("CHAIN (%s) %p  match %p  target %p  size %d\n",
1087                         hooknames[builtin], entry, entry->elems,
1088                         (char *)entry + entry->target_offset,
1089                                 entry->next_offset);
1090         } else {
1091                 printf("RULE %p  match %p  target %p  size %d\n", entry,
1092                         entry->elems,
1093                         (char *)entry + entry->target_offset,
1094                                 entry->next_offset);
1095         }
1096
1097         dump_match(table, entry);
1098         dump_target(table, entry);
1099
1100         return 0;
1101 }
1102
1103 static void connman_iptables_dump_hook(struct connman_iptables *table)
1104 {
1105         int i;
1106         printf("hooks: \n");
1107         for (i = 0; i < NF_INET_NUMHOOKS; i++) {
1108                 if ((table->info->valid_hooks & (1 << i)))
1109                         printf("%s entry %p underflow %p (%#x)\n",
1110                                 hooknames[i],
1111                                 table->blob_entries->entrytable +
1112                                                 table->info->hook_entry[i],
1113                                 table->blob_entries->entrytable +
1114                                                 table->info->underflow[i],
1115                                         table->info->underflow[i]);
1116         }
1117 }
1118
1119 static void connman_iptables_dump(struct connman_iptables *table)
1120 {
1121         printf("%s valid_hooks=0x%08x, num_entries=%u, size=%u\n",
1122                 table->info->name,
1123                 table->info->valid_hooks, table->info->num_entries,
1124                 table->info->size);
1125
1126         connman_iptables_dump_hook(table);
1127
1128         ENTRY_ITERATE(table->blob_entries->entrytable,
1129                         table->blob_entries->size,
1130                         connman_iptables_dump_entry, table);
1131
1132 }
1133
1134 static int connman_iptables_get_entries(struct connman_iptables *table)
1135 {
1136         socklen_t entry_size;
1137
1138         entry_size = sizeof(struct ipt_get_entries) + table->info->size;
1139
1140         return getsockopt(table->ipt_sock, IPPROTO_IP, IPT_SO_GET_ENTRIES,
1141                                 table->blob_entries, &entry_size);
1142 }
1143
1144 static int connman_iptables_replace(struct connman_iptables *table,
1145                                         struct ipt_replace *r)
1146 {
1147         return setsockopt(table->ipt_sock, IPPROTO_IP, IPT_SO_SET_REPLACE, r,
1148                          sizeof(*r) + r->size);
1149 }
1150
1151 static void connman_iptables_cleanup(struct connman_iptables *table)
1152 {
1153         GList *list;
1154         struct connman_iptables_entry *entry;
1155
1156         close(table->ipt_sock);
1157
1158         for (list = table->entries; list; list = list->next) {
1159                 entry = list->data;
1160
1161                 g_free(entry->entry);
1162         }
1163
1164         g_free(table->info);
1165         g_free(table->blob_entries);
1166         g_free(table);
1167
1168         xtables_free_opts(1);
1169 }
1170
1171 static int connman_iptables_commit(struct connman_iptables *table)
1172 {
1173         struct ipt_replace *repl;
1174
1175         repl = connman_iptables_blob(table);
1176
1177         return connman_iptables_replace(table, repl);
1178 }
1179
1180 static int add_entry(struct ipt_entry *entry, struct connman_iptables *table)
1181 {
1182         struct ipt_entry *new_entry;
1183         int builtin;
1184
1185         new_entry = g_try_malloc0(entry->next_offset);
1186         if (new_entry == NULL)
1187                 return -ENOMEM;
1188
1189         memcpy(new_entry, entry, entry->next_offset);
1190
1191         builtin = is_hook_entry(table, entry);
1192
1193         return connman_add_entry(table, new_entry, NULL, builtin);
1194 }
1195
1196 static struct connman_iptables *connman_iptables_init(const char *table_name)
1197 {
1198         struct connman_iptables *table = NULL;
1199         char *module = NULL;
1200         socklen_t s;
1201
1202         if (xtables_insmod("ip_tables", NULL, TRUE) != 0)
1203                 goto err;
1204
1205         module = g_strconcat("iptable_", table_name, NULL);
1206         if (module == NULL)
1207                 goto err;
1208
1209         if (xtables_insmod(module, NULL, TRUE) != 0)
1210                 goto err;
1211
1212         g_free(module);
1213         module = NULL;
1214
1215         table =  g_try_new0(struct connman_iptables, 1);
1216         if (table == NULL)
1217                 return NULL;
1218
1219         table->info =  g_try_new0(struct ipt_getinfo, 1);
1220         if (table->info == NULL)
1221                 goto err;
1222
1223         table->ipt_sock = socket(AF_INET, SOCK_RAW | SOCK_CLOEXEC, IPPROTO_RAW);
1224         if (table->ipt_sock < 0)
1225                 goto err;
1226
1227         s = sizeof(*table->info);
1228         strcpy(table->info->name, table_name);
1229         if (getsockopt(table->ipt_sock, IPPROTO_IP, IPT_SO_GET_INFO,
1230                                                 table->info, &s) < 0)
1231                 goto err;
1232
1233         table->blob_entries = g_try_malloc0(sizeof(struct ipt_get_entries) +
1234                                                 table->info->size);
1235         if (table->blob_entries == NULL)
1236                 goto err;
1237
1238         strcpy(table->blob_entries->name, table_name);
1239         table->blob_entries->size = table->info->size;
1240
1241         if (connman_iptables_get_entries(table) < 0)
1242                 goto err;
1243
1244         table->num_entries = 0;
1245         table->old_entries = table->info->num_entries;
1246         table->size = 0;
1247
1248         memcpy(table->underflow, table->info->underflow,
1249                                 sizeof(table->info->underflow));
1250         memcpy(table->hook_entry, table->info->hook_entry,
1251                                 sizeof(table->info->hook_entry));
1252
1253         ENTRY_ITERATE(table->blob_entries->entrytable,
1254                         table->blob_entries->size,
1255                                 add_entry, table);
1256
1257         return table;
1258
1259 err:
1260         g_free(module);
1261
1262         connman_iptables_cleanup(table);
1263
1264         return NULL;
1265 }
1266
1267 static struct option connman_iptables_opts[] = {
1268         {.name = "append",        .has_arg = 1, .val = 'A'},
1269         {.name = "delete",        .has_arg = 1, .val = 'D'},
1270         {.name = "flush-chain",   .has_arg = 1, .val = 'F'},
1271         {.name = "insert",        .has_arg = 1, .val = 'I'},
1272         {.name = "list",          .has_arg = 2, .val = 'L'},
1273         {.name = "new-chain",     .has_arg = 1, .val = 'N'},
1274         {.name = "policy",        .has_arg = 1, .val = 'P'},
1275         {.name = "delete-chain",  .has_arg = 1, .val = 'X'},
1276         {.name = "destination",   .has_arg = 1, .val = 'd'},
1277         {.name = "in-interface",  .has_arg = 1, .val = 'i'},
1278         {.name = "jump",          .has_arg = 1, .val = 'j'},
1279         {.name = "match",         .has_arg = 1, .val = 'm'},
1280         {.name = "out-interface", .has_arg = 1, .val = 'o'},
1281         {.name = "source",        .has_arg = 1, .val = 's'},
1282         {.name = "table",         .has_arg = 1, .val = 't'},
1283         {NULL},
1284 };
1285
1286 struct xtables_globals connman_iptables_globals = {
1287         .option_offset = 0,
1288         .opts = connman_iptables_opts,
1289         .orig_opts = connman_iptables_opts,
1290 };
1291
1292 static struct xtables_target *prepare_target(struct connman_iptables *table,
1293                                                         char *target_name)
1294 {
1295         struct xtables_target *xt_t = NULL;
1296         gboolean is_builtin, is_user_defined;
1297         GList *chain_head = NULL;
1298         size_t target_size;
1299
1300         is_builtin = FALSE;
1301         is_user_defined = FALSE;
1302
1303         if (is_builtin_target(target_name))
1304                 is_builtin = TRUE;
1305         else {
1306                 chain_head = find_chain_head(table, target_name);
1307                 if (chain_head != NULL && chain_head->next != NULL)
1308                         is_user_defined = TRUE;
1309         }
1310
1311         if (is_builtin || is_user_defined)
1312                 xt_t = xtables_find_target(IPT_STANDARD_TARGET,
1313                                                 XTF_LOAD_MUST_SUCCEED);
1314         else
1315                 xt_t = xtables_find_target(target_name, XTF_TRY_LOAD);
1316
1317         if (xt_t == NULL)
1318                 return NULL;
1319
1320         target_size = ALIGN(sizeof(struct ipt_entry_target)) + xt_t->size;
1321
1322         xt_t->t = g_try_malloc0(target_size);
1323         if (xt_t->t == NULL)
1324                 return NULL;
1325
1326         xt_t->t->u.target_size = target_size;
1327
1328         if (is_builtin || is_user_defined) {
1329                 struct xt_standard_target *target;
1330
1331                 target = (struct xt_standard_target *)(xt_t->t);
1332                 strcpy(target->target.u.user.name, IPT_STANDARD_TARGET);
1333
1334                 if (is_builtin == TRUE)
1335                         target->verdict = target_to_verdict(target_name);
1336                 else if (is_user_defined == TRUE) {
1337                         struct connman_iptables_entry *target_rule;
1338
1339                         if (chain_head == NULL) {
1340                                 g_free(xt_t->t);
1341                                 return NULL;
1342                         }
1343
1344                         target_rule = chain_head->next->data;
1345                         target->verdict = target_rule->offset;
1346                 }
1347         } else {
1348                 strcpy(xt_t->t->u.user.name, target_name);
1349                 xt_t->t->u.user.revision = xt_t->revision;
1350                 if (xt_t->init != NULL)
1351                         xt_t->init(xt_t->t);
1352         }
1353
1354 #if XTABLES_VERSION_CODE > 5
1355         if (xt_t->x6_options != NULL)
1356                 connman_iptables_globals.opts =
1357                         xtables_options_xfrm(
1358                                 connman_iptables_globals.orig_opts,
1359
1360                                 connman_iptables_globals.opts,
1361                                 xt_t->x6_options,
1362                                 &xt_t->option_offset);
1363         else
1364 #endif
1365                 connman_iptables_globals.opts =
1366                         xtables_merge_options(
1367 #if XTABLES_VERSION_CODE > 5
1368                                 connman_iptables_globals.orig_opts,
1369 #endif
1370                                 connman_iptables_globals.opts,
1371                                 xt_t->extra_opts,
1372                                 &xt_t->option_offset);
1373
1374         if (connman_iptables_globals.opts == NULL) {
1375                 g_free(xt_t->t);
1376                 xt_t = NULL;
1377         }
1378
1379         return xt_t;
1380 }
1381
1382 static struct xtables_match *prepare_matches(struct connman_iptables *table,
1383                         struct xtables_rule_match **xt_rm, char *match_name)
1384 {
1385         struct xtables_match *xt_m;
1386         size_t match_size;
1387
1388         if (match_name == NULL)
1389                 return NULL;
1390
1391         xt_m = xtables_find_match(match_name, XTF_LOAD_MUST_SUCCEED, xt_rm);
1392         match_size = ALIGN(sizeof(struct ipt_entry_match)) + xt_m->size;
1393
1394         xt_m->m = g_try_malloc0(match_size);
1395         if (xt_m->m == NULL)
1396                 return NULL;
1397
1398         xt_m->m->u.match_size = match_size;
1399         strcpy(xt_m->m->u.user.name, xt_m->name);
1400         xt_m->m->u.user.revision = xt_m->revision;
1401
1402         if (xt_m->init != NULL)
1403                 xt_m->init(xt_m->m);
1404
1405         if (xt_m == xt_m->next)
1406                 goto done;
1407
1408 #if XTABLES_VERSION_CODE > 5
1409         if (xt_m->x6_options != NULL)
1410                 connman_iptables_globals.opts =
1411                         xtables_options_xfrm(
1412                                 connman_iptables_globals.orig_opts,
1413                                 connman_iptables_globals.opts,
1414                                 xt_m->x6_options,
1415                                 &xt_m->option_offset);
1416         else
1417 #endif
1418                 connman_iptables_globals.opts =
1419                         xtables_merge_options(
1420 #if XTABLES_VERSION_CODE > 5
1421                                 connman_iptables_globals.orig_opts,
1422 #endif
1423                                 connman_iptables_globals.opts,
1424                                 xt_m->extra_opts,
1425                                 &xt_m->option_offset);
1426
1427         if (connman_iptables_globals.opts == NULL) {
1428                 g_free(xt_m->m);
1429                 xt_m = NULL;
1430         }
1431
1432 done:
1433         return xt_m;
1434 }
1435
1436 int main(int argc, char *argv[])
1437 {
1438         struct connman_iptables *table;
1439         struct xtables_rule_match *xt_rm, *tmp_xt_rm;
1440         struct xtables_match *xt_m, *xt_m_t;
1441         struct xtables_target *xt_t;
1442         struct ipt_ip ip;
1443         char *table_name, *chain, *new_chain, *match_name, *target_name;
1444         char *delete_chain, *flush_chain, *policy;
1445         int c, in_len, out_len;
1446         gboolean dump, invert, delete, insert, delete_rule;
1447         struct in_addr src, dst;
1448
1449         xtables_init_all(&connman_iptables_globals, NFPROTO_IPV4);
1450
1451         dump = FALSE;
1452         invert = FALSE;
1453         delete = FALSE;
1454         insert = FALSE;
1455         delete_rule = FALSE;
1456         table_name = chain = new_chain = match_name = target_name = NULL;
1457         delete_chain = flush_chain = policy = NULL;
1458         memset(&ip, 0, sizeof(struct ipt_ip));
1459         table = NULL;
1460         xt_rm = NULL;
1461         xt_m = NULL;
1462         xt_t = NULL;
1463
1464         /* extension's options will generate false-positives errors */
1465         opterr = 0;
1466
1467         while ((c = getopt_long(argc, argv, "-A:D:F:I:L::N:P:X:d:i:j:m:o:s:t:",
1468                                 connman_iptables_globals.opts, NULL)) != -1) {
1469                 switch (c) {
1470                 case 'A':
1471                         /* It is either -A, -D or -I at once */
1472                         if (chain)
1473                                 goto out;
1474
1475                         chain = optarg;
1476                         break;
1477
1478                 case 'D':
1479                         /* It is either -A, -D or -I at once */
1480                         if (chain)
1481                                 goto out;
1482
1483                         chain = optarg;
1484                         delete_rule = TRUE;
1485                         break;
1486
1487                 case 'F':
1488                         flush_chain = optarg;
1489                         break;
1490
1491                 case 'I':
1492                         /* It is either -A, -D or -I at once */
1493                         if (chain)
1494                                 goto out;
1495
1496                         chain = optarg;
1497                         insert = TRUE;
1498                         break;
1499
1500                 case 'L':
1501                         dump = true;
1502                         break;
1503
1504                 case 'N':
1505                         new_chain = optarg;
1506                         break;
1507
1508                 case 'P':
1509                         chain = optarg;
1510                         if (optind < argc)
1511                                 policy = argv[optind++];
1512                         else
1513                                 goto out;
1514
1515                         break;
1516
1517                 case 'X':
1518                         delete = true;
1519                         delete_chain = optarg;
1520                         break;
1521
1522                 case 'd':
1523                         if (!inet_pton(AF_INET, optarg, &dst))
1524                                 break;
1525
1526                         ip.dst = dst;
1527                         inet_pton(AF_INET, "255.255.255.255", &ip.dmsk);
1528
1529                         if (invert)
1530                                 ip.invflags |= IPT_INV_DSTIP;
1531
1532                         break;
1533
1534                 case 'i':
1535                         in_len = strlen(optarg);
1536
1537                         if (in_len + 1 > IFNAMSIZ)
1538                                 break;
1539
1540                         strcpy(ip.iniface, optarg);
1541                         memset(ip.iniface_mask, 0xff, in_len + 1);
1542
1543                         if (invert)
1544                                 ip.invflags |= IPT_INV_VIA_IN;
1545
1546                         break;
1547
1548                 case 'j':
1549                         target_name = optarg;
1550                         xt_t = prepare_target(table, target_name);
1551                         if (xt_t == NULL)
1552                                 goto out;
1553
1554                         break;
1555
1556                 case 'm':
1557                         match_name = optarg;
1558                         xt_m = prepare_matches(table, &xt_rm, match_name);
1559                         if (xt_m == NULL)
1560                                 goto out;
1561
1562                         break;
1563
1564                 case 'o':
1565                         out_len = strlen(optarg);
1566
1567                         if (out_len + 1 > IFNAMSIZ)
1568                                 break;
1569
1570                         strcpy(ip.outiface, optarg);
1571                         memset(ip.outiface_mask, 0xff, out_len + 1);
1572
1573                         if (invert)
1574                                 ip.invflags |= IPT_INV_VIA_OUT;
1575
1576                         break;
1577
1578                 case 's':
1579                         if (!inet_pton(AF_INET, optarg, &src))
1580                                 break;
1581
1582                         ip.src = src;
1583                         inet_pton(AF_INET, "255.255.255.255", &ip.smsk);
1584
1585                         if (invert)
1586                                 ip.invflags |= IPT_INV_SRCIP;
1587
1588                         break;
1589
1590                 case 't':
1591                         table_name = optarg;
1592
1593                         table = connman_iptables_init(table_name);
1594                         if (table == NULL)
1595                                 return -1;
1596
1597                         break;
1598
1599                 case 1:
1600                         if (optarg[0] == '!' && optarg[1] == '\0') {
1601                                 if (invert)
1602                                         printf("Consecutive ! not allowed\n");
1603
1604                                 invert = TRUE;
1605                                 optarg[0] = '\0';
1606                                 continue;
1607                         }
1608
1609                         printf("Invalid option\n");
1610
1611                         return -1;
1612
1613                 default:
1614 #if XTABLES_VERSION_CODE > 5
1615                         if (xt_t != NULL && (xt_t->x6_parse != NULL ||
1616                                                 xt_t->parse != NULL) &&
1617                                         (c >= (int) xt_t->option_offset &&
1618                                         c < (int) xt_t->option_offset +
1619                                         XT_OPTION_OFFSET_SCALE)) {
1620                                 xtables_option_tpcall(c, argv,
1621                                                         invert, xt_t, NULL);
1622
1623                                 break;
1624                         }
1625
1626                         for (tmp_xt_rm = xt_rm; tmp_xt_rm != NULL;
1627                                                 tmp_xt_rm = tmp_xt_rm->next) {
1628                                 xt_m_t = tmp_xt_rm->match;
1629
1630                                 if (tmp_xt_rm->completed ||
1631                                                 (xt_m_t->x6_parse == NULL &&
1632                                                  xt_m_t->parse == NULL))
1633                                         continue;
1634
1635                                 if (c < (int) xt_m_t->option_offset ||
1636                                         c >= (int) xt_m_t->option_offset
1637                                         + XT_OPTION_OFFSET_SCALE)
1638                                         continue;
1639
1640                                 xtables_option_mpcall(c, argv,
1641                                                         invert, xt_m_t, NULL);
1642
1643                                 break;
1644                         }
1645 #else
1646                         if (xt_t == NULL || xt_t->parse == NULL ||
1647                                 !xt_t->parse(c - xt_t->option_offset,
1648                                 argv, invert, &xt_t->tflags, NULL, &xt_t->t)) {
1649
1650                                 for (tmp_xt_rm = xt_rm; tmp_xt_rm != NULL;
1651                                                 tmp_xt_rm = tmp_xt_rm->next) {
1652                                         xt_m_t = tmp_xt_rm->match;
1653
1654                                         if (tmp_xt_rm->completed ||
1655                                                         xt_m_t->parse == NULL)
1656                                                 continue;
1657
1658                                         if (xt_m->parse(c - xt_m->option_offset,
1659                                                 argv, invert, &xt_m->mflags,
1660                                                 NULL, &xt_m->m))
1661                                                 break;
1662                                 }
1663                         }
1664 #endif
1665                         break;
1666                 }
1667
1668                 invert = FALSE;
1669         }
1670
1671 #if XTABLES_VERSION_CODE > 5
1672         for (tmp_xt_rm = xt_rm; tmp_xt_rm != NULL;
1673                                 tmp_xt_rm = tmp_xt_rm->next)
1674                 xtables_option_mfcall(tmp_xt_rm->match);
1675
1676         if (xt_t != NULL)
1677                 xtables_option_tfcall(xt_t);
1678 #else
1679         for (tmp_xt_rm = xt_rm; tmp_xt_rm != NULL;
1680                                 tmp_xt_rm = tmp_xt_rm->next)
1681                 if (tmp_xt_rm->match->final_check != NULL)
1682                         tmp_xt_rm->match->final_check(
1683                                         tmp_xt_rm->match->mflags);
1684
1685         if (xt_t != NULL && xt_t->final_check != NULL)
1686                 xt_t->final_check(xt_t->tflags);
1687 #endif
1688
1689         if (table == NULL) {
1690                 table_name = "filter";
1691
1692                 table = connman_iptables_init(table_name);
1693                 if (table == NULL)
1694                         return -1;
1695         }
1696
1697         if (delete) {
1698                 if (delete_chain == NULL)
1699                         goto out;
1700
1701                 printf("Delete chain %s\n", delete_chain);
1702
1703                 connman_iptables_delete_chain(table, delete_chain);
1704
1705                 goto commit;
1706         }
1707
1708         if (flush_chain) {
1709                 printf("Flush chain %s\n", flush_chain);
1710
1711                 connman_iptables_flush_chain(table, flush_chain);
1712
1713                 goto commit;
1714         }
1715
1716         if (dump) {
1717                 connman_iptables_dump(table);
1718
1719                 return 0;
1720         }
1721
1722         if (chain && new_chain)
1723                 return -1;
1724
1725         if (new_chain) {
1726                 printf("New chain %s\n", new_chain);
1727
1728                 connman_iptables_add_chain(table, new_chain);
1729
1730                 goto commit;
1731         }
1732
1733         if (chain) {
1734                 if (policy != NULL) {
1735                         printf("Changing policy of %s to %s\n", chain, policy);
1736
1737                         connman_iptables_change_policy(table, chain, policy);
1738
1739                         goto commit;
1740                 }
1741
1742                 if (delete_rule == TRUE) {
1743                         printf("Deleting %s to %s (match %s)\n", target_name,
1744                                         chain, match_name);
1745
1746                         connman_iptables_delete_rule(table, &ip, chain,
1747                                         target_name, xt_t, xt_m, xt_rm);
1748
1749                         goto commit;
1750                 }
1751
1752                 if (insert == TRUE) {
1753                         printf("Inserting %s to %s (match %s)\n", target_name,
1754                                         chain, match_name);
1755
1756                         connman_iptables_insert_rule(table, &ip, chain,
1757                                                 target_name, xt_t, xt_rm);
1758                 } else {
1759                         printf("Appending %s to %s (match %s)\n", target_name,
1760                                         chain, match_name);
1761
1762                         connman_iptables_append_rule(table, &ip, chain,
1763                                                 target_name, xt_t, xt_rm);
1764                 }
1765         }
1766
1767 commit:
1768
1769         connman_iptables_commit(table);
1770
1771 out:
1772         connman_iptables_cleanup(table);
1773
1774         if (xt_t)
1775                 g_free(xt_t->t);
1776
1777         if (xt_m)
1778                 g_free(xt_m->m);
1779
1780         return 0;
1781 }