2 * SPDX-License-Identifier: BSD-2-Clause
4 * Copyright (c) 2011 Adrian Chadd, Xenion Lty Ltd
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 * net80211 fast-logging support, primarily for debugging.
31 * This implements a single debugging queue which includes
32 * per-device enumeration where needed.
37 #include <sys/param.h>
38 #include <sys/systm.h>
40 #include <sys/malloc.h>
41 #include <sys/endian.h>
42 #include <sys/kernel.h>
43 #include <sys/sysctl.h>
46 #include <sys/ucred.h>
49 #include <sys/socket.h>
52 #include <net/if_var.h>
53 #include <net/if_media.h>
54 #include <net/ethernet.h>
56 #include <net80211/ieee80211_var.h>
57 #include <net80211/ieee80211_freebsd.h>
58 #include <net80211/ieee80211_alq.h>
60 static struct alq
*ieee80211_alq
;
61 static int ieee80211_alq_lost
;
62 static int ieee80211_alq_logged
;
63 static char ieee80211_alq_logfile
[MAXPATHLEN
] = "/tmp/net80211.log";
64 static unsigned int ieee80211_alq_qsize
= 64*1024;
67 ieee80211_alq_setlogging(int enable
)
73 alq_close(ieee80211_alq
);
75 error
= alq_open(&ieee80211_alq
,
76 ieee80211_alq_logfile
,
79 ieee80211_alq_qsize
, 0);
80 ieee80211_alq_lost
= 0;
81 ieee80211_alq_logged
= 0;
82 printf("net80211: logging to %s enabled; "
83 "struct size %d bytes\n",
84 ieee80211_alq_logfile
,
85 (int) sizeof(struct ieee80211_alq_rec
));
88 alq_close(ieee80211_alq
);
90 printf("net80211: logging disabled\n");
97 sysctl_ieee80211_alq_log(SYSCTL_HANDLER_ARGS
)
101 enable
= (ieee80211_alq
!= NULL
);
102 error
= sysctl_handle_int(oidp
, &enable
, 0, req
);
103 if (error
|| !req
->newptr
)
106 return (ieee80211_alq_setlogging(enable
));
109 SYSCTL_PROC(_net_wlan
, OID_AUTO
, alq
,
110 CTLTYPE_INT
| CTLFLAG_RW
| CTLFLAG_NEEDGIANT
, 0, 0,
111 sysctl_ieee80211_alq_log
, "I",
112 "Enable net80211 alq logging");
113 SYSCTL_INT(_net_wlan
, OID_AUTO
, alq_size
, CTLFLAG_RW
,
114 &ieee80211_alq_qsize
, 0, "In-memory log size (bytes)");
115 SYSCTL_INT(_net_wlan
, OID_AUTO
, alq_lost
, CTLFLAG_RW
,
116 &ieee80211_alq_lost
, 0, "Debugging operations not logged");
117 SYSCTL_INT(_net_wlan
, OID_AUTO
, alq_logged
, CTLFLAG_RW
,
118 &ieee80211_alq_logged
, 0, "Debugging operations logged");
121 ieee80211_alq_get(size_t len
)
125 ale
= alq_getn(ieee80211_alq
, len
+ sizeof(struct ieee80211_alq_rec
),
128 ieee80211_alq_lost
++;
130 ieee80211_alq_logged
++;
135 ieee80211_alq_log(struct ieee80211com
*ic
, struct ieee80211vap
*vap
,
136 uint32_t op
, uint32_t flags
, uint16_t srcid
, const uint8_t *src
,
140 struct ieee80211_alq_rec
*r
;
143 /* Don't log if we're disabled */
144 if (ieee80211_alq
== NULL
)
147 if (len
> IEEE80211_ALQ_MAX_PAYLOAD
)
150 ale
= ieee80211_alq_get(len
);
154 r
= (struct ieee80211_alq_rec
*) ale
->ae_data
;
155 dst
= ((char *) r
) + sizeof(struct ieee80211_alq_rec
);
156 r
->r_timestamp
= htobe64(ticks
);
158 r
->r_wlan
= htobe16(vap
->iv_ifp
->if_dunit
);
162 r
->r_src
= htobe16(srcid
);
163 r
->r_flags
= htobe32(flags
);
164 r
->r_op
= htobe32(op
);
165 r
->r_len
= htobe32(len
+ sizeof(struct ieee80211_alq_rec
));
166 r
->r_threadid
= htobe32((uint32_t) curthread
->td_tid
);
169 memcpy(dst
, src
, len
);
171 alq_post(ieee80211_alq
, ale
);