iptables: Fix memory leak
[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, ret;
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         ret = iptables_add_entry(table, new_entry, chain_tail->prev, builtin);
670         if (ret < 0)
671                 g_free(new_entry);
672
673         return ret;
674 }
675
676 static struct ipt_replace *
677 iptables_blob(struct connman_iptables *table)
678 {
679         struct ipt_replace *r;
680         GList *list;
681         struct connman_iptables_entry *e;
682         unsigned char *entry_index;
683
684         r = g_try_malloc0(sizeof(struct ipt_replace) + table->size);
685         if (r == NULL)
686                 return NULL;
687
688         memset(r, 0, sizeof(*r) + table->size);
689
690         r->counters = g_try_malloc0(sizeof(struct xt_counters)
691                                 * table->old_entries);
692         if (r->counters == NULL) {
693                 g_free(r);
694                 return NULL;
695         }
696
697         strcpy(r->name, table->info->name);
698         r->num_entries = table->num_entries;
699         r->size = table->size;
700
701         r->num_counters = table->old_entries;
702         r->valid_hooks  = table->info->valid_hooks;
703
704         memcpy(r->hook_entry, table->hook_entry, sizeof(table->hook_entry));
705         memcpy(r->underflow, table->underflow, sizeof(table->underflow));
706
707         entry_index = (unsigned char *)r->entries;
708         for (list = table->entries; list; list = list->next) {
709                 e = list->data;
710
711                 memcpy(entry_index, e->entry, e->entry->next_offset);
712                 entry_index += e->entry->next_offset;
713         }
714
715         return r;
716 }
717
718 static void dump_ip(struct ipt_entry *entry)
719 {
720         struct ipt_ip *ip = &entry->ip;
721         char ip_string[INET6_ADDRSTRLEN];
722         char ip_mask[INET6_ADDRSTRLEN];
723
724         if (strlen(ip->iniface))
725                 connman_info("\tin %s", ip->iniface);
726
727         if (strlen(ip->outiface))
728                 connman_info("\tout %s", ip->outiface);
729
730         if (inet_ntop(AF_INET, &ip->src, ip_string, INET6_ADDRSTRLEN) != NULL &&
731                         inet_ntop(AF_INET, &ip->smsk,
732                                         ip_mask, INET6_ADDRSTRLEN) != NULL)
733                 connman_info("\tsrc %s/%s", ip_string, ip_mask);
734
735         if (inet_ntop(AF_INET, &ip->dst, ip_string, INET6_ADDRSTRLEN) != NULL &&
736                         inet_ntop(AF_INET, &ip->dmsk,
737                                         ip_mask, INET6_ADDRSTRLEN) != NULL)
738                 connman_info("\tdst %s/%s", ip_string, ip_mask);
739 }
740
741 static void dump_target(struct connman_iptables *table,
742                                 struct ipt_entry *entry)
743
744 {
745         struct xtables_target *xt_t;
746         struct xt_entry_target *target;
747
748         target = ipt_get_target(entry);
749
750         if (!strcmp(target->u.user.name, IPT_STANDARD_TARGET)) {
751                 struct xt_standard_target *t;
752
753                 t = (struct xt_standard_target *)target;
754
755                 switch (t->verdict) {
756                 case XT_RETURN:
757                         connman_info("\ttarget RETURN");
758                         break;
759
760                 case -NF_ACCEPT - 1:
761                         connman_info("\ttarget ACCEPT");
762                         break;
763
764                 case -NF_DROP - 1:
765                         connman_info("\ttarget DROP");
766                         break;
767
768                 case -NF_QUEUE - 1:
769                         connman_info("\ttarget QUEUE");
770                         break;
771
772                 case -NF_STOP - 1:
773                         connman_info("\ttarget STOP");
774                         break;
775
776                 default:
777                         connman_info("\tJUMP @%p (0x%x)",
778                                 (char*)table->blob_entries->entrytable +
779                                 t->verdict, t->verdict);
780                         break;
781                 }
782
783                 xt_t = xtables_find_target(IPT_STANDARD_TARGET,
784                                                 XTF_LOAD_MUST_SUCCEED);
785
786                 if(xt_t->print != NULL)
787                         xt_t->print(NULL, target, 1);
788         } else {
789                 xt_t = xtables_find_target(target->u.user.name, XTF_TRY_LOAD);
790                 if (xt_t == NULL) {
791                         connman_info("\ttarget %s", target->u.user.name);
792                         return;
793                 }
794
795                 if(xt_t->print != NULL) {
796                         connman_info("\ttarget ");
797                         xt_t->print(NULL, target, 1);
798                 }
799         }
800 }
801
802 static void dump_match(struct connman_iptables *table, struct ipt_entry *entry)
803 {
804         struct xtables_match *xt_m;
805         struct xt_entry_match *match;
806
807         if (entry->elems == (unsigned char *)entry + entry->target_offset)
808                 return;
809
810         match = (struct xt_entry_match *) entry->elems;
811
812         if (!strlen(match->u.user.name))
813                 return;
814
815         xt_m = xtables_find_match(match->u.user.name, XTF_TRY_LOAD, NULL);
816         if (xt_m == NULL)
817                 goto out;
818
819         if(xt_m->print != NULL) {
820                 connman_info("\tmatch ");
821                 xt_m->print(NULL, match, 1);
822
823                 return;
824         }
825
826 out:
827         connman_info("\tmatch %s", match->u.user.name);
828
829 }
830
831 static int dump_entry(struct ipt_entry *entry,
832                                 struct connman_iptables *table)
833 {
834         struct xt_entry_target *target;
835         unsigned int offset;
836         int builtin;
837
838         offset = (char *)entry - (char *)table->blob_entries->entrytable;
839         target = ipt_get_target(entry);
840         builtin = is_hook_entry(table, entry);
841
842         if (entry_to_offset(table, entry) + entry->next_offset ==
843                                         table->blob_entries->size) {
844                 connman_info("End of CHAIN 0x%x", offset);
845                 return 0;
846         }
847
848         if (!strcmp(target->u.user.name, IPT_ERROR_TARGET)) {
849                 connman_info("USER CHAIN (%s) %p  match %p  target %p  size %d",
850                         target->data, entry, entry->elems,
851                         (char *)entry + entry->target_offset,
852                                 entry->next_offset);
853
854                 return 0;
855         } else if (builtin >= 0) {
856                 connman_info("CHAIN (%s) %p  match %p  target %p  size %d",
857                         hooknames[builtin], entry, entry->elems,
858                         (char *)entry + entry->target_offset,
859                                 entry->next_offset);
860         } else {
861                 connman_info("RULE %p  match %p  target %p  size %d", entry,
862                         entry->elems,
863                         (char *)entry + entry->target_offset,
864                                 entry->next_offset);
865         }
866
867         dump_match(table, entry);
868         dump_target(table, entry);
869         dump_ip(entry);
870
871         return 0;
872 }
873
874 static void iptables_dump(struct connman_iptables *table)
875 {
876         connman_info("%s valid_hooks=0x%08x, num_entries=%u, size=%u",
877                         table->info->name,
878                         table->info->valid_hooks, table->info->num_entries,
879                                 table->info->size);
880
881         ENTRY_ITERATE(table->blob_entries->entrytable,
882                         table->blob_entries->size,
883                         dump_entry, table);
884
885 }
886
887 static int iptables_get_entries(struct connman_iptables *table)
888 {
889         socklen_t entry_size;
890
891         entry_size = sizeof(struct ipt_get_entries) + table->info->size;
892
893         return getsockopt(table->ipt_sock, IPPROTO_IP, IPT_SO_GET_ENTRIES,
894                                 table->blob_entries, &entry_size);
895 }
896
897 static int iptables_replace(struct connman_iptables *table,
898                                         struct ipt_replace *r)
899 {
900         return setsockopt(table->ipt_sock, IPPROTO_IP, IPT_SO_SET_REPLACE, r,
901                          sizeof(*r) + r->size);
902 }
903
904 static int add_entry(struct ipt_entry *entry, struct connman_iptables *table)
905 {
906         struct ipt_entry *new_entry;
907         int builtin;
908
909         new_entry = g_try_malloc0(entry->next_offset);
910         if (new_entry == NULL)
911                 return -ENOMEM;
912
913         memcpy(new_entry, entry, entry->next_offset);
914
915         builtin = is_hook_entry(table, entry);
916
917         return iptables_add_entry(table, new_entry, NULL, builtin);
918 }
919
920 static void table_cleanup(struct connman_iptables *table)
921 {
922         GList *list;
923         struct connman_iptables_entry *entry;
924
925         close(table->ipt_sock);
926
927         for (list = table->entries; list; list = list->next) {
928                 entry = list->data;
929
930                 g_free(entry->entry);
931                 g_free(entry);
932         }
933
934         g_list_free(table->entries);
935         g_free(table->info);
936         g_free(table->blob_entries);
937         g_free(table);
938 }
939
940 static struct connman_iptables *iptables_init(char *table_name)
941 {
942         struct connman_iptables *table;
943         socklen_t s;
944
945         DBG("%s", table_name);
946
947         table = g_hash_table_lookup(table_hash, table_name);
948         if (table != NULL)
949                 return table;
950
951         table = g_try_new0(struct connman_iptables, 1);
952         if (table == NULL)
953                 return NULL;
954
955         table->info = g_try_new0(struct ipt_getinfo, 1);
956         if (table->info == NULL)
957                 goto err;
958
959         table->ipt_sock = socket(AF_INET, SOCK_RAW, IPPROTO_RAW);
960         if (table->ipt_sock < 0)
961                 goto err;
962
963         s = sizeof(*table->info);
964         strcpy(table->info->name, table_name);
965         if (getsockopt(table->ipt_sock, IPPROTO_IP, IPT_SO_GET_INFO,
966                                                 table->info, &s) < 0)
967                 goto err;
968
969         table->blob_entries = g_try_malloc0(sizeof(struct ipt_get_entries) +
970                                                 table->info->size);
971         if (table->blob_entries == NULL)
972                 goto err;
973
974         strcpy(table->blob_entries->name, table_name);
975         table->blob_entries->size = table->info->size;
976
977         if (iptables_get_entries(table) < 0)
978                 goto err;
979
980         table->num_entries = 0;
981         table->old_entries = table->info->num_entries;
982         table->size = 0;
983
984         memcpy(table->underflow, table->info->underflow,
985                                 sizeof(table->info->underflow));
986         memcpy(table->hook_entry, table->info->hook_entry,
987                                 sizeof(table->info->hook_entry));
988
989         ENTRY_ITERATE(table->blob_entries->entrytable,
990                         table->blob_entries->size,
991                                 add_entry, table);
992
993         g_hash_table_insert(table_hash, g_strdup(table_name), table);
994
995         return table;
996
997 err:
998
999         table_cleanup(table);
1000
1001         return NULL;
1002 }
1003
1004 static struct option iptables_opts[] = {
1005         {.name = "append",        .has_arg = 1, .val = 'A'},
1006         {.name = "flush-chain",   .has_arg = 1, .val = 'F'},
1007         {.name = "list",          .has_arg = 2, .val = 'L'},
1008         {.name = "new-chain",     .has_arg = 1, .val = 'N'},
1009         {.name = "delete-chain",  .has_arg = 1, .val = 'X'},
1010         {.name = "destination",   .has_arg = 1, .val = 'd'},
1011         {.name = "in-interface",  .has_arg = 1, .val = 'i'},
1012         {.name = "jump",          .has_arg = 1, .val = 'j'},
1013         {.name = "match",         .has_arg = 1, .val = 'm'},
1014         {.name = "out-interface", .has_arg = 1, .val = 'o'},
1015         {.name = "source",        .has_arg = 1, .val = 's'},
1016         {.name = "table",         .has_arg = 1, .val = 't'},
1017         {NULL},
1018 };
1019
1020 struct xtables_globals iptables_globals = {
1021         .option_offset = 0,
1022         .opts = iptables_opts,
1023         .orig_opts = iptables_opts,
1024 };
1025
1026 static int iptables_command(int argc, char *argv[])
1027 {
1028         struct connman_iptables *table;
1029         struct xtables_match *xt_m;
1030         struct xtables_target *xt_t;
1031         struct ipt_ip ip;
1032         char *table_name, *chain, *new_chain, *match_name, *target_name;
1033         char *flush_chain, *delete_chain;
1034         int c, ret, in_len, out_len;
1035         size_t size;
1036         gboolean dump, invert;
1037         struct in_addr src, dst;
1038
1039         if (argc == 0)
1040                 return -EINVAL;
1041
1042         dump = FALSE;
1043         invert = FALSE;
1044         table_name = chain = new_chain = match_name = target_name = NULL;
1045         flush_chain = delete_chain = NULL;
1046         memset(&ip, 0, sizeof(struct ipt_ip));
1047         table = NULL;
1048         xt_m = NULL;
1049         xt_t = NULL;
1050         ret = 0;
1051
1052         optind = 0;
1053
1054         while ((c = getopt_long(argc, argv, "-A:F:L::N:X:d:j:i:m:o:s:t:",
1055                                         iptables_globals.opts, NULL)) != -1) {
1056                 switch (c) {
1057                 case 'A':
1058                         chain = optarg;
1059                         break;
1060
1061                 case 'F':
1062                         flush_chain = optarg;
1063                         break;
1064
1065                 case 'L':
1066                         dump = TRUE;
1067                         break;
1068
1069                 case 'N':
1070                         new_chain = optarg;
1071                         break;
1072
1073                 case 'X':
1074                         delete_chain = optarg;
1075                         break;
1076
1077                 case 'd':
1078                         if (!inet_pton(AF_INET, optarg, &dst))
1079                                 break;
1080
1081                         ip.dst = dst;
1082                         inet_pton(AF_INET, "255.255.255.255", &ip.dmsk);
1083
1084                         if (invert)
1085                                 ip.invflags |= IPT_INV_DSTIP;
1086
1087                         break;
1088
1089                 case 'i':
1090                         in_len = strlen(optarg);
1091
1092                         if (in_len + 1 > IFNAMSIZ)
1093                                 break;
1094
1095                         strcpy(ip.iniface, optarg);
1096                         memset(ip.iniface_mask, 0xff, in_len + 1);
1097
1098                         if (invert)
1099                                 ip.invflags |= IPT_INV_VIA_IN;
1100
1101                         break;
1102
1103                 case 'j':
1104                         target_name = optarg;
1105                         xt_t = xtables_find_target(target_name, XTF_TRY_LOAD);
1106
1107                         if (xt_t == NULL)
1108                                 break;
1109
1110                         size = ALIGN(sizeof(struct ipt_entry_target)) +
1111                                                                 xt_t->size;
1112
1113                         xt_t->t = g_try_malloc0(size);
1114                         if (xt_t->t == NULL)
1115                                 goto out;
1116                         xt_t->t->u.target_size = size;
1117                         strcpy(xt_t->t->u.user.name, target_name);
1118                         xt_t->t->u.user.revision = xt_t->revision;
1119                         if (xt_t->init != NULL)
1120                                 xt_t->init(xt_t->t);
1121                         iptables_globals.opts =
1122                                 xtables_merge_options(
1123 #if XTABLES_VERSION_CODE > 5
1124                                                      iptables_globals.orig_opts,
1125 #endif
1126                                                      iptables_globals.opts,
1127                                                      xt_t->extra_opts,
1128                                                      &xt_t->option_offset);
1129                         if (iptables_globals.opts == NULL)
1130                                 goto out;
1131
1132                         break;
1133
1134                 case 'm':
1135                         match_name = optarg;
1136
1137                         xt_m = xtables_find_match(optarg, XTF_LOAD_MUST_SUCCEED, NULL);
1138                         size = ALIGN(sizeof(struct ipt_entry_match)) +
1139                                                                 xt_m->size;
1140                         xt_m->m = g_try_malloc0(size);
1141                         if (xt_m == NULL)
1142                                 goto out;
1143                         xt_m->m->u.match_size = size;
1144                         strcpy(xt_m->m->u.user.name, xt_m->name);
1145                         xt_m->m->u.user.revision = xt_m->revision;
1146                         if (xt_m->init != NULL)
1147                                 xt_m->init(xt_m->m);
1148                         if (xt_m != xt_m->next) {
1149                                 iptables_globals.opts =
1150                                 xtables_merge_options(
1151 #if XTABLES_VERSION_CODE > 5
1152                                                 iptables_globals.orig_opts,
1153 #endif
1154                                                 iptables_globals.opts,
1155                                                 xt_m->extra_opts,
1156                                                 &xt_m->option_offset);
1157                                 if (iptables_globals.opts == NULL)
1158                                         goto out;
1159                         }
1160
1161                         break;
1162
1163                 case 'o':
1164                         out_len = strlen(optarg);
1165
1166                         if (out_len + 1 > IFNAMSIZ)
1167                                 break;
1168
1169                         strcpy(ip.outiface, optarg);
1170                         memset(ip.outiface_mask, 0xff, out_len + 1);
1171
1172                         if (invert)
1173                                 ip.invflags |= IPT_INV_VIA_OUT;
1174
1175                         break;
1176
1177                 case 's':
1178                         if (!inet_pton(AF_INET, optarg, &src))
1179                                 break;
1180
1181                         ip.src = src;
1182                         inet_pton(AF_INET, "255.255.255.255", &ip.smsk);
1183
1184                         if (invert)
1185                                 ip.invflags |= IPT_INV_SRCIP;
1186
1187                         break;
1188
1189                 case 't':
1190                         table_name = optarg;
1191                         break;
1192
1193                 case 1:
1194                         if (optarg[0] == '!' && optarg[1] == '\0') {
1195                                 invert = TRUE;
1196                                 optarg[0] = '\0';
1197                                 continue;
1198                         }
1199
1200                         connman_error("Invalid option");
1201
1202                         ret = -EINVAL;
1203                         goto out;
1204
1205                 default:
1206                         if (xt_t == NULL || xt_t->parse == NULL ||
1207                             !xt_t->parse(c - xt_t->option_offset, argv, invert,
1208                                         &xt_t->tflags, NULL, &xt_t->t)) {
1209                                 if (xt_m == NULL || xt_m->parse == NULL)
1210                                         break;
1211
1212                                 xt_m->parse(c - xt_m->option_offset, argv,
1213                                         invert, &xt_m->mflags, NULL, &xt_m->m);
1214                         }
1215
1216                         break;
1217                 }
1218
1219                 invert = FALSE;
1220         }
1221
1222         if (table_name == NULL)
1223                 table_name = "filter";
1224
1225         table = iptables_init(table_name);
1226         if (table == NULL) {
1227                 ret = -EINVAL;
1228                 goto out;
1229         }
1230
1231         if (delete_chain != NULL) {
1232                 printf("Delete chain %s\n", delete_chain);
1233
1234                 iptables_delete_chain(table, delete_chain);
1235
1236                 goto out;
1237         }
1238
1239         if (dump) {
1240                 iptables_dump(table);
1241
1242                 ret = 0;
1243                 goto out;
1244         }
1245
1246         if (flush_chain) {
1247                 DBG("Flush chain %s", flush_chain);
1248
1249                 iptables_flush_chain(table, flush_chain);
1250
1251                 goto out;
1252         }
1253
1254         if (chain && new_chain) {
1255                 ret = -EINVAL;
1256                 goto out;
1257         }
1258
1259         if (new_chain) {
1260                 DBG("New chain %s", new_chain);
1261
1262                 ret = iptables_add_chain(table, new_chain);
1263                 goto out;
1264         }
1265
1266         if (chain) {
1267                 if (target_name == NULL)
1268                         return -1;
1269
1270                 DBG("Adding %s to %s (match %s)",
1271                                 target_name, chain, match_name);
1272
1273                 ret = iptables_add_rule(table, &ip, chain, target_name, xt_t,
1274                                         match_name, xt_m);
1275
1276                 goto out;
1277         }
1278
1279 out:
1280         if (xt_t)
1281                 g_free(xt_t->t);
1282
1283         if (xt_m)
1284                 g_free(xt_m->m);
1285
1286         return ret;
1287 }
1288
1289 int __connman_iptables_command(const char *format, ...)
1290 {
1291         char **argv, **arguments, *command;
1292         int argc, i, ret;
1293         va_list args;
1294
1295         if (format == NULL)
1296                 return -EINVAL;
1297
1298         va_start(args, format);
1299
1300         command = g_strdup_vprintf(format, args);
1301
1302         va_end(args);
1303
1304         if (command == NULL)
1305                 return -ENOMEM;
1306
1307         arguments = g_strsplit_set(command, " ", -1);
1308
1309         for (argc = 0; arguments[argc]; argc++);
1310         ++argc;
1311
1312         DBG("command %s argc %d", command, argc);
1313
1314         argv = g_try_malloc0(argc * sizeof(char *));
1315         if (argv == NULL) {
1316                 g_free(command);
1317                 g_strfreev(arguments);
1318                 return -ENOMEM;
1319         }
1320
1321         argv[0] = "iptables";
1322         for (i = 1; i < argc; i++)
1323                 argv[i] = arguments[i - 1];
1324
1325         ret = iptables_command(argc, argv);
1326
1327         g_free(command);
1328         g_strfreev(arguments);
1329         g_free(argv);
1330
1331         return ret;
1332 }
1333
1334
1335 int __connman_iptables_commit(const char *table_name)
1336 {
1337         struct connman_iptables *table;
1338         struct ipt_replace *repl;
1339         int err;
1340
1341         DBG("%s", table_name);
1342
1343         table = g_hash_table_lookup(table_hash, table_name);
1344         if (table == NULL)
1345                 return -EINVAL;
1346
1347         repl = iptables_blob(table);
1348
1349         err = iptables_replace(table, repl);
1350
1351         g_free(repl->counters);
1352         g_free(repl);
1353
1354         if (err < 0)
1355             return err;
1356
1357         g_hash_table_remove(table_hash, table_name);
1358
1359         return 0;
1360 }
1361
1362 static void remove_table(gpointer user_data)
1363 {
1364         struct connman_iptables *table = user_data;
1365
1366         table_cleanup(table);
1367 }
1368
1369 int __connman_iptables_init(void)
1370 {
1371         DBG("");
1372
1373         table_hash = g_hash_table_new_full(g_str_hash, g_str_equal,
1374                                                 g_free, remove_table);
1375
1376         xtables_init_all(&iptables_globals, NFPROTO_IPV4);
1377
1378         return 0;
1379
1380 }
1381
1382 void __connman_iptables_cleanup(void)
1383 {
1384         DBG("");
1385
1386         g_hash_table_destroy(table_hash);
1387
1388         xtables_free_opts(1);
1389 }