5 * Copyright (C) 2007-2010 Intel Corporation. All rights reserved.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
31 #include <sys/errno.h>
32 #include <sys/socket.h>
35 #include <linux/netfilter_ipv4/ip_tables.h>
40 static const char *hooknames[] = {
41 [NF_IP_PRE_ROUTING] = "PREROUTING",
42 [NF_IP_LOCAL_IN] = "INPUT",
43 [NF_IP_FORWARD] = "FORWARD",
44 [NF_IP_LOCAL_OUT] = "OUTPUT",
45 [NF_IP_POST_ROUTING] = "POSTROUTING",
48 #define LABEL_ACCEPT "ACCEPT"
49 #define LABEL_DROP "DROP"
50 #define LABEL_QUEUE "QUEUE"
51 #define LABEL_RETURN "RETURN"
53 /* fn returns 0 to continue iteration */
54 #define _XT_ENTRY_ITERATE_CONTINUE(type, entries, size, n, fn, args...) \
61 for (__i = 0, __n = 0; __i < (size); \
62 __i += __entry->next_offset, __n++) { \
63 __entry = (void *)(entries) + __i; \
67 __ret = fn(__entry, ## args); \
74 /* fn returns 0 to continue iteration */
75 #define _XT_ENTRY_ITERATE(type, entries, size, fn, args...) \
76 _XT_ENTRY_ITERATE_CONTINUE(type, entries, size, 0, fn, args)
78 #define ENTRY_ITERATE(entries, size, fn, args...) \
79 _XT_ENTRY_ITERATE(struct ipt_entry, entries, size, fn, ## args)
81 #define MIN_ALIGN (__alignof__(struct ipt_entry))
83 #define ALIGN(s) (((s) + ((MIN_ALIGN)-1)) & ~((MIN_ALIGN)-1))
85 struct ipt_error_target {
86 struct xt_entry_target t;
87 char error[IPT_TABLE_MAXNAMELEN];
90 struct connman_iptables_entry {
93 struct ipt_entry *entry;
96 struct connman_iptables {
99 struct ipt_getinfo *info;
100 struct ipt_get_entries *blob_entries;
102 unsigned int num_entries;
103 unsigned int old_entries;
109 static GHashTable *table_hash = NULL;
111 static struct ipt_entry *get_entry(struct connman_iptables *table,
114 return (struct ipt_entry *)((char *)table->blob_entries->entrytable +
118 static int is_hook_entry(struct connman_iptables *table,
119 struct ipt_entry *entry)
123 for (i = 0; i < NF_INET_NUMHOOKS; i++) {
124 if ((table->info->valid_hooks & (1 << i))
125 && get_entry(table, table->info->hook_entry[i]) == entry)
132 static unsigned long entry_to_offset(struct connman_iptables *table,
133 struct ipt_entry *entry)
135 return (void *)entry - (void *)table->blob_entries->entrytable;
138 static int target_to_verdict(char *target_name)
140 if (!strcmp(target_name, LABEL_ACCEPT))
141 return -NF_ACCEPT - 1;
143 if (!strcmp(target_name, LABEL_DROP))
146 if (!strcmp(target_name, LABEL_QUEUE))
147 return -NF_QUEUE - 1;
149 if (!strcmp(target_name, LABEL_RETURN))
155 static gboolean is_builtin_target(char *target_name)
157 if (!strcmp(target_name, LABEL_ACCEPT) ||
158 !strcmp(target_name, LABEL_DROP) ||
159 !strcmp(target_name, LABEL_QUEUE) ||
160 !strcmp(target_name, LABEL_RETURN))
166 static gboolean is_chain(struct connman_iptables *table,
167 struct connman_iptables_entry *e)
170 struct ipt_entry *entry;
171 struct xt_entry_target *target;
174 builtin = is_hook_entry(table, entry);
178 target = ipt_get_target(entry);
179 if (!strcmp(target->u.user.name, IPT_ERROR_TARGET))
185 static GList *find_chain_tail(struct connman_iptables *table,
188 GList *chain_head, *list;
189 struct connman_iptables_entry *head, *tail;
190 struct ipt_entry *entry;
191 struct xt_entry_target *target;
194 /* First we look for the head */
195 for (list = table->entries; list; list = list->next) {
200 builtin = is_hook_entry(table, entry);
201 if (builtin >= 0 && !strcmp(hooknames[builtin], chain_name))
204 /* User defined chain */
205 target = ipt_get_target(entry);
206 if (!strcmp(target->u.user.name, IPT_ERROR_TARGET) &&
207 !strcmp((char *)target->data, chain_name))
216 /* Then we look for the next chain */
217 for (list = chain_head->next; list; list = list->next) {
221 if (is_chain(table, tail))
225 /* Nothing found, we return the table end */
226 return g_list_last(table->entries);
229 static int iptables_add_entry(struct connman_iptables *table,
230 struct ipt_entry *entry, GList *before)
232 struct connman_iptables_entry *e;
237 e = g_try_malloc0(sizeof(struct connman_iptables_entry));
243 table->entries = g_list_insert_before(table->entries, before, e);
244 table->num_entries++;
245 table->size += entry->next_offset;
250 static int iptables_add_chain(struct connman_iptables *table,
254 struct ipt_entry *entry_head;
255 struct ipt_entry *entry_return;
256 struct ipt_error_target *error;
257 struct ipt_standard_target *standard;
258 u_int16_t entry_head_size, entry_return_size;
260 last = g_list_last(table->entries);
263 * An empty chain is composed of:
264 * - A head entry, with no match and an error target.
265 * The error target data is the chain name.
266 * - A tail entry, with no match and a standard target.
267 * The standard target verdict is XT_RETURN (return to the
272 entry_head_size = sizeof(struct ipt_entry) +
273 sizeof(struct ipt_error_target);
274 entry_head = g_try_malloc0(entry_head_size);
275 if (entry_head == NULL)
278 memset(entry_head, 0, entry_head_size);
280 entry_head->target_offset = sizeof(struct ipt_entry);
281 entry_head->next_offset = entry_head_size;
283 error = (struct ipt_error_target *) entry_head->elems;
284 strcpy(error->t.u.user.name, IPT_ERROR_TARGET);
285 error->t.u.user.target_size = ALIGN(sizeof(struct ipt_error_target));
286 strcpy(error->error, name);
288 if (iptables_add_entry(table, entry_head, last) < 0)
292 entry_return_size = sizeof(struct ipt_entry) +
293 sizeof(struct ipt_standard_target);
294 entry_return = g_try_malloc0(entry_return_size);
295 if (entry_return == NULL)
298 memset(entry_return, 0, entry_return_size);
300 entry_return->target_offset = sizeof(struct ipt_entry);
301 entry_return->next_offset = entry_return_size;
303 standard = (struct ipt_standard_target *) entry_return->elems;
304 standard->target.u.user.target_size =
305 ALIGN(sizeof(struct ipt_standard_target));
306 standard->verdict = XT_RETURN;
308 if (iptables_add_entry(table, entry_return, last) < 0)
315 g_free(entry_return);
320 static struct ipt_entry *
321 new_rule(char *target_name, struct xtables_target *xt_t,
322 char *match_name, struct xtables_match *xt_m)
324 struct ipt_entry *new_entry;
325 size_t match_size, target_size;
326 int is_builtin = is_builtin_target(target_name);
329 match_size = xt_m->m->u.match_size;
334 target_size = ALIGN(xt_t->t->u.target_size);
338 new_entry = g_try_malloc0(sizeof(struct ipt_entry) + target_size +
340 if (new_entry == NULL)
343 new_entry->target_offset = sizeof(struct ipt_entry) + match_size;
344 new_entry->next_offset = sizeof(struct ipt_entry) + target_size +
347 struct xt_entry_match *entry_match;
349 entry_match = (struct xt_entry_match *)new_entry->elems;
350 memcpy(entry_match, xt_m->m, match_size);
354 struct xt_entry_target *entry_target;
357 struct xt_standard_target *target;
359 target = (struct xt_standard_target *)(xt_t->t);
360 strcpy(target->target.u.user.name, IPT_STANDARD_TARGET);
361 target->verdict = target_to_verdict(target_name);
364 entry_target = ipt_get_target(new_entry);
365 memcpy(entry_target, xt_t->t, target_size);
372 iptables_add_rule(struct connman_iptables *table, char *chain_name,
373 char *target_name, struct xtables_target *xt_t,
374 char *match_name, struct xtables_match *xt_m)
377 struct ipt_entry *new_entry;
379 chain_tail = find_chain_tail(table, chain_name);
380 if (chain_tail == NULL)
383 new_entry = new_rule(target_name, xt_t,
385 if (new_entry == NULL)
388 return iptables_add_entry(table, new_entry, chain_tail->prev);
391 static struct ipt_replace *
392 iptables_blob(struct connman_iptables *table)
394 struct ipt_replace *r;
396 struct connman_iptables_entry *e;
397 unsigned char *entry_index;
399 r = g_try_malloc0(sizeof(struct ipt_replace) + table->size);
403 memset(r, 0, sizeof(*r) + table->size);
405 r->counters = g_try_malloc0(sizeof(struct xt_counters)
406 * table->num_entries);
407 if (r->counters == NULL) {
412 strcpy(r->name, table->info->name);
413 r->num_entries = table->num_entries;
414 r->size = table->size;
416 r->num_counters = table->old_entries;
417 r->valid_hooks = table->info->valid_hooks;
419 memcpy(r->hook_entry, table->info->hook_entry,
420 sizeof(table->info->hook_entry));
421 memcpy(r->underflow, table->info->underflow,
422 sizeof(table->info->underflow));
424 entry_index = (unsigned char *)r->entries;
425 for (list = table->entries; list; list = list->next) {
428 memcpy(entry_index, e->entry, e->entry->next_offset);
429 entry_index += e->entry->next_offset;
435 static void dump_target(struct connman_iptables *table,
436 struct ipt_entry *entry)
439 struct xtables_target *xt_t;
440 struct xt_entry_target *target;
442 target = ipt_get_target(entry);
444 if (!strcmp(target->u.user.name, IPT_STANDARD_TARGET)) {
445 struct xt_standard_target *t;
447 t = (struct xt_standard_target *)target;
449 switch (t->verdict) {
451 connman_info("\ttarget RETURN");
455 connman_info("\ttarget ACCEPT");
459 connman_info("\ttarget DROP");
463 connman_info("\ttarget QUEUE");
467 connman_info("\ttarget STOP");
471 connman_info("\tJUMP @%p (0x%x)",
472 (char*)table->blob_entries->entrytable +
473 t->verdict, t->verdict);
477 xt_t = xtables_find_target(IPT_STANDARD_TARGET,
478 XTF_LOAD_MUST_SUCCEED);
480 if(xt_t->print != NULL)
481 xt_t->print(NULL, target, 1);
483 xt_t = xtables_find_target(target->u.user.name, XTF_TRY_LOAD);
485 connman_info("\ttarget %s", target->u.user.name);
489 if(xt_t->print != NULL) {
490 connman_info("\ttarget ");
491 xt_t->print(NULL, target, 1);
496 static void dump_match(struct connman_iptables *table, struct ipt_entry *entry)
498 struct xtables_match *xt_m;
499 struct xt_entry_match *match;
501 if (entry->elems == (unsigned char *)entry + entry->target_offset)
504 match = (struct xt_entry_match *) entry->elems;
506 if (!strlen(match->u.user.name))
509 xt_m = xtables_find_match(match->u.user.name, XTF_TRY_LOAD, NULL);
513 if(xt_m->print != NULL) {
514 connman_info("\tmatch ");
515 xt_m->print(NULL, match, 1);
521 connman_info("\tmatch %s", match->u.user.name);
525 static int dump_entry(struct ipt_entry *entry,
526 struct connman_iptables *table)
528 struct xt_entry_target *target;
532 offset = (char *)entry - (char *)table->blob_entries->entrytable;
533 target = ipt_get_target(entry);
534 builtin = is_hook_entry(table, entry);
536 if (entry_to_offset(table, entry) + entry->next_offset ==
537 table->blob_entries->size) {
538 connman_info("End of CHAIN 0x%x", offset);
542 if (!strcmp(target->u.user.name, IPT_ERROR_TARGET)) {
543 connman_info("USER CHAIN (%s) %p match %p target %p size %d",
544 target->data, entry, entry->elems,
545 (char *)entry + entry->target_offset,
549 } else if (builtin >= 0) {
550 connman_info("CHAIN (%s) %p match %p target %p size %d",
551 hooknames[builtin], entry, entry->elems,
552 (char *)entry + entry->target_offset,
555 connman_info("RULE %p match %p target %p size %d", entry,
557 (char *)entry + entry->target_offset,
561 dump_match(table, entry);
562 dump_target(table, entry);
567 static void iptables_dump(struct connman_iptables *table)
569 connman_info("%s valid_hooks=0x%08x, num_entries=%u, size=%u",
571 table->info->valid_hooks, table->info->num_entries,
574 ENTRY_ITERATE(table->blob_entries->entrytable,
575 table->blob_entries->size,
580 static int iptables_get_entries(struct connman_iptables *table)
582 socklen_t entry_size;
584 entry_size = sizeof(struct ipt_get_entries) + table->info->size;
586 return getsockopt(table->ipt_sock, IPPROTO_IP, IPT_SO_GET_ENTRIES,
587 table->blob_entries, &entry_size);
590 static int iptables_replace(struct connman_iptables *table,
591 struct ipt_replace *r)
593 return setsockopt(table->ipt_sock, IPPROTO_IP, IPT_SO_SET_REPLACE, r,
594 sizeof(*r) + r->size);
597 static int add_entry(struct ipt_entry *entry, struct connman_iptables *table)
599 struct ipt_entry *new_entry;
601 new_entry = g_try_malloc0(entry->next_offset);
602 if (new_entry == NULL)
605 memcpy(new_entry, entry, entry->next_offset);
607 return iptables_add_entry(table, new_entry, NULL);
610 static void table_cleanup(struct connman_iptables *table)
613 struct connman_iptables_entry *entry;
615 close(table->ipt_sock);
617 for (list = table->entries; list; list = list->next) {
620 g_free(entry->entry);
623 g_list_free(table->entries);
625 g_free(table->blob_entries);
629 static struct connman_iptables *iptables_init(char *table_name)
631 struct connman_iptables *table;
634 table = g_hash_table_lookup(table_hash, table_name);
638 table = g_try_new0(struct connman_iptables, 1);
642 table->info = g_try_new0(struct ipt_getinfo, 1);
643 if (table->info == NULL)
646 table->ipt_sock = socket(AF_INET, SOCK_RAW, IPPROTO_RAW);
647 if (table->ipt_sock < 0)
650 s = sizeof(*table->info);
651 strcpy(table->info->name, table_name);
652 if (getsockopt(table->ipt_sock, IPPROTO_IP, IPT_SO_GET_INFO,
653 table->info, &s) < 0)
656 table->blob_entries = g_try_malloc0(sizeof(struct ipt_get_entries) +
658 if (table->blob_entries == NULL)
661 strcpy(table->blob_entries->name, table_name);
662 table->blob_entries->size = table->info->size;
664 if (iptables_get_entries(table) < 0)
667 table->num_entries = 0;
668 table->old_entries = table->info->num_entries;
671 ENTRY_ITERATE(table->blob_entries->entrytable,
672 table->blob_entries->size,
675 g_hash_table_insert(table_hash, table_name, table);
681 table_cleanup(table);
686 static struct option iptables_opts[] = {
687 {.name = "append", .has_arg = 1, .val = 'A'},
688 {.name = "list", .has_arg = 2, .val = 'L'},
689 {.name = "new-chain", .has_arg = 1, .val = 'N'},
690 {.name = "in-interface", .has_arg = 1, .val = 'i'},
691 {.name = "jump", .has_arg = 1, .val = 'j'},
692 {.name = "match", .has_arg = 1, .val = 'm'},
693 {.name = "out-interface", .has_arg = 1, .val = 'o'},
694 {.name = "table", .has_arg = 1, .val = 't'},
698 struct xtables_globals iptables_globals = {
700 .opts = iptables_opts,
701 .orig_opts = iptables_opts,
704 static int iptables_command(int argc, char *argv[])
706 struct connman_iptables *table;
707 struct xtables_match *xt_m;
708 struct xtables_target *xt_t;
709 char *table_name, *chain, *new_chain, *match_name, *target_name;
712 gboolean dump, invert;
719 table_name = chain = new_chain = match_name = target_name = NULL;
727 while ((c = getopt_long(argc, argv,
728 "-A:L::N:j:i:m:o:t:", iptables_globals.opts, NULL)) != -1) {
743 target_name = optarg;
744 xt_t = xtables_find_target(target_name, XTF_TRY_LOAD);
749 size = ALIGN(sizeof(struct ipt_entry_target)) +
752 xt_t->t = g_try_malloc0(size);
755 xt_t->t->u.target_size = size;
756 strcpy(xt_t->t->u.user.name, target_name);
757 xt_t->t->u.user.revision = xt_t->revision;
758 if (xt_t->init != NULL)
760 iptables_globals.opts =
761 xtables_merge_options(iptables_globals.opts,
763 &xt_t->option_offset);
764 if (iptables_globals.opts == NULL)
775 xt_m = xtables_find_match(optarg, XTF_LOAD_MUST_SUCCEED, NULL);
776 size = ALIGN(sizeof(struct ipt_entry_match)) +
778 xt_m->m = g_try_malloc0(size);
781 xt_m->m->u.match_size = size;
782 strcpy(xt_m->m->u.user.name, xt_m->name);
783 xt_m->m->u.user.revision = xt_m->revision;
784 if (xt_m->init != NULL)
786 if (xt_m != xt_m->next) {
787 iptables_globals.opts =
788 xtables_merge_options(iptables_globals.opts,
790 &xt_m->option_offset);
791 if (iptables_globals.opts == NULL)
805 if (optarg[0] == '!' && optarg[1] == '\0') {
811 connman_error("Invalid option");
817 if (xt_t == NULL || xt_t->parse == NULL ||
818 !xt_t->parse(c - xt_t->option_offset, argv, invert,
819 &xt_t->tflags, NULL, &xt_t->t)) {
820 if (xt_m == NULL || xt_m->parse == NULL)
823 xt_m->parse(c - xt_m->option_offset, argv,
824 invert, &xt_m->mflags, NULL, &xt_m->m);
831 if (table_name == NULL)
832 table_name = "filter";
834 table = iptables_init(table_name);
841 iptables_dump(table);
847 if (chain && new_chain) {
853 DBG("New chain %s", new_chain);
855 ret = iptables_add_chain(table, new_chain);
860 if (target_name == NULL)
863 DBG("Adding %s to %s (match %s)",
864 target_name, chain, match_name);
866 ret = iptables_add_rule(table, chain, target_name, xt_t,
882 int __connman_iptables_command(const char *format, ...)
884 char **argv, **arguments, *command;
891 va_start(args, format);
893 command = g_strdup_vprintf(format, args);
900 arguments = g_strsplit_set(command, " ", -1);
902 for (argc = 0; arguments[argc]; argc++);
904 DBG("command %s argc %d", command, ++argc);
906 argv = g_try_malloc0(argc * sizeof(char *));
909 g_strfreev(arguments);
913 argv[0] = "iptables";
914 for (i = 1; i < argc; i++)
915 argv[i] = arguments[i - 1];
917 ret = iptables_command(argc, argv);
920 g_strfreev(arguments);
927 int __connman_iptables_commit(const char *table_name)
929 struct connman_iptables *table;
930 struct ipt_replace *repl;
932 table = g_hash_table_lookup(table_hash, table_name);
936 repl = iptables_blob(table);
938 return iptables_replace(table, repl);
941 static void remove_table(gpointer user_data)
943 struct connman_iptables *table = user_data;
945 table_cleanup(table);
948 int __connman_iptables_init(void)
952 table_hash = g_hash_table_new_full(g_str_hash, g_str_equal,
955 xtables_init_all(&iptables_globals, NFPROTO_IPV4);
961 void __connman_iptables_cleanup(void)
963 g_hash_table_destroy(table_hash);
965 xtables_free_opts(1);