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)
699 ret = iptables_add_entry(table, new_entry, chain_head->next, builtin);
706 static gboolean is_same_ipt_entry(struct ipt_entry *i_e1,
707 struct ipt_entry *i_e2)
709 if (memcmp(&i_e1->ip, &i_e2->ip, sizeof(struct ipt_ip)) != 0)
712 if (i_e1->target_offset != i_e2->target_offset)
715 if (i_e1->next_offset != i_e2->next_offset)
721 static gboolean is_same_target(struct xt_entry_target *xt_e_t1,
722 struct xt_entry_target *xt_e_t2)
724 if (xt_e_t1 == NULL || xt_e_t2 == NULL)
727 if (strcmp(xt_e_t1->u.user.name, IPT_STANDARD_TARGET) == 0) {
728 struct xt_standard_target *xt_s_t1;
729 struct xt_standard_target *xt_s_t2;
731 xt_s_t1 = (struct xt_standard_target *) xt_e_t1;
732 xt_s_t2 = (struct xt_standard_target *) xt_e_t2;
734 if (xt_s_t1->verdict != xt_s_t2->verdict)
737 if (xt_e_t1->u.target_size != xt_e_t2->u.target_size)
740 if (strcmp(xt_e_t1->u.user.name, xt_e_t2->u.user.name) != 0)
747 static gboolean is_same_match(struct xt_entry_match *xt_e_m1,
748 struct xt_entry_match *xt_e_m2)
750 if (xt_e_m1 == NULL || xt_e_m2 == NULL)
753 if (xt_e_m1->u.match_size != xt_e_m2->u.match_size)
756 if (xt_e_m1->u.user.revision != xt_e_m2->u.user.revision)
759 if (strcmp(xt_e_m1->u.user.name, xt_e_m2->u.user.name) != 0)
765 static GList *find_existing_rule(struct connman_iptables *table,
766 struct ipt_ip *ip, char *chain_name,
767 char *target_name, struct xtables_target *xt_t,
768 struct xtables_match *xt_m,
769 struct xtables_rule_match *xt_rm)
771 GList *chain_tail, *chain_head, *list;
772 struct xt_entry_target *xt_e_t = NULL;
773 struct xt_entry_match *xt_e_m = NULL;
774 struct connman_iptables_entry *entry;
775 struct ipt_entry *entry_test;
778 chain_head = find_chain_head(table, chain_name);
779 if (chain_head == NULL)
782 chain_tail = find_chain_tail(table, chain_name);
783 if (chain_tail == NULL)
789 entry_test = new_rule(ip, target_name, xt_t, xt_rm);
790 if (entry_test == NULL)
794 xt_e_t = ipt_get_target(entry_test);
796 xt_e_m = (struct xt_entry_match *)entry_test->elems;
798 entry = chain_head->data;
799 builtin = entry->builtin;
804 list = chain_head->next;
806 for (; list != chain_tail->prev; list = list->next) {
807 struct connman_iptables_entry *tmp;
808 struct ipt_entry *tmp_e;
813 if (is_same_ipt_entry(entry_test, tmp_e) == FALSE)
817 struct xt_entry_target *tmp_xt_e_t;
819 tmp_xt_e_t = ipt_get_target(tmp_e);
821 if (!is_same_target(tmp_xt_e_t, xt_e_t))
826 struct xt_entry_match *tmp_xt_e_m;
828 tmp_xt_e_m = (struct xt_entry_match *)tmp_e->elems;
830 if (!is_same_match(tmp_xt_e_m, xt_e_m))
839 if (list != chain_tail->prev)
845 static int iptables_delete_rule(struct connman_iptables *table,
846 struct ipt_ip *ip, char *chain_name,
847 char *target_name, struct xtables_target *xt_t,
848 struct xtables_match *xt_m,
849 struct xtables_rule_match *xt_rm)
851 struct connman_iptables_entry *entry;
852 GList *chain_tail, *list;
853 int builtin, removed;
857 chain_tail = find_chain_tail(table, chain_name);
858 if (chain_tail == NULL)
861 list = find_existing_rule(table, ip, chain_name, target_name,
870 builtin = entry->builtin;
872 /* We have deleted a rule,
873 * all references should be bumped accordingly */
874 if (list->next != NULL)
875 update_targets_reference(table, list->next->data,
878 removed += remove_table_entry(table, entry);
884 entry->builtin = builtin;
887 table->underflow[builtin] -= removed;
888 for (list = chain_tail; list; list = list->next) {
891 builtin = entry->builtin;
895 table->hook_entry[builtin] -= removed;
896 table->underflow[builtin] -= removed;
900 update_offsets(table);
905 static int iptables_change_policy(struct connman_iptables *table,
906 char *chain_name, char *policy)
909 struct connman_iptables_entry *entry;
910 struct xt_entry_target *target;
911 struct xt_standard_target *t;
914 verdict = target_to_verdict(policy);
918 chain_head = find_chain_head(table, chain_name);
919 if (chain_head == NULL)
922 entry = chain_head->data;
923 if (entry->builtin < 0)
926 target = ipt_get_target(entry->entry);
928 t = (struct xt_standard_target *)target;
929 t->verdict = verdict;
934 static struct ipt_replace *iptables_blob(struct connman_iptables *table)
936 struct ipt_replace *r;
938 struct connman_iptables_entry *e;
939 unsigned char *entry_index;
941 r = g_try_malloc0(sizeof(struct ipt_replace) + table->size);
945 memset(r, 0, sizeof(*r) + table->size);
947 r->counters = g_try_malloc0(sizeof(struct xt_counters)
948 * table->old_entries);
949 if (r->counters == NULL) {
954 strcpy(r->name, table->info->name);
955 r->num_entries = table->num_entries;
956 r->size = table->size;
958 r->num_counters = table->old_entries;
959 r->valid_hooks = table->info->valid_hooks;
961 memcpy(r->hook_entry, table->hook_entry, sizeof(table->hook_entry));
962 memcpy(r->underflow, table->underflow, sizeof(table->underflow));
964 entry_index = (unsigned char *)r->entries;
965 for (list = table->entries; list; list = list->next) {
968 memcpy(entry_index, e->entry, e->entry->next_offset);
969 entry_index += e->entry->next_offset;
975 static void dump_ip(struct ipt_entry *entry)
977 struct ipt_ip *ip = &entry->ip;
978 char ip_string[INET6_ADDRSTRLEN];
979 char ip_mask[INET6_ADDRSTRLEN];
981 if (strlen(ip->iniface))
982 connman_info("\tin %s", ip->iniface);
984 if (strlen(ip->outiface))
985 connman_info("\tout %s", ip->outiface);
987 if (inet_ntop(AF_INET, &ip->src, ip_string, INET6_ADDRSTRLEN) != NULL &&
988 inet_ntop(AF_INET, &ip->smsk,
989 ip_mask, INET6_ADDRSTRLEN) != NULL)
990 connman_info("\tsrc %s/%s", ip_string, ip_mask);
992 if (inet_ntop(AF_INET, &ip->dst, ip_string, INET6_ADDRSTRLEN) != NULL &&
993 inet_ntop(AF_INET, &ip->dmsk,
994 ip_mask, INET6_ADDRSTRLEN) != NULL)
995 connman_info("\tdst %s/%s", ip_string, ip_mask);
998 static void dump_target(struct connman_iptables *table,
999 struct ipt_entry *entry)
1002 struct xtables_target *xt_t;
1003 struct xt_entry_target *target;
1005 target = ipt_get_target(entry);
1007 if (!strcmp(target->u.user.name, IPT_STANDARD_TARGET)) {
1008 struct xt_standard_target *t;
1010 t = (struct xt_standard_target *)target;
1012 switch (t->verdict) {
1014 connman_info("\ttarget RETURN");
1017 case -NF_ACCEPT - 1:
1018 connman_info("\ttarget ACCEPT");
1022 connman_info("\ttarget DROP");
1026 connman_info("\ttarget QUEUE");
1030 connman_info("\ttarget STOP");
1034 connman_info("\tJUMP @%p (0x%x)",
1035 (char*)table->blob_entries->entrytable +
1036 t->verdict, t->verdict);
1040 xt_t = xtables_find_target(IPT_STANDARD_TARGET,
1041 XTF_LOAD_MUST_SUCCEED);
1043 if(xt_t->print != NULL)
1044 xt_t->print(NULL, target, 1);
1046 xt_t = xtables_find_target(target->u.user.name, XTF_TRY_LOAD);
1048 connman_info("\ttarget %s", target->u.user.name);
1052 if(xt_t->print != NULL) {
1053 connman_info("\ttarget ");
1054 xt_t->print(NULL, target, 1);
1059 static void dump_match(struct connman_iptables *table, struct ipt_entry *entry)
1061 struct xtables_match *xt_m;
1062 struct xt_entry_match *match;
1064 if (entry->elems == (unsigned char *)entry + entry->target_offset)
1067 match = (struct xt_entry_match *) entry->elems;
1069 if (!strlen(match->u.user.name))
1072 xt_m = xtables_find_match(match->u.user.name, XTF_TRY_LOAD, NULL);
1076 if(xt_m->print != NULL) {
1077 connman_info("\tmatch ");
1078 xt_m->print(NULL, match, 1);
1084 connman_info("\tmatch %s", match->u.user.name);
1088 static int dump_entry(struct ipt_entry *entry,
1089 struct connman_iptables *table)
1091 struct xt_entry_target *target;
1092 unsigned int offset;
1095 offset = (char *)entry - (char *)table->blob_entries->entrytable;
1096 target = ipt_get_target(entry);
1097 builtin = is_hook_entry(table, entry);
1099 if (entry_to_offset(table, entry) + entry->next_offset ==
1100 table->blob_entries->size) {
1101 connman_info("End of CHAIN 0x%x", offset);
1105 if (!strcmp(target->u.user.name, IPT_ERROR_TARGET)) {
1106 connman_info("USER CHAIN (%s) %p match %p target %p size %d",
1107 target->data, entry, entry->elems,
1108 (char *)entry + entry->target_offset,
1109 entry->next_offset);
1112 } else if (builtin >= 0) {
1113 connman_info("CHAIN (%s) %p match %p target %p size %d",
1114 hooknames[builtin], entry, entry->elems,
1115 (char *)entry + entry->target_offset,
1116 entry->next_offset);
1118 connman_info("RULE %p match %p target %p size %d", entry,
1120 (char *)entry + entry->target_offset,
1121 entry->next_offset);
1124 dump_match(table, entry);
1125 dump_target(table, entry);
1131 static void iptables_dump(struct connman_iptables *table)
1133 connman_info("%s valid_hooks=0x%08x, num_entries=%u, size=%u",
1135 table->info->valid_hooks, table->info->num_entries,
1138 ENTRY_ITERATE(table->blob_entries->entrytable,
1139 table->blob_entries->size,
1144 static int iptables_get_entries(struct connman_iptables *table)
1146 socklen_t entry_size;
1148 entry_size = sizeof(struct ipt_get_entries) + table->info->size;
1150 return getsockopt(table->ipt_sock, IPPROTO_IP, IPT_SO_GET_ENTRIES,
1151 table->blob_entries, &entry_size);
1154 static int iptables_replace(struct connman_iptables *table,
1155 struct ipt_replace *r)
1157 return setsockopt(table->ipt_sock, IPPROTO_IP, IPT_SO_SET_REPLACE, r,
1158 sizeof(*r) + r->size);
1161 static int add_entry(struct ipt_entry *entry, struct connman_iptables *table)
1163 struct ipt_entry *new_entry;
1166 new_entry = g_try_malloc0(entry->next_offset);
1167 if (new_entry == NULL)
1170 memcpy(new_entry, entry, entry->next_offset);
1172 builtin = is_hook_entry(table, entry);
1174 return iptables_add_entry(table, new_entry, NULL, builtin);
1177 static void table_cleanup(struct connman_iptables *table)
1180 struct connman_iptables_entry *entry;
1185 close(table->ipt_sock);
1187 for (list = table->entries; list; list = list->next) {
1190 g_free(entry->entry);
1194 g_list_free(table->entries);
1195 g_free(table->info);
1196 g_free(table->blob_entries);
1200 static struct connman_iptables *iptables_init(char *table_name)
1202 struct connman_iptables *table = NULL;
1203 char *module = NULL;
1206 DBG("%s", table_name);
1208 if (xtables_insmod("ip_tables", NULL, TRUE) != 0)
1211 module = g_strconcat("iptable_", table_name, NULL);
1215 if (xtables_insmod(module, NULL, TRUE) != 0) {
1222 table = g_hash_table_lookup(table_hash, table_name);
1226 table = g_try_new0(struct connman_iptables, 1);
1230 table->info = g_try_new0(struct ipt_getinfo, 1);
1231 if (table->info == NULL)
1234 table->ipt_sock = socket(AF_INET, SOCK_RAW | SOCK_CLOEXEC, IPPROTO_RAW);
1235 if (table->ipt_sock < 0)
1238 s = sizeof(*table->info);
1239 strcpy(table->info->name, table_name);
1240 if (getsockopt(table->ipt_sock, IPPROTO_IP, IPT_SO_GET_INFO,
1241 table->info, &s) < 0)
1244 table->blob_entries = g_try_malloc0(sizeof(struct ipt_get_entries) +
1246 if (table->blob_entries == NULL)
1249 strcpy(table->blob_entries->name, table_name);
1250 table->blob_entries->size = table->info->size;
1252 if (iptables_get_entries(table) < 0)
1255 table->num_entries = 0;
1256 table->old_entries = table->info->num_entries;
1259 memcpy(table->underflow, table->info->underflow,
1260 sizeof(table->info->underflow));
1261 memcpy(table->hook_entry, table->info->hook_entry,
1262 sizeof(table->info->hook_entry));
1264 ENTRY_ITERATE(table->blob_entries->entrytable,
1265 table->blob_entries->size,
1268 g_hash_table_insert(table_hash, g_strdup(table_name), table);
1273 table_cleanup(table);
1278 static struct option iptables_opts[] = {
1279 {.name = "append", .has_arg = 1, .val = 'A'},
1280 {.name = "delete", .has_arg = 1, .val = 'D'},
1281 {.name = "flush-chain", .has_arg = 1, .val = 'F'},
1282 {.name = "insert", .has_arg = 1, .val = 'I'},
1283 {.name = "list", .has_arg = 2, .val = 'L'},
1284 {.name = "new-chain", .has_arg = 1, .val = 'N'},
1285 {.name = "policy", .has_arg = 1, .val = 'P'},
1286 {.name = "delete-chain", .has_arg = 1, .val = 'X'},
1287 {.name = "destination", .has_arg = 1, .val = 'd'},
1288 {.name = "in-interface", .has_arg = 1, .val = 'i'},
1289 {.name = "jump", .has_arg = 1, .val = 'j'},
1290 {.name = "match", .has_arg = 1, .val = 'm'},
1291 {.name = "out-interface", .has_arg = 1, .val = 'o'},
1292 {.name = "source", .has_arg = 1, .val = 's'},
1293 {.name = "table", .has_arg = 1, .val = 't'},
1297 struct xtables_globals iptables_globals = {
1299 .opts = iptables_opts,
1300 .orig_opts = iptables_opts,
1303 static struct xtables_target *prepare_target(struct connman_iptables *table,
1306 struct xtables_target *xt_t = NULL;
1307 gboolean is_builtin, is_user_defined;
1308 GList *chain_head = NULL;
1312 is_user_defined = FALSE;
1314 if (is_builtin_target(target_name))
1317 chain_head = find_chain_head(table, target_name);
1318 if (chain_head != NULL && chain_head->next != NULL)
1319 is_user_defined = TRUE;
1322 if (is_builtin || is_user_defined)
1323 xt_t = xtables_find_target(IPT_STANDARD_TARGET,
1324 XTF_LOAD_MUST_SUCCEED);
1326 xt_t = xtables_find_target(target_name, XTF_TRY_LOAD);
1331 target_size = ALIGN(sizeof(struct ipt_entry_target)) + xt_t->size;
1333 xt_t->t = g_try_malloc0(target_size);
1334 if (xt_t->t == NULL)
1337 xt_t->t->u.target_size = target_size;
1339 if (is_builtin || is_user_defined) {
1340 struct xt_standard_target *target;
1342 target = (struct xt_standard_target *)(xt_t->t);
1343 strcpy(target->target.u.user.name, IPT_STANDARD_TARGET);
1345 if (is_builtin == TRUE)
1346 target->verdict = target_to_verdict(target_name);
1347 else if (is_user_defined == TRUE) {
1348 struct connman_iptables_entry *target_rule;
1350 if (chain_head == NULL) {
1355 target_rule = chain_head->next->data;
1356 target->verdict = target_rule->offset;
1359 strcpy(xt_t->t->u.user.name, target_name);
1360 xt_t->t->u.user.revision = xt_t->revision;
1361 if (xt_t->init != NULL)
1362 xt_t->init(xt_t->t);
1365 #if XTABLES_VERSION_CODE > 5
1366 if (xt_t->x6_options != NULL)
1367 iptables_globals.opts =
1368 xtables_options_xfrm(
1369 iptables_globals.orig_opts,
1370 iptables_globals.opts,
1372 &xt_t->option_offset);
1375 iptables_globals.opts =
1376 xtables_merge_options(
1377 #if XTABLES_VERSION_CODE > 5
1378 iptables_globals.orig_opts,
1380 iptables_globals.opts,
1382 &xt_t->option_offset);
1384 if (iptables_globals.opts == NULL) {
1392 static struct xtables_match *prepare_matches(struct connman_iptables *table,
1393 struct xtables_rule_match **xt_rm, char *match_name)
1395 struct xtables_match *xt_m;
1398 if (match_name == NULL)
1401 xt_m = xtables_find_match(match_name, XTF_LOAD_MUST_SUCCEED, xt_rm);
1402 match_size = ALIGN(sizeof(struct ipt_entry_match)) + xt_m->size;
1404 xt_m->m = g_try_malloc0(match_size);
1405 if (xt_m->m == NULL)
1408 xt_m->m->u.match_size = match_size;
1409 strcpy(xt_m->m->u.user.name, xt_m->name);
1410 xt_m->m->u.user.revision = xt_m->revision;
1412 if (xt_m->init != NULL)
1413 xt_m->init(xt_m->m);
1415 if (xt_m == xt_m->next)
1418 #if XTABLES_VERSION_CODE > 5
1419 if (xt_m->x6_options != NULL)
1420 iptables_globals.opts =
1421 xtables_options_xfrm(
1422 iptables_globals.orig_opts,
1423 iptables_globals.opts,
1425 &xt_m->option_offset);
1428 iptables_globals.opts =
1429 xtables_merge_options(
1430 #if XTABLES_VERSION_CODE > 5
1431 iptables_globals.orig_opts,
1433 iptables_globals.opts,
1435 &xt_m->option_offset);
1437 if (iptables_globals.opts == NULL) {
1446 static int iptables_command(int argc, char *argv[])
1448 struct connman_iptables *table;
1449 struct xtables_rule_match *xt_rm, *tmp_xt_rm;
1450 struct xtables_match *xt_m, *xt_m_t;
1451 struct xtables_target *xt_t;
1453 char *table_name, *chain, *new_chain, *match_name, *target_name;
1454 char *flush_chain, *delete_chain, *policy;
1455 int c, ret, in_len, out_len;
1456 gboolean dump, invert, insert, delete;
1457 struct in_addr src, dst;
1466 table_name = chain = new_chain = match_name = target_name = NULL;
1467 flush_chain = delete_chain = policy = NULL;
1468 memset(&ip, 0, sizeof(struct ipt_ip));
1475 /* extension's options will generate false-positives errors */
1480 while ((c = getopt_long(argc, argv, "-A:F:I:L::N:P:X:d:j:i:m:o:s:t:",
1481 iptables_globals.opts, NULL)) != -1) {
1484 /* It is either -A, -D or -I at once */
1492 /* It is either -A, -D or -I at once */
1501 flush_chain = optarg;
1505 /* It is either -A, -D or -I at once */
1524 policy = argv[optind++];
1531 delete_chain = optarg;
1535 if (!inet_pton(AF_INET, optarg, &dst))
1539 inet_pton(AF_INET, "255.255.255.255", &ip.dmsk);
1542 ip.invflags |= IPT_INV_DSTIP;
1547 in_len = strlen(optarg);
1549 if (in_len + 1 > IFNAMSIZ)
1552 strcpy(ip.iniface, optarg);
1553 memset(ip.iniface_mask, 0xff, in_len + 1);
1556 ip.invflags |= IPT_INV_VIA_IN;
1561 target_name = optarg;
1562 xt_t = prepare_target(table, target_name);
1569 match_name = optarg;
1570 xt_m = prepare_matches(table, &xt_rm, match_name);
1577 out_len = strlen(optarg);
1579 if (out_len + 1 > IFNAMSIZ)
1582 strcpy(ip.outiface, optarg);
1583 memset(ip.outiface_mask, 0xff, out_len + 1);
1586 ip.invflags |= IPT_INV_VIA_OUT;
1591 if (!inet_pton(AF_INET, optarg, &src))
1595 inet_pton(AF_INET, "255.255.255.255", &ip.smsk);
1598 ip.invflags |= IPT_INV_SRCIP;
1603 table_name = optarg;
1605 table = iptables_init(table_name);
1606 if (table == NULL) {
1614 if (optarg[0] == '!' && optarg[1] == '\0') {
1620 connman_error("Invalid option");
1626 #if XTABLES_VERSION_CODE > 5
1627 if (xt_t != NULL && (xt_t->x6_parse != NULL ||
1628 xt_t->parse != NULL) &&
1629 (c >= (int) xt_t->option_offset &&
1630 c < (int) xt_t->option_offset +
1631 XT_OPTION_OFFSET_SCALE)) {
1632 xtables_option_tpcall(c, argv,
1633 invert, xt_t, NULL);
1638 for (tmp_xt_rm = xt_rm; tmp_xt_rm != NULL;
1639 tmp_xt_rm = tmp_xt_rm->next) {
1640 xt_m_t = tmp_xt_rm->match;
1642 if (tmp_xt_rm->completed ||
1643 (xt_m_t->x6_parse == NULL &&
1644 xt_m_t->parse == NULL))
1647 if (c < (int) xt_m_t->option_offset ||
1648 c >= (int) xt_m_t->option_offset
1649 + XT_OPTION_OFFSET_SCALE)
1652 xtables_option_mpcall(c, argv,
1653 invert, xt_m_t, NULL);
1658 if (xt_t == NULL || xt_t->parse == NULL ||
1659 !xt_t->parse(c - xt_t->option_offset,
1660 argv, invert, &xt_t->tflags, NULL, &xt_t->t)) {
1662 for (tmp_xt_rm = xt_rm; tmp_xt_rm != NULL;
1663 tmp_xt_rm = tmp_xt_rm->next) {
1664 xt_m_t = tmp_xt_rm->match;
1666 if (tmp_xt_rm->completed ||
1667 xt_m_t->parse == NULL)
1670 if (xt_m->parse(c - xt_m->option_offset,
1671 argv, invert, &xt_m->mflags,
1683 #if XTABLES_VERSION_CODE > 5
1684 for (tmp_xt_rm = xt_rm; tmp_xt_rm != NULL;
1685 tmp_xt_rm = tmp_xt_rm->next)
1686 xtables_option_mfcall(tmp_xt_rm->match);
1689 xtables_option_tfcall(xt_t);
1691 for (tmp_xt_rm = xt_rm; tmp_xt_rm != NULL;
1692 tmp_xt_rm = tmp_xt_rm->next)
1693 if (tmp_xt_rm->match->final_check != NULL)
1694 tmp_xt_rm->match->final_check(
1695 tmp_xt_rm->match->mflags);
1697 if (xt_t != NULL && xt_t->final_check != NULL)
1698 xt_t->final_check(xt_t->tflags);
1701 if (table == NULL) {
1702 table_name = "filter";
1704 table = iptables_init(table_name);
1705 if (table == NULL) {
1711 if (delete_chain != NULL) {
1712 printf("Delete chain %s\n", delete_chain);
1714 iptables_delete_chain(table, delete_chain);
1720 iptables_dump(table);
1727 DBG("Flush chain %s", flush_chain);
1729 iptables_flush_chain(table, flush_chain);
1734 if (chain && new_chain) {
1740 DBG("New chain %s", new_chain);
1742 ret = iptables_add_chain(table, new_chain);
1747 if (policy != NULL) {
1748 printf("Changing policy of %s to %s\n", chain, policy);
1750 iptables_change_policy(table, chain, policy);
1758 if (delete == TRUE) {
1759 DBG("Deleting %s to %s (match %s)\n",
1760 target_name, chain, match_name);
1762 ret = iptables_delete_rule(table, &ip, chain,
1763 target_name, xt_t, xt_m, xt_rm);
1768 if (insert == TRUE) {
1769 DBG("Inserting %s to %s (match %s)",
1770 target_name, chain, match_name);
1772 ret = iptables_insert_rule(table, &ip, chain,
1773 target_name, xt_t, xt_rm);
1777 DBG("Adding %s to %s (match %s)",
1778 target_name, chain, match_name);
1780 ret = iptables_append_rule(table, &ip, chain,
1781 target_name, xt_t, xt_rm);
1797 int __connman_iptables_command(const char *format, ...)
1799 char **argv, **arguments, *command;
1806 va_start(args, format);
1808 command = g_strdup_vprintf(format, args);
1812 if (command == NULL)
1815 arguments = g_strsplit_set(command, " ", -1);
1817 for (argc = 0; arguments[argc]; argc++);
1820 DBG("command %s argc %d", command, argc);
1822 argv = g_try_malloc0(argc * sizeof(char *));
1825 g_strfreev(arguments);
1829 argv[0] = "iptables";
1830 for (i = 1; i < argc; i++)
1831 argv[i] = arguments[i - 1];
1833 ret = iptables_command(argc, argv);
1836 g_strfreev(arguments);
1843 int __connman_iptables_commit(const char *table_name)
1845 struct connman_iptables *table;
1846 struct ipt_replace *repl;
1849 DBG("%s", table_name);
1851 table = g_hash_table_lookup(table_hash, table_name);
1855 repl = iptables_blob(table);
1857 err = iptables_replace(table, repl);
1859 g_free(repl->counters);
1865 g_hash_table_remove(table_hash, table_name);
1870 static void remove_table(gpointer user_data)
1872 struct connman_iptables *table = user_data;
1874 table_cleanup(table);
1877 int __connman_iptables_init(void)
1881 table_hash = g_hash_table_new_full(g_str_hash, g_str_equal,
1882 g_free, remove_table);
1884 xtables_init_all(&iptables_globals, NFPROTO_IPV4);
1890 void __connman_iptables_cleanup(void)
1894 g_hash_table_destroy(table_hash);
1896 xtables_free_opts(1);