2 * Copyright (c) 2004-2008 Sam Leffler, Errno Consulting
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 * $FreeBSD: head/sys/net80211/ieee80211_acl.c 186302 2008-12-18 23:00:09Z sam $
30 * IEEE 802.11 MAC ACL support.
32 * When this module is loaded the sender address of each auth mgt
33 * frame is passed to the iac_check method and the module indicates
34 * if the frame should be accepted or rejected. If the policy is
35 * set to ACL_POLICY_OPEN then all frames are accepted w/o checking
36 * the address. Otherwise, the address is looked up in the database
37 * and if found the frame is either accepted (ACL_POLICY_ALLOW)
38 * or rejected (ACL_POLICY_DENT).
42 #include <sys/param.h>
43 #include <sys/kernel.h>
44 #include <sys/systm.h>
46 #include <sys/module.h>
47 #include <sys/queue.h>
49 #include <sys/socket.h>
52 #include <net/if_media.h>
53 #include <net/ethernet.h>
54 #include <net/route.h>
56 #include <netproto/802_11/ieee80211_var.h>
59 ACL_POLICY_OPEN = 0, /* open, don't check ACL's */
60 ACL_POLICY_ALLOW = 1, /* allow traffic from MAC */
61 ACL_POLICY_DENY = 2, /* deny traffic from MAC */
63 * NB: ACL_POLICY_RADIUS must be the same value as
64 * IEEE80211_MACCMD_POLICY_RADIUS because of the way
65 * acl_getpolicy() works.
67 ACL_POLICY_RADIUS = 7, /* defer to RADIUS ACL server */
70 #define ACL_HASHSIZE 32
73 TAILQ_ENTRY(acl) acl_list;
74 LIST_ENTRY(acl) acl_hash;
75 uint8_t acl_macaddr[IEEE80211_ADDR_LEN];
80 TAILQ_HEAD(, acl) as_list; /* list of all ACL's */
81 LIST_HEAD(, acl) as_hash[ACL_HASHSIZE];
82 struct ieee80211vap *as_vap;
85 /* simple hash is enough for variation of macaddr */
86 #define ACL_HASH(addr) \
87 (((const uint8_t *)(addr))[IEEE80211_ADDR_LEN - 1] % ACL_HASHSIZE)
89 MALLOC_DEFINE(M_80211_ACL, "acl", "802.11 station acl");
91 static int acl_free_all(struct ieee80211vap *);
93 /* number of references from net80211 layer */
97 acl_attach(struct ieee80211vap *vap)
101 as = (struct aclstate *) kmalloc(sizeof(struct aclstate),
102 M_80211_ACL, M_INTWAIT | M_ZERO);
105 TAILQ_INIT(&as->as_list);
106 as->as_policy = ACL_POLICY_OPEN;
109 nrefs++; /* NB: we assume caller locking */
114 acl_detach(struct ieee80211vap *vap)
116 struct aclstate *as = vap->iv_as;
118 KASSERT(nrefs > 0, ("imbalanced attach/detach"));
119 nrefs--; /* NB: we assume caller locking */
123 kfree(as, M_80211_ACL);
126 static __inline struct acl *
127 _find_acl(struct aclstate *as, const uint8_t *macaddr)
132 hash = ACL_HASH(macaddr);
133 LIST_FOREACH(acl, &as->as_hash[hash], acl_hash) {
134 if (IEEE80211_ADDR_EQ(acl->acl_macaddr, macaddr))
141 _acl_free(struct aclstate *as, struct acl *acl)
144 TAILQ_REMOVE(&as->as_list, acl, acl_list);
145 LIST_REMOVE(acl, acl_hash);
146 kfree(acl, M_80211_ACL);
151 acl_check(struct ieee80211vap *vap, const uint8_t mac[IEEE80211_ADDR_LEN])
153 struct aclstate *as = vap->iv_as;
155 switch (as->as_policy) {
156 case ACL_POLICY_OPEN:
157 case ACL_POLICY_RADIUS:
159 case ACL_POLICY_ALLOW:
160 return _find_acl(as, mac) != NULL;
161 case ACL_POLICY_DENY:
162 return _find_acl(as, mac) == NULL;
164 return 0; /* should not happen */
168 acl_add(struct ieee80211vap *vap, const uint8_t mac[IEEE80211_ADDR_LEN])
170 struct aclstate *as = vap->iv_as;
171 struct acl *acl, *new;
174 new = (struct acl *) kmalloc(sizeof(struct acl), M_80211_ACL, M_INTWAIT | M_ZERO);
176 IEEE80211_DPRINTF(vap, IEEE80211_MSG_ACL,
177 "ACL: add %6D failed, no memory\n", mac, ":");
182 hash = ACL_HASH(mac);
183 LIST_FOREACH(acl, &as->as_hash[hash], acl_hash) {
184 if (IEEE80211_ADDR_EQ(acl->acl_macaddr, mac)) {
185 kfree(new, M_80211_ACL);
186 IEEE80211_DPRINTF(vap, IEEE80211_MSG_ACL,
187 "ACL: add %6D failed, already present\n",
192 IEEE80211_ADDR_COPY(new->acl_macaddr, mac);
193 TAILQ_INSERT_TAIL(&as->as_list, new, acl_list);
194 LIST_INSERT_HEAD(&as->as_hash[hash], new, acl_hash);
197 IEEE80211_DPRINTF(vap, IEEE80211_MSG_ACL,
198 "ACL: add %6D\n", mac, ":");
203 acl_remove(struct ieee80211vap *vap, const uint8_t mac[IEEE80211_ADDR_LEN])
205 struct aclstate *as = vap->iv_as;
208 acl = _find_acl(as, mac);
212 IEEE80211_DPRINTF(vap, IEEE80211_MSG_ACL,
213 "ACL: remove %6D%s\n", mac, ":",
214 acl == NULL ? ", not present" : "");
216 return (acl == NULL ? ENOENT : 0);
220 acl_free_all(struct ieee80211vap *vap)
222 struct aclstate *as = vap->iv_as;
225 IEEE80211_DPRINTF(vap, IEEE80211_MSG_ACL, "ACL: %s\n", "free all");
227 while ((acl = TAILQ_FIRST(&as->as_list)) != NULL)
234 acl_setpolicy(struct ieee80211vap *vap, int policy)
236 struct aclstate *as = vap->iv_as;
238 IEEE80211_DPRINTF(vap, IEEE80211_MSG_ACL,
239 "ACL: set policy to %u\n", policy);
242 case IEEE80211_MACCMD_POLICY_OPEN:
243 as->as_policy = ACL_POLICY_OPEN;
245 case IEEE80211_MACCMD_POLICY_ALLOW:
246 as->as_policy = ACL_POLICY_ALLOW;
248 case IEEE80211_MACCMD_POLICY_DENY:
249 as->as_policy = ACL_POLICY_DENY;
251 case IEEE80211_MACCMD_POLICY_RADIUS:
252 as->as_policy = ACL_POLICY_RADIUS;
261 acl_getpolicy(struct ieee80211vap *vap)
263 struct aclstate *as = vap->iv_as;
265 return as->as_policy;
269 acl_setioctl(struct ieee80211vap *vap, struct ieee80211req *ireq)
276 acl_getioctl(struct ieee80211vap *vap, struct ieee80211req *ireq)
278 struct aclstate *as = vap->iv_as;
280 struct ieee80211req_maclist *ap;
283 switch (ireq->i_val) {
284 case IEEE80211_MACCMD_POLICY:
285 ireq->i_val = as->as_policy;
287 case IEEE80211_MACCMD_LIST:
288 space = as->as_nacls * IEEE80211_ADDR_LEN;
289 if (ireq->i_len == 0) {
290 ireq->i_len = space; /* return required space */
291 return 0; /* NB: must not error */
293 ap = (struct ieee80211req_maclist *) kmalloc(space,
298 TAILQ_FOREACH(acl, &as->as_list, acl_list) {
299 IEEE80211_ADDR_COPY(ap[i].ml_macaddr, acl->acl_macaddr);
302 if (ireq->i_len >= space) {
303 error = copyout(ap, ireq->i_data, space);
306 error = copyout(ap, ireq->i_data, ireq->i_len);
313 static const struct ieee80211_aclator mac = {
315 .iac_attach = acl_attach,
316 .iac_detach = acl_detach,
317 .iac_check = acl_check,
319 .iac_remove = acl_remove,
320 .iac_flush = acl_free_all,
321 .iac_setpolicy = acl_setpolicy,
322 .iac_getpolicy = acl_getpolicy,
323 .iac_setioctl = acl_setioctl,
324 .iac_getioctl = acl_getioctl,
326 IEEE80211_ACL_MODULE(wlan_acl, mac, 1);