[NETFILTER]: nf_log: add netfilter gcc printf format checking
[linux-block.git] / net / bridge / netfilter / ebt_log.c
CommitLineData
1da177e4
LT
1/*
2 * ebt_log
3 *
4 * Authors:
5 * Bart De Schuymer <bdschuym@pandora.be>
d5228a4f 6 * Harald Welte <laforge@netfilter.org>
1da177e4
LT
7 *
8 * April, 2002
9 *
10 */
11
12#include <linux/netfilter_bridge/ebtables.h>
13#include <linux/netfilter_bridge/ebt_log.h>
d5228a4f 14#include <linux/netfilter.h>
1da177e4
LT
15#include <linux/module.h>
16#include <linux/ip.h>
2e4e6a17 17#include <linux/in.h>
1da177e4
LT
18#include <linux/if_arp.h>
19#include <linux/spinlock.h>
f01ffbd6 20#include <net/netfilter/nf_log.h>
1da177e4
LT
21
22static DEFINE_SPINLOCK(ebt_log_lock);
23
24static int ebt_log_check(const char *tablename, unsigned int hookmask,
25 const struct ebt_entry *e, void *data, unsigned int datalen)
26{
27 struct ebt_log_info *info = (struct ebt_log_info *)data;
28
29 if (datalen != EBT_ALIGN(sizeof(struct ebt_log_info)))
30 return -EINVAL;
31 if (info->bitmask & ~EBT_LOG_MASK)
32 return -EINVAL;
33 if (info->loglevel >= 8)
34 return -EINVAL;
35 info->prefix[EBT_LOG_PREFIX_SIZE - 1] = '\0';
36 return 0;
37}
38
39struct tcpudphdr
40{
47c183fa
AV
41 __be16 src;
42 __be16 dst;
1da177e4
LT
43};
44
45struct arppayload
46{
47 unsigned char mac_src[ETH_ALEN];
48 unsigned char ip_src[4];
49 unsigned char mac_dst[ETH_ALEN];
50 unsigned char ip_dst[4];
51};
52
53static void print_MAC(unsigned char *p)
54{
55 int i;
56
57 for (i = 0; i < ETH_ALEN; i++, p++)
58 printk("%02x%c", *p, i == ETH_ALEN - 1 ? ' ':':');
59}
60
61#define myNIPQUAD(a) a[0], a[1], a[2], a[3]
d5228a4f
BDS
62static void
63ebt_log_packet(unsigned int pf, unsigned int hooknum,
64 const struct sk_buff *skb, const struct net_device *in,
65 const struct net_device *out, const struct nf_loginfo *loginfo,
66 const char *prefix)
1da177e4 67{
d5228a4f 68 unsigned int bitmask;
1da177e4 69
1da177e4 70 spin_lock_bh(&ebt_log_lock);
d5228a4f
BDS
71 printk("<%c>%s IN=%s OUT=%s MAC source = ", '0' + loginfo->u.log.level,
72 prefix, in ? in->name : "", out ? out->name : "");
1da177e4 73
1da177e4
LT
74 print_MAC(eth_hdr(skb)->h_source);
75 printk("MAC dest = ");
76 print_MAC(eth_hdr(skb)->h_dest);
77
78 printk("proto = 0x%04x", ntohs(eth_hdr(skb)->h_proto));
79
d5228a4f
BDS
80 if (loginfo->type == NF_LOG_TYPE_LOG)
81 bitmask = loginfo->u.log.logflags;
82 else
83 bitmask = NF_LOG_MASK;
84
85 if ((bitmask & EBT_LOG_IP) && eth_hdr(skb)->h_proto ==
1da177e4
LT
86 htons(ETH_P_IP)){
87 struct iphdr _iph, *ih;
88
89 ih = skb_header_pointer(skb, 0, sizeof(_iph), &_iph);
90 if (ih == NULL) {
91 printk(" INCOMPLETE IP header");
92 goto out;
93 }
d5228a4f
BDS
94 printk(" IP SRC=%u.%u.%u.%u IP DST=%u.%u.%u.%u, IP "
95 "tos=0x%02X, IP proto=%d", NIPQUAD(ih->saddr),
96 NIPQUAD(ih->daddr), ih->tos, ih->protocol);
1da177e4 97 if (ih->protocol == IPPROTO_TCP ||
ab67a4d5 98 ih->protocol == IPPROTO_UDP ||
a8d0f952 99 ih->protocol == IPPROTO_UDPLITE ||
ab67a4d5
PM
100 ih->protocol == IPPROTO_SCTP ||
101 ih->protocol == IPPROTO_DCCP) {
1da177e4
LT
102 struct tcpudphdr _ports, *pptr;
103
104 pptr = skb_header_pointer(skb, ih->ihl*4,
105 sizeof(_ports), &_ports);
106 if (pptr == NULL) {
107 printk(" INCOMPLETE TCP/UDP header");
108 goto out;
109 }
110 printk(" SPT=%u DPT=%u", ntohs(pptr->src),
111 ntohs(pptr->dst));
112 }
113 goto out;
114 }
115
d5228a4f 116 if ((bitmask & EBT_LOG_ARP) &&
1da177e4
LT
117 ((eth_hdr(skb)->h_proto == htons(ETH_P_ARP)) ||
118 (eth_hdr(skb)->h_proto == htons(ETH_P_RARP)))) {
119 struct arphdr _arph, *ah;
120
121 ah = skb_header_pointer(skb, 0, sizeof(_arph), &_arph);
122 if (ah == NULL) {
123 printk(" INCOMPLETE ARP header");
124 goto out;
125 }
126 printk(" ARP HTYPE=%d, PTYPE=0x%04x, OPCODE=%d",
127 ntohs(ah->ar_hrd), ntohs(ah->ar_pro),
128 ntohs(ah->ar_op));
129
130 /* If it's for Ethernet and the lengths are OK,
131 * then log the ARP payload */
132 if (ah->ar_hrd == htons(1) &&
133 ah->ar_hln == ETH_ALEN &&
47c183fa 134 ah->ar_pln == sizeof(__be32)) {
1da177e4
LT
135 struct arppayload _arpp, *ap;
136
85c1937b 137 ap = skb_header_pointer(skb, sizeof(_arph),
1da177e4
LT
138 sizeof(_arpp), &_arpp);
139 if (ap == NULL) {
140 printk(" INCOMPLETE ARP payload");
141 goto out;
142 }
143 printk(" ARP MAC SRC=");
144 print_MAC(ap->mac_src);
145 printk(" ARP IP SRC=%u.%u.%u.%u",
146 myNIPQUAD(ap->ip_src));
147 printk(" ARP MAC DST=");
148 print_MAC(ap->mac_dst);
149 printk(" ARP IP DST=%u.%u.%u.%u",
150 myNIPQUAD(ap->ip_dst));
151 }
152 }
153out:
154 printk("\n");
155 spin_unlock_bh(&ebt_log_lock);
d5228a4f
BDS
156
157}
158
159static void ebt_log(const struct sk_buff *skb, unsigned int hooknr,
160 const struct net_device *in, const struct net_device *out,
161 const void *data, unsigned int datalen)
162{
163 struct ebt_log_info *info = (struct ebt_log_info *)data;
164 struct nf_loginfo li;
165
166 li.type = NF_LOG_TYPE_LOG;
167 li.u.log.level = info->loglevel;
168 li.u.log.logflags = info->bitmask;
169
bafac2a5
PM
170 if (info->bitmask & EBT_LOG_NFLOG)
171 nf_log_packet(PF_BRIDGE, hooknr, skb, in, out, &li,
9d6f229f 172 "%s", info->prefix);
bafac2a5
PM
173 else
174 ebt_log_packet(PF_BRIDGE, hooknr, skb, in, out, &li,
9d6f229f 175 info->prefix);
1da177e4
LT
176}
177
178static struct ebt_watcher log =
179{
180 .name = EBT_LOG_WATCHER,
181 .watcher = ebt_log,
182 .check = ebt_log_check,
183 .me = THIS_MODULE,
184};
185
7b2f9631 186static const struct nf_logger ebt_log_logger = {
d5228a4f
BDS
187 .name = "ebt_log",
188 .logfn = &ebt_log_packet,
189 .me = THIS_MODULE,
190};
191
65b4b4e8 192static int __init ebt_log_init(void)
1da177e4 193{
d5228a4f
BDS
194 int ret;
195
196 ret = ebt_register_watcher(&log);
197 if (ret < 0)
198 return ret;
7e2acc7e
PM
199 nf_log_register(PF_BRIDGE, &ebt_log_logger);
200 return 0;
1da177e4
LT
201}
202
65b4b4e8 203static void __exit ebt_log_fini(void)
1da177e4 204{
e92ad99c 205 nf_log_unregister(&ebt_log_logger);
1da177e4
LT
206 ebt_unregister_watcher(&log);
207}
208
65b4b4e8
AM
209module_init(ebt_log_init);
210module_exit(ebt_log_fini);
1da177e4 211MODULE_LICENSE("GPL");