ether.c revision 1.2 1 1.2 pgoyette /* $NetBSD: ether.c,v 1.2 2012/11/01 13:43:23 pgoyette 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.2 pgoyette __RCSID("$NetBSD: ether.c,v 1.2 2012/11/01 13:43:23 pgoyette 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.2 pgoyette #define MAX_PRINT_LEN 55
62 1.2 pgoyette
63 1.1 msaitoh void
64 1.1 msaitoh ether_status(prop_dictionary_t env, prop_dictionary_t oenv)
65 1.1 msaitoh {
66 1.1 msaitoh struct eccapreq eccr;
67 1.1 msaitoh char fbuf[BUFSIZ];
68 1.2 pgoyette char *bp;
69 1.1 msaitoh
70 1.1 msaitoh memset(&eccr, 0, sizeof(eccr));
71 1.1 msaitoh
72 1.1 msaitoh if (direct_ioctl(env, SIOCGETHERCAP, &eccr) == -1)
73 1.1 msaitoh return;
74 1.1 msaitoh
75 1.1 msaitoh if (eccr.eccr_capabilities != 0) {
76 1.2 pgoyette (void)snprintb_m(fbuf, sizeof(fbuf), ECCAPBITS,
77 1.2 pgoyette eccr.eccr_capabilities, MAX_PRINT_LEN);
78 1.2 pgoyette bp = fbuf;
79 1.2 pgoyette while (*bp != '\0') {
80 1.2 pgoyette printf("\tec_capabilities=%s\n", &bp[2]);
81 1.2 pgoyette bp += strlen(bp) + 1;
82 1.2 pgoyette }
83 1.2 pgoyette (void)snprintb_m(fbuf, sizeof(fbuf), ECCAPBITS,
84 1.2 pgoyette eccr.eccr_capenable, MAX_PRINT_LEN);
85 1.2 pgoyette bp = fbuf;
86 1.2 pgoyette while (*bp != '\0') {
87 1.2 pgoyette printf("\tec_enabled=%s\n", &bp[2]);
88 1.2 pgoyette bp += strlen(bp) + 1;
89 1.2 pgoyette }
90 1.1 msaitoh }
91 1.1 msaitoh }
92 1.1 msaitoh
93 1.1 msaitoh static void
94 1.1 msaitoh ether_constructor(void)
95 1.1 msaitoh {
96 1.1 msaitoh
97 1.1 msaitoh status_func_init(&status, ether_status);
98 1.1 msaitoh register_status(&status);
99 1.1 msaitoh }
100