libip6t_LOG.c revision 830132ac9c0d270bf9dcfe85c2464e3fe8c73fb9
1/* Shared library add-on to iptables to add LOG support. */
2#include <stdio.h>
3#include <netdb.h>
4#include <string.h>
5#include <stdlib.h>
6#include <syslog.h>
7#include <getopt.h>
8#include <ip6tables.h>
9#include <linux/netfilter_ipv6/ip6_tables.h>
10#include <linux/netfilter_ipv6/ip6t_LOG.h>
11
12#ifndef IP6T_LOG_UID	/* Old kernel */
13#define IP6T_LOG_UID	0x08
14#undef  IP6T_LOG_MASK
15#define IP6T_LOG_MASK	0x0f
16#endif
17
18#define LOG_DEFAULT_LEVEL LOG_WARNING
19
20/* Function which prints out usage message. */
21static void
22help(void)
23{
24	printf(
25"LOG v%s options:\n"
26" --log-level level		Level of logging (numeric or see syslog.conf)\n"
27" --log-prefix prefix		Prefix log messages with this prefix.\n\n"
28" --log-tcp-sequence		Log TCP sequence numbers.\n\n"
29" --log-tcp-options		Log TCP options.\n\n"
30" --log-ip-options		Log IP options.\n\n"
31" --log-uid			Log UID owning the local socket.\n\n",
32IPTABLES_VERSION);
33}
34
35static const struct option opts[] = {
36	{ .name = "log-level",        .has_arg = 1, .val = '!' },
37	{ .name = "log-prefix",       .has_arg = 1, .val = '#' },
38	{ .name = "log-tcp-sequence", .has_arg = 0, .val = '1' },
39	{ .name = "log-tcp-options",  .has_arg = 0, .val = '2' },
40	{ .name = "log-ip-options",   .has_arg = 0, .val = '3' },
41	{ .name = "log-uid",          .has_arg = 0, .val = '4' },
42	{ }
43};
44
45/* Initialize the target. */
46static void
47init(struct xt_entry_target *t)
48{
49	struct ip6t_log_info *loginfo = (struct ip6t_log_info *)t->data;
50
51	loginfo->level = LOG_DEFAULT_LEVEL;
52
53}
54
55struct ip6t_log_names {
56	const char *name;
57	unsigned int level;
58};
59
60static struct ip6t_log_names ip6t_log_names[]
61= { { .name = "alert",   .level = LOG_ALERT },
62    { .name = "crit",    .level = LOG_CRIT },
63    { .name = "debug",   .level = LOG_DEBUG },
64    { .name = "emerg",   .level = LOG_EMERG },
65    { .name = "error",   .level = LOG_ERR },		/* DEPRECATED */
66    { .name = "info",    .level = LOG_INFO },
67    { .name = "notice",  .level = LOG_NOTICE },
68    { .name = "panic",   .level = LOG_EMERG },		/* DEPRECATED */
69    { .name = "warning", .level = LOG_WARNING }
70};
71
72static u_int8_t
73parse_level(const char *level)
74{
75	unsigned int lev = -1;
76	unsigned int set = 0;
77
78	if (string_to_number(level, 0, 7, &lev) == -1) {
79		unsigned int i = 0;
80
81		for (i = 0;
82		     i < sizeof(ip6t_log_names) / sizeof(struct ip6t_log_names);
83		     i++) {
84			if (strncasecmp(level, ip6t_log_names[i].name,
85					strlen(level)) == 0) {
86				if (set++)
87					exit_error(PARAMETER_PROBLEM,
88						   "log-level `%s' ambiguous",
89						   level);
90				lev = ip6t_log_names[i].level;
91			}
92		}
93
94		if (!set)
95			exit_error(PARAMETER_PROBLEM,
96				   "log-level `%s' unknown", level);
97	}
98
99	return (u_int8_t)lev;
100}
101
102#define IP6T_LOG_OPT_LEVEL 0x01
103#define IP6T_LOG_OPT_PREFIX 0x02
104#define IP6T_LOG_OPT_TCPSEQ 0x04
105#define IP6T_LOG_OPT_TCPOPT 0x08
106#define IP6T_LOG_OPT_IPOPT 0x10
107#define IP6T_LOG_OPT_UID 0x20
108
109/* Function which parses command options; returns true if it
110   ate an option */
111static int
112parse(int c, char **argv, int invert, unsigned int *flags,
113      const void *entry,
114      struct xt_entry_target **target)
115{
116	struct ip6t_log_info *loginfo = (struct ip6t_log_info *)(*target)->data;
117
118	switch (c) {
119	case '!':
120		if (*flags & IP6T_LOG_OPT_LEVEL)
121			exit_error(PARAMETER_PROBLEM,
122				   "Can't specify --log-level twice");
123
124		if (check_inverse(optarg, &invert, NULL, 0))
125			exit_error(PARAMETER_PROBLEM,
126				   "Unexpected `!' after --log-level");
127
128		loginfo->level = parse_level(optarg);
129		*flags |= IP6T_LOG_OPT_LEVEL;
130		break;
131
132	case '#':
133		if (*flags & IP6T_LOG_OPT_PREFIX)
134			exit_error(PARAMETER_PROBLEM,
135				   "Can't specify --log-prefix twice");
136
137		if (check_inverse(optarg, &invert, NULL, 0))
138			exit_error(PARAMETER_PROBLEM,
139				   "Unexpected `!' after --log-prefix");
140
141		if (strlen(optarg) > sizeof(loginfo->prefix) - 1)
142			exit_error(PARAMETER_PROBLEM,
143				   "Maximum prefix length %u for --log-prefix",
144				   (unsigned int)sizeof(loginfo->prefix) - 1);
145
146		if (strlen(optarg) == 0)
147			exit_error(PARAMETER_PROBLEM,
148				   "No prefix specified for --log-prefix");
149
150		if (strlen(optarg) != strlen(strtok(optarg, "\n")))
151			exit_error(PARAMETER_PROBLEM,
152				   "Newlines not allowed in --log-prefix");
153
154		strcpy(loginfo->prefix, optarg);
155		*flags |= IP6T_LOG_OPT_PREFIX;
156		break;
157
158	case '1':
159		if (*flags & IP6T_LOG_OPT_TCPSEQ)
160			exit_error(PARAMETER_PROBLEM,
161				   "Can't specify --log-tcp-sequence "
162				   "twice");
163
164		loginfo->logflags |= IP6T_LOG_TCPSEQ;
165		*flags |= IP6T_LOG_OPT_TCPSEQ;
166		break;
167
168	case '2':
169		if (*flags & IP6T_LOG_OPT_TCPOPT)
170			exit_error(PARAMETER_PROBLEM,
171				   "Can't specify --log-tcp-options twice");
172
173		loginfo->logflags |= IP6T_LOG_TCPOPT;
174		*flags |= IP6T_LOG_OPT_TCPOPT;
175		break;
176
177	case '3':
178		if (*flags & IP6T_LOG_OPT_IPOPT)
179			exit_error(PARAMETER_PROBLEM,
180				   "Can't specify --log-ip-options twice");
181
182		loginfo->logflags |= IP6T_LOG_IPOPT;
183		*flags |= IP6T_LOG_OPT_IPOPT;
184		break;
185
186	case '4':
187		if (*flags & IP6T_LOG_OPT_UID)
188			exit_error(PARAMETER_PROBLEM,
189				   "Can't specify --log-uid twice");
190
191		loginfo->logflags |= IP6T_LOG_UID;
192		*flags |= IP6T_LOG_OPT_UID;
193		break;
194
195	default:
196		return 0;
197	}
198
199	return 1;
200}
201
202/* Prints out the targinfo. */
203static void
204print(const void *ip,
205      const struct xt_entry_target *target,
206      int numeric)
207{
208	const struct ip6t_log_info *loginfo
209		= (const struct ip6t_log_info *)target->data;
210	unsigned int i = 0;
211
212	printf("LOG ");
213	if (numeric)
214		printf("flags %u level %u ",
215		       loginfo->logflags, loginfo->level);
216	else {
217		for (i = 0;
218		     i < sizeof(ip6t_log_names) / sizeof(struct ip6t_log_names);
219		     i++) {
220			if (loginfo->level == ip6t_log_names[i].level) {
221				printf("level %s ", ip6t_log_names[i].name);
222				break;
223			}
224		}
225		if (i == sizeof(ip6t_log_names) / sizeof(struct ip6t_log_names))
226			printf("UNKNOWN level %u ", loginfo->level);
227		if (loginfo->logflags & IP6T_LOG_TCPSEQ)
228			printf("tcp-sequence ");
229		if (loginfo->logflags & IP6T_LOG_TCPOPT)
230			printf("tcp-options ");
231		if (loginfo->logflags & IP6T_LOG_IPOPT)
232			printf("ip-options ");
233		if (loginfo->logflags & IP6T_LOG_UID)
234			printf("uid ");
235		if (loginfo->logflags & ~(IP6T_LOG_MASK))
236			printf("unknown-flags ");
237	}
238
239	if (strcmp(loginfo->prefix, "") != 0)
240		printf("prefix `%s' ", loginfo->prefix);
241}
242
243/* Saves the union ip6t_targinfo in parsable form to stdout. */
244static void
245save(const void *ip, const struct xt_entry_target *target)
246{
247	const struct ip6t_log_info *loginfo
248		= (const struct ip6t_log_info *)target->data;
249
250	if (strcmp(loginfo->prefix, "") != 0)
251		printf("--log-prefix \"%s\" ", loginfo->prefix);
252
253	if (loginfo->level != LOG_DEFAULT_LEVEL)
254		printf("--log-level %d ", loginfo->level);
255
256	if (loginfo->logflags & IP6T_LOG_TCPSEQ)
257		printf("--log-tcp-sequence ");
258	if (loginfo->logflags & IP6T_LOG_TCPOPT)
259		printf("--log-tcp-options ");
260	if (loginfo->logflags & IP6T_LOG_IPOPT)
261		printf("--log-ip-options ");
262	if (loginfo->logflags & IP6T_LOG_UID)
263		printf("--log-uid ");
264}
265
266static
267struct ip6tables_target log
268= {
269    .name          = "LOG",
270    .version       = IPTABLES_VERSION,
271    .size          = IP6T_ALIGN(sizeof(struct ip6t_log_info)),
272    .userspacesize = IP6T_ALIGN(sizeof(struct ip6t_log_info)),
273    .help          = &help,
274    .init          = &init,
275    .parse         = &parse,
276    .print         = &print,
277    .save          = &save,
278    .extra_opts    = opts
279};
280
281void _init(void)
282{
283	register_target6(&log);
284}
285