2013-10-19 04:35:30 +04:00
|
|
|
/* $NetBSD: util.c,v 1.17 2013/10/19 00:35:30 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
|
2013-10-19 04:35:30 +04:00
|
|
|
__RCSID("$NetBSD: util.c,v 1.17 2013/10/19 00:35:30 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 <ctype.h>
|
|
|
|
#include <err.h>
|
|
|
|
#include <errno.h>
|
2009-04-22 02:46:39 +04:00
|
|
|
#include <netdb.h>
|
2008-05-06 08:33:42 +04:00
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
2008-05-08 03:55:06 +04:00
|
|
|
#include <util.h>
|
2008-05-06 08:33:42 +04:00
|
|
|
|
2009-04-22 02:46:39 +04:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/types.h>
|
2008-05-06 08:33:42 +04:00
|
|
|
#include <sys/socket.h>
|
2009-04-22 02:46:39 +04:00
|
|
|
#include <ifaddrs.h>
|
|
|
|
|
2008-05-08 03:55:06 +04:00
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <net/if.h>
|
2009-04-22 02:46:39 +04:00
|
|
|
#include <net/if_dl.h>
|
2008-05-06 08:33:42 +04:00
|
|
|
#include <netinet/in.h> /* XXX */
|
|
|
|
|
2008-05-08 03:55:06 +04:00
|
|
|
#include "env.h"
|
2009-08-07 22:53:37 +04:00
|
|
|
#include "extern.h"
|
2008-05-06 08:33:42 +04:00
|
|
|
#include "util.h"
|
2010-12-13 20:35:08 +03:00
|
|
|
#include "prog_ops.h"
|
2008-05-06 08:33:42 +04:00
|
|
|
|
|
|
|
int
|
|
|
|
getsock(int naf)
|
|
|
|
{
|
|
|
|
static int oaf = -1, s;
|
|
|
|
|
|
|
|
if (oaf == naf || (oaf != -1 && naf == AF_UNSPEC))
|
|
|
|
return s;
|
|
|
|
|
|
|
|
if (oaf != -1)
|
2010-12-13 20:35:08 +03:00
|
|
|
prog_close(s);
|
2008-05-06 08:33:42 +04:00
|
|
|
|
2008-05-13 22:10:17 +04:00
|
|
|
if (naf == AF_UNSPEC)
|
2008-05-06 08:33:42 +04:00
|
|
|
naf = AF_INET;
|
|
|
|
|
2010-12-13 20:35:08 +03:00
|
|
|
s = prog_socket(naf, SOCK_DGRAM, 0);
|
2008-05-06 08:33:42 +04:00
|
|
|
if (s == -1)
|
|
|
|
oaf = -1;
|
|
|
|
else
|
|
|
|
oaf = naf;
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
2010-07-01 20:44:05 +04:00
|
|
|
get_string(const char *val, const char *sep, u_int8_t *buf, int *lenp,
|
|
|
|
bool hexok)
|
2008-05-06 08:33:42 +04:00
|
|
|
{
|
|
|
|
int len;
|
|
|
|
bool hexstr;
|
|
|
|
u_int8_t *p;
|
|
|
|
|
|
|
|
len = *lenp;
|
|
|
|
p = buf;
|
2010-07-01 20:44:05 +04:00
|
|
|
hexstr = hexok && val[0] == '0' && tolower((u_char)val[1]) == 'x';
|
2008-05-06 08:33:42 +04:00
|
|
|
if (hexstr)
|
|
|
|
val += 2;
|
|
|
|
for (;;) {
|
|
|
|
if (*val == '\0')
|
|
|
|
break;
|
|
|
|
if (sep != NULL && strchr(sep, *val) != NULL) {
|
|
|
|
val++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (hexstr) {
|
|
|
|
if (!isxdigit((u_char)val[0]) ||
|
|
|
|
!isxdigit((u_char)val[1])) {
|
|
|
|
warnx("bad hexadecimal digits");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
2010-07-01 20:12:23 +04:00
|
|
|
if (p >= buf + len) {
|
2008-05-06 08:33:42 +04:00
|
|
|
if (hexstr)
|
|
|
|
warnx("hexadecimal digits too long");
|
|
|
|
else
|
|
|
|
warnx("strings too long");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (hexstr) {
|
|
|
|
#define tohex(x) (isdigit(x) ? (x) - '0' : tolower(x) - 'a' + 10)
|
|
|
|
*p++ = (tohex((u_char)val[0]) << 4) |
|
|
|
|
tohex((u_char)val[1]);
|
|
|
|
#undef tohex
|
|
|
|
val += 2;
|
|
|
|
} else
|
|
|
|
*p++ = *val++;
|
|
|
|
}
|
|
|
|
len = p - buf;
|
|
|
|
if (len < *lenp)
|
|
|
|
memset(p, 0, *lenp - len);
|
|
|
|
*lenp = len;
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
print_string(const u_int8_t *buf, int len)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
bool hasspc;
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
hasspc = false;
|
|
|
|
if (len < 2 || buf[0] != '0' || tolower(buf[1]) != 'x') {
|
|
|
|
for (; i < len; i++) {
|
|
|
|
if (!isprint(buf[i]))
|
|
|
|
break;
|
|
|
|
if (isspace(buf[i]))
|
|
|
|
hasspc = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (i == len) {
|
|
|
|
if (hasspc || len == 0)
|
|
|
|
printf("\"%.*s\"", len, buf);
|
|
|
|
else
|
|
|
|
printf("%.*s", len, buf);
|
|
|
|
} else {
|
|
|
|
printf("0x");
|
|
|
|
for (i = 0; i < len; i++)
|
|
|
|
printf("%02x", buf[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct paddr_prefix *
|
|
|
|
prefixlen_to_mask(int af, int plen)
|
|
|
|
{
|
|
|
|
union {
|
|
|
|
struct sockaddr sa;
|
|
|
|
struct sockaddr_in sin;
|
|
|
|
struct sockaddr_in6 sin6;
|
|
|
|
} u;
|
|
|
|
struct paddr_prefix *pfx;
|
|
|
|
size_t addrlen;
|
|
|
|
uint8_t *addr;
|
|
|
|
int nbit;
|
|
|
|
|
|
|
|
memset(&u, 0, sizeof(u));
|
|
|
|
|
|
|
|
switch (af) {
|
|
|
|
case AF_INET:
|
|
|
|
addrlen = sizeof(u.sin.sin_addr);
|
|
|
|
addr = (uint8_t *)&u.sin.sin_addr;
|
|
|
|
u.sa.sa_len = sizeof(u.sin);
|
|
|
|
break;
|
|
|
|
case AF_INET6:
|
|
|
|
addrlen = sizeof(u.sin6.sin6_addr);
|
|
|
|
addr = (uint8_t *)&u.sin6.sin6_addr;
|
|
|
|
u.sa.sa_len = sizeof(u.sin6);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
errno = EINVAL;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
u.sa.sa_family = af;
|
|
|
|
|
2009-01-18 03:24:29 +03:00
|
|
|
if (plen < 0 || (size_t)plen > addrlen * NBBY) {
|
2008-05-06 08:33:42 +04:00
|
|
|
errno = EINVAL;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2008-05-07 22:17:42 +04:00
|
|
|
if (plen == 0)
|
|
|
|
plen = addrlen * NBBY;
|
|
|
|
|
2008-05-06 08:33:42 +04:00
|
|
|
memset(addr, 0xff, (plen + NBBY - 1) / NBBY);
|
|
|
|
|
|
|
|
nbit = plen % NBBY;
|
|
|
|
if (nbit != 0)
|
|
|
|
addr[plen / NBBY] &= ~((uint8_t)0xff >> nbit);
|
|
|
|
pfx = malloc(offsetof(struct paddr_prefix, pfx_addr) + u.sa.sa_len);
|
|
|
|
if (pfx == NULL)
|
|
|
|
return NULL;
|
|
|
|
pfx->pfx_len = plen;
|
|
|
|
memcpy(&pfx->pfx_addr, &u.sa, u.sa.sa_len);
|
|
|
|
|
|
|
|
return pfx;
|
|
|
|
}
|
2008-05-08 03:55:06 +04:00
|
|
|
|
|
|
|
int
|
|
|
|
direct_ioctl(prop_dictionary_t env, unsigned long cmd, void *data)
|
|
|
|
{
|
|
|
|
const char *ifname;
|
|
|
|
int s;
|
|
|
|
|
|
|
|
if ((s = getsock(AF_UNSPEC)) == -1)
|
|
|
|
err(EXIT_FAILURE, "getsock");
|
|
|
|
|
|
|
|
if ((ifname = getifname(env)) == NULL)
|
|
|
|
err(EXIT_FAILURE, "getifname");
|
|
|
|
|
|
|
|
estrlcpy(data, ifname, IFNAMSIZ);
|
|
|
|
|
2010-12-13 20:35:08 +03:00
|
|
|
return prog_ioctl(s, cmd, data);
|
2008-05-08 03:55:06 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
indirect_ioctl(prop_dictionary_t env, unsigned long cmd, void *data)
|
|
|
|
{
|
|
|
|
struct ifreq ifr;
|
|
|
|
|
|
|
|
memset(&ifr, 0, sizeof(ifr));
|
|
|
|
|
|
|
|
ifr.ifr_data = data;
|
|
|
|
|
|
|
|
return direct_ioctl(env, cmd, &ifr);
|
|
|
|
}
|
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
|
|
|
|
2009-04-22 02:46:39 +04:00
|
|
|
void
|
|
|
|
print_link_addresses(prop_dictionary_t env, bool print_active_only)
|
|
|
|
{
|
|
|
|
char hbuf[NI_MAXHOST];
|
|
|
|
const char *ifname;
|
|
|
|
int s;
|
|
|
|
struct ifaddrs *ifa, *ifap;
|
|
|
|
const struct sockaddr_dl *sdl;
|
|
|
|
struct if_laddrreq iflr;
|
|
|
|
|
|
|
|
if ((ifname = getifname(env)) == NULL)
|
|
|
|
err(EXIT_FAILURE, "%s: getifname", __func__);
|
|
|
|
|
|
|
|
if ((s = getsock(AF_LINK)) == -1)
|
|
|
|
err(EXIT_FAILURE, "%s: getsock", __func__);
|
|
|
|
|
|
|
|
if (getifaddrs(&ifap) == -1)
|
|
|
|
err(EXIT_FAILURE, "%s: getifaddrs", __func__);
|
|
|
|
|
|
|
|
memset(&iflr, 0, sizeof(iflr));
|
|
|
|
|
|
|
|
strlcpy(iflr.iflr_name, ifname, sizeof(iflr.iflr_name));
|
|
|
|
|
|
|
|
for (ifa = ifap; ifa != NULL; ifa = ifa->ifa_next) {
|
|
|
|
if (strcmp(ifname, ifa->ifa_name) != 0)
|
|
|
|
continue;
|
|
|
|
if (ifa->ifa_addr->sa_family != AF_LINK)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
sdl = satocsdl(ifa->ifa_addr);
|
|
|
|
|
|
|
|
memcpy(&iflr.addr, ifa->ifa_addr, MIN(ifa->ifa_addr->sa_len,
|
|
|
|
sizeof(iflr.addr)));
|
|
|
|
iflr.flags = IFLR_PREFIX;
|
|
|
|
iflr.prefixlen = sdl->sdl_alen * NBBY;
|
|
|
|
|
2010-12-13 20:35:08 +03:00
|
|
|
if (prog_ioctl(s, SIOCGLIFADDR, &iflr) == -1)
|
2009-04-22 02:46:39 +04:00
|
|
|
err(EXIT_FAILURE, "%s: ioctl", __func__);
|
|
|
|
|
|
|
|
if (((iflr.flags & IFLR_ACTIVE) != 0) != print_active_only)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (getnameinfo(ifa->ifa_addr, ifa->ifa_addr->sa_len,
|
2009-08-07 22:53:37 +04:00
|
|
|
hbuf, sizeof(hbuf), NULL, 0,
|
|
|
|
Nflag ? 0 : NI_NUMERICHOST) == 0 &&
|
2009-04-22 02:46:39 +04:00
|
|
|
hbuf[0] != '\0') {
|
|
|
|
printf("\t%s %s\n",
|
|
|
|
print_active_only ? "address:" : "link", hbuf);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
freeifaddrs(ifap);
|
|
|
|
}
|
|
|
|
|
Make ifconfig(8) set and display preference numbers for IPv6
addresses. Make the kernel support SIOC[SG]IFADDRPREF for IPv6
interface addresses.
In in6ifa_ifpforlinklocal(), consult preference numbers before
making an otherwise arbitrary choice of in6_ifaddr. Otherwise,
preference numbers are *not* consulted by the kernel, but that will
be rather easy for somebody with a little bit of free time to fix.
Please note that setting the preference number for a link-local
IPv6 address does not work right, yet, but that ought to be fixed
soon.
In support of the changes above,
1 Add a method to struct domain for "externalizing" a sockaddr, and
provide an implementation for IPv6. Expect more work in this area: it
may be more proper to say that the IPv6 implementation "internalizes"
a sockaddr. Add sockaddr_externalize().
2 Add a subroutine, sofamily(), that returns a struct socket's address
family or AF_UNSPEC.
3 Make a lot of IPv4-specific code generic, and move it from
sys/netinet/ to sys/net/ for re-use by IPv6 parts of the kernel and
ifconfig(8).
2009-09-12 02:06:29 +04:00
|
|
|
int16_t
|
|
|
|
ifa_get_preference(const char *ifname, const struct sockaddr *sa)
|
|
|
|
{
|
|
|
|
struct if_addrprefreq ifap;
|
|
|
|
int s;
|
|
|
|
|
|
|
|
if ((s = getsock(sa->sa_family)) == -1) {
|
|
|
|
if (errno == EPROTONOSUPPORT)
|
|
|
|
return 0;
|
|
|
|
err(EXIT_FAILURE, "socket");
|
|
|
|
}
|
|
|
|
memset(&ifap, 0, sizeof(ifap));
|
|
|
|
estrlcpy(ifap.ifap_name, ifname, sizeof(ifap.ifap_name));
|
|
|
|
memcpy(&ifap.ifap_addr, sa, MIN(sizeof(ifap.ifap_addr), sa->sa_len));
|
2010-12-13 20:35:08 +03:00
|
|
|
if (prog_ioctl(s, SIOCGIFADDRPREF, &ifap) == -1) {
|
Make ifconfig(8) set and display preference numbers for IPv6
addresses. Make the kernel support SIOC[SG]IFADDRPREF for IPv6
interface addresses.
In in6ifa_ifpforlinklocal(), consult preference numbers before
making an otherwise arbitrary choice of in6_ifaddr. Otherwise,
preference numbers are *not* consulted by the kernel, but that will
be rather easy for somebody with a little bit of free time to fix.
Please note that setting the preference number for a link-local
IPv6 address does not work right, yet, but that ought to be fixed
soon.
In support of the changes above,
1 Add a method to struct domain for "externalizing" a sockaddr, and
provide an implementation for IPv6. Expect more work in this area: it
may be more proper to say that the IPv6 implementation "internalizes"
a sockaddr. Add sockaddr_externalize().
2 Add a subroutine, sofamily(), that returns a struct socket's address
family or AF_UNSPEC.
3 Make a lot of IPv4-specific code generic, and move it from
sys/netinet/ to sys/net/ for re-use by IPv6 parts of the kernel and
ifconfig(8).
2009-09-12 02:06:29 +04:00
|
|
|
if (errno == EADDRNOTAVAIL || errno == EAFNOSUPPORT)
|
|
|
|
return 0;
|
|
|
|
warn("SIOCGIFADDRPREF");
|
|
|
|
}
|
|
|
|
return ifap.ifap_preference;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ifa_print_preference(const char *ifname, const struct sockaddr *sa)
|
|
|
|
{
|
|
|
|
int16_t preference;
|
|
|
|
|
|
|
|
if (lflag)
|
|
|
|
return;
|
|
|
|
|
|
|
|
preference = ifa_get_preference(ifname, sa);
|
|
|
|
printf(" preference %" PRId16, preference);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
ifa_any_preferences(const char *ifname, struct ifaddrs *ifap, int family)
|
|
|
|
{
|
|
|
|
struct ifaddrs *ifa;
|
|
|
|
|
|
|
|
/* Print address preference numbers if any address has a non-zero
|
|
|
|
* preference assigned.
|
|
|
|
*/
|
|
|
|
for (ifa = ifap; ifa != NULL; ifa = ifa->ifa_next) {
|
|
|
|
if (strcmp(ifname, ifa->ifa_name) != 0)
|
|
|
|
continue;
|
|
|
|
if (ifa->ifa_addr->sa_family != family)
|
|
|
|
continue;
|
|
|
|
if (ifa_get_preference(ifa->ifa_name, ifa->ifa_addr) != 0)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|