2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2004-08-02 21:11:11 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2004
|
|
|
|
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <command.h>
|
2019-08-01 15:46:41 +00:00
|
|
|
#include <env.h>
|
2009-05-16 10:14:54 +00:00
|
|
|
#include <stdio_dev.h>
|
2004-08-02 21:11:11 +00:00
|
|
|
#include <net.h>
|
|
|
|
|
2012-07-31 06:09:17 +00:00
|
|
|
#ifndef CONFIG_NETCONSOLE_BUFFER_SIZE
|
|
|
|
#define CONFIG_NETCONSOLE_BUFFER_SIZE 512
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static char input_buffer[CONFIG_NETCONSOLE_BUFFER_SIZE];
|
2012-05-15 08:59:13 +00:00
|
|
|
static int input_size; /* char count in input buffer */
|
|
|
|
static int input_offset; /* offset to valid chars in input buffer */
|
|
|
|
static int input_recursion;
|
|
|
|
static int output_recursion;
|
2004-08-02 21:11:11 +00:00
|
|
|
static int net_timeout;
|
2012-05-15 08:59:13 +00:00
|
|
|
static uchar nc_ether[6]; /* server enet address */
|
2015-04-08 06:41:01 +00:00
|
|
|
static struct in_addr nc_ip; /* server ip */
|
2012-07-31 06:06:41 +00:00
|
|
|
static short nc_out_port; /* target output port */
|
|
|
|
static short nc_in_port; /* source input port */
|
2012-05-15 08:59:13 +00:00
|
|
|
static const char *output_packet; /* used by first send udp */
|
|
|
|
static int output_packet_len;
|
2012-08-03 10:59:08 +00:00
|
|
|
/*
|
|
|
|
* Start with a default last protocol.
|
|
|
|
* We are only interested in NETCONS or not.
|
|
|
|
*/
|
|
|
|
enum proto_t net_loop_last_protocol = BOOTP;
|
2004-08-02 21:11:11 +00:00
|
|
|
|
2011-04-18 06:19:50 +00:00
|
|
|
static void nc_wait_arp_handler(uchar *pkt, unsigned dest,
|
2015-04-08 06:41:01 +00:00
|
|
|
struct in_addr sip, unsigned src,
|
2004-08-02 21:11:11 +00:00
|
|
|
unsigned len)
|
|
|
|
{
|
2012-05-23 07:59:14 +00:00
|
|
|
net_set_state(NETLOOP_SUCCESS); /* got arp reply - quit net loop */
|
2004-08-02 21:11:11 +00:00
|
|
|
}
|
|
|
|
|
2015-04-08 06:41:01 +00:00
|
|
|
static void nc_handler(uchar *pkt, unsigned dest, struct in_addr sip,
|
|
|
|
unsigned src, unsigned len)
|
2004-08-02 21:11:11 +00:00
|
|
|
{
|
2004-09-08 22:03:11 +00:00
|
|
|
if (input_size)
|
2012-05-23 07:59:14 +00:00
|
|
|
net_set_state(NETLOOP_SUCCESS); /* got input - quit net loop */
|
2004-08-02 21:11:11 +00:00
|
|
|
}
|
|
|
|
|
2015-04-08 06:41:16 +00:00
|
|
|
static void nc_timeout_handler(void)
|
2004-08-02 21:11:11 +00:00
|
|
|
{
|
2012-05-23 07:59:14 +00:00
|
|
|
net_set_state(NETLOOP_SUCCESS);
|
2004-08-02 21:11:11 +00:00
|
|
|
}
|
|
|
|
|
2015-04-08 06:41:01 +00:00
|
|
|
static int is_broadcast(struct in_addr ip)
|
2012-09-18 10:01:31 +00:00
|
|
|
{
|
2015-04-08 06:41:01 +00:00
|
|
|
static struct in_addr netmask;
|
|
|
|
static struct in_addr our_ip;
|
2012-09-18 10:01:31 +00:00
|
|
|
static int env_changed_id;
|
2019-08-01 15:46:41 +00:00
|
|
|
int env_id = env_get_id();
|
2012-09-18 10:01:31 +00:00
|
|
|
|
|
|
|
/* update only when the environment has changed */
|
|
|
|
if (env_changed_id != env_id) {
|
2017-08-03 18:22:15 +00:00
|
|
|
netmask = env_get_ip("netmask");
|
|
|
|
our_ip = env_get_ip("ipaddr");
|
2012-09-18 10:01:31 +00:00
|
|
|
|
|
|
|
env_changed_id = env_id;
|
|
|
|
}
|
|
|
|
|
2015-04-08 06:41:01 +00:00
|
|
|
return (ip.s_addr == ~0 || /* 255.255.255.255 (global bcast) */
|
|
|
|
((netmask.s_addr & our_ip.s_addr) ==
|
|
|
|
(netmask.s_addr & ip.s_addr) && /* on the same net and */
|
|
|
|
(netmask.s_addr | ip.s_addr) == ~0)); /* bcast to our net */
|
2012-09-18 10:01:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int refresh_settings_from_env(void)
|
|
|
|
{
|
|
|
|
const char *p;
|
|
|
|
static int env_changed_id;
|
2019-08-01 15:46:41 +00:00
|
|
|
int env_id = env_get_id();
|
2012-09-18 10:01:31 +00:00
|
|
|
|
|
|
|
/* update only when the environment has changed */
|
|
|
|
if (env_changed_id != env_id) {
|
2017-08-03 18:22:12 +00:00
|
|
|
if (env_get("ncip")) {
|
2017-08-03 18:22:15 +00:00
|
|
|
nc_ip = env_get_ip("ncip");
|
2015-04-08 06:41:01 +00:00
|
|
|
if (!nc_ip.s_addr)
|
2012-09-18 10:01:31 +00:00
|
|
|
return -1; /* ncip is 0.0.0.0 */
|
2017-08-03 18:22:12 +00:00
|
|
|
p = strchr(env_get("ncip"), ':');
|
2012-09-18 10:01:31 +00:00
|
|
|
if (p != NULL) {
|
|
|
|
nc_out_port = simple_strtoul(p + 1, NULL, 10);
|
|
|
|
nc_in_port = nc_out_port;
|
|
|
|
}
|
2015-04-08 06:41:16 +00:00
|
|
|
} else {
|
2015-04-08 06:41:01 +00:00
|
|
|
nc_ip.s_addr = ~0; /* ncip is not set, so broadcast */
|
2015-04-08 06:41:16 +00:00
|
|
|
}
|
2012-09-18 10:01:31 +00:00
|
|
|
|
2017-08-03 18:22:12 +00:00
|
|
|
p = env_get("ncoutport");
|
2012-09-18 10:01:31 +00:00
|
|
|
if (p != NULL)
|
|
|
|
nc_out_port = simple_strtoul(p, NULL, 10);
|
2017-08-03 18:22:12 +00:00
|
|
|
p = env_get("ncinport");
|
2012-09-18 10:01:31 +00:00
|
|
|
if (p != NULL)
|
|
|
|
nc_in_port = simple_strtoul(p, NULL, 10);
|
|
|
|
|
|
|
|
if (is_broadcast(nc_ip))
|
|
|
|
/* broadcast MAC address */
|
|
|
|
memset(nc_ether, 0xff, sizeof(nc_ether));
|
|
|
|
else
|
|
|
|
/* force arp request */
|
|
|
|
memset(nc_ether, 0, sizeof(nc_ether));
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-04-08 06:41:21 +00:00
|
|
|
* Called from net_loop in net/net.c before each packet
|
2012-09-18 10:01:31 +00:00
|
|
|
*/
|
2015-04-08 06:41:16 +00:00
|
|
|
void nc_start(void)
|
2004-08-02 21:11:11 +00:00
|
|
|
{
|
2012-09-18 10:01:31 +00:00
|
|
|
refresh_settings_from_env();
|
2015-04-08 06:41:04 +00:00
|
|
|
if (!output_packet_len || memcmp(nc_ether, net_null_ethaddr, 6)) {
|
2004-08-02 21:11:11 +00:00
|
|
|
/* going to check for input packet */
|
2012-05-23 07:59:15 +00:00
|
|
|
net_set_udp_handler(nc_handler);
|
2015-04-08 06:41:21 +00:00
|
|
|
net_set_timeout_handler(net_timeout, nc_timeout_handler);
|
2004-08-02 21:11:11 +00:00
|
|
|
} else {
|
|
|
|
/* send arp request */
|
2004-09-08 22:03:11 +00:00
|
|
|
uchar *pkt;
|
2012-05-23 07:59:15 +00:00
|
|
|
net_set_arp_handler(nc_wait_arp_handler);
|
2015-04-08 06:41:05 +00:00
|
|
|
pkt = (uchar *)net_tx_packet + net_eth_hdr_size() +
|
|
|
|
IP_UDP_HDR_SIZE;
|
2012-05-15 08:59:13 +00:00
|
|
|
memcpy(pkt, output_packet, output_packet_len);
|
2015-04-08 06:41:05 +00:00
|
|
|
net_send_udp_packet(nc_ether, nc_ip, nc_out_port, nc_in_port,
|
|
|
|
output_packet_len);
|
2004-08-02 21:11:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-08 06:41:01 +00:00
|
|
|
int nc_input_packet(uchar *pkt, struct in_addr src_ip, unsigned dest_port,
|
2012-09-18 10:01:32 +00:00
|
|
|
unsigned src_port, unsigned len)
|
2004-08-02 21:11:11 +00:00
|
|
|
{
|
2004-09-08 22:03:11 +00:00
|
|
|
int end, chunk;
|
|
|
|
|
2012-09-18 10:01:32 +00:00
|
|
|
if (dest_port != nc_in_port || !len)
|
2012-05-15 08:59:13 +00:00
|
|
|
return 0; /* not for us */
|
2004-08-02 21:11:11 +00:00
|
|
|
|
2015-04-08 06:41:01 +00:00
|
|
|
if (src_ip.s_addr != nc_ip.s_addr && !is_broadcast(nc_ip))
|
2012-09-18 10:01:32 +00:00
|
|
|
return 0; /* not from our client */
|
|
|
|
|
2012-05-23 08:01:04 +00:00
|
|
|
debug_cond(DEBUG_DEV_PKT, "input: \"%*.*s\"\n", len, len, pkt);
|
|
|
|
|
2012-05-15 08:59:13 +00:00
|
|
|
if (input_size == sizeof(input_buffer))
|
|
|
|
return 1; /* no space */
|
|
|
|
if (len > sizeof(input_buffer) - input_size)
|
|
|
|
len = sizeof(input_buffer) - input_size;
|
2004-09-08 22:03:11 +00:00
|
|
|
|
|
|
|
end = input_offset + input_size;
|
2017-08-30 22:32:31 +00:00
|
|
|
if (end >= sizeof(input_buffer))
|
2012-05-15 08:59:13 +00:00
|
|
|
end -= sizeof(input_buffer);
|
2004-09-08 22:03:11 +00:00
|
|
|
|
|
|
|
chunk = len;
|
2017-08-30 22:32:31 +00:00
|
|
|
/* Check if packet will wrap in input_buffer */
|
|
|
|
if (end + len >= sizeof(input_buffer)) {
|
2012-05-15 08:59:13 +00:00
|
|
|
chunk = sizeof(input_buffer) - end;
|
2017-08-30 22:32:31 +00:00
|
|
|
/* Copy the second part of the pkt to start of input_buffer */
|
2004-09-08 22:03:11 +00:00
|
|
|
memcpy(input_buffer, pkt + chunk, len - chunk);
|
|
|
|
}
|
2017-08-30 22:32:31 +00:00
|
|
|
/* Copy first (or only) part of pkt after end of current valid input*/
|
2012-05-15 08:59:13 +00:00
|
|
|
memcpy(input_buffer + end, pkt, chunk);
|
2004-09-08 22:03:11 +00:00
|
|
|
|
|
|
|
input_size += len;
|
|
|
|
|
2004-08-02 21:11:11 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2012-05-15 08:59:13 +00:00
|
|
|
static void nc_send_packet(const char *buf, int len)
|
2004-08-02 21:11:11 +00:00
|
|
|
{
|
2015-09-14 13:29:44 +00:00
|
|
|
#ifdef CONFIG_DM_ETH
|
|
|
|
struct udevice *eth;
|
|
|
|
#else
|
2004-08-02 21:11:11 +00:00
|
|
|
struct eth_device *eth;
|
2015-09-14 13:29:44 +00:00
|
|
|
#endif
|
2004-08-02 21:11:11 +00:00
|
|
|
int inited = 0;
|
|
|
|
uchar *pkt;
|
2004-09-08 22:03:11 +00:00
|
|
|
uchar *ether;
|
2015-04-08 06:41:01 +00:00
|
|
|
struct in_addr ip;
|
2004-08-02 21:11:11 +00:00
|
|
|
|
2012-05-23 08:01:04 +00:00
|
|
|
debug_cond(DEBUG_DEV_PKT, "output: \"%*.*s\"\n", len, len, buf);
|
|
|
|
|
2012-05-15 08:59:13 +00:00
|
|
|
eth = eth_get_dev();
|
|
|
|
if (eth == NULL)
|
2004-08-02 21:11:11 +00:00
|
|
|
return;
|
|
|
|
|
2015-04-08 06:41:04 +00:00
|
|
|
if (!memcmp(nc_ether, net_null_ethaddr, 6)) {
|
2015-09-14 13:29:44 +00:00
|
|
|
if (eth_is_active(eth))
|
2004-09-08 22:03:11 +00:00
|
|
|
return; /* inside net loop */
|
|
|
|
output_packet = buf;
|
|
|
|
output_packet_len = len;
|
2013-10-16 16:54:24 +00:00
|
|
|
input_recursion = 1;
|
2015-04-08 06:41:21 +00:00
|
|
|
net_loop(NETCONS); /* wait for arp reply and send packet */
|
2013-10-16 16:54:24 +00:00
|
|
|
input_recursion = 0;
|
2004-09-08 22:03:11 +00:00
|
|
|
output_packet_len = 0;
|
2004-08-02 21:11:11 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-09-14 13:29:44 +00:00
|
|
|
if (!eth_is_active(eth)) {
|
2012-08-03 10:59:08 +00:00
|
|
|
if (eth_is_on_demand_init()) {
|
2015-03-22 22:09:06 +00:00
|
|
|
if (eth_init() < 0)
|
2012-08-03 10:59:08 +00:00
|
|
|
return;
|
|
|
|
eth_set_last_protocol(NETCONS);
|
2015-04-08 06:41:16 +00:00
|
|
|
} else {
|
2015-03-22 22:09:06 +00:00
|
|
|
eth_init_state_only();
|
2015-04-08 06:41:16 +00:00
|
|
|
}
|
2012-08-03 10:59:08 +00:00
|
|
|
|
2004-08-02 21:11:11 +00:00
|
|
|
inited = 1;
|
|
|
|
}
|
2015-04-08 06:41:05 +00:00
|
|
|
pkt = (uchar *)net_tx_packet + net_eth_hdr_size() + IP_UDP_HDR_SIZE;
|
2012-05-15 08:59:13 +00:00
|
|
|
memcpy(pkt, buf, len);
|
2004-09-08 22:03:11 +00:00
|
|
|
ether = nc_ether;
|
|
|
|
ip = nc_ip;
|
2015-04-08 06:41:05 +00:00
|
|
|
net_send_udp_packet(ether, ip, nc_out_port, nc_in_port, len);
|
2004-08-02 21:11:11 +00:00
|
|
|
|
2012-08-03 10:59:08 +00:00
|
|
|
if (inited) {
|
|
|
|
if (eth_is_on_demand_init())
|
|
|
|
eth_halt();
|
|
|
|
else
|
|
|
|
eth_halt_state_only();
|
|
|
|
}
|
2004-08-02 21:11:11 +00:00
|
|
|
}
|
|
|
|
|
2015-04-08 06:41:16 +00:00
|
|
|
static int nc_stdio_start(struct stdio_dev *dev)
|
2004-08-02 21:11:11 +00:00
|
|
|
{
|
2012-09-18 10:01:31 +00:00
|
|
|
int retval;
|
2004-09-08 22:03:11 +00:00
|
|
|
|
2012-07-31 06:06:41 +00:00
|
|
|
nc_out_port = 6666; /* default port */
|
|
|
|
nc_in_port = nc_out_port;
|
2004-09-08 22:03:11 +00:00
|
|
|
|
2012-09-18 10:01:31 +00:00
|
|
|
retval = refresh_settings_from_env();
|
|
|
|
if (retval != 0)
|
|
|
|
return retval;
|
2004-09-08 22:03:11 +00:00
|
|
|
|
2012-05-23 07:59:23 +00:00
|
|
|
/*
|
|
|
|
* Initialize the static IP settings and buffer pointers
|
2015-04-08 06:41:21 +00:00
|
|
|
* incase we call net_send_udp_packet before net_loop
|
2012-05-23 07:59:23 +00:00
|
|
|
*/
|
|
|
|
net_init();
|
|
|
|
|
2004-09-08 22:03:11 +00:00
|
|
|
return 0;
|
2004-08-02 21:11:11 +00:00
|
|
|
}
|
|
|
|
|
2015-04-08 06:41:16 +00:00
|
|
|
static void nc_stdio_putc(struct stdio_dev *dev, char c)
|
2004-08-02 21:11:11 +00:00
|
|
|
{
|
|
|
|
if (output_recursion)
|
|
|
|
return;
|
|
|
|
output_recursion = 1;
|
|
|
|
|
2012-05-15 08:59:13 +00:00
|
|
|
nc_send_packet(&c, 1);
|
2004-08-02 21:11:11 +00:00
|
|
|
|
|
|
|
output_recursion = 0;
|
|
|
|
}
|
|
|
|
|
2015-04-08 06:41:16 +00:00
|
|
|
static void nc_stdio_puts(struct stdio_dev *dev, const char *s)
|
2004-08-02 21:11:11 +00:00
|
|
|
{
|
2005-04-20 09:28:54 +00:00
|
|
|
int len;
|
|
|
|
|
2004-08-02 21:11:11 +00:00
|
|
|
if (output_recursion)
|
|
|
|
return;
|
|
|
|
output_recursion = 1;
|
|
|
|
|
2011-10-07 12:27:50 +00:00
|
|
|
len = strlen(s);
|
|
|
|
while (len) {
|
linux/kernel.h: sync min, max, min3, max3 macros with Linux
U-Boot has never cared about the type when we get max/min of two
values, but Linux Kernel does. This commit gets min, max, min3, max3
macros synced with the kernel introducing type checks.
Many of references of those macros must be fixed to suppress warnings.
We have two options:
- Use min, max, min3, max3 only when the arguments have the same type
(or add casts to the arguments)
- Use min_t/max_t instead with the appropriate type for the first
argument
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Acked-by: Pavel Machek <pavel@denx.de>
Acked-by: Lukasz Majewski <l.majewski@samsung.com>
Tested-by: Lukasz Majewski <l.majewski@samsung.com>
[trini: Fixup arch/blackfin/lib/string.c]
Signed-off-by: Tom Rini <trini@ti.com>
2014-11-06 18:03:31 +00:00
|
|
|
int send_len = min(len, (int)sizeof(input_buffer));
|
2011-10-07 12:27:50 +00:00
|
|
|
nc_send_packet(s, send_len);
|
|
|
|
len -= send_len;
|
|
|
|
s += send_len;
|
|
|
|
}
|
2004-08-02 21:11:11 +00:00
|
|
|
|
|
|
|
output_recursion = 0;
|
|
|
|
}
|
|
|
|
|
2015-04-08 06:41:16 +00:00
|
|
|
static int nc_stdio_getc(struct stdio_dev *dev)
|
2004-08-02 21:11:11 +00:00
|
|
|
{
|
2005-04-20 09:28:54 +00:00
|
|
|
uchar c;
|
|
|
|
|
2004-08-02 21:11:11 +00:00
|
|
|
input_recursion = 1;
|
|
|
|
|
|
|
|
net_timeout = 0; /* no timeout */
|
2004-09-08 22:03:11 +00:00
|
|
|
while (!input_size)
|
2015-04-08 06:41:21 +00:00
|
|
|
net_loop(NETCONS);
|
2004-08-02 21:11:11 +00:00
|
|
|
|
|
|
|
input_recursion = 0;
|
|
|
|
|
2005-04-20 09:28:54 +00:00
|
|
|
c = input_buffer[input_offset++];
|
|
|
|
|
2012-05-15 08:59:13 +00:00
|
|
|
if (input_offset >= sizeof(input_buffer))
|
|
|
|
input_offset -= sizeof(input_buffer);
|
2004-09-08 22:03:11 +00:00
|
|
|
input_size--;
|
2004-08-02 21:11:11 +00:00
|
|
|
|
2004-09-08 22:03:11 +00:00
|
|
|
return c;
|
2004-08-02 21:11:11 +00:00
|
|
|
}
|
|
|
|
|
2015-04-08 06:41:16 +00:00
|
|
|
static int nc_stdio_tstc(struct stdio_dev *dev)
|
2004-08-02 21:11:11 +00:00
|
|
|
{
|
2015-09-14 13:29:44 +00:00
|
|
|
#ifdef CONFIG_DM_ETH
|
|
|
|
struct udevice *eth;
|
|
|
|
#else
|
2004-08-02 21:11:11 +00:00
|
|
|
struct eth_device *eth;
|
2015-09-14 13:29:44 +00:00
|
|
|
#endif
|
2004-08-02 21:11:11 +00:00
|
|
|
|
|
|
|
if (input_recursion)
|
|
|
|
return 0;
|
|
|
|
|
2004-09-08 22:03:11 +00:00
|
|
|
if (input_size)
|
2004-08-02 21:11:11 +00:00
|
|
|
return 1;
|
|
|
|
|
2012-05-15 08:59:13 +00:00
|
|
|
eth = eth_get_dev();
|
2015-09-14 13:29:44 +00:00
|
|
|
if (eth_is_active(eth))
|
2004-08-02 21:11:11 +00:00
|
|
|
return 0; /* inside net loop */
|
|
|
|
|
|
|
|
input_recursion = 1;
|
|
|
|
|
|
|
|
net_timeout = 1;
|
2015-04-08 06:41:21 +00:00
|
|
|
net_loop(NETCONS); /* kind of poll */
|
2004-08-02 21:11:11 +00:00
|
|
|
|
|
|
|
input_recursion = 0;
|
|
|
|
|
2004-09-08 22:03:11 +00:00
|
|
|
return input_size != 0;
|
2004-08-02 21:11:11 +00:00
|
|
|
}
|
|
|
|
|
2012-05-15 08:59:13 +00:00
|
|
|
int drv_nc_init(void)
|
2004-08-02 21:11:11 +00:00
|
|
|
{
|
2009-05-16 10:14:54 +00:00
|
|
|
struct stdio_dev dev;
|
2004-08-02 21:11:11 +00:00
|
|
|
int rc;
|
|
|
|
|
2012-05-15 08:59:13 +00:00
|
|
|
memset(&dev, 0, sizeof(dev));
|
2004-08-02 21:11:11 +00:00
|
|
|
|
2012-05-15 08:59:13 +00:00
|
|
|
strcpy(dev.name, "nc");
|
2015-11-04 07:23:37 +00:00
|
|
|
dev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_INPUT;
|
2015-04-08 06:41:16 +00:00
|
|
|
dev.start = nc_stdio_start;
|
|
|
|
dev.putc = nc_stdio_putc;
|
|
|
|
dev.puts = nc_stdio_puts;
|
|
|
|
dev.getc = nc_stdio_getc;
|
|
|
|
dev.tstc = nc_stdio_tstc;
|
2004-08-02 21:11:11 +00:00
|
|
|
|
2012-05-15 08:59:13 +00:00
|
|
|
rc = stdio_register(&dev);
|
2004-08-02 21:11:11 +00:00
|
|
|
|
|
|
|
return (rc == 0) ? 1 : rc;
|
|
|
|
}
|