2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
28 /* $NetBSD: if_media.c,v 1.1 1997/03/17 02:55:15 thorpej Exp $ */
29 /* $FreeBSD: src/sys/net/if_media.c,v 1.9.2.4 2001/07/04 00:12:38 brooks Exp $ */
33 * Jonathan Stone and Jason R. Thorpe. All rights reserved.
35 * This software is derived from information provided by Matt Thomas.
37 * Redistribution and use in source and binary forms, with or without
38 * modification, are permitted provided that the following conditions
40 * 1. Redistributions of source code must retain the above copyright
41 * notice, this list of conditions and the following disclaimer.
42 * 2. Redistributions in binary form must reproduce the above copyright
43 * notice, this list of conditions and the following disclaimer in the
44 * documentation and/or other materials provided with the distribution.
45 * 3. All advertising materials mentioning features or use of this software
46 * must display the following acknowledgement:
47 * This product includes software developed by Jonathan Stone
48 * and Jason R. Thorpe for the NetBSD Project.
49 * 4. The names of the authors may not be used to endorse or promote products
50 * derived from this software without specific prior written permission.
52 * THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR
53 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
54 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
55 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
56 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
57 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
58 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
59 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
60 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
61 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
66 * BSD/OS-compatible network interface media selection.
68 * Where it is safe to do so, this code strays slightly from the BSD/OS
69 * design. Software which uses the API (device drivers, basically)
70 * shouldn't notice any difference.
72 * Many thanks to Matt Thomas for providing the information necessary
73 * to implement this interface.
76 #include <sys/param.h>
77 #include <sys/systm.h>
78 #include <sys/socket.h>
79 #include <sys/sockio.h>
80 #include <sys/malloc.h>
83 #include <net/if_media.h>
86 * Compile-time options:
88 * turn on implementation-level debug printfs.
89 * Useful for debugging newly-ported drivers.
92 static struct ifmedia_entry
*ifmedia_match(struct ifmedia
*ifm
,
96 int ifmedia_debug
= 0;
97 static void ifmedia_printword(int);
101 * Initialize if_media struct for a specific interface instance.
104 ifmedia_init(ifm
, dontcare_mask
, change_callback
, status_callback
)
107 ifm_change_cb_t change_callback
;
108 ifm_stat_cb_t status_callback
;
111 LIST_INIT(&ifm
->ifm_list
);
114 ifm
->ifm_mask
= dontcare_mask
; /* IF don't-care bits */
115 ifm
->ifm_change
= change_callback
;
116 ifm
->ifm_status
= status_callback
;
120 ifmedia_removeall(ifm
)
123 struct ifmedia_entry
*entry
;
125 for (entry
= LIST_FIRST(&ifm
->ifm_list
); entry
;
126 entry
= LIST_FIRST(&ifm
->ifm_list
)) {
127 LIST_REMOVE(entry
, ifm_list
);
128 FREE(entry
, M_IFADDR
);
133 * Add a media configuration to the list of supported media
134 * for a specific interface instance.
137 ifmedia_add(ifm
, mword
, data
, aux
)
143 register struct ifmedia_entry
*entry
;
148 printf("ifmedia_add: null ifm\n");
151 printf("Adding entry for ");
152 ifmedia_printword(mword
);
156 entry
= _MALLOC(sizeof(*entry
), M_IFADDR
, M_NOWAIT
);
158 panic("ifmedia_add: can't malloc entry");
160 entry
->ifm_media
= mword
;
161 entry
->ifm_data
= data
;
162 entry
->ifm_aux
= aux
;
164 LIST_INSERT_HEAD(&ifm
->ifm_list
, entry
, ifm_list
);
168 * Add an array of media configurations to the list of
169 * supported media for a specific interface instance.
172 ifmedia_list_add(ifm
, lp
, count
)
174 struct ifmedia_entry
*lp
;
179 for (i
= 0; i
< count
; i
++)
180 ifmedia_add(ifm
, lp
[i
].ifm_media
, lp
[i
].ifm_data
,
185 * Set the default active media.
187 * Called by device-specific code which is assumed to have already
188 * selected the default media in hardware. We do _not_ call the
189 * media-change callback.
192 ifmedia_set(ifm
, target
)
197 struct ifmedia_entry
*match
;
199 match
= ifmedia_match(ifm
, target
, ifm
->ifm_mask
);
202 printf("ifmedia_set: no match for 0x%x/0x%x\n",
203 target
, ~ifm
->ifm_mask
);
204 panic("ifmedia_set");
206 ifm
->ifm_cur
= match
;
210 printf("ifmedia_set: target ");
211 ifmedia_printword(target
);
212 printf("ifmedia_set: setting to ");
213 ifmedia_printword(ifm
->ifm_cur
->ifm_media
);
219 * Device-independent media ioctl support function.
228 struct ifmedia_entry
*match
;
229 struct ifmediareq
*ifmr
= (struct ifmediareq
*) ifr
;
230 int error
= 0, sticky
;
232 if (ifp
== NULL
|| ifr
== NULL
|| ifm
== NULL
)
238 * Set the current media.
242 struct ifmedia_entry
*oldentry
;
244 int newmedia
= ifr
->ifr_media
;
246 match
= ifmedia_match(ifm
, newmedia
, ifm
->ifm_mask
);
251 "ifmedia_ioctl: no media found for 0x%x\n",
259 * If no change, we're done.
260 * XXX Automedia may invole software intervention.
261 * Keep going in case the the connected media changed.
262 * Similarly, if best match changed (kernel debugger?).
264 if ((IFM_SUBTYPE(newmedia
) != IFM_AUTO
) &&
265 (newmedia
== ifm
->ifm_media
) &&
266 (match
== ifm
->ifm_cur
))
270 * We found a match, now make the driver switch to it.
271 * Make sure to preserve our old media type in case the
272 * driver can't switch.
276 printf("ifmedia_ioctl: switching %s to ",
278 ifmedia_printword(match
->ifm_media
);
281 oldentry
= ifm
->ifm_cur
;
282 oldmedia
= ifm
->ifm_media
;
283 ifm
->ifm_cur
= match
;
284 ifm
->ifm_media
= newmedia
;
285 error
= (*ifm
->ifm_change
)(ifp
);
287 ifm
->ifm_cur
= oldentry
;
288 ifm
->ifm_media
= oldmedia
;
294 * Get list of available media and current media on interface.
298 struct ifmedia_entry
*ep
;
300 int usermax
; /* user requested max */
302 kptr
= NULL
; /* XXX gcc */
304 ifmr
->ifm_active
= ifmr
->ifm_current
= ifm
->ifm_cur
?
305 ifm
->ifm_cur
->ifm_media
: IFM_NONE
;
306 ifmr
->ifm_mask
= ifm
->ifm_mask
;
307 ifmr
->ifm_status
= 0;
308 (*ifm
->ifm_status
)(ifp
, ifmr
);
314 * If there are more interfaces on the list, count
315 * them. This allows the caller to set ifmr->ifm_count
316 * to 0 on the first call to know how much space to
319 LIST_FOREACH(ep
, &ifm
->ifm_list
, ifm_list
)
323 * Don't allow the user to ask for too many
324 * or a negative number.
326 if (ifmr
->ifm_count
> usermax
)
327 ifmr
->ifm_count
= usermax
;
328 else if (ifmr
->ifm_count
< 0)
331 if (ifmr
->ifm_count
!= 0) {
332 kptr
= (int *) _MALLOC(ifmr
->ifm_count
* sizeof(int),
336 * Get the media words from the interface's list.
338 ep
= LIST_FIRST(&ifm
->ifm_list
);
339 for (; ep
!= NULL
&& count
< ifmr
->ifm_count
;
340 ep
= LIST_NEXT(ep
, ifm_list
), count
++)
341 kptr
[count
] = ep
->ifm_media
;
344 error
= E2BIG
; /* oops! */
350 * We do the copyout on E2BIG, because that's
351 * just our way of telling userland that there
352 * are more. This is the behavior I've observed
356 if ((error
== 0 || error
== E2BIG
) && ifmr
->ifm_count
!= 0) {
357 error
= copyout((caddr_t
)kptr
,
358 CAST_USER_ADDR_T(ifmr
->ifm_ulist
),
359 ifmr
->ifm_count
* sizeof(int));
365 if (ifmr
->ifm_count
!= 0)
368 ifmr
->ifm_count
= count
;
380 * Find media entry matching a given ifm word.
383 static struct ifmedia_entry
*
384 ifmedia_match(ifm
, target
, mask
)
389 struct ifmedia_entry
*match
, *next
;
394 LIST_FOREACH(next
, &ifm
->ifm_list
, ifm_list
) {
395 if ((next
->ifm_media
& mask
) == (target
& mask
)) {
396 #if defined(IFMEDIA_DEBUG) || defined(DIAGNOSTIC)
398 printf("ifmedia_match: multiple match for "
399 "0x%x/0x%x\n", target
, mask
);
410 struct ifmedia_description ifm_type_descriptions
[] =
411 IFM_TYPE_DESCRIPTIONS
;
413 struct ifmedia_description ifm_subtype_ethernet_descriptions
[] =
414 IFM_SUBTYPE_ETHERNET_DESCRIPTIONS
;
416 struct ifmedia_description ifm_subtype_ethernet_option_descriptions
[] =
417 IFM_SUBTYPE_ETHERNET_OPTION_DESCRIPTIONS
;
419 struct ifmedia_description ifm_subtype_tokenring_descriptions
[] =
420 IFM_SUBTYPE_TOKENRING_DESCRIPTIONS
;
422 struct ifmedia_description ifm_subtype_tokenring_option_descriptions
[] =
423 IFM_SUBTYPE_TOKENRING_OPTION_DESCRIPTIONS
;
425 struct ifmedia_description ifm_subtype_fddi_descriptions
[] =
426 IFM_SUBTYPE_FDDI_DESCRIPTIONS
;
428 struct ifmedia_description ifm_subtype_fddi_option_descriptions
[] =
429 IFM_SUBTYPE_FDDI_OPTION_DESCRIPTIONS
;
431 struct ifmedia_description ifm_subtype_80211_descriptions
[] =
432 IFM_SUBTYPE_IEEE80211_DESCRIPTIONS
;
434 struct ifmedia_description ifm_subtype_80211_option_descriptions
[] =
435 IFM_SUBTYPE_IEEE80211_OPTION_DESCRIPTIONS
;
437 struct ifmedia_description ifm_subtype_shared_descriptions
[] =
438 IFM_SUBTYPE_SHARED_DESCRIPTIONS
;
440 struct ifmedia_description ifm_shared_option_descriptions
[] =
441 IFM_SHARED_OPTION_DESCRIPTIONS
;
443 struct ifmedia_type_to_subtype
{
444 struct ifmedia_description
*subtypes
;
445 struct ifmedia_description
*options
;
448 /* must be in the same order as IFM_TYPE_DESCRIPTIONS */
449 struct ifmedia_type_to_subtype ifmedia_types_to_subtypes
[] = {
451 &ifm_subtype_ethernet_descriptions
[0],
452 &ifm_subtype_ethernet_option_descriptions
[0]
455 &ifm_subtype_tokenring_descriptions
[0],
456 &ifm_subtype_tokenring_option_descriptions
[0]
459 &ifm_subtype_fddi_descriptions
[0],
460 &ifm_subtype_fddi_option_descriptions
[0]
463 &ifm_subtype_80211_descriptions
[0],
464 &ifm_subtype_80211_option_descriptions
[0]
469 * print a media word.
472 ifmedia_printword(ifmw
)
475 struct ifmedia_description
*desc
;
476 struct ifmedia_type_to_subtype
*ttos
;
479 /* Find the top-level interface type. */
480 for (desc
= ifm_type_descriptions
, ttos
= ifmedia_types_to_subtypes
;
481 desc
->ifmt_string
!= NULL
; desc
++, ttos
++)
482 if (IFM_TYPE(ifmw
) == desc
->ifmt_word
)
484 if (desc
->ifmt_string
== NULL
) {
485 printf("<unknown type>\n");
488 printf(desc
->ifmt_string
);
491 * Check for the shared subtype descriptions first, then the
492 * type-specific ones.
494 for (desc
= ifm_subtype_shared_descriptions
;
495 desc
->ifmt_string
!= NULL
; desc
++)
496 if (IFM_SUBTYPE(ifmw
) == desc
->ifmt_word
)
499 for (desc
= ttos
->subtypes
; desc
->ifmt_string
!= NULL
; desc
++)
500 if (IFM_SUBTYPE(ifmw
) == desc
->ifmt_word
)
502 if (desc
->ifmt_string
== NULL
) {
503 printf(" <unknown subtype>\n");
508 printf(" %s", desc
->ifmt_string
);
511 * Look for shared options.
513 for (desc
= ifm_shared_option_descriptions
;
514 desc
->ifmt_string
!= NULL
; desc
++) {
515 if (ifmw
& desc
->ifmt_word
) {
516 if (seen_option
== 0)
518 printf("%s%s", seen_option
++ ? "," : "",
524 * Look for subtype-specific options.
526 for (desc
= ttos
->options
; desc
->ifmt_string
!= NULL
; desc
++) {
527 if (ifmw
& desc
->ifmt_word
) {
528 if (seen_option
== 0)
530 printf("%s%s", seen_option
++ ? "," : "",
534 printf("%s\n", seen_option
? ">" : "");
536 #endif /* IFMEDIA_DEBUG */