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