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