5 * Copyright (C) 2007-2010 Intel Corporation. All rights reserved.
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.
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.
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
31 #include <sys/errno.h>
32 #include <sys/socket.h>
35 #include <linux/netfilter_ipv4/ip_tables.h>
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",
48 #define LABEL_ACCEPT "ACCEPT"
49 #define LABEL_DROP "DROP"
50 #define LABEL_QUEUE "QUEUE"
51 #define LABEL_RETURN "RETURN"
53 /* fn returns 0 to continue iteration */
54 #define _XT_ENTRY_ITERATE_CONTINUE(type, entries, size, n, fn, args...) \
61 for (__i = 0, __n = 0; __i < (size); \
62 __i += __entry->next_offset, __n++) { \
63 __entry = (void *)(entries) + __i; \
67 __ret = fn(__entry, ## args); \
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)
78 #define ENTRY_ITERATE(entries, size, fn, args...) \
79 _XT_ENTRY_ITERATE(struct ipt_entry, entries, size, fn, ## args)
81 #define MIN_ALIGN (__alignof__(struct ipt_entry))
83 #define ALIGN(s) (((s) + ((MIN_ALIGN)-1)) & ~((MIN_ALIGN)-1))
86 struct xt_entry_target t;
87 char error[IPT_TABLE_MAXNAMELEN];
90 struct connman_iptables_entry {
94 struct ipt_entry *entry;
97 struct connman_iptables {
100 struct ipt_getinfo *info;
101 struct ipt_get_entries *blob_entries;
103 unsigned int num_entries;
104 unsigned int old_entries;
107 unsigned int underflow[NF_INET_NUMHOOKS];
108 unsigned int hook_entry[NF_INET_NUMHOOKS];
113 static GHashTable *table_hash = NULL;
115 static struct ipt_entry *get_entry(struct connman_iptables *table,
118 return (struct ipt_entry *)((char *)table->blob_entries->entrytable +
122 static int is_hook_entry(struct connman_iptables *table,
123 struct ipt_entry *entry)
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)
136 static unsigned long entry_to_offset(struct connman_iptables *table,
137 struct ipt_entry *entry)
139 return (void *)entry - (void *)table->blob_entries->entrytable;
142 static int target_to_verdict(char *target_name)
144 if (!strcmp(target_name, LABEL_ACCEPT))
145 return -NF_ACCEPT - 1;
147 if (!strcmp(target_name, LABEL_DROP))
150 if (!strcmp(target_name, LABEL_QUEUE))
151 return -NF_QUEUE - 1;
153 if (!strcmp(target_name, LABEL_RETURN))
159 static gboolean is_builtin_target(char *target_name)
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))
170 static gboolean is_jump(struct connman_iptables_entry *e)
172 struct xt_entry_target *target;
174 target = ipt_get_target(e->entry);
176 if (!strcmp(target->u.user.name, IPT_STANDARD_TARGET)) {
177 struct xt_standard_target *t;
179 t = (struct xt_standard_target *)target;
181 switch (t->verdict) {
197 static gboolean is_chain(struct connman_iptables *table,
198 struct connman_iptables_entry *e)
200 struct ipt_entry *entry;
201 struct xt_entry_target *target;
207 target = ipt_get_target(entry);
208 if (!strcmp(target->u.user.name, IPT_ERROR_TARGET))
214 static GList *find_chain_head(struct connman_iptables *table,
218 struct connman_iptables_entry *head;
219 struct ipt_entry *entry;
220 struct xt_entry_target *target;
223 for (list = table->entries; list; list = list->next) {
228 builtin = head->builtin;
229 if (builtin >= 0 && !strcmp(hooknames[builtin], chain_name))
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))
242 static GList *find_chain_tail(struct connman_iptables *table,
245 struct connman_iptables_entry *tail;
246 GList *chain_head, *list;
248 chain_head = find_chain_head(table, chain_name);
249 if (chain_head == NULL)
252 /* Then we look for the next chain */
253 for (list = chain_head->next; list; list = list->next) {
256 if (is_chain(table, tail))
260 /* Nothing found, we return the table end */
261 return g_list_last(table->entries);
265 static void update_offsets(struct connman_iptables *table)
268 struct connman_iptables_entry *entry, *prev_entry;
270 for (list = table->entries; list; list = list->next) {
273 if (list == table->entries) {
280 prev_entry = prev->data;
282 entry->offset = prev_entry->offset +
283 prev_entry->entry->next_offset;
287 static int iptables_add_entry(struct connman_iptables *table,
288 struct ipt_entry *entry, GList *before,
292 struct connman_iptables_entry *e, *tmp, *entry_before;
293 struct xt_standard_target *t;
298 e = g_try_malloc0(sizeof(struct connman_iptables_entry));
303 e->builtin = builtin;
305 table->entries = g_list_insert_before(table->entries, before, e);
306 table->num_entries++;
307 table->size += entry->next_offset;
309 if (before == NULL) {
310 e->offset = table->size - entry->next_offset;
315 entry_before = before->data;
318 * We've just appended/insterted a new entry. All references
319 * should be bumped accordingly.
321 for (list = table->entries; list; list = list->next) {
327 t = (struct xt_standard_target *)ipt_get_target(tmp->entry);
329 if (t->verdict > entry_before->offset)
330 t->verdict += entry->next_offset;
333 update_offsets(table);
338 static int remove_table_entry(struct connman_iptables *table,
339 struct connman_iptables_entry *entry)
343 table->num_entries--;
344 table->size -= entry->entry->next_offset;
345 removed = entry->entry->next_offset;
347 g_free(entry->entry);
349 table->entries = g_list_remove(table->entries, entry);
354 static int iptables_flush_chain(struct connman_iptables *table,
357 GList *chain_head, *chain_tail, *list, *next;
358 struct connman_iptables_entry *entry;
359 int builtin, removed = 0;
361 chain_head = find_chain_head(table, name);
362 if (chain_head == NULL)
365 chain_tail = find_chain_tail(table, name);
366 if (chain_tail == NULL)
369 entry = chain_head->data;
370 builtin = entry->builtin;
375 list = chain_head->next;
377 if (list == chain_tail->prev)
380 while (list != chain_tail->prev) {
382 next = g_list_next(list);
384 removed += remove_table_entry(table, entry);
390 struct connman_iptables_entry *e;
394 entry->builtin = builtin;
396 table->underflow[builtin] -= removed;
398 for (list = chain_tail; list; list = list->next) {
401 builtin = e->builtin;
405 table->hook_entry[builtin] -= removed;
406 table->underflow[builtin] -= removed;
410 update_offsets(table);
415 static int iptables_add_chain(struct connman_iptables *table,
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;
425 last = g_list_last(table->entries);
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
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)
443 memset(entry_head, 0, entry_head_size);
445 entry_head->target_offset = sizeof(struct ipt_entry);
446 entry_head->next_offset = entry_head_size;
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);
453 if (iptables_add_entry(table, entry_head, last, -1) < 0)
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)
463 memset(entry_return, 0, entry_return_size);
465 entry_return->target_offset = sizeof(struct ipt_entry);
466 entry_return->next_offset = entry_return_size;
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;
473 if (iptables_add_entry(table, entry_return, last, -1) < 0)
479 g_free(entry_return);
486 static int iptables_delete_chain(struct connman_iptables *table, char *name)
488 struct connman_iptables_entry *entry;
489 GList *chain_head, *chain_tail;
491 chain_head = find_chain_head(table, name);
492 if (chain_head == NULL)
495 entry = chain_head->data;
497 /* We cannot remove builtin chain */
498 if (entry->builtin >= 0)
501 chain_tail = find_chain_tail(table, name);
502 if (chain_tail == NULL)
505 /* Chain must be flushed */
506 if (chain_head->next != chain_tail->prev)
509 remove_table_entry(table, entry);
511 entry = chain_tail->prev->data;
512 remove_table_entry(table, entry);
514 update_offsets(table);
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)
524 struct ipt_entry *new_entry;
525 size_t match_size, target_size;
526 int is_builtin = is_builtin_target(target_name);
529 match_size = xt_m->m->u.match_size;
534 target_size = ALIGN(xt_t->t->u.target_size);
536 target_size = ALIGN(sizeof(struct xt_standard_target));
538 new_entry = g_try_malloc0(sizeof(struct ipt_entry) + target_size +
540 if (new_entry == NULL)
543 memcpy(&new_entry->ip, ip, sizeof(struct ipt_ip));
545 new_entry->target_offset = sizeof(struct ipt_entry) + match_size;
546 new_entry->next_offset = sizeof(struct ipt_entry) + target_size +
549 struct xt_entry_match *entry_match;
551 entry_match = (struct xt_entry_match *)new_entry->elems;
552 memcpy(entry_match, xt_m->m, match_size);
556 struct xt_entry_target *entry_target;
559 struct xt_standard_target *target;
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);
566 entry_target = ipt_get_target(new_entry);
567 memcpy(entry_target, xt_t->t, target_size);
569 struct connman_iptables_entry *target_rule;
570 struct xt_standard_target *target;
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.
580 chain_head = find_chain_head(table, target_name);
581 if (chain_head == NULL || chain_head->next == NULL) {
586 target_rule = chain_head->next->data;
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;
597 static void update_hooks(struct connman_iptables *table, GList *chain_head,
598 struct ipt_entry *entry)
601 struct connman_iptables_entry *head, *e;
604 if (chain_head == NULL)
607 head = chain_head->data;
609 builtin = head->builtin;
613 table->underflow[builtin] += entry->next_offset;
615 for (list = chain_head->next; list; list = list->next) {
618 builtin = e->builtin;
622 table->hook_entry[builtin] += entry->next_offset;
623 table->underflow[builtin] += entry->next_offset;
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,
633 GList *chain_tail, *chain_head;
634 struct ipt_entry *new_entry;
635 struct connman_iptables_entry *head;
637 chain_head = find_chain_head(table, chain_name);
638 if (chain_head == NULL)
641 chain_tail = find_chain_tail(table, chain_name);
642 if (chain_tail == NULL)
645 new_entry = new_rule(table, ip, target_name, xt_t, match_name, xt_m);
646 if (new_entry == NULL)
649 update_hooks(table, chain_head, new_entry);
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.
656 head = chain_head->data;
657 if (head->builtin < 0)
659 else if (chain_head == chain_tail->prev) {
660 *builtin = head->builtin;
667 static int iptables_append_rule(struct connman_iptables *table,
668 struct ipt_ip *ip, char *chain_name,
669 char *target_name, struct xtables_target *xt_t,
670 char *match_name, struct xtables_match *xt_m)
673 struct ipt_entry *new_entry;
674 int builtin = -1, ret;
678 chain_tail = find_chain_tail(table, chain_name);
679 if (chain_tail == NULL)
682 new_entry = prepare_rule_inclusion(table, ip, chain_name,
683 target_name, xt_t, match_name, xt_m, &builtin);
684 if (new_entry == NULL)
687 ret = iptables_add_entry(table, new_entry, chain_tail->prev, builtin);
694 static int iptables_insert_rule(struct connman_iptables *table,
695 struct ipt_ip *ip, char *chain_name,
696 char *target_name, struct xtables_target *xt_t,
697 char *match_name, struct xtables_match *xt_m)
699 struct ipt_entry *new_entry;
700 int builtin = -1, ret;
703 chain_head = find_chain_head(table, chain_name);
704 if (chain_head == NULL)
707 new_entry = prepare_rule_inclusion(table, ip, chain_name,
708 target_name, xt_t, match_name, xt_m, &builtin);
709 if (new_entry == NULL)
712 ret = iptables_add_entry(table, new_entry, chain_head->next, builtin);
719 static struct ipt_replace *
720 iptables_blob(struct connman_iptables *table)
722 struct ipt_replace *r;
724 struct connman_iptables_entry *e;
725 unsigned char *entry_index;
727 r = g_try_malloc0(sizeof(struct ipt_replace) + table->size);
731 memset(r, 0, sizeof(*r) + table->size);
733 r->counters = g_try_malloc0(sizeof(struct xt_counters)
734 * table->old_entries);
735 if (r->counters == NULL) {
740 strcpy(r->name, table->info->name);
741 r->num_entries = table->num_entries;
742 r->size = table->size;
744 r->num_counters = table->old_entries;
745 r->valid_hooks = table->info->valid_hooks;
747 memcpy(r->hook_entry, table->hook_entry, sizeof(table->hook_entry));
748 memcpy(r->underflow, table->underflow, sizeof(table->underflow));
750 entry_index = (unsigned char *)r->entries;
751 for (list = table->entries; list; list = list->next) {
754 memcpy(entry_index, e->entry, e->entry->next_offset);
755 entry_index += e->entry->next_offset;
761 static void dump_ip(struct ipt_entry *entry)
763 struct ipt_ip *ip = &entry->ip;
764 char ip_string[INET6_ADDRSTRLEN];
765 char ip_mask[INET6_ADDRSTRLEN];
767 if (strlen(ip->iniface))
768 connman_info("\tin %s", ip->iniface);
770 if (strlen(ip->outiface))
771 connman_info("\tout %s", ip->outiface);
773 if (inet_ntop(AF_INET, &ip->src, ip_string, INET6_ADDRSTRLEN) != NULL &&
774 inet_ntop(AF_INET, &ip->smsk,
775 ip_mask, INET6_ADDRSTRLEN) != NULL)
776 connman_info("\tsrc %s/%s", ip_string, ip_mask);
778 if (inet_ntop(AF_INET, &ip->dst, ip_string, INET6_ADDRSTRLEN) != NULL &&
779 inet_ntop(AF_INET, &ip->dmsk,
780 ip_mask, INET6_ADDRSTRLEN) != NULL)
781 connman_info("\tdst %s/%s", ip_string, ip_mask);
784 static void dump_target(struct connman_iptables *table,
785 struct ipt_entry *entry)
788 struct xtables_target *xt_t;
789 struct xt_entry_target *target;
791 target = ipt_get_target(entry);
793 if (!strcmp(target->u.user.name, IPT_STANDARD_TARGET)) {
794 struct xt_standard_target *t;
796 t = (struct xt_standard_target *)target;
798 switch (t->verdict) {
800 connman_info("\ttarget RETURN");
804 connman_info("\ttarget ACCEPT");
808 connman_info("\ttarget DROP");
812 connman_info("\ttarget QUEUE");
816 connman_info("\ttarget STOP");
820 connman_info("\tJUMP @%p (0x%x)",
821 (char*)table->blob_entries->entrytable +
822 t->verdict, t->verdict);
826 xt_t = xtables_find_target(IPT_STANDARD_TARGET,
827 XTF_LOAD_MUST_SUCCEED);
829 if(xt_t->print != NULL)
830 xt_t->print(NULL, target, 1);
832 xt_t = xtables_find_target(target->u.user.name, XTF_TRY_LOAD);
834 connman_info("\ttarget %s", target->u.user.name);
838 if(xt_t->print != NULL) {
839 connman_info("\ttarget ");
840 xt_t->print(NULL, target, 1);
845 static void dump_match(struct connman_iptables *table, struct ipt_entry *entry)
847 struct xtables_match *xt_m;
848 struct xt_entry_match *match;
850 if (entry->elems == (unsigned char *)entry + entry->target_offset)
853 match = (struct xt_entry_match *) entry->elems;
855 if (!strlen(match->u.user.name))
858 xt_m = xtables_find_match(match->u.user.name, XTF_TRY_LOAD, NULL);
862 if(xt_m->print != NULL) {
863 connman_info("\tmatch ");
864 xt_m->print(NULL, match, 1);
870 connman_info("\tmatch %s", match->u.user.name);
874 static int dump_entry(struct ipt_entry *entry,
875 struct connman_iptables *table)
877 struct xt_entry_target *target;
881 offset = (char *)entry - (char *)table->blob_entries->entrytable;
882 target = ipt_get_target(entry);
883 builtin = is_hook_entry(table, entry);
885 if (entry_to_offset(table, entry) + entry->next_offset ==
886 table->blob_entries->size) {
887 connman_info("End of CHAIN 0x%x", offset);
891 if (!strcmp(target->u.user.name, IPT_ERROR_TARGET)) {
892 connman_info("USER CHAIN (%s) %p match %p target %p size %d",
893 target->data, entry, entry->elems,
894 (char *)entry + entry->target_offset,
898 } else if (builtin >= 0) {
899 connman_info("CHAIN (%s) %p match %p target %p size %d",
900 hooknames[builtin], entry, entry->elems,
901 (char *)entry + entry->target_offset,
904 connman_info("RULE %p match %p target %p size %d", entry,
906 (char *)entry + entry->target_offset,
910 dump_match(table, entry);
911 dump_target(table, entry);
917 static void iptables_dump(struct connman_iptables *table)
919 connman_info("%s valid_hooks=0x%08x, num_entries=%u, size=%u",
921 table->info->valid_hooks, table->info->num_entries,
924 ENTRY_ITERATE(table->blob_entries->entrytable,
925 table->blob_entries->size,
930 static int iptables_get_entries(struct connman_iptables *table)
932 socklen_t entry_size;
934 entry_size = sizeof(struct ipt_get_entries) + table->info->size;
936 return getsockopt(table->ipt_sock, IPPROTO_IP, IPT_SO_GET_ENTRIES,
937 table->blob_entries, &entry_size);
940 static int iptables_replace(struct connman_iptables *table,
941 struct ipt_replace *r)
943 return setsockopt(table->ipt_sock, IPPROTO_IP, IPT_SO_SET_REPLACE, r,
944 sizeof(*r) + r->size);
947 static int add_entry(struct ipt_entry *entry, struct connman_iptables *table)
949 struct ipt_entry *new_entry;
952 new_entry = g_try_malloc0(entry->next_offset);
953 if (new_entry == NULL)
956 memcpy(new_entry, entry, entry->next_offset);
958 builtin = is_hook_entry(table, entry);
960 return iptables_add_entry(table, new_entry, NULL, builtin);
963 static void table_cleanup(struct connman_iptables *table)
966 struct connman_iptables_entry *entry;
968 close(table->ipt_sock);
970 for (list = table->entries; list; list = list->next) {
973 g_free(entry->entry);
977 g_list_free(table->entries);
979 g_free(table->blob_entries);
983 static struct connman_iptables *iptables_init(char *table_name)
985 struct connman_iptables *table;
988 DBG("%s", table_name);
990 table = g_hash_table_lookup(table_hash, table_name);
994 table = g_try_new0(struct connman_iptables, 1);
998 table->info = g_try_new0(struct ipt_getinfo, 1);
999 if (table->info == NULL)
1002 table->ipt_sock = socket(AF_INET, SOCK_RAW, IPPROTO_RAW);
1003 if (table->ipt_sock < 0)
1006 s = sizeof(*table->info);
1007 strcpy(table->info->name, table_name);
1008 if (getsockopt(table->ipt_sock, IPPROTO_IP, IPT_SO_GET_INFO,
1009 table->info, &s) < 0)
1012 table->blob_entries = g_try_malloc0(sizeof(struct ipt_get_entries) +
1014 if (table->blob_entries == NULL)
1017 strcpy(table->blob_entries->name, table_name);
1018 table->blob_entries->size = table->info->size;
1020 if (iptables_get_entries(table) < 0)
1023 table->num_entries = 0;
1024 table->old_entries = table->info->num_entries;
1027 memcpy(table->underflow, table->info->underflow,
1028 sizeof(table->info->underflow));
1029 memcpy(table->hook_entry, table->info->hook_entry,
1030 sizeof(table->info->hook_entry));
1032 ENTRY_ITERATE(table->blob_entries->entrytable,
1033 table->blob_entries->size,
1036 g_hash_table_insert(table_hash, g_strdup(table_name), table);
1042 table_cleanup(table);
1047 static struct option iptables_opts[] = {
1048 {.name = "append", .has_arg = 1, .val = 'A'},
1049 {.name = "flush-chain", .has_arg = 1, .val = 'F'},
1050 {.name = "insert", .has_arg = 1, .val = 'I'},
1051 {.name = "list", .has_arg = 2, .val = 'L'},
1052 {.name = "new-chain", .has_arg = 1, .val = 'N'},
1053 {.name = "delete-chain", .has_arg = 1, .val = 'X'},
1054 {.name = "destination", .has_arg = 1, .val = 'd'},
1055 {.name = "in-interface", .has_arg = 1, .val = 'i'},
1056 {.name = "jump", .has_arg = 1, .val = 'j'},
1057 {.name = "match", .has_arg = 1, .val = 'm'},
1058 {.name = "out-interface", .has_arg = 1, .val = 'o'},
1059 {.name = "source", .has_arg = 1, .val = 's'},
1060 {.name = "table", .has_arg = 1, .val = 't'},
1064 struct xtables_globals iptables_globals = {
1066 .opts = iptables_opts,
1067 .orig_opts = iptables_opts,
1070 static int iptables_command(int argc, char *argv[])
1072 struct connman_iptables *table;
1073 struct xtables_match *xt_m;
1074 struct xtables_target *xt_t;
1076 char *table_name, *chain, *new_chain, *match_name, *target_name;
1077 char *flush_chain, *delete_chain;
1078 int c, ret, in_len, out_len;
1080 gboolean dump, invert, insert;
1081 struct in_addr src, dst;
1089 table_name = chain = new_chain = match_name = target_name = NULL;
1090 flush_chain = delete_chain = NULL;
1091 memset(&ip, 0, sizeof(struct ipt_ip));
1099 while ((c = getopt_long(argc, argv, "-A:F:I:L::N:X:d:j:i:m:o:s:t:",
1100 iptables_globals.opts, NULL)) != -1) {
1103 /* It is either -A, -D or -I at once */
1111 flush_chain = optarg;
1115 /* It is either -A, -D or -I at once */
1132 delete_chain = optarg;
1136 if (!inet_pton(AF_INET, optarg, &dst))
1140 inet_pton(AF_INET, "255.255.255.255", &ip.dmsk);
1143 ip.invflags |= IPT_INV_DSTIP;
1148 in_len = strlen(optarg);
1150 if (in_len + 1 > IFNAMSIZ)
1153 strcpy(ip.iniface, optarg);
1154 memset(ip.iniface_mask, 0xff, in_len + 1);
1157 ip.invflags |= IPT_INV_VIA_IN;
1162 target_name = optarg;
1163 xt_t = xtables_find_target(target_name, XTF_TRY_LOAD);
1168 size = ALIGN(sizeof(struct ipt_entry_target)) +
1171 xt_t->t = g_try_malloc0(size);
1172 if (xt_t->t == NULL)
1174 xt_t->t->u.target_size = size;
1175 strcpy(xt_t->t->u.user.name, target_name);
1176 xt_t->t->u.user.revision = xt_t->revision;
1177 if (xt_t->init != NULL)
1178 xt_t->init(xt_t->t);
1179 iptables_globals.opts =
1180 xtables_merge_options(
1181 #if XTABLES_VERSION_CODE > 5
1182 iptables_globals.orig_opts,
1184 iptables_globals.opts,
1186 &xt_t->option_offset);
1187 if (iptables_globals.opts == NULL)
1193 match_name = optarg;
1195 xt_m = xtables_find_match(optarg, XTF_LOAD_MUST_SUCCEED, NULL);
1196 size = ALIGN(sizeof(struct ipt_entry_match)) +
1198 xt_m->m = g_try_malloc0(size);
1201 xt_m->m->u.match_size = size;
1202 strcpy(xt_m->m->u.user.name, xt_m->name);
1203 xt_m->m->u.user.revision = xt_m->revision;
1204 if (xt_m->init != NULL)
1205 xt_m->init(xt_m->m);
1206 if (xt_m != xt_m->next) {
1207 iptables_globals.opts =
1208 xtables_merge_options(
1209 #if XTABLES_VERSION_CODE > 5
1210 iptables_globals.orig_opts,
1212 iptables_globals.opts,
1214 &xt_m->option_offset);
1215 if (iptables_globals.opts == NULL)
1222 out_len = strlen(optarg);
1224 if (out_len + 1 > IFNAMSIZ)
1227 strcpy(ip.outiface, optarg);
1228 memset(ip.outiface_mask, 0xff, out_len + 1);
1231 ip.invflags |= IPT_INV_VIA_OUT;
1236 if (!inet_pton(AF_INET, optarg, &src))
1240 inet_pton(AF_INET, "255.255.255.255", &ip.smsk);
1243 ip.invflags |= IPT_INV_SRCIP;
1248 table_name = optarg;
1252 if (optarg[0] == '!' && optarg[1] == '\0') {
1258 connman_error("Invalid option");
1264 if (xt_t == NULL || xt_t->parse == NULL ||
1265 !xt_t->parse(c - xt_t->option_offset, argv, invert,
1266 &xt_t->tflags, NULL, &xt_t->t)) {
1267 if (xt_m == NULL || xt_m->parse == NULL)
1270 xt_m->parse(c - xt_m->option_offset, argv,
1271 invert, &xt_m->mflags, NULL, &xt_m->m);
1280 if (table_name == NULL)
1281 table_name = "filter";
1283 table = iptables_init(table_name);
1284 if (table == NULL) {
1289 if (delete_chain != NULL) {
1290 printf("Delete chain %s\n", delete_chain);
1292 iptables_delete_chain(table, delete_chain);
1298 iptables_dump(table);
1305 DBG("Flush chain %s", flush_chain);
1307 iptables_flush_chain(table, flush_chain);
1312 if (chain && new_chain) {
1318 DBG("New chain %s", new_chain);
1320 ret = iptables_add_chain(table, new_chain);
1325 if (target_name == NULL)
1328 if (insert == TRUE) {
1329 DBG("Inserting %s to %s (match %s)",
1330 target_name, chain, match_name);
1332 ret = iptables_insert_rule(table, &ip, chain,
1333 target_name, xt_t, match_name, xt_m);
1337 DBG("Adding %s to %s (match %s)",
1338 target_name, chain, match_name);
1340 ret = iptables_append_rule(table, &ip, chain,
1341 target_name, xt_t, match_name, xt_m);
1357 int __connman_iptables_command(const char *format, ...)
1359 char **argv, **arguments, *command;
1366 va_start(args, format);
1368 command = g_strdup_vprintf(format, args);
1372 if (command == NULL)
1375 arguments = g_strsplit_set(command, " ", -1);
1377 for (argc = 0; arguments[argc]; argc++);
1380 DBG("command %s argc %d", command, argc);
1382 argv = g_try_malloc0(argc * sizeof(char *));
1385 g_strfreev(arguments);
1389 argv[0] = "iptables";
1390 for (i = 1; i < argc; i++)
1391 argv[i] = arguments[i - 1];
1393 ret = iptables_command(argc, argv);
1396 g_strfreev(arguments);
1403 int __connman_iptables_commit(const char *table_name)
1405 struct connman_iptables *table;
1406 struct ipt_replace *repl;
1409 DBG("%s", table_name);
1411 table = g_hash_table_lookup(table_hash, table_name);
1415 repl = iptables_blob(table);
1417 err = iptables_replace(table, repl);
1419 g_free(repl->counters);
1425 g_hash_table_remove(table_hash, table_name);
1430 static void remove_table(gpointer user_data)
1432 struct connman_iptables *table = user_data;
1434 table_cleanup(table);
1437 int __connman_iptables_init(void)
1441 table_hash = g_hash_table_new_full(g_str_hash, g_str_equal,
1442 g_free, remove_table);
1444 xtables_init_all(&iptables_globals, NFPROTO_IPV4);
1450 void __connman_iptables_cleanup(void)
1454 g_hash_table_destroy(table_hash);
1456 xtables_free_opts(1);