blob: 8661bd9cf35133a429ac1f98e02a1ba18c59ecb9 [file] [log] [blame]
Rusty Russell5eed48a2000-06-02 20:12:24 +00001/*
2 * Author: Paul.Russell@rustcorp.com.au and mneuling@radlogic.com.au
3 *
Harald Welte10a907f2002-08-07 09:07:41 +00004 * (C) 2000-2002 by the netfilter coreteam <coreteam@netfilter.org>:
5 * Paul 'Rusty' Russell <rusty@rustcorp.com.au>
6 * Marc Boucher <marc+nf@mbsi.ca>
7 * James Morris <jmorris@intercode.com.au>
8 * Harald Welte <laforge@gnumonks.org>
9 * Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
10 *
Rusty Russell5eed48a2000-06-02 20:12:24 +000011 * Based on the ipchains code by Paul Russell and Michael Neuling
12 *
13 * iptables -- IP firewall administration for kernels with
14 * firewall table (aimed for the 2.3 kernels)
15 *
16 * See the accompanying manual page iptables(8) for information
17 * about proper usage of this program.
18 *
19 * This program is free software; you can redistribute it and/or modify
20 * it under the terms of the GNU General Public License as published by
21 * the Free Software Foundation; either version 2 of the License, or
22 * (at your option) any later version.
23 *
24 * This program is distributed in the hope that it will be useful,
25 * but WITHOUT ANY WARRANTY; without even the implied warranty of
26 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
27 * GNU General Public License for more details.
28 *
29 * You should have received a copy of the GNU General Public License
30 * along with this program; if not, write to the Free Software
31 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
32 */
33
34#include <stdio.h>
Harald Welted8e65632001-01-05 15:20:07 +000035#include <stdlib.h>
Rusty Russell5eed48a2000-06-02 20:12:24 +000036#include <errno.h>
37#include <ip6tables.h>
Jan Engelhardt33690a12008-02-11 00:54:00 +010038#include "ip6tables-multi.h"
Rusty Russell5eed48a2000-06-02 20:12:24 +000039
Hann-Huei Chiou4bc48332007-10-23 14:22:34 +000040#ifdef IPTABLES_MULTI
41int
42ip6tables_main(int argc, char *argv[])
43#else
Rusty Russell5eed48a2000-06-02 20:12:24 +000044int
45main(int argc, char *argv[])
Hann-Huei Chiou4bc48332007-10-23 14:22:34 +000046#endif
Rusty Russell5eed48a2000-06-02 20:12:24 +000047{
48 int ret;
49 char *table = "filter";
Jan Engelhardtfd187312008-11-10 16:59:27 +010050 struct ip6tc_handle *handle = NULL;
Rusty Russell5eed48a2000-06-02 20:12:24 +000051
Jamal Hadi Salim617d3d12009-02-11 16:28:31 -050052 ip6tables_globals.program_name = "ip6tables";
Jamal Hadi Salim7e4db2f2009-02-13 09:14:17 -050053 ret = xtables_init_all(&ip6tables_globals, NFPROTO_IPV6);
54 if (ret < 0) {
55 fprintf(stderr, "%s/%s Failed to initialize xtables\n",
56 ip6tables_globals.program_name,
57 ip6tables_globals.program_version);
58 exit(1);
59 }
60
Jan Engelhardtb79ec692009-07-23 17:41:21 +020061#if defined(ALL_INCLUSIVE) || defined(NO_SHARED_LIBS)
Harald Welte3efb6ea2001-08-06 18:50:21 +000062 init_extensions();
63#endif
64
Rusty Russell5eed48a2000-06-02 20:12:24 +000065 ret = do_command6(argc, argv, &table, &handle);
Jan Engelhardt1c9015b2008-11-10 17:00:41 +010066 if (ret) {
67 ret = ip6tc_commit(handle);
68 ip6tc_free(handle);
69 }
Rusty Russell5eed48a2000-06-02 20:12:24 +000070
Pablo Neira Ayuso6e70f462009-03-24 13:08:24 +010071 if (!ret) {
72 if (errno == EINVAL) {
73 fprintf(stderr, "ip6tables: %s. "
74 "Run `dmesg' for more information.\n",
75 ip6tc_strerror(errno));
76 } else {
77 fprintf(stderr, "ip6tables: %s.\n",
78 ip6tc_strerror(errno));
79 }
80 }
Rusty Russell5eed48a2000-06-02 20:12:24 +000081
82 exit(!ret);
83}