9
0
Fork 0
barebox/net/ping.c

124 lines
2.2 KiB
C
Raw Normal View History

2007-07-05 16:01:23 +00:00
#include <common.h>
#include <command.h>
#include <clock.h>
#include <net.h>
#include <errno.h>
#include <linux/err.h>
2007-07-05 16:01:23 +00:00
static uint16_t ping_sequence_number;
2007-07-05 16:01:23 +00:00
static IPaddr_t net_ping_ip; /* the ip address to ping */
#define PING_STATE_INIT 0
#define PING_STATE_SUCCESS 1
static int ping_state;
2007-07-05 16:01:23 +00:00
static struct net_connection *ping_con;
static int ping_send(void)
2007-07-05 16:01:23 +00:00
{
unsigned char *payload;
struct icmphdr *icmp;
uint64_t ts;
icmp = ping_con->icmp;
icmp->type = ICMP_ECHO_REQUEST;
icmp->code = 0;
icmp->checksum = 0;
icmp->un.echo.id = 0;
icmp->un.echo.sequence = htons(ping_sequence_number);
ping_sequence_number++;
payload = (char *)(icmp + 1);
ts = get_time_ns();
memcpy(payload, &ts, sizeof(ts));
payload[8] = 0xab;
payload[9] = 0xcd;
return net_icmp_send(ping_con, 9);
2007-07-05 16:01:23 +00:00
}
static void ping_handler(void *ctx, char *pkt, unsigned len)
2007-07-05 16:01:23 +00:00
{
IPaddr_t tmp;
struct iphdr *ip = net_eth_to_iphdr(pkt);
2007-07-05 16:01:23 +00:00
tmp = net_read_ip((void *)&ip->saddr);
if (tmp != net_ping_ip)
2007-07-05 16:01:23 +00:00
return;
ping_state = PING_STATE_SUCCESS;
2007-07-05 16:01:23 +00:00
}
static int do_ping(int argc, char *argv[])
2007-07-05 16:01:23 +00:00
{
int ret;
uint64_t ping_start;
unsigned retries = 0;
if (argc < 2)
return COMMAND_ERROR_USAGE;
2007-07-05 16:01:23 +00:00
net_ping_ip = resolv(argv[1]);
if (!net_ping_ip) {
printf("unknown host %s\n", argv[1]);
return 1;
}
ping_con = net_icmp_new(net_ping_ip, ping_handler, NULL);
if (IS_ERR(ping_con)) {
ret = PTR_ERR(ping_con);
goto out;
}
ping_start = get_time_ns();
ret = ping_send();
if (ret)
goto out_unreg;
ping_state = PING_STATE_INIT;
ping_sequence_number = 0;
while (ping_state == PING_STATE_INIT) {
if (ctrlc()) {
ret = -EINTR;
break;
}
net_poll();
if (is_timeout(ping_start, SECOND)) {
/* No answer, send another packet */
ping_start = get_time_ns();
ret = ping_send();
if (ret)
goto out_unreg;
retries++;
}
if (retries > PKT_NUM_RETRIES) {
ret = -ETIMEDOUT;
goto out_unreg;
}
2007-07-05 16:01:23 +00:00
}
if (!ret)
printf("host %s is alive\n", argv[1]);
2007-07-05 16:01:23 +00:00
out_unreg:
net_unregister(ping_con);
out:
if (ret)
printf("ping failed: %s\n", strerror(-ret));
return ping_state == PING_STATE_SUCCESS ? 0 : 1;
2007-07-05 16:01:23 +00:00
}
BAREBOX_CMD_START(ping)
.cmd = do_ping,
commands: harmonize in-barebox documentation This patch does probably too much, but it's hard (and very cumbersome/time consuming) to break it out. What is does is this: * each command has one short description, e.g. "list MUX configuration" * made sure the short descriptions start lowercase * each command has one usage. That string contains just the options, e.g. "[-npn]". It's not part of the long help text. * that is, it doesn't say "[OPTIONS]" anymore, every usable option is listed by character in this (short) option string (the long description is in the long help text, as before) * help texts have been reworked, to make them - sometimes smaller - sometimes describe the options better - more often present themselves in a nicer format * all long help texts are now created with BUSYBOX_CMD_HELP_ macros, no more 'static const __maybe_unused char cmd_foobar_help[]' * made sure the long help texts starts uppercase * because cmdtp->name and cmdtp->opts together provide the new usage, all "Usage: foobar" texts have been removed from the long help texts * BUSYBOX_CMD_HELP_TEXT() provides the trailing newline by itself, this is nicer in the source code * BUSYBOX_CMD_HELP_OPT() provides the trailing newline by itself * made sure no line gets longer than 77 characters * delibertely renamed cmdtp->usage, so that we can get compile-time errors (e.g. in out-of-tree modules that use register_command() * the 'help' command can now always emit the usage, even without compiled long help texts * 'help -v' gives a list of commands with their short description, this is similar like the old "help" command before my patchset * 'help -a' gives out help of all commands Signed-off-by: Holger Schurig <holgerschurig@gmail.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
2014-05-13 08:28:42 +00:00
BAREBOX_CMD_DESC("send ICMP echo requests")
BAREBOX_CMD_OPTS("DESTINATION")
BAREBOX_CMD_GROUP(CMD_GRP_NET)
BAREBOX_CMD_END