ether.c revision 1.1 1 1.1 msaitoh /* $NetBSD: ether.c,v 1.1 2012/10/31 10:17:34 msaitoh Exp $ */
2 1.1 msaitoh
3 1.1 msaitoh /*
4 1.1 msaitoh * Copyright (c) 1983, 1993
5 1.1 msaitoh * The Regents of the University of California. All rights reserved.
6 1.1 msaitoh *
7 1.1 msaitoh * Redistribution and use in source and binary forms, with or without
8 1.1 msaitoh * modification, are permitted provided that the following conditions
9 1.1 msaitoh * are met:
10 1.1 msaitoh * 1. Redistributions of source code must retain the above copyright
11 1.1 msaitoh * notice, this list of conditions and the following disclaimer.
12 1.1 msaitoh * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 msaitoh * notice, this list of conditions and the following disclaimer in the
14 1.1 msaitoh * documentation and/or other materials provided with the distribution.
15 1.1 msaitoh * 3. Neither the name of the University nor the names of its contributors
16 1.1 msaitoh * may be used to endorse or promote products derived from this software
17 1.1 msaitoh * without specific prior written permission.
18 1.1 msaitoh *
19 1.1 msaitoh * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 1.1 msaitoh * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 1.1 msaitoh * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 1.1 msaitoh * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 1.1 msaitoh * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 1.1 msaitoh * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 1.1 msaitoh * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 1.1 msaitoh * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 1.1 msaitoh * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 1.1 msaitoh * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 1.1 msaitoh * SUCH DAMAGE.
30 1.1 msaitoh */
31 1.1 msaitoh
32 1.1 msaitoh #include <sys/cdefs.h>
33 1.1 msaitoh #ifndef lint
34 1.1 msaitoh __RCSID("$NetBSD: ether.c,v 1.1 2012/10/31 10:17:34 msaitoh Exp $");
35 1.1 msaitoh #endif /* not lint */
36 1.1 msaitoh
37 1.1 msaitoh #include <sys/param.h>
38 1.1 msaitoh #include <sys/ioctl.h>
39 1.1 msaitoh
40 1.1 msaitoh #include <net/if.h>
41 1.1 msaitoh #include <net/if_ether.h>
42 1.1 msaitoh
43 1.1 msaitoh #include <ctype.h>
44 1.1 msaitoh #include <err.h>
45 1.1 msaitoh #include <errno.h>
46 1.1 msaitoh #include <string.h>
47 1.1 msaitoh #include <stdlib.h>
48 1.1 msaitoh #include <stdio.h>
49 1.1 msaitoh #include <util.h>
50 1.1 msaitoh
51 1.1 msaitoh #include "env.h"
52 1.1 msaitoh #include "parse.h"
53 1.1 msaitoh #include "extern.h"
54 1.1 msaitoh #include "prog_ops.h"
55 1.1 msaitoh
56 1.1 msaitoh static void ether_status(prop_dictionary_t, prop_dictionary_t);
57 1.1 msaitoh static void ether_constructor(void) __attribute__((constructor));
58 1.1 msaitoh
59 1.1 msaitoh static status_func_t status;
60 1.1 msaitoh
61 1.1 msaitoh void
62 1.1 msaitoh ether_status(prop_dictionary_t env, prop_dictionary_t oenv)
63 1.1 msaitoh {
64 1.1 msaitoh struct eccapreq eccr;
65 1.1 msaitoh char fbuf[BUFSIZ];
66 1.1 msaitoh
67 1.1 msaitoh memset(&eccr, 0, sizeof(eccr));
68 1.1 msaitoh
69 1.1 msaitoh if (direct_ioctl(env, SIOCGETHERCAP, &eccr) == -1)
70 1.1 msaitoh return;
71 1.1 msaitoh
72 1.1 msaitoh if (eccr.eccr_capabilities != 0) {
73 1.1 msaitoh (void)snprintb(fbuf, sizeof(fbuf), ECCAPBITS,
74 1.1 msaitoh eccr.eccr_capabilities);
75 1.1 msaitoh printf("\tec_capabilities=%s\n", &fbuf[2]);
76 1.1 msaitoh (void)snprintb(fbuf, sizeof(fbuf), ECCAPBITS,
77 1.1 msaitoh eccr.eccr_capenable);
78 1.1 msaitoh printf("\tec_enabled=%s\n", &fbuf[2]);
79 1.1 msaitoh }
80 1.1 msaitoh }
81 1.1 msaitoh
82 1.1 msaitoh static void
83 1.1 msaitoh ether_constructor(void)
84 1.1 msaitoh {
85 1.1 msaitoh
86 1.1 msaitoh status_func_init(&status, ether_status);
87 1.1 msaitoh register_status(&status);
88 1.1 msaitoh }
89