2016-03-07 18:56:17 +03:00
|
|
|
/* $NetBSD: env.c,v 1.11 2016/03/07 15:56:17 christos Exp $ */
|
2008-05-06 20:09:18 +04:00
|
|
|
|
|
|
|
/*-
|
2008-05-13 01:53:32 +04:00
|
|
|
* Copyright (c) 2008 David Young. All rights reserved.
|
2008-05-06 20:09:18 +04:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
Let us add/remove features from ifconfig, such as support for
various address families (inet, inet6, iso, atalk) and protocols
(802.11, 802.3ad, CARP), simply by trimming the list of sources in
the Makefile. This helps one customize ifconfig for an embedded
device or for install media, and it eliminates a lot of grotty
#ifdef'age. Now, the ifconfig syntax and semantics are finalized
at run-time using the constructor routines in each address-family/protocol
module.
(In principle, ifconfig could load virtually all of its syntax from
shared objects.)
Extract a lot of common code into subroutines, in order to shrink
the ifconfig binary a bit. Make all of the address families share
code for address addition/replacement/removal, and delete "legacy"
code for manipulating addresses. That may have broken atalk and
iso, despite my best efforts.
Extract an include file, Makefile.inc, containing the make-fu that
both ifconfig and x_ifconfig share.
Sprinkle static. Change some int's to bool's. Constify.
Add RCS Ids to carp.c and env.c. Move media code to a new file,
media.c. Delete several unneeded header files.
Set, reset, and display the IEEE 802.11 attribute, 'dot11RTSThreshold'.
Bug fix: do not require both a interface address and a destination
address for point-to-point interfaces, but accept a interface
address by itself.
2008-07-02 11:44:13 +04:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#ifndef lint
|
2016-03-07 18:56:17 +03:00
|
|
|
__RCSID("$NetBSD: env.c,v 1.11 2016/03/07 15:56:17 christos Exp $");
|
Let us add/remove features from ifconfig, such as support for
various address families (inet, inet6, iso, atalk) and protocols
(802.11, 802.3ad, CARP), simply by trimming the list of sources in
the Makefile. This helps one customize ifconfig for an embedded
device or for install media, and it eliminates a lot of grotty
#ifdef'age. Now, the ifconfig syntax and semantics are finalized
at run-time using the constructor routines in each address-family/protocol
module.
(In principle, ifconfig could load virtually all of its syntax from
shared objects.)
Extract a lot of common code into subroutines, in order to shrink
the ifconfig binary a bit. Make all of the address families share
code for address addition/replacement/removal, and delete "legacy"
code for manipulating addresses. That may have broken atalk and
iso, despite my best efforts.
Extract an include file, Makefile.inc, containing the make-fu that
both ifconfig and x_ifconfig share.
Sprinkle static. Change some int's to bool's. Constify.
Add RCS Ids to carp.c and env.c. Move media code to a new file,
media.c. Delete several unneeded header files.
Set, reset, and display the IEEE 802.11 attribute, 'dot11RTSThreshold'.
Bug fix: do not require both a interface address and a destination
address for point-to-point interfaces, but accept a interface
address by itself.
2008-07-02 11:44:13 +04:00
|
|
|
#endif /* not lint */
|
|
|
|
|
2008-05-06 08:33:42 +04:00
|
|
|
#include <errno.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <util.h>
|
|
|
|
|
|
|
|
#include <net/if.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
|
|
|
|
#include "env.h"
|
|
|
|
#include "util.h"
|
2010-12-13 20:35:08 +03:00
|
|
|
#include "prog_ops.h"
|
2008-05-06 08:33:42 +04:00
|
|
|
|
|
|
|
prop_dictionary_t
|
|
|
|
prop_dictionary_augment(prop_dictionary_t bottom, prop_dictionary_t top)
|
|
|
|
{
|
|
|
|
prop_object_iterator_t i;
|
|
|
|
prop_dictionary_t d;
|
|
|
|
prop_object_t ko, o;
|
|
|
|
prop_dictionary_keysym_t k;
|
|
|
|
const char *key;
|
|
|
|
|
|
|
|
d = prop_dictionary_copy_mutable(bottom);
|
2013-02-07 17:20:51 +04:00
|
|
|
if (d == NULL)
|
|
|
|
return NULL;
|
2008-05-06 08:33:42 +04:00
|
|
|
|
|
|
|
i = prop_dictionary_iterator(top);
|
|
|
|
|
2013-02-07 17:20:51 +04:00
|
|
|
while (i != NULL && (ko = prop_object_iterator_next(i)) != NULL) {
|
2008-05-06 08:33:42 +04:00
|
|
|
k = (prop_dictionary_keysym_t)ko;
|
|
|
|
key = prop_dictionary_keysym_cstring_nocopy(k);
|
|
|
|
o = prop_dictionary_get_keysym(top, k);
|
|
|
|
if (o == NULL || !prop_dictionary_set(d, key, o)) {
|
|
|
|
prop_object_release((prop_object_t)d);
|
|
|
|
d = NULL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2013-02-07 17:20:51 +04:00
|
|
|
if (i != NULL)
|
|
|
|
prop_object_iterator_release(i);
|
|
|
|
if (d != NULL)
|
2013-02-07 15:24:15 +04:00
|
|
|
prop_dictionary_make_immutable(d);
|
2008-05-06 08:33:42 +04:00
|
|
|
return d;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
getifflags(prop_dictionary_t env, prop_dictionary_t oenv,
|
|
|
|
unsigned short *flagsp)
|
|
|
|
{
|
|
|
|
struct ifreq ifr;
|
|
|
|
const char *ifname;
|
2008-05-06 22:35:38 +04:00
|
|
|
uint64_t ifflags;
|
2008-05-06 08:33:42 +04:00
|
|
|
int s;
|
|
|
|
|
2008-05-06 22:35:38 +04:00
|
|
|
if (prop_dictionary_get_uint64(env, "ifflags", &ifflags)) {
|
|
|
|
*flagsp = (unsigned short)ifflags;
|
2008-05-06 08:33:42 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((s = getsock(AF_UNSPEC)) == -1)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if ((ifname = getifname(env)) == NULL)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
memset(&ifr, 0, sizeof(ifr));
|
|
|
|
estrlcpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name));
|
2010-12-13 20:35:08 +03:00
|
|
|
if (prog_ioctl(s, SIOCGIFFLAGS, &ifr) == -1)
|
2008-05-06 08:33:42 +04:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
*flagsp = (unsigned short)ifr.ifr_flags;
|
|
|
|
|
2008-05-06 22:35:38 +04:00
|
|
|
prop_dictionary_set_uint64(oenv, "ifflags",
|
2008-05-06 08:33:42 +04:00
|
|
|
(unsigned short)ifr.ifr_flags);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
|
|
|
getifinfo(prop_dictionary_t env, prop_dictionary_t oenv, unsigned short *flagsp)
|
|
|
|
{
|
|
|
|
if (getifflags(env, oenv, flagsp) == -1)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return getifname(env);
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
|
|
|
getifname(prop_dictionary_t env)
|
|
|
|
{
|
2008-05-06 22:35:38 +04:00
|
|
|
const char *s;
|
2008-05-06 08:33:42 +04:00
|
|
|
|
2008-05-06 22:35:38 +04:00
|
|
|
return prop_dictionary_get_cstring_nocopy(env, "if", &s) ? s : NULL;
|
2008-05-06 08:33:42 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
ssize_t
|
|
|
|
getargdata(prop_dictionary_t env, const char *key, uint8_t *buf, size_t buflen)
|
|
|
|
{
|
|
|
|
prop_data_t data;
|
|
|
|
size_t datalen;
|
|
|
|
|
|
|
|
data = (prop_data_t)prop_dictionary_get(env, key);
|
|
|
|
if (data == NULL) {
|
|
|
|
errno = ENOENT;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
datalen = prop_data_size(data);
|
|
|
|
if (datalen > buflen) {
|
|
|
|
errno = ENAMETOOLONG;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
memcpy(buf, prop_data_data_nocopy(data), datalen);
|
2016-03-07 18:56:17 +03:00
|
|
|
memset(buf + datalen, 0, buflen - datalen);
|
2008-05-06 08:33:42 +04:00
|
|
|
return datalen;
|
|
|
|
}
|
|
|
|
|
|
|
|
ssize_t
|
|
|
|
getargstr(prop_dictionary_t env, const char *key, char *buf, size_t buflen)
|
|
|
|
{
|
|
|
|
prop_data_t data;
|
|
|
|
size_t datalen;
|
|
|
|
|
2008-05-09 08:46:50 +04:00
|
|
|
data = (prop_data_t)prop_dictionary_get(env, key);
|
2008-05-06 08:33:42 +04:00
|
|
|
if (data == NULL) {
|
|
|
|
errno = ENOENT;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
datalen = prop_data_size(data);
|
|
|
|
if (datalen >= buflen) {
|
|
|
|
errno = ENAMETOOLONG;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
memcpy(buf, prop_data_data_nocopy(data), datalen);
|
2016-03-07 15:48:53 +03:00
|
|
|
memset(buf + datalen, 0, buflen - datalen);
|
2008-05-06 08:33:42 +04:00
|
|
|
return datalen;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
getaf(prop_dictionary_t env)
|
|
|
|
{
|
2008-05-06 22:35:38 +04:00
|
|
|
int64_t af;
|
2008-05-06 08:33:42 +04:00
|
|
|
|
2008-05-06 22:35:38 +04:00
|
|
|
if (!prop_dictionary_get_int64(env, "af", &af)) {
|
2008-05-06 08:33:42 +04:00
|
|
|
errno = ENOENT;
|
|
|
|
return -1;
|
|
|
|
}
|
2008-05-06 22:35:38 +04:00
|
|
|
return (int)af;
|
2008-05-06 08:33:42 +04:00
|
|
|
}
|