This repo is obsolete, please see git://git.code.sf.net/p/dummynet/code@master
[ipfw.git] / dummynet2 / ip_fw_log.c
1 /*-
2  * Copyright (c) 2002-2009 Luigi Rizzo, Universita` di Pisa
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
17  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23  * SUCH DAMAGE.
24  */
25
26 #include <sys/cdefs.h>
27 __FBSDID("$FreeBSD: head/sys/netinet/ipfw/ip_fw_log.c 209845 2010-07-09 11:27:33Z glebius $");
28
29 /*
30  * Logging support for ipfw
31  */
32
33 #if !defined(KLD_MODULE)
34 #include "opt_ipfw.h"
35 #include "opt_ipdivert.h"
36 #include "opt_ipdn.h"
37 #include "opt_inet.h"
38 #ifndef INET
39 #error IPFIREWALL requires INET.
40 #endif /* INET */
41 #endif
42 #include "opt_inet6.h"
43 #include "opt_ipsec.h"
44
45 #include <sys/param.h>
46 #include <sys/systm.h>
47 #include <sys/mbuf.h>
48 #include <sys/kernel.h>
49 #include <sys/socket.h>
50 #include <sys/sysctl.h>
51 #include <sys/syslog.h>
52 #include <net/ethernet.h> /* for ETHERTYPE_IP */
53 #include <net/if.h>
54 #include <net/vnet.h>
55 #include <net/if_types.h>       /* for IFT_ETHER */
56 #include <net/bpf.h>            /* for BPF */
57
58 #include <netinet/in.h>
59 #include <netinet/ip.h>
60 #include <netinet/ip_icmp.h>
61 #include <netinet/ip_var.h>
62 #include <netinet/ip_fw.h>
63 #include <netinet/ipfw/ip_fw_private.h>
64 #include <netinet/tcp_var.h>
65 #include <netinet/udp.h>
66
67 #include <netinet/ip6.h>
68 #include <netinet/icmp6.h>
69 #ifdef INET6
70 #include <netinet6/in6_var.h>   /* ip6_sprintf() */
71 #endif
72
73 #ifdef MAC
74 #include <security/mac/mac_framework.h>
75 #endif
76
77 /*
78  * L3HDR maps an ipv4 pointer into a layer3 header pointer of type T
79  * Other macros just cast void * into the appropriate type
80  */
81 #define L3HDR(T, ip)    ((T *)((u_int32_t *)(ip) + (ip)->ip_hl))
82 #define TCP(p)          ((struct tcphdr *)(p))
83 #define SCTP(p)         ((struct sctphdr *)(p))
84 #define UDP(p)          ((struct udphdr *)(p))
85 #define ICMP(p)         ((struct icmphdr *)(p))
86 #define ICMP6(p)        ((struct icmp6_hdr *)(p))
87
88 #define SNPARGS(buf, len) buf + len, sizeof(buf) > len ? sizeof(buf) - len : 0
89 #define SNP(buf) buf, sizeof(buf)
90
91 #ifdef WITHOUT_BPF
92 void
93 ipfw_log_bpf(int onoff)
94 {
95 }
96 #else /* !WITHOUT_BPF */
97 static struct ifnet *log_if;    /* hook to attach to bpf */
98
99 /* we use this dummy function for all ifnet callbacks */
100 static int
101 log_dummy(struct ifnet *ifp, u_long cmd, caddr_t addr)
102 {
103         return EINVAL;
104 }
105
106 static int
107 ipfw_log_output(struct ifnet *ifp, struct mbuf *m,
108         struct sockaddr *dst, struct route *ro)
109 {
110         if (m != NULL)
111                 m_freem(m);
112         return EINVAL;
113 }
114
115 static void
116 ipfw_log_start(struct ifnet* ifp)
117 {
118         panic("ipfw_log_start() must not be called");
119 }
120
121 static const u_char ipfwbroadcastaddr[6] =
122         { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
123
124 void
125 ipfw_log_bpf(int onoff)
126 {
127         struct ifnet *ifp;
128
129         if (onoff) {
130                 if (log_if)
131                         return;
132                 ifp = if_alloc(IFT_ETHER);
133                 if (ifp == NULL)
134                         return;
135                 if_initname(ifp, "ipfw", 0);
136                 ifp->if_mtu = 65536;
137                 ifp->if_flags = IFF_UP | IFF_SIMPLEX | IFF_MULTICAST;
138                 ifp->if_init = (void *)log_dummy;
139                 ifp->if_ioctl = log_dummy;
140                 ifp->if_start = ipfw_log_start;
141                 ifp->if_output = ipfw_log_output;
142                 ifp->if_addrlen = 6;
143                 ifp->if_hdrlen = 14;
144                 if_attach(ifp);
145                 ifp->if_broadcastaddr = ipfwbroadcastaddr;
146                 ifp->if_baudrate = IF_Mbps(10);
147                 bpfattach(ifp, DLT_EN10MB, 14);
148                 log_if = ifp;
149         } else {
150                 if (log_if) {
151                         ether_ifdetach(log_if);
152                         if_free(log_if);
153                 }
154                 log_if = NULL;
155         }
156 }
157 #endif /* !WITHOUT_BPF */
158
159 /*
160  * We enter here when we have a rule with O_LOG.
161  * XXX this function alone takes about 2Kbytes of code!
162  */
163 void
164 ipfw_log(struct ip_fw *f, u_int hlen, struct ip_fw_args *args,
165     struct mbuf *m, struct ifnet *oif, u_short offset, uint32_t tablearg,
166     struct ip *ip)
167 {
168         char *action;
169         int limit_reached = 0;
170         char action2[40], proto[128], fragment[32];
171
172         if (V_fw_verbose == 0) {
173 #ifndef WITHOUT_BPF
174
175                 if (log_if == NULL || log_if->if_bpf == NULL)
176                         return;
177
178                 if (args->eh) /* layer2, use orig hdr */
179                         BPF_MTAP2(log_if, args->eh, ETHER_HDR_LEN, m);
180                 else
181                         /* Add fake header. Later we will store
182                          * more info in the header.
183                          */
184                         BPF_MTAP2(log_if, "DDDDDDSSSSSS\x08\x00", ETHER_HDR_LEN, m);
185 #endif /* !WITHOUT_BPF */
186                 return;
187         }
188         /* the old 'log' function */
189         fragment[0] = '\0';
190         proto[0] = '\0';
191
192         if (f == NULL) {        /* bogus pkt */
193                 if (V_verbose_limit != 0 && V_norule_counter >= V_verbose_limit)
194                         return;
195                 V_norule_counter++;
196                 if (V_norule_counter == V_verbose_limit)
197                         limit_reached = V_verbose_limit;
198                 action = "Refuse";
199         } else {        /* O_LOG is the first action, find the real one */
200                 ipfw_insn *cmd = ACTION_PTR(f);
201                 ipfw_insn_log *l = (ipfw_insn_log *)cmd;
202
203                 if (l->max_log != 0 && l->log_left == 0)
204                         return;
205                 l->log_left--;
206                 if (l->log_left == 0)
207                         limit_reached = l->max_log;
208                 cmd += F_LEN(cmd);      /* point to first action */
209                 if (cmd->opcode == O_ALTQ) {
210                         ipfw_insn_altq *altq = (ipfw_insn_altq *)cmd;
211
212                         snprintf(SNPARGS(action2, 0), "Altq %d",
213                                 altq->qid);
214                         cmd += F_LEN(cmd);
215                 }
216                 if (cmd->opcode == O_PROB)
217                         cmd += F_LEN(cmd);
218
219                 if (cmd->opcode == O_TAG)
220                         cmd += F_LEN(cmd);
221
222                 action = action2;
223                 switch (cmd->opcode) {
224                 case O_DENY:
225                         action = "Deny";
226                         break;
227
228                 case O_REJECT:
229                         if (cmd->arg1==ICMP_REJECT_RST)
230                                 action = "Reset";
231                         else if (cmd->arg1==ICMP_UNREACH_HOST)
232                                 action = "Reject";
233                         else
234                                 snprintf(SNPARGS(action2, 0), "Unreach %d",
235                                         cmd->arg1);
236                         break;
237
238                 case O_UNREACH6:
239                         if (cmd->arg1==ICMP6_UNREACH_RST)
240                                 action = "Reset";
241                         else
242                                 snprintf(SNPARGS(action2, 0), "Unreach %d",
243                                         cmd->arg1);
244                         break;
245
246                 case O_ACCEPT:
247                         action = "Accept";
248                         break;
249                 case O_COUNT:
250                         action = "Count";
251                         break;
252                 case O_DIVERT:
253                         snprintf(SNPARGS(action2, 0), "Divert %d",
254                                 cmd->arg1);
255                         break;
256                 case O_TEE:
257                         snprintf(SNPARGS(action2, 0), "Tee %d",
258                                 cmd->arg1);
259                         break;
260                 case O_SETFIB:
261                         snprintf(SNPARGS(action2, 0), "SetFib %d",
262                                 cmd->arg1);
263                         break;
264                 case O_SKIPTO:
265                         snprintf(SNPARGS(action2, 0), "SkipTo %d",
266                                 cmd->arg1);
267                         break;
268                 case O_PIPE:
269                         snprintf(SNPARGS(action2, 0), "Pipe %d",
270                                 cmd->arg1);
271                         break;
272                 case O_QUEUE:
273                         snprintf(SNPARGS(action2, 0), "Queue %d",
274                                 cmd->arg1);
275                         break;
276                 case O_FORWARD_IP: {
277                         ipfw_insn_sa *sa = (ipfw_insn_sa *)cmd;
278                         int len;
279                         struct in_addr dummyaddr;
280                         if (sa->sa.sin_addr.s_addr == INADDR_ANY)
281                                 dummyaddr.s_addr = htonl(tablearg);
282                         else
283                                 dummyaddr.s_addr = sa->sa.sin_addr.s_addr;
284
285                         len = snprintf(SNPARGS(action2, 0), "Forward to %s",
286                                 inet_ntoa(dummyaddr));
287
288                         if (sa->sa.sin_port)
289                                 snprintf(SNPARGS(action2, len), ":%d",
290                                     sa->sa.sin_port);
291                         }
292                         break;
293                 case O_NETGRAPH:
294                         snprintf(SNPARGS(action2, 0), "Netgraph %d",
295                                 cmd->arg1);
296                         break;
297                 case O_NGTEE:
298                         snprintf(SNPARGS(action2, 0), "Ngtee %d",
299                                 cmd->arg1);
300                         break;
301                 case O_NAT:
302                         action = "Nat";
303                         break;
304                 case O_REASS:
305                         action = "Reass";
306                         break;
307                 default:
308                         action = "UNKNOWN";
309                         break;
310                 }
311         }
312
313         if (hlen == 0) {        /* non-ip */
314                 snprintf(SNPARGS(proto, 0), "MAC");
315
316         } else {
317                 int len;
318 #ifdef INET6
319                 char src[INET6_ADDRSTRLEN + 2], dst[INET6_ADDRSTRLEN + 2];
320 #else
321                 char src[INET_ADDRSTRLEN], dst[INET_ADDRSTRLEN];
322 #endif
323                 struct icmphdr *icmp;
324                 struct tcphdr *tcp;
325                 struct udphdr *udp;
326 #ifdef INET6
327                 struct ip6_hdr *ip6 = NULL;
328                 struct icmp6_hdr *icmp6;
329 #endif
330                 src[0] = '\0';
331                 dst[0] = '\0';
332 #ifdef INET6
333                 if (IS_IP6_FLOW_ID(&(args->f_id))) {
334                         char ip6buf[INET6_ADDRSTRLEN];
335                         snprintf(src, sizeof(src), "[%s]",
336                             ip6_sprintf(ip6buf, &args->f_id.src_ip6));
337                         snprintf(dst, sizeof(dst), "[%s]",
338                             ip6_sprintf(ip6buf, &args->f_id.dst_ip6));
339
340                         ip6 = (struct ip6_hdr *)ip;
341                         tcp = (struct tcphdr *)(((char *)ip) + hlen);
342                         udp = (struct udphdr *)(((char *)ip) + hlen);
343                 } else
344 #endif
345                 {
346                         tcp = L3HDR(struct tcphdr, ip);
347                         udp = L3HDR(struct udphdr, ip);
348
349                         inet_ntoa_r(ip->ip_src, src);
350                         inet_ntoa_r(ip->ip_dst, dst);
351                 }
352
353                 switch (args->f_id.proto) {
354                 case IPPROTO_TCP:
355                         len = snprintf(SNPARGS(proto, 0), "TCP %s", src);
356                         if (offset == 0)
357                                 snprintf(SNPARGS(proto, len), ":%d %s:%d",
358                                     ntohs(tcp->th_sport),
359                                     dst,
360                                     ntohs(tcp->th_dport));
361                         else
362                                 snprintf(SNPARGS(proto, len), " %s", dst);
363                         break;
364
365                 case IPPROTO_UDP:
366                         len = snprintf(SNPARGS(proto, 0), "UDP %s", src);
367                         if (offset == 0)
368                                 snprintf(SNPARGS(proto, len), ":%d %s:%d",
369                                     ntohs(udp->uh_sport),
370                                     dst,
371                                     ntohs(udp->uh_dport));
372                         else
373                                 snprintf(SNPARGS(proto, len), " %s", dst);
374                         break;
375
376                 case IPPROTO_ICMP:
377                         icmp = L3HDR(struct icmphdr, ip);
378                         if (offset == 0)
379                                 len = snprintf(SNPARGS(proto, 0),
380                                     "ICMP:%u.%u ",
381                                     icmp->icmp_type, icmp->icmp_code);
382                         else
383                                 len = snprintf(SNPARGS(proto, 0), "ICMP ");
384                         len += snprintf(SNPARGS(proto, len), "%s", src);
385                         snprintf(SNPARGS(proto, len), " %s", dst);
386                         break;
387 #ifdef INET6
388                 case IPPROTO_ICMPV6:
389                         icmp6 = (struct icmp6_hdr *)(((char *)ip) + hlen);
390                         if (offset == 0)
391                                 len = snprintf(SNPARGS(proto, 0),
392                                     "ICMPv6:%u.%u ",
393                                     icmp6->icmp6_type, icmp6->icmp6_code);
394                         else
395                                 len = snprintf(SNPARGS(proto, 0), "ICMPv6 ");
396                         len += snprintf(SNPARGS(proto, len), "%s", src);
397                         snprintf(SNPARGS(proto, len), " %s", dst);
398                         break;
399 #endif
400                 default:
401                         len = snprintf(SNPARGS(proto, 0), "P:%d %s",
402                             args->f_id.proto, src);
403                         snprintf(SNPARGS(proto, len), " %s", dst);
404                         break;
405                 }
406
407 #ifdef INET6
408                 if (IS_IP6_FLOW_ID(&(args->f_id))) {
409                         if (offset & (IP6F_OFF_MASK | IP6F_MORE_FRAG))
410                                 snprintf(SNPARGS(fragment, 0),
411                                     " (frag %08x:%d@%d%s)",
412                                     args->f_id.extra,
413                                     ntohs(ip6->ip6_plen) - hlen,
414                                     ntohs(offset & IP6F_OFF_MASK) << 3,
415                                     (offset & IP6F_MORE_FRAG) ? "+" : "");
416                 } else
417 #endif
418                 {
419                         int ipoff, iplen;
420                         ipoff = ntohs(ip->ip_off);
421                         iplen = ntohs(ip->ip_len);
422                         if (ipoff & (IP_MF | IP_OFFMASK))
423                                 snprintf(SNPARGS(fragment, 0),
424                                     " (frag %d:%d@%d%s)",
425                                     ntohs(ip->ip_id), iplen - (ip->ip_hl << 2),
426                                     offset << 3,
427                                     (ipoff & IP_MF) ? "+" : "");
428                 }
429         }
430 #ifdef __FreeBSD__
431         if (oif || m->m_pkthdr.rcvif)
432                 log(LOG_SECURITY | LOG_INFO,
433                     "ipfw: %d %s %s %s via %s%s\n",
434                     f ? f->rulenum : -1,
435                     action, proto, oif ? "out" : "in",
436                     oif ? oif->if_xname : m->m_pkthdr.rcvif->if_xname,
437                     fragment);
438         else
439 #endif
440                 log(LOG_SECURITY | LOG_INFO,
441                     "ipfw: %d %s %s [no if info]%s\n",
442                     f ? f->rulenum : -1,
443                     action, proto, fragment);
444         if (limit_reached)
445                 log(LOG_SECURITY | LOG_NOTICE,
446                     "ipfw: limit %d reached on entry %d\n",
447                     limit_reached, f ? f->rulenum : -1);
448 }
449 /* end of file */