ifmac.c revision 194799
11558Srgrimes/*-
21558Srgrimes * Copyright (c) 2001 Networks Associates Technology, Inc.
31558Srgrimes * All rights reserved.
41558Srgrimes *
51558Srgrimes * This software was developed for the FreeBSD Project by NAI Labs, the
61558Srgrimes * Security Research Division of Network Associates, Inc. under
71558Srgrimes * DARPA/SPAWAR contract N66001-01-C-8035 ("CBOSS"), as part of the DARPA
81558Srgrimes * CHATS research program.
91558Srgrimes *
101558Srgrimes * Redistribution and use in source and binary forms, with or without
111558Srgrimes * modification, are permitted provided that the following conditions
121558Srgrimes * are met:
131558Srgrimes * 1. Redistributions of source code must retain the above copyright
141558Srgrimes *    notice, this list of conditions and the following disclaimer.
151558Srgrimes * 2. Redistributions in binary form must reproduce the above copyright
161558Srgrimes *    notice, this list of conditions and the following disclaimer in the
171558Srgrimes *    documentation and/or other materials provided with the distribution.
181558Srgrimes * 3. The name of the author may not be used to endorse or promote
191558Srgrimes *    products derived from this software without specific prior written
201558Srgrimes *    permission.
211558Srgrimes *
221558Srgrimes * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
231558Srgrimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
241558Srgrimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
251558Srgrimes * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
261558Srgrimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
271558Srgrimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
281558Srgrimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
291558Srgrimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
301558Srgrimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
311558Srgrimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
321558Srgrimes * SUCH DAMAGE.
331558Srgrimes *
341558Srgrimes * $FreeBSD: head/sbin/ifconfig/ifmac.c 194799 2009-06-23 23:49:52Z delphij $
351558Srgrimes */
361558Srgrimes
371558Srgrimes#include <sys/param.h>
381558Srgrimes#include <sys/ioctl.h>
391558Srgrimes#include <sys/mac.h>
401558Srgrimes#include <sys/socket.h>
411558Srgrimes#include <sys/sockio.h>
421558Srgrimes
4327837Sdavidn#include <net/if.h>
44#include <net/route.h>
45
46#include <stdio.h>
47#include <stdlib.h>
48#include <string.h>
49
50#include "ifconfig.h"
51
52static void
53maclabel_status(int s)
54{
55	struct ifreq ifr;
56	mac_t label;
57	char *label_text;
58
59	memset(&ifr, 0, sizeof(ifr));
60	strncpy(ifr.ifr_name, name, sizeof(ifr.ifr_name));
61
62	if (mac_prepare_ifnet_label(&label) == -1)
63		return;
64	ifr.ifr_ifru.ifru_data = (void *)label;
65	if (ioctl(s, SIOCGIFMAC, &ifr) == -1)
66		goto mac_free;
67
68
69	if (mac_to_text(label, &label_text) == -1)
70		goto mac_free;
71
72	if (strlen(label_text) != 0)
73		printf("\tmaclabel %s\n", label_text);
74	free(label_text);
75
76mac_free:
77	mac_free(label);
78}
79
80static void
81setifmaclabel(const char *val, int d, int s, const struct afswtch *rafp)
82{
83	struct ifreq ifr;
84	mac_t label;
85	int error;
86
87	if (mac_from_text(&label, val) == -1) {
88		perror(val);
89		return;
90	}
91
92	memset(&ifr, 0, sizeof(ifr));
93	strncpy(ifr.ifr_name, name, sizeof(ifr.ifr_name));
94	ifr.ifr_ifru.ifru_data = (void *)label;
95
96	error = ioctl(s, SIOCSIFMAC, &ifr);
97	mac_free(label);
98	if (error == -1)
99		perror("setifmac");
100}
101
102static struct cmd mac_cmds[] = {
103	DEF_CMD_ARG("maclabel",	setifmaclabel),
104};
105static struct afswtch af_mac = {
106	.af_name	= "af_maclabel",
107	.af_af		= AF_UNSPEC,
108	.af_other_status = maclabel_status,
109};
110
111static __constructor void
112mac_ctor(void)
113{
114#define	N(a)	(sizeof(a) / sizeof(a[0]))
115	size_t i;
116
117	for (i = 0; i < N(mac_cmds);  i++)
118		cmd_register(&mac_cmds[i]);
119	af_register(&af_mac);
120#undef N
121}
122