4 * Copyright (C) 2007-2011 Intel Corporation. All rights reserved.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
26 #include <sys/errno.h>
27 #include <sys/socket.h>
28 #include <sys/types.h>
29 #include <arpa/inet.h>
32 #include <linux/netfilter_ipv4/ip_tables.h>
36 static const char *hooknames[] = {
37 [NF_IP_PRE_ROUTING] = "PREROUTING",
38 [NF_IP_LOCAL_IN] = "INPUT",
39 [NF_IP_FORWARD] = "FORWARD",
40 [NF_IP_LOCAL_OUT] = "OUTPUT",
41 [NF_IP_POST_ROUTING] = "POSTROUTING",
44 #define LABEL_ACCEPT "ACCEPT"
45 #define LABEL_DROP "DROP"
46 #define LABEL_QUEUE "QUEUE"
47 #define LABEL_RETURN "RETURN"
49 #define XT_OPTION_OFFSET_SCALE 256
51 /* fn returns 0 to continue iteration */
52 #define _XT_ENTRY_ITERATE_CONTINUE(type, entries, size, n, fn, args...) \
59 for (__i = 0, __n = 0; __i < (size); \
60 __i += __entry->next_offset, __n++) { \
61 __entry = (void *)(entries) + __i; \
65 __ret = fn(__entry, ## args); \
72 /* fn returns 0 to continue iteration */
73 #define _XT_ENTRY_ITERATE(type, entries, size, fn, args...) \
74 _XT_ENTRY_ITERATE_CONTINUE(type, entries, size, 0, fn, args)
76 #define ENTRY_ITERATE(entries, size, fn, args...) \
77 _XT_ENTRY_ITERATE(struct ipt_entry, entries, size, fn, ## args)
79 #define MIN_ALIGN (__alignof__(struct ipt_entry))
81 #define ALIGN(s) (((s) + ((MIN_ALIGN)-1)) & ~((MIN_ALIGN)-1))
84 struct xt_entry_target t;
85 char error[IPT_TABLE_MAXNAMELEN];
88 struct connman_iptables_entry {
92 struct ipt_entry *entry;
95 struct connman_iptables {
98 struct ipt_getinfo *info;
99 struct ipt_get_entries *blob_entries;
101 unsigned int num_entries;
102 unsigned int old_entries;
105 unsigned int underflow[NF_INET_NUMHOOKS];
106 unsigned int hook_entry[NF_INET_NUMHOOKS];
112 static struct ipt_entry *get_entry(struct connman_iptables *table,
115 return (struct ipt_entry *)((char *)table->blob_entries->entrytable +
119 static int is_hook_entry(struct connman_iptables *table,
120 struct ipt_entry *entry)
124 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
125 if ((table->info->valid_hooks & (1 << i))
126 && get_entry(table, table->info->hook_entry[i]) == entry)
133 static unsigned long entry_to_offset(struct connman_iptables *table,
134 struct ipt_entry *entry)
136 return (void *)entry - (void *)table->blob_entries->entrytable;
139 static int target_to_verdict(char *target_name)
141 if (!strcmp(target_name, LABEL_ACCEPT))
142 return -NF_ACCEPT - 1;
144 if (!strcmp(target_name, LABEL_DROP))
147 if (!strcmp(target_name, LABEL_QUEUE))
148 return -NF_QUEUE - 1;
150 if (!strcmp(target_name, LABEL_RETURN))
156 static gboolean is_builtin_target(char *target_name)
158 if (!strcmp(target_name, LABEL_ACCEPT) ||
159 !strcmp(target_name, LABEL_DROP) ||
160 !strcmp(target_name, LABEL_QUEUE) ||
161 !strcmp(target_name, LABEL_RETURN))
167 static gboolean is_jump(struct connman_iptables_entry *e)
169 struct xt_entry_target *target;
171 target = ipt_get_target(e->entry);
173 if (!strcmp(target->u.user.name, IPT_STANDARD_TARGET)) {
174 struct xt_standard_target *t;
176 t = (struct xt_standard_target *)target;
178 switch (t->verdict) {
194 static gboolean is_chain(struct connman_iptables *table,
195 struct connman_iptables_entry *e)
197 struct ipt_entry *entry;
198 struct xt_entry_target *target;
204 target = ipt_get_target(entry);
205 if (!strcmp(target->u.user.name, IPT_ERROR_TARGET))
211 static GList *find_chain_head(struct connman_iptables *table,
215 struct connman_iptables_entry *head;
216 struct ipt_entry *entry;
217 struct xt_entry_target *target;
220 for (list = table->entries; list; list = list->next) {
225 builtin = head->builtin;
226 if (builtin >= 0 && !strcmp(hooknames[builtin], chain_name))
229 /* User defined chain */
230 target = ipt_get_target(entry);
231 if (!strcmp(target->u.user.name, IPT_ERROR_TARGET) &&
232 !strcmp((char *)target->data, chain_name))
239 static GList *find_chain_tail(struct connman_iptables *table,
242 GList *chain_head, *list;
243 struct connman_iptables_entry *tail;
245 chain_head = find_chain_head(table, chain_name);
246 if (chain_head == NULL)
249 /* Then we look for the next chain */
250 for (list = chain_head->next; list; list = list->next) {
253 if (is_chain(table, tail))
257 /* Nothing found, we return the table end */
258 return g_list_last(table->entries);
261 static void update_offsets(struct connman_iptables *table)
264 struct connman_iptables_entry *entry, *prev_entry;
266 for (list = table->entries; list; list = list->next) {
269 if (list == table->entries) {
276 prev_entry = prev->data;
278 entry->offset = prev_entry->offset +
279 prev_entry->entry->next_offset;
283 static void update_targets_reference(struct connman_iptables *table,
284 struct connman_iptables_entry *entry_before,
285 struct connman_iptables_entry *modified_entry,
286 gboolean is_removing)
288 struct connman_iptables_entry *tmp;
289 struct xt_standard_target *t;
293 offset = modified_entry->entry->next_offset;
295 for (list = table->entries; list; list = list->next) {
301 t = (struct xt_standard_target *)ipt_get_target(tmp->entry);
303 if (is_removing == TRUE) {
304 if (t->verdict >= entry_before->offset)
305 t->verdict -= offset;
307 if (t->verdict > entry_before->offset)
308 t->verdict += offset;
313 static int connman_add_entry(struct connman_iptables *table,
314 struct ipt_entry *entry, GList *before,
317 struct connman_iptables_entry *e, *entry_before;
322 e = g_try_malloc0(sizeof(struct connman_iptables_entry));
327 e->builtin = builtin;
329 table->entries = g_list_insert_before(table->entries, before, e);
330 table->num_entries++;
331 table->size += entry->next_offset;
333 if (before == NULL) {
334 e->offset = table->size - entry->next_offset;
339 entry_before = before->data;
342 * We've just appended/insterted a new entry. All references
343 * should be bumped accordingly.
345 update_targets_reference(table, entry_before, e, FALSE);
347 update_offsets(table);
352 static int remove_table_entry(struct connman_iptables *table,
353 struct connman_iptables_entry *entry)
357 table->num_entries--;
358 table->size -= entry->entry->next_offset;
359 removed = entry->entry->next_offset;
361 g_free(entry->entry);
363 table->entries = g_list_remove(table->entries, entry);
368 static int connman_iptables_flush_chain(struct connman_iptables *table,
371 GList *chain_head, *chain_tail, *list, *next;
372 struct connman_iptables_entry *entry;
373 int builtin, removed = 0;
375 chain_head = find_chain_head(table, name);
376 if (chain_head == NULL)
379 chain_tail = find_chain_tail(table, name);
380 if (chain_tail == NULL)
383 entry = chain_head->data;
384 builtin = entry->builtin;
389 list = chain_head->next;
391 if (list == chain_tail->prev)
394 while (list != chain_tail->prev) {
396 next = g_list_next(list);
398 removed += remove_table_entry(table, entry);
404 struct connman_iptables_entry *e;
408 entry->builtin = builtin;
410 table->underflow[builtin] -= removed;
412 for (list = chain_tail; list; list = list->next) {
415 builtin = e->builtin;
419 table->hook_entry[builtin] -= removed;
420 table->underflow[builtin] -= removed;
424 update_offsets(table);
429 static int connman_iptables_delete_chain(struct connman_iptables *table,
432 GList *chain_head, *chain_tail;
433 struct connman_iptables_entry *entry;
435 chain_head = find_chain_head(table, name);
436 if (chain_head == NULL)
439 entry = chain_head->data;
441 /* We cannot remove builtin chain */
442 if (entry->builtin >= 0)
445 chain_tail = find_chain_tail(table, name);
446 if (chain_tail == NULL)
449 /* Chain must be flushed */
450 if (chain_head->next != chain_tail->prev)
453 remove_table_entry(table, entry);
455 entry = chain_tail->prev->data;
456 remove_table_entry(table, entry);
458 update_offsets(table);
463 static int connman_iptables_add_chain(struct connman_iptables *table,
467 struct ipt_entry *entry_head;
468 struct ipt_entry *entry_return;
469 struct error_target *error;
470 struct ipt_standard_target *standard;
471 u_int16_t entry_head_size, entry_return_size;
473 last = g_list_last(table->entries);
476 * An empty chain is composed of:
477 * - A head entry, with no match and an error target.
478 * The error target data is the chain name.
479 * - A tail entry, with no match and a standard target.
480 * The standard target verdict is XT_RETURN (return to the
485 entry_head_size = sizeof(struct ipt_entry) +
486 sizeof(struct error_target);
487 entry_head = g_try_malloc0(entry_head_size);
488 if (entry_head == NULL)
491 memset(entry_head, 0, entry_head_size);
493 entry_head->target_offset = sizeof(struct ipt_entry);
494 entry_head->next_offset = entry_head_size;
496 error = (struct error_target *) entry_head->elems;
497 strcpy(error->t.u.user.name, IPT_ERROR_TARGET);
498 error->t.u.user.target_size = ALIGN(sizeof(struct error_target));
499 strcpy(error->error, name);
501 if (connman_add_entry(table, entry_head, last, -1) < 0)
505 entry_return_size = sizeof(struct ipt_entry) +
506 sizeof(struct ipt_standard_target);
507 entry_return = g_try_malloc0(entry_return_size);
508 if (entry_return == NULL)
511 memset(entry_return, 0, entry_return_size);
513 entry_return->target_offset = sizeof(struct ipt_entry);
514 entry_return->next_offset = entry_return_size;
516 standard = (struct ipt_standard_target *) entry_return->elems;
517 standard->target.u.user.target_size =
518 ALIGN(sizeof(struct ipt_standard_target));
519 standard->verdict = XT_RETURN;
521 if (connman_add_entry(table, entry_return, last, -1) < 0)
527 g_free(entry_return);
534 static struct ipt_entry *new_rule(struct ipt_ip *ip,
535 char *target_name, struct xtables_target *xt_t,
536 struct xtables_rule_match *xt_rm)
538 struct xtables_rule_match *tmp_xt_rm;
539 struct ipt_entry *new_entry;
540 size_t match_size, target_size;
543 for (tmp_xt_rm = xt_rm; tmp_xt_rm != NULL; tmp_xt_rm = tmp_xt_rm->next)
544 match_size += tmp_xt_rm->match->m->u.match_size;
547 target_size = ALIGN(xt_t->t->u.target_size);
549 target_size = ALIGN(sizeof(struct xt_standard_target));
551 new_entry = g_try_malloc0(sizeof(struct ipt_entry) + target_size +
553 if (new_entry == NULL)
556 memcpy(&new_entry->ip, ip, sizeof(struct ipt_ip));
558 new_entry->target_offset = sizeof(struct ipt_entry) + match_size;
559 new_entry->next_offset = sizeof(struct ipt_entry) + target_size +
563 for (tmp_xt_rm = xt_rm; tmp_xt_rm != NULL;
564 tmp_xt_rm = tmp_xt_rm->next) {
565 memcpy(new_entry->elems + match_size, tmp_xt_rm->match->m,
566 tmp_xt_rm->match->m->u.match_size);
567 match_size += tmp_xt_rm->match->m->u.match_size;
571 struct xt_entry_target *entry_target;
573 entry_target = ipt_get_target(new_entry);
574 memcpy(entry_target, xt_t->t, target_size);
580 static void update_hooks(struct connman_iptables *table, GList *chain_head,
581 struct ipt_entry *entry)
584 struct connman_iptables_entry *head, *e;
587 if (chain_head == NULL)
590 head = chain_head->data;
592 builtin = head->builtin;
596 table->underflow[builtin] += entry->next_offset;
598 for (list = chain_head->next; list; list = list->next) {
601 builtin = e->builtin;
605 table->hook_entry[builtin] += entry->next_offset;
606 table->underflow[builtin] += entry->next_offset;
610 static struct ipt_entry *prepare_rule_inclusion(struct connman_iptables *table,
611 struct ipt_ip *ip, char *chain_name,
612 char *target_name, struct xtables_target *xt_t,
613 int *builtin, struct xtables_rule_match *xt_rm)
615 GList *chain_tail, *chain_head;
616 struct ipt_entry *new_entry;
617 struct connman_iptables_entry *head;
619 chain_head = find_chain_head(table, chain_name);
620 if (chain_head == NULL)
623 chain_tail = find_chain_tail(table, chain_name);
624 if (chain_tail == NULL)
627 new_entry = new_rule(ip, target_name, xt_t, xt_rm);
628 if (new_entry == NULL)
631 update_hooks(table, chain_head, new_entry);
634 * If the chain is builtin, and does not have any rule,
635 * then the one that we're inserting is becoming the head
636 * and thus needs the builtin flag.
638 head = chain_head->data;
639 if (head->builtin < 0)
641 else if (chain_head == chain_tail->prev) {
642 *builtin = head->builtin;
649 static int connman_iptables_append_rule(struct connman_iptables *table,
650 struct ipt_ip *ip, char *chain_name,
651 char *target_name, struct xtables_target *xt_t,
652 struct xtables_rule_match *xt_rm)
655 struct ipt_entry *new_entry;
656 int builtin = -1, ret;
658 chain_tail = find_chain_tail(table, chain_name);
659 if (chain_tail == NULL)
662 new_entry = prepare_rule_inclusion(table, ip, chain_name,
663 target_name, xt_t, &builtin, xt_rm);
664 if (new_entry == NULL)
667 ret = connman_add_entry(table, new_entry, chain_tail->prev, builtin);
674 static int connman_iptables_insert_rule(struct connman_iptables *table,
675 struct ipt_ip *ip, char *chain_name,
676 char *target_name, struct xtables_target *xt_t,
677 struct xtables_rule_match *xt_rm)
680 struct ipt_entry *new_entry;
681 int builtin = -1, ret;
683 chain_head = find_chain_head(table, chain_name);
684 if (chain_head == NULL)
687 new_entry = prepare_rule_inclusion(table, ip, chain_name,
688 target_name, xt_t, &builtin, xt_rm);
689 if (new_entry == NULL)
692 ret = connman_add_entry(table, new_entry, chain_head->next, builtin);
699 static gboolean is_same_ipt_entry(struct ipt_entry *i_e1,
700 struct ipt_entry *i_e2)
702 if (memcmp(&i_e1->ip, &i_e2->ip, sizeof(struct ipt_ip)) != 0)
705 if (i_e1->target_offset != i_e2->target_offset)
708 if (i_e1->next_offset != i_e2->next_offset)
714 static gboolean is_same_target(struct xt_entry_target *xt_e_t1,
715 struct xt_entry_target *xt_e_t2)
717 if (xt_e_t1 == NULL || xt_e_t2 == NULL)
720 if (strcmp(xt_e_t1->u.user.name, IPT_STANDARD_TARGET) == 0) {
721 struct xt_standard_target *xt_s_t1;
722 struct xt_standard_target *xt_s_t2;
724 xt_s_t1 = (struct xt_standard_target *) xt_e_t1;
725 xt_s_t2 = (struct xt_standard_target *) xt_e_t2;
727 if (xt_s_t1->verdict != xt_s_t2->verdict)
730 if (xt_e_t1->u.target_size != xt_e_t2->u.target_size)
733 if (strcmp(xt_e_t1->u.user.name, xt_e_t2->u.user.name) != 0)
740 static gboolean is_same_match(struct xt_entry_match *xt_e_m1,
741 struct xt_entry_match *xt_e_m2)
743 if (xt_e_m1 == NULL || xt_e_m2 == NULL)
746 if (xt_e_m1->u.match_size != xt_e_m2->u.match_size)
749 if (xt_e_m1->u.user.revision != xt_e_m2->u.user.revision)
752 if (strcmp(xt_e_m1->u.user.name, xt_e_m2->u.user.name) != 0)
758 static int connman_iptables_delete_rule(struct connman_iptables *table,
759 struct ipt_ip *ip, char *chain_name,
760 char *target_name, struct xtables_target *xt_t,
761 struct xtables_match *xt_m,
762 struct xtables_rule_match *xt_rm)
764 GList *chain_tail, *chain_head, *list;
765 struct xt_entry_target *xt_e_t = NULL;
766 struct xt_entry_match *xt_e_m = NULL;
767 struct connman_iptables_entry *entry;
768 struct ipt_entry *entry_test;
769 int builtin, removed;
773 chain_head = find_chain_head(table, chain_name);
774 if (chain_head == NULL)
777 chain_tail = find_chain_tail(table, chain_name);
778 if (chain_tail == NULL)
784 entry_test = new_rule(ip, target_name, xt_t, xt_rm);
785 if (entry_test == NULL)
789 xt_e_t = ipt_get_target(entry_test);
791 xt_e_m = (struct xt_entry_match *)entry_test->elems;
793 entry = chain_head->data;
794 builtin = entry->builtin;
799 list = chain_head->next;
801 for (entry = NULL; list != chain_tail->prev; list = list->next) {
802 struct connman_iptables_entry *tmp;
803 struct ipt_entry *tmp_e;
808 if (is_same_ipt_entry(entry_test, tmp_e) == FALSE)
812 struct xt_entry_target *tmp_xt_e_t;
814 tmp_xt_e_t = ipt_get_target(tmp_e);
816 if (!is_same_target(tmp_xt_e_t, xt_e_t))
821 struct xt_entry_match *tmp_xt_e_m;
823 tmp_xt_e_m = (struct xt_entry_match *)tmp_e->elems;
825 if (!is_same_match(tmp_xt_e_m, xt_e_m))
838 /* We have deleted a rule,
839 * all references should be bumped accordingly */
840 if (list->next != NULL)
841 update_targets_reference(table, list->next->data,
844 removed += remove_table_entry(table, entry);
850 entry->builtin = builtin;
853 table->underflow[builtin] -= removed;
854 for (list = chain_tail; list; list = list->next) {
857 builtin = entry->builtin;
861 table->hook_entry[builtin] -= removed;
862 table->underflow[builtin] -= removed;
866 update_offsets(table);
871 static int connman_iptables_change_policy(struct connman_iptables *table,
872 char *chain_name, char *policy)
875 struct connman_iptables_entry *entry;
876 struct xt_entry_target *target;
877 struct xt_standard_target *t;
880 verdict = target_to_verdict(policy);
884 chain_head = find_chain_head(table, chain_name);
885 if (chain_head == NULL)
888 entry = chain_head->data;
889 if (entry->builtin < 0)
892 target = ipt_get_target(entry->entry);
894 t = (struct xt_standard_target *)target;
895 t->verdict = verdict;
900 static struct ipt_replace *connman_iptables_blob(struct connman_iptables *table)
902 struct ipt_replace *r;
904 struct connman_iptables_entry *e;
905 unsigned char *entry_index;
907 r = g_try_malloc0(sizeof(struct ipt_replace) + table->size);
911 memset(r, 0, sizeof(*r) + table->size);
913 r->counters = g_try_malloc0(sizeof(struct xt_counters)
914 * table->old_entries);
915 if (r->counters == NULL) {
920 strcpy(r->name, table->info->name);
921 r->num_entries = table->num_entries;
922 r->size = table->size;
924 r->num_counters = table->old_entries;
925 r->valid_hooks = table->info->valid_hooks;
927 memcpy(r->hook_entry, table->hook_entry, sizeof(table->hook_entry));
928 memcpy(r->underflow, table->underflow, sizeof(table->underflow));
930 entry_index = (unsigned char *)r->entries;
931 for (list = table->entries; list; list = list->next) {
934 memcpy(entry_index, e->entry, e->entry->next_offset);
935 entry_index += e->entry->next_offset;
941 static void dump_target(struct connman_iptables *table,
942 struct ipt_entry *entry)
945 struct xtables_target *xt_t;
946 struct xt_entry_target *target;
948 target = ipt_get_target(entry);
950 if (!strcmp(target->u.user.name, IPT_STANDARD_TARGET)) {
951 struct xt_standard_target *t;
953 t = (struct xt_standard_target *)target;
955 switch (t->verdict) {
957 printf("\ttarget RETURN\n");
961 printf("\ttarget ACCEPT\n");
965 printf("\ttarget DROP\n");
969 printf("\ttarget QUEUE\n");
973 printf("\ttarget STOP\n");
977 printf("\tJUMP @%p (0x%x)\n",
978 (char*)table->blob_entries->entrytable +
979 t->verdict, t->verdict);
983 xt_t = xtables_find_target(IPT_STANDARD_TARGET,
984 XTF_LOAD_MUST_SUCCEED);
986 if(xt_t->print != NULL)
987 xt_t->print(NULL, target, 1);
989 xt_t = xtables_find_target(target->u.user.name, XTF_TRY_LOAD);
991 printf("\ttarget %s\n", target->u.user.name);
995 if(xt_t->print != NULL) {
997 xt_t->print(NULL, target, 1);
1003 static void dump_match(struct connman_iptables *table, struct ipt_entry *entry)
1005 struct xtables_match *xt_m;
1006 struct xt_entry_match *match;
1008 if (entry->elems == (unsigned char *)entry + entry->target_offset)
1011 match = (struct xt_entry_match *) entry->elems;
1013 if (!strlen(match->u.user.name))
1016 xt_m = xtables_find_match(match->u.user.name, XTF_TRY_LOAD, NULL);
1020 if(xt_m->print != NULL) {
1022 xt_m->print(NULL, match, 1);
1029 printf("\tmatch %s\n", match->u.user.name);
1033 static int connman_iptables_dump_entry(struct ipt_entry *entry,
1034 struct connman_iptables *table)
1036 struct xt_entry_target *target;
1037 unsigned int offset;
1040 offset = (char *)entry - (char *)table->blob_entries->entrytable;
1041 target = ipt_get_target(entry);
1042 builtin = is_hook_entry(table, entry);
1044 if (entry_to_offset(table, entry) + entry->next_offset ==
1045 table->blob_entries->size) {
1046 printf("End of CHAIN 0x%x\n", offset);
1050 if (!strcmp(target->u.user.name, IPT_ERROR_TARGET)) {
1051 printf("USER CHAIN (%s) %p match %p target %p size %d\n",
1052 target->data, entry, entry->elems,
1053 (char *)entry + entry->target_offset,
1054 entry->next_offset);
1057 } else if (builtin >= 0) {
1058 printf("CHAIN (%s) %p match %p target %p size %d\n",
1059 hooknames[builtin], entry, entry->elems,
1060 (char *)entry + entry->target_offset,
1061 entry->next_offset);
1063 printf("RULE %p match %p target %p size %d\n", entry,
1065 (char *)entry + entry->target_offset,
1066 entry->next_offset);
1069 dump_match(table, entry);
1070 dump_target(table, entry);
1075 static void connman_iptables_dump_hook(struct connman_iptables *table)
1078 printf("hooks: \n");
1079 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
1080 if ((table->info->valid_hooks & (1 << i)))
1081 printf("%s entry %p underflow %p (%#x)\n",
1083 table->blob_entries->entrytable +
1084 table->info->hook_entry[i],
1085 table->blob_entries->entrytable +
1086 table->info->underflow[i],
1087 table->info->underflow[i]);
1091 static void connman_iptables_dump(struct connman_iptables *table)
1093 printf("%s valid_hooks=0x%08x, num_entries=%u, size=%u\n",
1095 table->info->valid_hooks, table->info->num_entries,
1098 connman_iptables_dump_hook(table);
1100 ENTRY_ITERATE(table->blob_entries->entrytable,
1101 table->blob_entries->size,
1102 connman_iptables_dump_entry, table);
1106 static int connman_iptables_get_entries(struct connman_iptables *table)
1108 socklen_t entry_size;
1110 entry_size = sizeof(struct ipt_get_entries) + table->info->size;
1112 return getsockopt(table->ipt_sock, IPPROTO_IP, IPT_SO_GET_ENTRIES,
1113 table->blob_entries, &entry_size);
1116 static int connman_iptables_replace(struct connman_iptables *table,
1117 struct ipt_replace *r)
1119 return setsockopt(table->ipt_sock, IPPROTO_IP, IPT_SO_SET_REPLACE, r,
1120 sizeof(*r) + r->size);
1123 static void connman_iptables_cleanup(struct connman_iptables *table)
1126 struct connman_iptables_entry *entry;
1128 close(table->ipt_sock);
1130 for (list = table->entries; list; list = list->next) {
1133 g_free(entry->entry);
1136 g_free(table->info);
1137 g_free(table->blob_entries);
1140 xtables_free_opts(1);
1143 static int connman_iptables_commit(struct connman_iptables *table)
1145 struct ipt_replace *repl;
1147 repl = connman_iptables_blob(table);
1149 return connman_iptables_replace(table, repl);
1152 static int add_entry(struct ipt_entry *entry, struct connman_iptables *table)
1154 struct ipt_entry *new_entry;
1157 new_entry = g_try_malloc0(entry->next_offset);
1158 if (new_entry == NULL)
1161 memcpy(new_entry, entry, entry->next_offset);
1163 builtin = is_hook_entry(table, entry);
1165 return connman_add_entry(table, new_entry, NULL, builtin);
1168 static struct connman_iptables *connman_iptables_init(const char *table_name)
1170 struct connman_iptables *table = NULL;
1171 char *module = NULL;
1174 if (xtables_insmod("ip_tables", NULL, TRUE) != 0)
1177 module = g_strconcat("iptable_", table_name, NULL);
1181 if (xtables_insmod(module, NULL, TRUE) != 0)
1187 table = g_try_new0(struct connman_iptables, 1);
1191 table->info = g_try_new0(struct ipt_getinfo, 1);
1192 if (table->info == NULL)
1195 table->ipt_sock = socket(AF_INET, SOCK_RAW | SOCK_CLOEXEC, IPPROTO_RAW);
1196 if (table->ipt_sock < 0)
1199 s = sizeof(*table->info);
1200 strcpy(table->info->name, table_name);
1201 if (getsockopt(table->ipt_sock, IPPROTO_IP, IPT_SO_GET_INFO,
1202 table->info, &s) < 0)
1205 table->blob_entries = g_try_malloc0(sizeof(struct ipt_get_entries) +
1207 if (table->blob_entries == NULL)
1210 strcpy(table->blob_entries->name, table_name);
1211 table->blob_entries->size = table->info->size;
1213 if (connman_iptables_get_entries(table) < 0)
1216 table->num_entries = 0;
1217 table->old_entries = table->info->num_entries;
1220 memcpy(table->underflow, table->info->underflow,
1221 sizeof(table->info->underflow));
1222 memcpy(table->hook_entry, table->info->hook_entry,
1223 sizeof(table->info->hook_entry));
1225 ENTRY_ITERATE(table->blob_entries->entrytable,
1226 table->blob_entries->size,
1234 connman_iptables_cleanup(table);
1239 static struct option connman_iptables_opts[] = {
1240 {.name = "append", .has_arg = 1, .val = 'A'},
1241 {.name = "delete", .has_arg = 1, .val = 'D'},
1242 {.name = "flush-chain", .has_arg = 1, .val = 'F'},
1243 {.name = "insert", .has_arg = 1, .val = 'I'},
1244 {.name = "list", .has_arg = 2, .val = 'L'},
1245 {.name = "new-chain", .has_arg = 1, .val = 'N'},
1246 {.name = "policy", .has_arg = 1, .val = 'P'},
1247 {.name = "delete-chain", .has_arg = 1, .val = 'X'},
1248 {.name = "destination", .has_arg = 1, .val = 'd'},
1249 {.name = "in-interface", .has_arg = 1, .val = 'i'},
1250 {.name = "jump", .has_arg = 1, .val = 'j'},
1251 {.name = "match", .has_arg = 1, .val = 'm'},
1252 {.name = "out-interface", .has_arg = 1, .val = 'o'},
1253 {.name = "source", .has_arg = 1, .val = 's'},
1254 {.name = "table", .has_arg = 1, .val = 't'},
1258 struct xtables_globals connman_iptables_globals = {
1260 .opts = connman_iptables_opts,
1261 .orig_opts = connman_iptables_opts,
1264 static struct xtables_target *prepare_target(struct connman_iptables *table,
1267 struct xtables_target *xt_t = NULL;
1268 gboolean is_builtin, is_user_defined;
1269 GList *chain_head = NULL;
1273 is_user_defined = FALSE;
1275 if (is_builtin_target(target_name))
1278 chain_head = find_chain_head(table, target_name);
1279 if (chain_head != NULL && chain_head->next != NULL)
1280 is_user_defined = TRUE;
1283 if (is_builtin || is_user_defined)
1284 xt_t = xtables_find_target(IPT_STANDARD_TARGET,
1285 XTF_LOAD_MUST_SUCCEED);
1287 xt_t = xtables_find_target(target_name, XTF_TRY_LOAD);
1292 target_size = ALIGN(sizeof(struct ipt_entry_target)) + xt_t->size;
1294 xt_t->t = g_try_malloc0(target_size);
1295 if (xt_t->t == NULL)
1298 xt_t->t->u.target_size = target_size;
1300 if (is_builtin || is_user_defined) {
1301 struct xt_standard_target *target;
1303 target = (struct xt_standard_target *)(xt_t->t);
1304 strcpy(target->target.u.user.name, IPT_STANDARD_TARGET);
1306 if (is_builtin == TRUE)
1307 target->verdict = target_to_verdict(target_name);
1308 else if (is_user_defined == TRUE) {
1309 struct connman_iptables_entry *target_rule;
1311 if (chain_head == NULL) {
1316 target_rule = chain_head->next->data;
1317 target->verdict = target_rule->offset;
1320 strcpy(xt_t->t->u.user.name, target_name);
1321 xt_t->t->u.user.revision = xt_t->revision;
1322 if (xt_t->init != NULL)
1323 xt_t->init(xt_t->t);
1326 #if XTABLES_VERSION_CODE > 5
1327 if (xt_t->x6_options != NULL)
1328 connman_iptables_globals.opts =
1329 xtables_options_xfrm(
1330 connman_iptables_globals.orig_opts,
1332 connman_iptables_globals.opts,
1334 &xt_t->option_offset);
1337 connman_iptables_globals.opts =
1338 xtables_merge_options(
1339 #if XTABLES_VERSION_CODE > 5
1340 connman_iptables_globals.orig_opts,
1342 connman_iptables_globals.opts,
1344 &xt_t->option_offset);
1346 if (connman_iptables_globals.opts == NULL) {
1354 static struct xtables_match *prepare_matches(struct connman_iptables *table,
1355 struct xtables_rule_match **xt_rm, char *match_name)
1357 struct xtables_match *xt_m;
1360 if (match_name == NULL)
1363 xt_m = xtables_find_match(match_name, XTF_LOAD_MUST_SUCCEED, xt_rm);
1364 match_size = ALIGN(sizeof(struct ipt_entry_match)) + xt_m->size;
1366 xt_m->m = g_try_malloc0(match_size);
1367 if (xt_m->m == NULL)
1370 xt_m->m->u.match_size = match_size;
1371 strcpy(xt_m->m->u.user.name, xt_m->name);
1372 xt_m->m->u.user.revision = xt_m->revision;
1374 if (xt_m->init != NULL)
1375 xt_m->init(xt_m->m);
1377 if (xt_m == xt_m->next)
1380 #if XTABLES_VERSION_CODE > 5
1381 if (xt_m->x6_options != NULL)
1382 connman_iptables_globals.opts =
1383 xtables_options_xfrm(
1384 connman_iptables_globals.orig_opts,
1385 connman_iptables_globals.opts,
1387 &xt_m->option_offset);
1390 connman_iptables_globals.opts =
1391 xtables_merge_options(
1392 #if XTABLES_VERSION_CODE > 5
1393 connman_iptables_globals.orig_opts,
1395 connman_iptables_globals.opts,
1397 &xt_m->option_offset);
1399 if (connman_iptables_globals.opts == NULL) {
1408 int main(int argc, char *argv[])
1410 struct connman_iptables *table;
1411 struct xtables_rule_match *xt_rm, *tmp_xt_rm;
1412 struct xtables_match *xt_m, *xt_m_t;
1413 struct xtables_target *xt_t;
1415 char *table_name, *chain, *new_chain, *match_name, *target_name;
1416 char *delete_chain, *flush_chain, *policy;
1417 int c, in_len, out_len;
1418 gboolean dump, invert, delete, insert, delete_rule;
1419 struct in_addr src, dst;
1421 xtables_init_all(&connman_iptables_globals, NFPROTO_IPV4);
1427 delete_rule = FALSE;
1428 table_name = chain = new_chain = match_name = target_name = NULL;
1429 delete_chain = flush_chain = policy = NULL;
1430 memset(&ip, 0, sizeof(struct ipt_ip));
1436 /* extension's options will generate false-positives errors */
1439 while ((c = getopt_long(argc, argv, "-A:D:F:I:L::N:P:X:d:i:j:m:o:s:t:",
1440 connman_iptables_globals.opts, NULL)) != -1) {
1443 /* It is either -A, -D or -I at once */
1451 /* It is either -A, -D or -I at once */
1460 flush_chain = optarg;
1464 /* It is either -A, -D or -I at once */
1483 policy = argv[optind++];
1491 delete_chain = optarg;
1495 if (!inet_pton(AF_INET, optarg, &dst))
1499 inet_pton(AF_INET, "255.255.255.255", &ip.dmsk);
1502 ip.invflags |= IPT_INV_DSTIP;
1507 in_len = strlen(optarg);
1509 if (in_len + 1 > IFNAMSIZ)
1512 strcpy(ip.iniface, optarg);
1513 memset(ip.iniface_mask, 0xff, in_len + 1);
1516 ip.invflags |= IPT_INV_VIA_IN;
1521 target_name = optarg;
1522 xt_t = prepare_target(table, target_name);
1529 match_name = optarg;
1530 xt_m = prepare_matches(table, &xt_rm, match_name);
1537 out_len = strlen(optarg);
1539 if (out_len + 1 > IFNAMSIZ)
1542 strcpy(ip.outiface, optarg);
1543 memset(ip.outiface_mask, 0xff, out_len + 1);
1546 ip.invflags |= IPT_INV_VIA_OUT;
1551 if (!inet_pton(AF_INET, optarg, &src))
1555 inet_pton(AF_INET, "255.255.255.255", &ip.smsk);
1558 ip.invflags |= IPT_INV_SRCIP;
1563 table_name = optarg;
1565 table = connman_iptables_init(table_name);
1572 if (optarg[0] == '!' && optarg[1] == '\0') {
1574 printf("Consecutive ! not allowed\n");
1581 printf("Invalid option\n");
1586 #if XTABLES_VERSION_CODE > 5
1587 if (xt_t != NULL && (xt_t->x6_parse != NULL ||
1588 xt_t->parse != NULL) &&
1589 (c >= (int) xt_t->option_offset &&
1590 c < (int) xt_t->option_offset +
1591 XT_OPTION_OFFSET_SCALE)) {
1592 xtables_option_tpcall(c, argv,
1593 invert, xt_t, NULL);
1598 for (tmp_xt_rm = xt_rm; tmp_xt_rm != NULL;
1599 tmp_xt_rm = tmp_xt_rm->next) {
1600 xt_m_t = tmp_xt_rm->match;
1602 if (tmp_xt_rm->completed ||
1603 (xt_m_t->x6_parse == NULL &&
1604 xt_m_t->parse == NULL))
1607 if (c < (int) xt_m_t->option_offset ||
1608 c >= (int) xt_m_t->option_offset
1609 + XT_OPTION_OFFSET_SCALE)
1612 xtables_option_mpcall(c, argv,
1613 invert, xt_m_t, NULL);
1618 if (xt_t == NULL || xt_t->parse == NULL ||
1619 !xt_t->parse(c - xt_t->option_offset,
1620 argv, invert, &xt_t->tflags, NULL, &xt_t->t)) {
1622 for (tmp_xt_rm = xt_rm; tmp_xt_rm != NULL;
1623 tmp_xt_rm = tmp_xt_rm->next) {
1624 xt_m_t = tmp_xt_rm->match;
1626 if (tmp_xt_rm->completed ||
1627 xt_m_t->parse == NULL)
1630 if (xt_m->parse(c - xt_m->option_offset,
1631 argv, invert, &xt_m->mflags,
1643 #if XTABLES_VERSION_CODE > 5
1644 for (tmp_xt_rm = xt_rm; tmp_xt_rm != NULL;
1645 tmp_xt_rm = tmp_xt_rm->next)
1646 xtables_option_mfcall(tmp_xt_rm->match);
1649 xtables_option_tfcall(xt_t);
1651 for (tmp_xt_rm = xt_rm; tmp_xt_rm != NULL;
1652 tmp_xt_rm = tmp_xt_rm->next)
1653 if (tmp_xt_rm->match->final_check != NULL)
1654 tmp_xt_rm->match->final_check(
1655 tmp_xt_rm->match->mflags);
1657 if (xt_t != NULL && xt_t->final_check != NULL)
1658 xt_t->final_check(xt_t->tflags);
1661 if (table == NULL) {
1662 table_name = "filter";
1664 table = connman_iptables_init(table_name);
1670 if (delete_chain == NULL)
1673 printf("Delete chain %s\n", delete_chain);
1675 connman_iptables_delete_chain(table, delete_chain);
1681 printf("Flush chain %s\n", flush_chain);
1683 connman_iptables_flush_chain(table, flush_chain);
1689 connman_iptables_dump(table);
1694 if (chain && new_chain)
1698 printf("New chain %s\n", new_chain);
1700 connman_iptables_add_chain(table, new_chain);
1706 if (policy != NULL) {
1707 printf("Changing policy of %s to %s\n", chain, policy);
1709 connman_iptables_change_policy(table, chain, policy);
1714 if (delete_rule == TRUE) {
1715 printf("Deleting %s to %s (match %s)\n", target_name,
1718 connman_iptables_delete_rule(table, &ip, chain,
1719 target_name, xt_t, xt_m, xt_rm);
1724 if (insert == TRUE) {
1725 printf("Inserting %s to %s (match %s)\n", target_name,
1728 connman_iptables_insert_rule(table, &ip, chain,
1729 target_name, xt_t, xt_rm);
1731 printf("Appending %s to %s (match %s)\n", target_name,
1734 connman_iptables_append_rule(table, &ip, chain,
1735 target_name, xt_t, xt_rm);
1741 connman_iptables_commit(table);
1744 connman_iptables_cleanup(table);