5 * Copyright (C) 2007-2012 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 if (table_name == NULL)
1232 table_name = "filter";
1234 DBG("%s", table_name);
1236 if (xtables_insmod("ip_tables", NULL, TRUE) != 0)
1239 module = g_strconcat("iptable_", table_name, NULL);
1243 if (xtables_insmod(module, NULL, TRUE) != 0) {
1250 table = g_hash_table_lookup(table_hash, table_name);
1254 table = g_try_new0(struct connman_iptables, 1);
1258 table->info = g_try_new0(struct ipt_getinfo, 1);
1259 if (table->info == NULL)
1262 table->ipt_sock = socket(AF_INET, SOCK_RAW | SOCK_CLOEXEC, IPPROTO_RAW);
1263 if (table->ipt_sock < 0)
1266 s = sizeof(*table->info);
1267 strcpy(table->info->name, table_name);
1268 if (getsockopt(table->ipt_sock, IPPROTO_IP, IPT_SO_GET_INFO,
1269 table->info, &s) < 0)
1272 table->blob_entries = g_try_malloc0(sizeof(struct ipt_get_entries) +
1274 if (table->blob_entries == NULL)
1277 strcpy(table->blob_entries->name, table_name);
1278 table->blob_entries->size = table->info->size;
1280 if (iptables_get_entries(table) < 0)
1283 table->num_entries = 0;
1284 table->old_entries = table->info->num_entries;
1287 memcpy(table->underflow, table->info->underflow,
1288 sizeof(table->info->underflow));
1289 memcpy(table->hook_entry, table->info->hook_entry,
1290 sizeof(table->info->hook_entry));
1292 ENTRY_ITERATE(table->blob_entries->entrytable,
1293 table->blob_entries->size,
1296 g_hash_table_insert(table_hash, g_strdup(table_name), table);
1301 table_cleanup(table);
1306 static struct option iptables_opts[] = {
1307 {.name = "append", .has_arg = 1, .val = 'A'},
1308 {.name = "compare", .has_arg = 1, .val = 'C'},
1309 {.name = "delete", .has_arg = 1, .val = 'D'},
1310 {.name = "flush-chain", .has_arg = 1, .val = 'F'},
1311 {.name = "insert", .has_arg = 1, .val = 'I'},
1312 {.name = "list", .has_arg = 2, .val = 'L'},
1313 {.name = "new-chain", .has_arg = 1, .val = 'N'},
1314 {.name = "policy", .has_arg = 1, .val = 'P'},
1315 {.name = "delete-chain", .has_arg = 1, .val = 'X'},
1316 {.name = "destination", .has_arg = 1, .val = 'd'},
1317 {.name = "in-interface", .has_arg = 1, .val = 'i'},
1318 {.name = "jump", .has_arg = 1, .val = 'j'},
1319 {.name = "match", .has_arg = 1, .val = 'm'},
1320 {.name = "out-interface", .has_arg = 1, .val = 'o'},
1321 {.name = "source", .has_arg = 1, .val = 's'},
1322 {.name = "table", .has_arg = 1, .val = 't'},
1326 struct xtables_globals iptables_globals = {
1328 .opts = iptables_opts,
1329 .orig_opts = iptables_opts,
1332 static struct xtables_target *prepare_target(struct connman_iptables *table,
1335 struct xtables_target *xt_t = NULL;
1336 gboolean is_builtin, is_user_defined;
1337 GList *chain_head = NULL;
1341 is_user_defined = FALSE;
1343 if (is_builtin_target(target_name))
1346 chain_head = find_chain_head(table, target_name);
1347 if (chain_head != NULL && chain_head->next != NULL)
1348 is_user_defined = TRUE;
1351 if (is_builtin || is_user_defined)
1352 xt_t = xtables_find_target(IPT_STANDARD_TARGET,
1353 XTF_LOAD_MUST_SUCCEED);
1355 xt_t = xtables_find_target(target_name, XTF_TRY_LOAD);
1360 target_size = ALIGN(sizeof(struct ipt_entry_target)) + xt_t->size;
1362 xt_t->t = g_try_malloc0(target_size);
1363 if (xt_t->t == NULL)
1366 xt_t->t->u.target_size = target_size;
1368 if (is_builtin || is_user_defined) {
1369 struct xt_standard_target *target;
1371 target = (struct xt_standard_target *)(xt_t->t);
1372 strcpy(target->target.u.user.name, IPT_STANDARD_TARGET);
1374 if (is_builtin == TRUE)
1375 target->verdict = target_to_verdict(target_name);
1376 else if (is_user_defined == TRUE) {
1377 struct connman_iptables_entry *target_rule;
1379 if (chain_head == NULL) {
1384 target_rule = chain_head->next->data;
1385 target->verdict = target_rule->offset;
1388 strcpy(xt_t->t->u.user.name, target_name);
1389 xt_t->t->u.user.revision = xt_t->revision;
1390 if (xt_t->init != NULL)
1391 xt_t->init(xt_t->t);
1394 #if XTABLES_VERSION_CODE > 5
1395 if (xt_t->x6_options != NULL)
1396 iptables_globals.opts =
1397 xtables_options_xfrm(
1398 iptables_globals.orig_opts,
1399 iptables_globals.opts,
1401 &xt_t->option_offset);
1404 iptables_globals.opts =
1405 xtables_merge_options(
1406 #if XTABLES_VERSION_CODE > 5
1407 iptables_globals.orig_opts,
1409 iptables_globals.opts,
1411 &xt_t->option_offset);
1413 if (iptables_globals.opts == NULL) {
1421 static struct xtables_match *prepare_matches(struct connman_iptables *table,
1422 struct xtables_rule_match **xt_rm, char *match_name)
1424 struct xtables_match *xt_m;
1427 if (match_name == NULL)
1430 xt_m = xtables_find_match(match_name, XTF_LOAD_MUST_SUCCEED, xt_rm);
1431 match_size = ALIGN(sizeof(struct ipt_entry_match)) + xt_m->size;
1433 xt_m->m = g_try_malloc0(match_size);
1434 if (xt_m->m == NULL)
1437 xt_m->m->u.match_size = match_size;
1438 strcpy(xt_m->m->u.user.name, xt_m->name);
1439 xt_m->m->u.user.revision = xt_m->revision;
1441 if (xt_m->init != NULL)
1442 xt_m->init(xt_m->m);
1444 if (xt_m == xt_m->next)
1447 #if XTABLES_VERSION_CODE > 5
1448 if (xt_m->x6_options != NULL)
1449 iptables_globals.opts =
1450 xtables_options_xfrm(
1451 iptables_globals.orig_opts,
1452 iptables_globals.opts,
1454 &xt_m->option_offset);
1457 iptables_globals.opts =
1458 xtables_merge_options(
1459 #if XTABLES_VERSION_CODE > 5
1460 iptables_globals.orig_opts,
1462 iptables_globals.opts,
1464 &xt_m->option_offset);
1466 if (iptables_globals.opts == NULL) {
1475 static int parse_ip_and_mask(const char *str, struct in_addr *ip, struct in_addr *mask)
1478 uint32_t prefixlength;
1482 tokens = g_strsplit(str, "/", 2);
1486 if (!inet_pton(AF_INET, tokens[0], ip)) {
1491 if (tokens[1] != NULL) {
1492 prefixlength = strtol(tokens[1], NULL, 10);
1493 if (prefixlength > 31) {
1498 tmp = ~(0xffffffff >> prefixlength);
1503 mask->s_addr = htonl(tmp);
1504 ip->s_addr = ip->s_addr & mask->s_addr;
1512 static struct connman_iptables *pre_load_table(char *table_name,
1513 struct connman_iptables *table)
1518 return iptables_init(table_name);
1521 static int iptables_command(int argc, char *argv[])
1523 struct connman_iptables *table;
1524 struct xtables_rule_match *xt_rm, *tmp_xt_rm;
1525 struct xtables_match *xt_m, *xt_m_t;
1526 struct xtables_target *xt_t;
1528 char *table_name, *chain, *new_chain, *match_name, *target_name;
1529 char *flush_chain, *delete_chain, *policy;
1530 int c, ret, in_len, out_len;
1531 gboolean dump, invert, insert, delete, compare;
1541 chain = new_chain = match_name = target_name = NULL;
1542 flush_chain = delete_chain = policy = table_name = NULL;
1543 memset(&ip, 0, sizeof(struct ipt_ip));
1548 /* Default code for options parsing */
1551 /* extension's options will generate false-positives errors */
1556 while ((c = getopt_long(argc, argv,
1557 "-A:C:D:F:I:L::N:P:X:d:j:i:m:o:s:t:",
1558 iptables_globals.opts, NULL)) != -1) {
1561 /* It is either -A, -C, -D or -I at once */
1569 /* It is either -A, -C, -D or -I at once */
1578 /* It is either -A, -C, -D or -I at once */
1587 flush_chain = optarg;
1591 /* It is either -A, -C, -D or -I at once */
1610 policy = argv[optind++];
1617 delete_chain = optarg;
1621 if (!parse_ip_and_mask(optarg, &ip.dst, &ip.dmsk))
1625 ip.invflags |= IPT_INV_DSTIP;
1630 in_len = strlen(optarg);
1632 if (in_len + 1 > IFNAMSIZ)
1635 strcpy(ip.iniface, optarg);
1636 memset(ip.iniface_mask, 0xff, in_len + 1);
1639 ip.invflags |= IPT_INV_VIA_IN;
1644 target_name = optarg;
1646 table = pre_load_table(table_name, table);
1650 xt_t = prepare_target(table, target_name);
1657 match_name = optarg;
1659 table = pre_load_table(table_name, table);
1663 xt_m = prepare_matches(table, &xt_rm, match_name);
1670 out_len = strlen(optarg);
1672 if (out_len + 1 > IFNAMSIZ)
1675 strcpy(ip.outiface, optarg);
1676 memset(ip.outiface_mask, 0xff, out_len + 1);
1679 ip.invflags |= IPT_INV_VIA_OUT;
1684 if (!parse_ip_and_mask(optarg, &ip.src, &ip.smsk))
1688 ip.invflags |= IPT_INV_SRCIP;
1693 table_name = optarg;
1695 table = pre_load_table(table_name, table);
1702 if (optarg[0] == '!' && optarg[1] == '\0') {
1708 connman_error("Invalid option");
1713 #if XTABLES_VERSION_CODE > 5
1714 if (xt_t != NULL && (xt_t->x6_parse != NULL ||
1715 xt_t->parse != NULL) &&
1716 (c >= (int) xt_t->option_offset &&
1717 c < (int) xt_t->option_offset +
1718 XT_OPTION_OFFSET_SCALE)) {
1719 xtables_option_tpcall(c, argv,
1720 invert, xt_t, NULL);
1725 for (tmp_xt_rm = xt_rm; tmp_xt_rm != NULL;
1726 tmp_xt_rm = tmp_xt_rm->next) {
1727 xt_m_t = tmp_xt_rm->match;
1729 if (tmp_xt_rm->completed ||
1730 (xt_m_t->x6_parse == NULL &&
1731 xt_m_t->parse == NULL))
1734 if (c < (int) xt_m_t->option_offset ||
1735 c >= (int) xt_m_t->option_offset
1736 + XT_OPTION_OFFSET_SCALE)
1739 xtables_option_mpcall(c, argv,
1740 invert, xt_m_t, NULL);
1745 if (xt_t == NULL || xt_t->parse == NULL ||
1746 !xt_t->parse(c - xt_t->option_offset,
1747 argv, invert, &xt_t->tflags, NULL, &xt_t->t)) {
1749 for (tmp_xt_rm = xt_rm; tmp_xt_rm != NULL;
1750 tmp_xt_rm = tmp_xt_rm->next) {
1751 xt_m_t = tmp_xt_rm->match;
1753 if (tmp_xt_rm->completed ||
1754 xt_m_t->parse == NULL)
1757 if (xt_m->parse(c - xt_m->option_offset,
1758 argv, invert, &xt_m->mflags,
1770 #if XTABLES_VERSION_CODE > 5
1771 for (tmp_xt_rm = xt_rm; tmp_xt_rm != NULL;
1772 tmp_xt_rm = tmp_xt_rm->next)
1773 xtables_option_mfcall(tmp_xt_rm->match);
1776 xtables_option_tfcall(xt_t);
1778 for (tmp_xt_rm = xt_rm; tmp_xt_rm != NULL;
1779 tmp_xt_rm = tmp_xt_rm->next)
1780 if (tmp_xt_rm->match->final_check != NULL)
1781 tmp_xt_rm->match->final_check(
1782 tmp_xt_rm->match->mflags);
1784 if (xt_t != NULL && xt_t->final_check != NULL)
1785 xt_t->final_check(xt_t->tflags);
1788 table = pre_load_table(table_name, table);
1792 /* Option parsing went fine, falling back to succes code */
1795 if (delete_chain != NULL) {
1796 printf("Delete chain %s\n", delete_chain);
1798 iptables_delete_chain(table, delete_chain);
1804 iptables_dump(table);
1810 DBG("Flush chain %s", flush_chain);
1812 iptables_flush_chain(table, flush_chain);
1817 if (chain && new_chain) {
1823 DBG("New chain %s", new_chain);
1825 ret = iptables_add_chain(table, new_chain);
1830 if (policy != NULL) {
1831 printf("Changing policy of %s to %s\n", chain, policy);
1833 iptables_change_policy(table, chain, policy);
1841 if (compare == TRUE) {
1842 ret = iptables_compare_rule(table, &ip, chain,
1843 target_name, xt_t, xt_m, xt_rm);
1847 if (delete == TRUE) {
1848 DBG("Deleting %s to %s (match %s)\n",
1849 target_name, chain, match_name);
1851 ret = iptables_delete_rule(table, &ip, chain,
1852 target_name, xt_t, xt_m, xt_rm);
1857 if (insert == TRUE) {
1858 DBG("Inserting %s to %s (match %s)",
1859 target_name, chain, match_name);
1861 ret = iptables_insert_rule(table, &ip, chain,
1862 target_name, xt_t, xt_rm);
1866 DBG("Adding %s to %s (match %s)",
1867 target_name, chain, match_name);
1869 ret = iptables_append_rule(table, &ip, chain,
1870 target_name, xt_t, xt_rm);
1886 int __connman_iptables_command(const char *format, ...)
1888 char **argv, **arguments, *command;
1895 va_start(args, format);
1897 command = g_strdup_vprintf(format, args);
1901 if (command == NULL)
1904 arguments = g_strsplit_set(command, " ", -1);
1906 for (argc = 0; arguments[argc]; argc++);
1909 DBG("command %s argc %d", command, argc);
1911 argv = g_try_malloc0(argc * sizeof(char *));
1914 g_strfreev(arguments);
1918 argv[0] = "iptables";
1919 for (i = 1; i < argc; i++)
1920 argv[i] = arguments[i - 1];
1922 ret = iptables_command(argc, argv);
1925 g_strfreev(arguments);
1932 int __connman_iptables_commit(const char *table_name)
1934 struct connman_iptables *table;
1935 struct ipt_replace *repl;
1938 DBG("%s", table_name);
1940 table = g_hash_table_lookup(table_hash, table_name);
1944 repl = iptables_blob(table);
1946 err = iptables_replace(table, repl);
1948 g_free(repl->counters);
1954 g_hash_table_remove(table_hash, table_name);
1959 static void remove_table(gpointer user_data)
1961 struct connman_iptables *table = user_data;
1963 table_cleanup(table);
1966 int __connman_iptables_init(void)
1970 table_hash = g_hash_table_new_full(g_str_hash, g_str_equal,
1971 g_free, remove_table);
1973 xtables_init_all(&iptables_globals, NFPROTO_IPV4);
1979 void __connman_iptables_cleanup(void)
1983 g_hash_table_destroy(table_hash);
1985 xtables_free_opts(1);