5 * Copyright (C) 2007-2011 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 #define XT_OPTION_OFFSET_SCALE 256
55 /* fn returns 0 to continue iteration */
56 #define _XT_ENTRY_ITERATE_CONTINUE(type, entries, size, n, fn, args...) \
63 for (__i = 0, __n = 0; __i < (size); \
64 __i += __entry->next_offset, __n++) { \
65 __entry = (void *)(entries) + __i; \
69 __ret = fn(__entry, ## args); \
76 /* fn returns 0 to continue iteration */
77 #define _XT_ENTRY_ITERATE(type, entries, size, fn, args...) \
78 _XT_ENTRY_ITERATE_CONTINUE(type, entries, size, 0, fn, args)
80 #define ENTRY_ITERATE(entries, size, fn, args...) \
81 _XT_ENTRY_ITERATE(struct ipt_entry, entries, size, fn, ## args)
83 #define MIN_ALIGN (__alignof__(struct ipt_entry))
85 #define ALIGN(s) (((s) + ((MIN_ALIGN)-1)) & ~((MIN_ALIGN)-1))
88 struct xt_entry_target t;
89 char error[IPT_TABLE_MAXNAMELEN];
92 struct connman_iptables_entry {
96 struct ipt_entry *entry;
99 struct connman_iptables {
102 struct ipt_getinfo *info;
103 struct ipt_get_entries *blob_entries;
105 unsigned int num_entries;
106 unsigned int old_entries;
109 unsigned int underflow[NF_INET_NUMHOOKS];
110 unsigned int hook_entry[NF_INET_NUMHOOKS];
115 static GHashTable *table_hash = NULL;
117 static struct ipt_entry *get_entry(struct connman_iptables *table,
120 return (struct ipt_entry *)((char *)table->blob_entries->entrytable +
124 static int is_hook_entry(struct connman_iptables *table,
125 struct ipt_entry *entry)
129 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
130 if ((table->info->valid_hooks & (1 << i))
131 && get_entry(table, table->info->hook_entry[i]) == entry)
138 static unsigned long entry_to_offset(struct connman_iptables *table,
139 struct ipt_entry *entry)
141 return (void *)entry - (void *)table->blob_entries->entrytable;
144 static int target_to_verdict(char *target_name)
146 if (!strcmp(target_name, LABEL_ACCEPT))
147 return -NF_ACCEPT - 1;
149 if (!strcmp(target_name, LABEL_DROP))
152 if (!strcmp(target_name, LABEL_QUEUE))
153 return -NF_QUEUE - 1;
155 if (!strcmp(target_name, LABEL_RETURN))
161 static gboolean is_builtin_target(char *target_name)
163 if (!strcmp(target_name, LABEL_ACCEPT) ||
164 !strcmp(target_name, LABEL_DROP) ||
165 !strcmp(target_name, LABEL_QUEUE) ||
166 !strcmp(target_name, LABEL_RETURN))
172 static gboolean is_jump(struct connman_iptables_entry *e)
174 struct xt_entry_target *target;
176 target = ipt_get_target(e->entry);
178 if (!strcmp(target->u.user.name, IPT_STANDARD_TARGET)) {
179 struct xt_standard_target *t;
181 t = (struct xt_standard_target *)target;
183 switch (t->verdict) {
199 static gboolean is_chain(struct connman_iptables *table,
200 struct connman_iptables_entry *e)
202 struct ipt_entry *entry;
203 struct xt_entry_target *target;
209 target = ipt_get_target(entry);
210 if (!strcmp(target->u.user.name, IPT_ERROR_TARGET))
216 static GList *find_chain_head(struct connman_iptables *table,
220 struct connman_iptables_entry *head;
221 struct ipt_entry *entry;
222 struct xt_entry_target *target;
225 for (list = table->entries; list; list = list->next) {
230 builtin = head->builtin;
231 if (builtin >= 0 && !strcmp(hooknames[builtin], chain_name))
234 /* User defined chain */
235 target = ipt_get_target(entry);
236 if (!strcmp(target->u.user.name, IPT_ERROR_TARGET) &&
237 !strcmp((char *)target->data, chain_name))
244 static GList *find_chain_tail(struct connman_iptables *table,
247 struct connman_iptables_entry *tail;
248 GList *chain_head, *list;
250 chain_head = find_chain_head(table, chain_name);
251 if (chain_head == NULL)
254 /* Then we look for the next chain */
255 for (list = chain_head->next; list; list = list->next) {
258 if (is_chain(table, tail))
262 /* Nothing found, we return the table end */
263 return g_list_last(table->entries);
267 static void update_offsets(struct connman_iptables *table)
270 struct connman_iptables_entry *entry, *prev_entry;
272 for (list = table->entries; list; list = list->next) {
275 if (list == table->entries) {
282 prev_entry = prev->data;
284 entry->offset = prev_entry->offset +
285 prev_entry->entry->next_offset;
289 static void update_targets_reference(struct connman_iptables *table,
290 struct connman_iptables_entry *entry_before,
291 struct connman_iptables_entry *modified_entry,
292 gboolean is_removing)
294 struct connman_iptables_entry *tmp;
295 struct xt_standard_target *t;
299 offset = modified_entry->entry->next_offset;
301 for (list = table->entries; list; list = list->next) {
307 t = (struct xt_standard_target *)ipt_get_target(tmp->entry);
309 if (is_removing == TRUE) {
310 if (t->verdict >= entry_before->offset)
311 t->verdict -= offset;
313 if (t->verdict > entry_before->offset)
314 t->verdict += offset;
319 static int iptables_add_entry(struct connman_iptables *table,
320 struct ipt_entry *entry, GList *before,
323 struct connman_iptables_entry *e, *entry_before;
328 e = g_try_malloc0(sizeof(struct connman_iptables_entry));
333 e->builtin = builtin;
335 table->entries = g_list_insert_before(table->entries, before, e);
336 table->num_entries++;
337 table->size += entry->next_offset;
339 if (before == NULL) {
340 e->offset = table->size - entry->next_offset;
345 entry_before = before->data;
348 * We've just appended/insterted a new entry. All references
349 * should be bumped accordingly.
351 update_targets_reference(table, entry_before, e, FALSE);
353 update_offsets(table);
358 static int remove_table_entry(struct connman_iptables *table,
359 struct connman_iptables_entry *entry)
363 table->num_entries--;
364 table->size -= entry->entry->next_offset;
365 removed = entry->entry->next_offset;
367 g_free(entry->entry);
369 table->entries = g_list_remove(table->entries, entry);
374 static int iptables_flush_chain(struct connman_iptables *table,
377 GList *chain_head, *chain_tail, *list, *next;
378 struct connman_iptables_entry *entry;
379 int builtin, removed = 0;
381 chain_head = find_chain_head(table, name);
382 if (chain_head == NULL)
385 chain_tail = find_chain_tail(table, name);
386 if (chain_tail == NULL)
389 entry = chain_head->data;
390 builtin = entry->builtin;
395 list = chain_head->next;
397 if (list == chain_tail->prev)
400 while (list != chain_tail->prev) {
402 next = g_list_next(list);
404 removed += remove_table_entry(table, entry);
410 struct connman_iptables_entry *e;
414 entry->builtin = builtin;
416 table->underflow[builtin] -= removed;
418 for (list = chain_tail; list; list = list->next) {
421 builtin = e->builtin;
425 table->hook_entry[builtin] -= removed;
426 table->underflow[builtin] -= removed;
430 update_offsets(table);
435 static int iptables_add_chain(struct connman_iptables *table,
439 struct ipt_entry *entry_head;
440 struct ipt_entry *entry_return;
441 struct error_target *error;
442 struct ipt_standard_target *standard;
443 u_int16_t entry_head_size, entry_return_size;
445 last = g_list_last(table->entries);
448 * An empty chain is composed of:
449 * - A head entry, with no match and an error target.
450 * The error target data is the chain name.
451 * - A tail entry, with no match and a standard target.
452 * The standard target verdict is XT_RETURN (return to the
457 entry_head_size = sizeof(struct ipt_entry) +
458 sizeof(struct error_target);
459 entry_head = g_try_malloc0(entry_head_size);
460 if (entry_head == NULL)
463 memset(entry_head, 0, entry_head_size);
465 entry_head->target_offset = sizeof(struct ipt_entry);
466 entry_head->next_offset = entry_head_size;
468 error = (struct error_target *) entry_head->elems;
469 strcpy(error->t.u.user.name, IPT_ERROR_TARGET);
470 error->t.u.user.target_size = ALIGN(sizeof(struct error_target));
471 strcpy(error->error, name);
473 if (iptables_add_entry(table, entry_head, last, -1) < 0)
477 entry_return_size = sizeof(struct ipt_entry) +
478 sizeof(struct ipt_standard_target);
479 entry_return = g_try_malloc0(entry_return_size);
480 if (entry_return == NULL)
483 memset(entry_return, 0, entry_return_size);
485 entry_return->target_offset = sizeof(struct ipt_entry);
486 entry_return->next_offset = entry_return_size;
488 standard = (struct ipt_standard_target *) entry_return->elems;
489 standard->target.u.user.target_size =
490 ALIGN(sizeof(struct ipt_standard_target));
491 standard->verdict = XT_RETURN;
493 if (iptables_add_entry(table, entry_return, last, -1) < 0)
499 g_free(entry_return);
506 static int iptables_delete_chain(struct connman_iptables *table, char *name)
508 struct connman_iptables_entry *entry;
509 GList *chain_head, *chain_tail;
511 chain_head = find_chain_head(table, name);
512 if (chain_head == NULL)
515 entry = chain_head->data;
517 /* We cannot remove builtin chain */
518 if (entry->builtin >= 0)
521 chain_tail = find_chain_tail(table, name);
522 if (chain_tail == NULL)
525 /* Chain must be flushed */
526 if (chain_head->next != chain_tail->prev)
529 remove_table_entry(table, entry);
531 entry = chain_tail->prev->data;
532 remove_table_entry(table, entry);
534 update_offsets(table);
539 static struct ipt_entry *new_rule(struct ipt_ip *ip,
540 char *target_name, struct xtables_target *xt_t,
541 struct xtables_rule_match *xt_rm)
543 struct xtables_rule_match *tmp_xt_rm;
544 struct ipt_entry *new_entry;
545 size_t match_size, target_size;
548 for (tmp_xt_rm = xt_rm; tmp_xt_rm != NULL; tmp_xt_rm = tmp_xt_rm->next)
549 match_size += tmp_xt_rm->match->m->u.match_size;
552 target_size = ALIGN(xt_t->t->u.target_size);
554 target_size = ALIGN(sizeof(struct xt_standard_target));
556 new_entry = g_try_malloc0(sizeof(struct ipt_entry) + target_size +
558 if (new_entry == NULL)
561 memcpy(&new_entry->ip, ip, sizeof(struct ipt_ip));
563 new_entry->target_offset = sizeof(struct ipt_entry) + match_size;
564 new_entry->next_offset = sizeof(struct ipt_entry) + target_size +
568 for (tmp_xt_rm = xt_rm; tmp_xt_rm != NULL;
569 tmp_xt_rm = tmp_xt_rm->next) {
570 memcpy(new_entry->elems + match_size, tmp_xt_rm->match->m,
571 tmp_xt_rm->match->m->u.match_size);
572 match_size += tmp_xt_rm->match->m->u.match_size;
576 struct xt_entry_target *entry_target;
578 entry_target = ipt_get_target(new_entry);
579 memcpy(entry_target, xt_t->t, target_size);
585 static void update_hooks(struct connman_iptables *table, GList *chain_head,
586 struct ipt_entry *entry)
589 struct connman_iptables_entry *head, *e;
592 if (chain_head == NULL)
595 head = chain_head->data;
597 builtin = head->builtin;
601 table->underflow[builtin] += entry->next_offset;
603 for (list = chain_head->next; list; list = list->next) {
606 builtin = e->builtin;
610 table->hook_entry[builtin] += entry->next_offset;
611 table->underflow[builtin] += entry->next_offset;
615 static struct ipt_entry *prepare_rule_inclusion(struct connman_iptables *table,
616 struct ipt_ip *ip, char *chain_name,
617 char *target_name, struct xtables_target *xt_t,
618 int *builtin, struct xtables_rule_match *xt_rm)
620 GList *chain_tail, *chain_head;
621 struct ipt_entry *new_entry;
622 struct connman_iptables_entry *head;
624 chain_head = find_chain_head(table, chain_name);
625 if (chain_head == NULL)
628 chain_tail = find_chain_tail(table, chain_name);
629 if (chain_tail == NULL)
632 new_entry = new_rule(ip, target_name, xt_t, xt_rm);
633 if (new_entry == NULL)
636 update_hooks(table, chain_head, new_entry);
639 * If the chain is builtin, and does not have any rule,
640 * then the one that we're inserting is becoming the head
641 * and thus needs the builtin flag.
643 head = chain_head->data;
644 if (head->builtin < 0)
646 else if (chain_head == chain_tail->prev) {
647 *builtin = head->builtin;
654 static int iptables_append_rule(struct connman_iptables *table,
655 struct ipt_ip *ip, char *chain_name,
656 char *target_name, struct xtables_target *xt_t,
657 struct xtables_rule_match *xt_rm)
660 struct ipt_entry *new_entry;
661 int builtin = -1, ret;
665 chain_tail = find_chain_tail(table, chain_name);
666 if (chain_tail == NULL)
669 new_entry = prepare_rule_inclusion(table, ip, chain_name,
670 target_name, xt_t, &builtin, xt_rm);
671 if (new_entry == NULL)
674 ret = iptables_add_entry(table, new_entry, chain_tail->prev, builtin);
681 static int iptables_insert_rule(struct connman_iptables *table,
682 struct ipt_ip *ip, char *chain_name,
683 char *target_name, struct xtables_target *xt_t,
684 struct xtables_rule_match *xt_rm)
686 struct ipt_entry *new_entry;
687 int builtin = -1, ret;
690 chain_head = find_chain_head(table, chain_name);
691 if (chain_head == NULL)
694 new_entry = prepare_rule_inclusion(table, ip, chain_name,
695 target_name, xt_t, &builtin, xt_rm);
696 if (new_entry == NULL)
700 chain_head = chain_head->next;
702 ret = iptables_add_entry(table, new_entry, chain_head, builtin);
709 static gboolean is_same_ipt_entry(struct ipt_entry *i_e1,
710 struct ipt_entry *i_e2)
712 if (memcmp(&i_e1->ip, &i_e2->ip, sizeof(struct ipt_ip)) != 0)
715 if (i_e1->target_offset != i_e2->target_offset)
718 if (i_e1->next_offset != i_e2->next_offset)
724 static gboolean is_same_target(struct xt_entry_target *xt_e_t1,
725 struct xt_entry_target *xt_e_t2)
727 if (xt_e_t1 == NULL || xt_e_t2 == NULL)
730 if (strcmp(xt_e_t1->u.user.name, IPT_STANDARD_TARGET) == 0) {
731 struct xt_standard_target *xt_s_t1;
732 struct xt_standard_target *xt_s_t2;
734 xt_s_t1 = (struct xt_standard_target *) xt_e_t1;
735 xt_s_t2 = (struct xt_standard_target *) xt_e_t2;
737 if (xt_s_t1->verdict != xt_s_t2->verdict)
740 if (xt_e_t1->u.target_size != xt_e_t2->u.target_size)
743 if (strcmp(xt_e_t1->u.user.name, xt_e_t2->u.user.name) != 0)
750 static gboolean is_same_match(struct xt_entry_match *xt_e_m1,
751 struct xt_entry_match *xt_e_m2)
753 if (xt_e_m1 == NULL || xt_e_m2 == NULL)
756 if (xt_e_m1->u.match_size != xt_e_m2->u.match_size)
759 if (xt_e_m1->u.user.revision != xt_e_m2->u.user.revision)
762 if (strcmp(xt_e_m1->u.user.name, xt_e_m2->u.user.name) != 0)
768 static GList *find_existing_rule(struct connman_iptables *table,
769 struct ipt_ip *ip, char *chain_name,
770 char *target_name, struct xtables_target *xt_t,
771 struct xtables_match *xt_m,
772 struct xtables_rule_match *xt_rm)
774 GList *chain_tail, *chain_head, *list;
775 struct xt_entry_target *xt_e_t = NULL;
776 struct xt_entry_match *xt_e_m = NULL;
777 struct connman_iptables_entry *entry;
778 struct ipt_entry *entry_test;
781 chain_head = find_chain_head(table, chain_name);
782 if (chain_head == NULL)
785 chain_tail = find_chain_tail(table, chain_name);
786 if (chain_tail == NULL)
792 entry_test = new_rule(ip, target_name, xt_t, xt_rm);
793 if (entry_test == NULL)
797 xt_e_t = ipt_get_target(entry_test);
799 xt_e_m = (struct xt_entry_match *)entry_test->elems;
801 entry = chain_head->data;
802 builtin = entry->builtin;
807 list = chain_head->next;
809 for (; list != chain_tail->prev; list = list->next) {
810 struct connman_iptables_entry *tmp;
811 struct ipt_entry *tmp_e;
816 if (is_same_ipt_entry(entry_test, tmp_e) == FALSE)
820 struct xt_entry_target *tmp_xt_e_t;
822 tmp_xt_e_t = ipt_get_target(tmp_e);
824 if (!is_same_target(tmp_xt_e_t, xt_e_t))
829 struct xt_entry_match *tmp_xt_e_m;
831 tmp_xt_e_m = (struct xt_entry_match *)tmp_e->elems;
833 if (!is_same_match(tmp_xt_e_m, xt_e_m))
842 if (list != chain_tail->prev)
848 static int iptables_delete_rule(struct connman_iptables *table,
849 struct ipt_ip *ip, char *chain_name,
850 char *target_name, struct xtables_target *xt_t,
851 struct xtables_match *xt_m,
852 struct xtables_rule_match *xt_rm)
854 struct connman_iptables_entry *entry;
855 GList *chain_tail, *list;
856 int builtin, removed;
860 chain_tail = find_chain_tail(table, chain_name);
861 if (chain_tail == NULL)
864 list = find_existing_rule(table, ip, chain_name, target_name,
873 builtin = entry->builtin;
875 /* We have deleted a rule,
876 * all references should be bumped accordingly */
877 if (list->next != NULL)
878 update_targets_reference(table, list->next->data,
881 removed += remove_table_entry(table, entry);
887 entry->builtin = builtin;
890 table->underflow[builtin] -= removed;
891 for (list = chain_tail; list; list = list->next) {
894 builtin = entry->builtin;
898 table->hook_entry[builtin] -= removed;
899 table->underflow[builtin] -= removed;
903 update_offsets(table);
908 static int iptables_compare_rule(struct connman_iptables *table,
909 struct ipt_ip *ip, char *chain_name,
910 char *target_name, struct xtables_target *xt_t,
911 struct xtables_match *xt_m,
912 struct xtables_rule_match *xt_rm)
914 struct connman_iptables_entry *entry;
917 found = find_existing_rule(table, ip, chain_name, target_name,
930 static int iptables_change_policy(struct connman_iptables *table,
931 char *chain_name, char *policy)
934 struct connman_iptables_entry *entry;
935 struct xt_entry_target *target;
936 struct xt_standard_target *t;
939 verdict = target_to_verdict(policy);
943 chain_head = find_chain_head(table, chain_name);
944 if (chain_head == NULL)
947 entry = chain_head->data;
948 if (entry->builtin < 0)
951 target = ipt_get_target(entry->entry);
953 t = (struct xt_standard_target *)target;
954 t->verdict = verdict;
959 static struct ipt_replace *iptables_blob(struct connman_iptables *table)
961 struct ipt_replace *r;
963 struct connman_iptables_entry *e;
964 unsigned char *entry_index;
966 r = g_try_malloc0(sizeof(struct ipt_replace) + table->size);
970 memset(r, 0, sizeof(*r) + table->size);
972 r->counters = g_try_malloc0(sizeof(struct xt_counters)
973 * table->old_entries);
974 if (r->counters == NULL) {
979 strcpy(r->name, table->info->name);
980 r->num_entries = table->num_entries;
981 r->size = table->size;
983 r->num_counters = table->old_entries;
984 r->valid_hooks = table->info->valid_hooks;
986 memcpy(r->hook_entry, table->hook_entry, sizeof(table->hook_entry));
987 memcpy(r->underflow, table->underflow, sizeof(table->underflow));
989 entry_index = (unsigned char *)r->entries;
990 for (list = table->entries; list; list = list->next) {
993 memcpy(entry_index, e->entry, e->entry->next_offset);
994 entry_index += e->entry->next_offset;
1000 static void dump_ip(struct ipt_entry *entry)
1002 struct ipt_ip *ip = &entry->ip;
1003 char ip_string[INET6_ADDRSTRLEN];
1004 char ip_mask[INET6_ADDRSTRLEN];
1006 if (strlen(ip->iniface))
1007 connman_info("\tin %s", ip->iniface);
1009 if (strlen(ip->outiface))
1010 connman_info("\tout %s", ip->outiface);
1012 if (inet_ntop(AF_INET, &ip->src, ip_string, INET6_ADDRSTRLEN) != NULL &&
1013 inet_ntop(AF_INET, &ip->smsk,
1014 ip_mask, INET6_ADDRSTRLEN) != NULL)
1015 connman_info("\tsrc %s/%s", ip_string, ip_mask);
1017 if (inet_ntop(AF_INET, &ip->dst, ip_string, INET6_ADDRSTRLEN) != NULL &&
1018 inet_ntop(AF_INET, &ip->dmsk,
1019 ip_mask, INET6_ADDRSTRLEN) != NULL)
1020 connman_info("\tdst %s/%s", ip_string, ip_mask);
1023 static void dump_target(struct connman_iptables *table,
1024 struct ipt_entry *entry)
1027 struct xtables_target *xt_t;
1028 struct xt_entry_target *target;
1030 target = ipt_get_target(entry);
1032 if (!strcmp(target->u.user.name, IPT_STANDARD_TARGET)) {
1033 struct xt_standard_target *t;
1035 t = (struct xt_standard_target *)target;
1037 switch (t->verdict) {
1039 connman_info("\ttarget RETURN");
1042 case -NF_ACCEPT - 1:
1043 connman_info("\ttarget ACCEPT");
1047 connman_info("\ttarget DROP");
1051 connman_info("\ttarget QUEUE");
1055 connman_info("\ttarget STOP");
1059 connman_info("\tJUMP @%p (0x%x)",
1060 (char*)table->blob_entries->entrytable +
1061 t->verdict, t->verdict);
1065 xt_t = xtables_find_target(IPT_STANDARD_TARGET,
1066 XTF_LOAD_MUST_SUCCEED);
1068 if(xt_t->print != NULL)
1069 xt_t->print(NULL, target, 1);
1071 xt_t = xtables_find_target(target->u.user.name, XTF_TRY_LOAD);
1073 connman_info("\ttarget %s", target->u.user.name);
1077 if(xt_t->print != NULL) {
1078 connman_info("\ttarget ");
1079 xt_t->print(NULL, target, 1);
1084 static void dump_match(struct connman_iptables *table, struct ipt_entry *entry)
1086 struct xtables_match *xt_m;
1087 struct xt_entry_match *match;
1089 if (entry->elems == (unsigned char *)entry + entry->target_offset)
1092 match = (struct xt_entry_match *) entry->elems;
1094 if (!strlen(match->u.user.name))
1097 xt_m = xtables_find_match(match->u.user.name, XTF_TRY_LOAD, NULL);
1101 if(xt_m->print != NULL) {
1102 connman_info("\tmatch ");
1103 xt_m->print(NULL, match, 1);
1109 connman_info("\tmatch %s", match->u.user.name);
1113 static int dump_entry(struct ipt_entry *entry,
1114 struct connman_iptables *table)
1116 struct xt_entry_target *target;
1117 unsigned int offset;
1120 offset = (char *)entry - (char *)table->blob_entries->entrytable;
1121 target = ipt_get_target(entry);
1122 builtin = is_hook_entry(table, entry);
1124 if (entry_to_offset(table, entry) + entry->next_offset ==
1125 table->blob_entries->size) {
1126 connman_info("End of CHAIN 0x%x", offset);
1130 if (!strcmp(target->u.user.name, IPT_ERROR_TARGET)) {
1131 connman_info("USER CHAIN (%s) %p match %p target %p size %d",
1132 target->data, entry, entry->elems,
1133 (char *)entry + entry->target_offset,
1134 entry->next_offset);
1137 } else if (builtin >= 0) {
1138 connman_info("CHAIN (%s) %p match %p target %p size %d",
1139 hooknames[builtin], entry, entry->elems,
1140 (char *)entry + entry->target_offset,
1141 entry->next_offset);
1143 connman_info("RULE %p match %p target %p size %d", entry,
1145 (char *)entry + entry->target_offset,
1146 entry->next_offset);
1149 dump_match(table, entry);
1150 dump_target(table, entry);
1156 static void iptables_dump(struct connman_iptables *table)
1158 connman_info("%s valid_hooks=0x%08x, num_entries=%u, size=%u",
1160 table->info->valid_hooks, table->info->num_entries,
1163 ENTRY_ITERATE(table->blob_entries->entrytable,
1164 table->blob_entries->size,
1169 static int iptables_get_entries(struct connman_iptables *table)
1171 socklen_t entry_size;
1173 entry_size = sizeof(struct ipt_get_entries) + table->info->size;
1175 return getsockopt(table->ipt_sock, IPPROTO_IP, IPT_SO_GET_ENTRIES,
1176 table->blob_entries, &entry_size);
1179 static int iptables_replace(struct connman_iptables *table,
1180 struct ipt_replace *r)
1182 return setsockopt(table->ipt_sock, IPPROTO_IP, IPT_SO_SET_REPLACE, r,
1183 sizeof(*r) + r->size);
1186 static int add_entry(struct ipt_entry *entry, struct connman_iptables *table)
1188 struct ipt_entry *new_entry;
1191 new_entry = g_try_malloc0(entry->next_offset);
1192 if (new_entry == NULL)
1195 memcpy(new_entry, entry, entry->next_offset);
1197 builtin = is_hook_entry(table, entry);
1199 return iptables_add_entry(table, new_entry, NULL, builtin);
1202 static void table_cleanup(struct connman_iptables *table)
1205 struct connman_iptables_entry *entry;
1210 close(table->ipt_sock);
1212 for (list = table->entries; list; list = list->next) {
1215 g_free(entry->entry);
1219 g_list_free(table->entries);
1220 g_free(table->info);
1221 g_free(table->blob_entries);
1225 static struct connman_iptables *iptables_init(char *table_name)
1227 struct connman_iptables *table = NULL;
1228 char *module = NULL;
1231 DBG("%s", table_name);
1233 if (xtables_insmod("ip_tables", NULL, TRUE) != 0)
1236 module = g_strconcat("iptable_", table_name, NULL);
1240 if (xtables_insmod(module, NULL, TRUE) != 0) {
1247 table = g_hash_table_lookup(table_hash, table_name);
1251 table = g_try_new0(struct connman_iptables, 1);
1255 table->info = g_try_new0(struct ipt_getinfo, 1);
1256 if (table->info == NULL)
1259 table->ipt_sock = socket(AF_INET, SOCK_RAW | SOCK_CLOEXEC, IPPROTO_RAW);
1260 if (table->ipt_sock < 0)
1263 s = sizeof(*table->info);
1264 strcpy(table->info->name, table_name);
1265 if (getsockopt(table->ipt_sock, IPPROTO_IP, IPT_SO_GET_INFO,
1266 table->info, &s) < 0)
1269 table->blob_entries = g_try_malloc0(sizeof(struct ipt_get_entries) +
1271 if (table->blob_entries == NULL)
1274 strcpy(table->blob_entries->name, table_name);
1275 table->blob_entries->size = table->info->size;
1277 if (iptables_get_entries(table) < 0)
1280 table->num_entries = 0;
1281 table->old_entries = table->info->num_entries;
1284 memcpy(table->underflow, table->info->underflow,
1285 sizeof(table->info->underflow));
1286 memcpy(table->hook_entry, table->info->hook_entry,
1287 sizeof(table->info->hook_entry));
1289 ENTRY_ITERATE(table->blob_entries->entrytable,
1290 table->blob_entries->size,
1293 g_hash_table_insert(table_hash, g_strdup(table_name), table);
1298 table_cleanup(table);
1303 static struct option iptables_opts[] = {
1304 {.name = "append", .has_arg = 1, .val = 'A'},
1305 {.name = "compare", .has_arg = 1, .val = 'C'},
1306 {.name = "delete", .has_arg = 1, .val = 'D'},
1307 {.name = "flush-chain", .has_arg = 1, .val = 'F'},
1308 {.name = "insert", .has_arg = 1, .val = 'I'},
1309 {.name = "list", .has_arg = 2, .val = 'L'},
1310 {.name = "new-chain", .has_arg = 1, .val = 'N'},
1311 {.name = "policy", .has_arg = 1, .val = 'P'},
1312 {.name = "delete-chain", .has_arg = 1, .val = 'X'},
1313 {.name = "destination", .has_arg = 1, .val = 'd'},
1314 {.name = "in-interface", .has_arg = 1, .val = 'i'},
1315 {.name = "jump", .has_arg = 1, .val = 'j'},
1316 {.name = "match", .has_arg = 1, .val = 'm'},
1317 {.name = "out-interface", .has_arg = 1, .val = 'o'},
1318 {.name = "source", .has_arg = 1, .val = 's'},
1319 {.name = "table", .has_arg = 1, .val = 't'},
1323 struct xtables_globals iptables_globals = {
1325 .opts = iptables_opts,
1326 .orig_opts = iptables_opts,
1329 static struct xtables_target *prepare_target(struct connman_iptables *table,
1332 struct xtables_target *xt_t = NULL;
1333 gboolean is_builtin, is_user_defined;
1334 GList *chain_head = NULL;
1338 is_user_defined = FALSE;
1340 if (is_builtin_target(target_name))
1343 chain_head = find_chain_head(table, target_name);
1344 if (chain_head != NULL && chain_head->next != NULL)
1345 is_user_defined = TRUE;
1348 if (is_builtin || is_user_defined)
1349 xt_t = xtables_find_target(IPT_STANDARD_TARGET,
1350 XTF_LOAD_MUST_SUCCEED);
1352 xt_t = xtables_find_target(target_name, XTF_TRY_LOAD);
1357 target_size = ALIGN(sizeof(struct ipt_entry_target)) + xt_t->size;
1359 xt_t->t = g_try_malloc0(target_size);
1360 if (xt_t->t == NULL)
1363 xt_t->t->u.target_size = target_size;
1365 if (is_builtin || is_user_defined) {
1366 struct xt_standard_target *target;
1368 target = (struct xt_standard_target *)(xt_t->t);
1369 strcpy(target->target.u.user.name, IPT_STANDARD_TARGET);
1371 if (is_builtin == TRUE)
1372 target->verdict = target_to_verdict(target_name);
1373 else if (is_user_defined == TRUE) {
1374 struct connman_iptables_entry *target_rule;
1376 if (chain_head == NULL) {
1381 target_rule = chain_head->next->data;
1382 target->verdict = target_rule->offset;
1385 strcpy(xt_t->t->u.user.name, target_name);
1386 xt_t->t->u.user.revision = xt_t->revision;
1387 if (xt_t->init != NULL)
1388 xt_t->init(xt_t->t);
1391 #if XTABLES_VERSION_CODE > 5
1392 if (xt_t->x6_options != NULL)
1393 iptables_globals.opts =
1394 xtables_options_xfrm(
1395 iptables_globals.orig_opts,
1396 iptables_globals.opts,
1398 &xt_t->option_offset);
1401 iptables_globals.opts =
1402 xtables_merge_options(
1403 #if XTABLES_VERSION_CODE > 5
1404 iptables_globals.orig_opts,
1406 iptables_globals.opts,
1408 &xt_t->option_offset);
1410 if (iptables_globals.opts == NULL) {
1418 static struct xtables_match *prepare_matches(struct connman_iptables *table,
1419 struct xtables_rule_match **xt_rm, char *match_name)
1421 struct xtables_match *xt_m;
1424 if (match_name == NULL)
1427 xt_m = xtables_find_match(match_name, XTF_LOAD_MUST_SUCCEED, xt_rm);
1428 match_size = ALIGN(sizeof(struct ipt_entry_match)) + xt_m->size;
1430 xt_m->m = g_try_malloc0(match_size);
1431 if (xt_m->m == NULL)
1434 xt_m->m->u.match_size = match_size;
1435 strcpy(xt_m->m->u.user.name, xt_m->name);
1436 xt_m->m->u.user.revision = xt_m->revision;
1438 if (xt_m->init != NULL)
1439 xt_m->init(xt_m->m);
1441 if (xt_m == xt_m->next)
1444 #if XTABLES_VERSION_CODE > 5
1445 if (xt_m->x6_options != NULL)
1446 iptables_globals.opts =
1447 xtables_options_xfrm(
1448 iptables_globals.orig_opts,
1449 iptables_globals.opts,
1451 &xt_m->option_offset);
1454 iptables_globals.opts =
1455 xtables_merge_options(
1456 #if XTABLES_VERSION_CODE > 5
1457 iptables_globals.orig_opts,
1459 iptables_globals.opts,
1461 &xt_m->option_offset);
1463 if (iptables_globals.opts == NULL) {
1472 static int parse_ip_and_mask(const char *str, struct in_addr *ip, struct in_addr *mask)
1475 uint32_t prefixlength;
1479 tokens = g_strsplit(str, "/", 2);
1483 if (!inet_pton(AF_INET, tokens[0], ip)) {
1488 if (tokens[1] != NULL) {
1489 prefixlength = strtol(tokens[1], NULL, 10);
1490 if (prefixlength > 31) {
1495 tmp = ~(0xffffffff >> prefixlength);
1500 mask->s_addr = htonl(tmp);
1501 ip->s_addr = ip->s_addr & mask->s_addr;
1509 static int iptables_command(int argc, char *argv[])
1511 struct connman_iptables *table;
1512 struct xtables_rule_match *xt_rm, *tmp_xt_rm;
1513 struct xtables_match *xt_m, *xt_m_t;
1514 struct xtables_target *xt_t;
1516 char *table_name, *chain, *new_chain, *match_name, *target_name;
1517 char *flush_chain, *delete_chain, *policy;
1518 int c, ret, in_len, out_len;
1519 gboolean dump, invert, insert, delete, compare;
1529 table_name = chain = new_chain = match_name = target_name = NULL;
1530 flush_chain = delete_chain = policy = NULL;
1531 memset(&ip, 0, sizeof(struct ipt_ip));
1538 /* extension's options will generate false-positives errors */
1543 while ((c = getopt_long(argc, argv,
1544 "-A:C:D:F:I:L::N:P:X:d:j:i:m:o:s:t:",
1545 iptables_globals.opts, NULL)) != -1) {
1548 /* It is either -A, -C, -D or -I at once */
1556 /* It is either -A, -C, -D or -I at once */
1565 /* It is either -A, -C, -D or -I at once */
1574 flush_chain = optarg;
1578 /* It is either -A, -C, -D or -I at once */
1597 policy = argv[optind++];
1604 delete_chain = optarg;
1608 if (!parse_ip_and_mask(optarg, &ip.dst, &ip.dmsk))
1612 ip.invflags |= IPT_INV_DSTIP;
1617 in_len = strlen(optarg);
1619 if (in_len + 1 > IFNAMSIZ)
1622 strcpy(ip.iniface, optarg);
1623 memset(ip.iniface_mask, 0xff, in_len + 1);
1626 ip.invflags |= IPT_INV_VIA_IN;
1631 target_name = optarg;
1632 xt_t = prepare_target(table, target_name);
1639 match_name = optarg;
1640 xt_m = prepare_matches(table, &xt_rm, match_name);
1647 out_len = strlen(optarg);
1649 if (out_len + 1 > IFNAMSIZ)
1652 strcpy(ip.outiface, optarg);
1653 memset(ip.outiface_mask, 0xff, out_len + 1);
1656 ip.invflags |= IPT_INV_VIA_OUT;
1661 if (!parse_ip_and_mask(optarg, &ip.src, &ip.smsk))
1665 ip.invflags |= IPT_INV_SRCIP;
1670 table_name = optarg;
1672 table = iptables_init(table_name);
1673 if (table == NULL) {
1681 if (optarg[0] == '!' && optarg[1] == '\0') {
1687 connman_error("Invalid option");
1693 #if XTABLES_VERSION_CODE > 5
1694 if (xt_t != NULL && (xt_t->x6_parse != NULL ||
1695 xt_t->parse != NULL) &&
1696 (c >= (int) xt_t->option_offset &&
1697 c < (int) xt_t->option_offset +
1698 XT_OPTION_OFFSET_SCALE)) {
1699 xtables_option_tpcall(c, argv,
1700 invert, xt_t, NULL);
1705 for (tmp_xt_rm = xt_rm; tmp_xt_rm != NULL;
1706 tmp_xt_rm = tmp_xt_rm->next) {
1707 xt_m_t = tmp_xt_rm->match;
1709 if (tmp_xt_rm->completed ||
1710 (xt_m_t->x6_parse == NULL &&
1711 xt_m_t->parse == NULL))
1714 if (c < (int) xt_m_t->option_offset ||
1715 c >= (int) xt_m_t->option_offset
1716 + XT_OPTION_OFFSET_SCALE)
1719 xtables_option_mpcall(c, argv,
1720 invert, xt_m_t, NULL);
1725 if (xt_t == NULL || xt_t->parse == NULL ||
1726 !xt_t->parse(c - xt_t->option_offset,
1727 argv, invert, &xt_t->tflags, NULL, &xt_t->t)) {
1729 for (tmp_xt_rm = xt_rm; tmp_xt_rm != NULL;
1730 tmp_xt_rm = tmp_xt_rm->next) {
1731 xt_m_t = tmp_xt_rm->match;
1733 if (tmp_xt_rm->completed ||
1734 xt_m_t->parse == NULL)
1737 if (xt_m->parse(c - xt_m->option_offset,
1738 argv, invert, &xt_m->mflags,
1750 #if XTABLES_VERSION_CODE > 5
1751 for (tmp_xt_rm = xt_rm; tmp_xt_rm != NULL;
1752 tmp_xt_rm = tmp_xt_rm->next)
1753 xtables_option_mfcall(tmp_xt_rm->match);
1756 xtables_option_tfcall(xt_t);
1758 for (tmp_xt_rm = xt_rm; tmp_xt_rm != NULL;
1759 tmp_xt_rm = tmp_xt_rm->next)
1760 if (tmp_xt_rm->match->final_check != NULL)
1761 tmp_xt_rm->match->final_check(
1762 tmp_xt_rm->match->mflags);
1764 if (xt_t != NULL && xt_t->final_check != NULL)
1765 xt_t->final_check(xt_t->tflags);
1768 if (table == NULL) {
1769 table_name = "filter";
1771 table = iptables_init(table_name);
1772 if (table == NULL) {
1778 if (delete_chain != NULL) {
1779 printf("Delete chain %s\n", delete_chain);
1781 iptables_delete_chain(table, delete_chain);
1787 iptables_dump(table);
1794 DBG("Flush chain %s", flush_chain);
1796 iptables_flush_chain(table, flush_chain);
1801 if (chain && new_chain) {
1807 DBG("New chain %s", new_chain);
1809 ret = iptables_add_chain(table, new_chain);
1814 if (policy != NULL) {
1815 printf("Changing policy of %s to %s\n", chain, policy);
1817 iptables_change_policy(table, chain, policy);
1825 if (compare == TRUE) {
1826 ret = iptables_compare_rule(table, &ip, chain,
1827 target_name, xt_t, xt_m, xt_rm);
1831 if (delete == TRUE) {
1832 DBG("Deleting %s to %s (match %s)\n",
1833 target_name, chain, match_name);
1835 ret = iptables_delete_rule(table, &ip, chain,
1836 target_name, xt_t, xt_m, xt_rm);
1841 if (insert == TRUE) {
1842 DBG("Inserting %s to %s (match %s)",
1843 target_name, chain, match_name);
1845 ret = iptables_insert_rule(table, &ip, chain,
1846 target_name, xt_t, xt_rm);
1850 DBG("Adding %s to %s (match %s)",
1851 target_name, chain, match_name);
1853 ret = iptables_append_rule(table, &ip, chain,
1854 target_name, xt_t, xt_rm);
1870 int __connman_iptables_command(const char *format, ...)
1872 char **argv, **arguments, *command;
1879 va_start(args, format);
1881 command = g_strdup_vprintf(format, args);
1885 if (command == NULL)
1888 arguments = g_strsplit_set(command, " ", -1);
1890 for (argc = 0; arguments[argc]; argc++);
1893 DBG("command %s argc %d", command, argc);
1895 argv = g_try_malloc0(argc * sizeof(char *));
1898 g_strfreev(arguments);
1902 argv[0] = "iptables";
1903 for (i = 1; i < argc; i++)
1904 argv[i] = arguments[i - 1];
1906 ret = iptables_command(argc, argv);
1909 g_strfreev(arguments);
1916 int __connman_iptables_commit(const char *table_name)
1918 struct connman_iptables *table;
1919 struct ipt_replace *repl;
1922 DBG("%s", table_name);
1924 table = g_hash_table_lookup(table_hash, table_name);
1928 repl = iptables_blob(table);
1930 err = iptables_replace(table, repl);
1932 g_free(repl->counters);
1938 g_hash_table_remove(table_hash, table_name);
1943 static void remove_table(gpointer user_data)
1945 struct connman_iptables *table = user_data;
1947 table_cleanup(table);
1950 int __connman_iptables_init(void)
1954 table_hash = g_hash_table_new_full(g_str_hash, g_str_equal,
1955 g_free, remove_table);
1957 xtables_init_all(&iptables_globals, NFPROTO_IPV4);
1963 void __connman_iptables_cleanup(void)
1967 g_hash_table_destroy(table_hash);
1969 xtables_free_opts(1);