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