Sortix nightly manual
This manual documents Sortix nightly, a development build that has not been officially released. You can instead view this document in the latest official manual.
NAME
ping — ping protocolSYNOPSIS
#include <sys/socket.h>#include <netinet/in.h>
#include <netinet/ping.h>
socket(AF_INET, SOCK_DGRAM, IPPROTO_PING);
DESCRIPTION
The Ping Protocol uses the Echo Request and Echo Reply messages of the Internet Control Message Protocol (ICMP) to provide a connectionless best-effort echo of datagrams. A cooperating host will send back a Echo Reply message containing the same data as any Echo Request messages it receives. It is designed for packet-switched networks and provides multiplexing with a 16-bit port number (using the identifier field of the Echo Request and Echo Reply messages), and basic data integrity checks (16-bit ones' complement sum), and broadcasting. It does not provide a guarantee of delivery, avoidance of delivering multiple times, ordering, out of band data, nor flow control.- The address family it belongs to.
- The network interface it is bound to (if any) (SO_BINDTODEVICE and SO_BINDTOINDEX) (initially none).
- The local address and port (when bound) (initially none).
- The remote address and port (when connected) (initially none).
- A receive queue (initially empty).
- Whether the socket has been shutdown(2) for read and/or write (initially neither).
- A single pending asynchronous error (if any) (SO_ERROR) (initially none).
- Whether broadcast datagrams can be sent (SO_BROADCAST) (initially no).
- Whether binding to the any address and a port doesn't conflict with binding to another address on the same port (SO_REUSEADDR) (initially no).
- Limits on the size of the receive and send queues (SO_RCVBUF and SO_SNDBUF).
- The datagram belongs to the socket's address family and the protocol is Ping.
- The datagram's checksum matches the datagram.
- The datagram is an Echo Reply message.
- The datagram's port number is not port 0.
- The datagram is sent to the address or broadcast address of the network interface it is received on, or the datagram was sent to the broadcast address;
- The socket is either bound to the receiving network interface, or the socket is not bound to a network interface;
- The datagram is sent to the socket's local port;
- The datagram is sent to the socket's local address, or the socket's local address is the any address (and no other socket is bound to the datagram's address and that port);
- The socket is connected and the datagram was sent from the remote address and the remote port, or the socket is not connected; and
- The socket is not shut down for reading.
SOCKET OPTIONS
Ping sockets support these setsockopt(2) / getsockopt(2) options at level SOL_SOCKET:- SO_BINDTODEVICE char[]
- Bind to a network interface by its name. (Described in if(4))
- SO_BINDTOINDEX unsigned int
- Bind to a network interface by its index number. (Described in if(4))
- SO_BROADCAST int
- Whether sending to a broadcast address is allowed. (Described in if(4))
- SO_DEBUG int
- Whether the socket is in debug mode. This option is not implemented and is initially 0. Attempting to set it to non-zero will fail with EPERM. (Described in if(4))
- SO_DOMAIN sa_family_t
- The socket domain (the address family). This option can only be read. (Described in if(4))
- SO_DONTROUTE int
- Whether to bypass the routing table and only send on the local network. This option is not implemented and is initially 0. Attempting to set it to non-zero will fail with EPERM. (Described in if(4))
- SO_ERROR int
- The asynchronous pending error (an errno(3) value). Cleared to 0 when read. This option can only be read. (Described in if(4))
- SO_PROTOCOL int
- The socket protocol (IPPROTO_PING). This option can only be read. (Described in if(4))
- SO_RCVBUF int
- How many bytes the receive queue can use (default is 64 pages, max 4096 pages). (Described in if(4))
- SO_REUSEADDR int
- Whether binding to the any address on a port doesn't conflict with binding to another address and the same port, if both sockets have this option set and the user binding the second socket is the same that bound the first socket or the user binding the second socket has superuser privileges. (Described in if(4))
- SO_SNDBUF int
- How many bytes the send queue can use (default is 64 pages, max 4096 pages). (Described in if(4))
- SO_TYPE int
- The socket type (SOCK_DGRAM). This option can only be read. (Described in if(4))
IMPLEMENTATION NOTES
Received broadcast echo requests are ignored as permitted by RFC 1122 3.2.2.6.EXAMPLES
This example sends a Echo Request and blocks indefinitely until it receives a Echo Reply. remote is the remote socket address and remote_len is the size of remote. The remote and remote_len values should all be chosen according to the address family and network layer.sa_family_t af = /* ... */; const struct sockaddr *remote = /* ... */; socklen_t remote_len = /* ... */; int fd = socket(af, SOCK_DGRAM, IPPROTO_PING); if (fd < 0) err(1, "socket"); if (connect(fd, remote, remote_len) < 0) err(1, "connect"); unsigned char request[56]; arc4random_buf(request, sizeof(request)); if (send(fd, request, sizeof(request), 0) < 0) err(1, "send"); unsigned char reply[56 + 1 /* detect too large reply */]; ssize_t amount = recv(fd, reply, sizeof(reply), 0); if (amount < 0 ) err(1, "recv"); if (amount == sizeof(request) && !memcmp(request, reply, sizeof(request))) printf("correct echo reply\n"); else printf("incorrect echo reply\n");
ERRORS
Socket operations can fail due to these error conditions, in addition to the error conditions of the network and link layer, and the error conditions of the invoked function.- [EACCES]
- A datagram was sent to a broadcast address, but SO_BROADCAST is turned off.
- [EADDRINUSE]
- The socket cannot be bound to the requested address and port because another socket was already bound to 1) the same address and port 2) the any address and the same port (and SO_REUSEADDR was not set on both sockets), or 3) some address and the same port but the requested address was the any address (and SO_REUSEADDR was not set on both sockets).
- [EADDRNOTAVAIL]
- The socket cannot be bound to the requested address because no network interface had that address or broadcast address.
- [EAGAIN]
- A port could not be assigned because each port in the dynamic port range had already been bound to a socket in a conflicting manner.
- [ECONNREFUSED]
- The destination host of a datagram was not listening on the port. This error can happen asynchronously.
- [EHOSTDOWN]
- The destination host of a datagram is not up. This error can happen asynchronously.
- [EHOSTUNREACH]
- The destination host of a datagram was unreachable. This error can happen asynchronously.
- [EISCONN]
- A destination address and port was specified when sending a datagram, but the socket has already been connected to a remote address and port.
- [EMSGSIZE]
- The datagram was too large to be sent because it exceeded the maximum transmission unit (MTU) on the path between the local and remote address. This error can happen asynchronously.
- [ENETDOWN]
- The network interface used to deliver a datagram isn't up. This error can happen asynchronously.
- [ENETUNREACH]
- The destination network of a datagram was unreachable. This error can happen asynchronously.
- [ENETUNREACH]
- The remote address could not be connected because there was no route from the local address to the remote address.
- [ENOBUFS]
- There was not enough memory available for network packets.
- [EPERM]
- One of the unimplemented SO_DEBUG and SO_DONTROUTE socket options was attempted to be set to a non-zero value.