Berkeley sockets
Berkeley sockets is an application programming interface for Internet sockets and Unix domain sockets, used for inter-process communication. It is commonly implemented as a library of linkable modules. It originated with the 4.2BSD Unix operating system, released in 1983.
A socket is an abstract representation for the local endpoint of a network communication path. The Berkeley sockets API represents it as a file descriptor in the Unix philosophy that provides a common interface for input and output to streams of data.
Berkeley sockets evolved with little modification from a de facto standard into a component of the POSIX specification. The term POSIX sockets is essentially synonymous with Berkeley sockets, but they are also known as BSD sockets, acknowledging the first implementation in the Berkeley Software Distribution.
History and implementations
Berkeley sockets originated with the 4.2BSD Unix operating system, released in 1983, as a programming interface. Not until 1989, however, could the University of California, Berkeley release versions of the operating system and networking library free from the licensing constraints of AT&T Corporation's proprietary Unix.All modern operating systems implement a version of the Berkeley socket interface. It became the standard interface for applications running in the Internet. Even the Winsock implementation for MS Windows, created by unaffiliated developers, closely follows the standard.
The BSD sockets API is written in the C programming language. Most other programming languages provide similar interfaces, typically written as a wrapper library based on the C API.
BSD and POSIX sockets
As the Berkeley socket API evolved and ultimately yielded the POSIX socket API, certain functions were deprecated or removed and replaced by others. The POSIX API is also designed to be reentrant.Action | BSD | POSIX |
Conversion from text address to packed address | inet_aton | inet_pton |
Conversion from packed address to text address | inet_ntoa | inet_ntop |
Forward lookup for host name/service | gethostbyname, gethostbyaddr, getservbyname, getservbyport | getaddrinfo |
Reverse lookup for host name/service | gethostbyaddr, getservbyport | getnameinfo |
Alternatives
The STREAMS-based Transport Layer Interface API offers an alternative to the socket API. Many systems that provide the TLI API also provide the Berkeley socket API.Non-Unix systems often expose the Berkeley socket API with a translation layer to a native networking API. Plan 9 and Genode use file-system APIs with control files rather than file-descriptors.
Header files
The Berkeley socket interface is defined in several header files. The names and content of these files differ slightly between implementations. In general, they include:File | Description |
sys/socket.h | Core socket functions and data structures. |
netinet/in.h | AF_INET and AF_INET6 address families and their corresponding protocol families, PF_INET and PF_INET6. These include standard IP addresses and TCP and UDP port numbers. |
sys/un.h | PF_UNIX and PF_LOCAL address family. Used for local communication between programs running on the same computer. |
arpa/inet.h | Functions for manipulating numeric IP addresses. |
netdb.h | Functions for translating protocol names and host names into numeric addresses. Searches local data as well as name services. |
Socket API functions
The Berkeley socket API typically provides the following functions:- socket creates a new socket of a certain type, identified by an integer number, and allocates system resources to it.
- bind is typically used on the server side, and associates a socket with a socket address structure, i.e. a specified local IP address and a port number.
- listen is used on the server side, and causes a bound TCP socket to enter listening state.
- connect is used on the client side, and assigns a free local port number to a socket. In case of a TCP socket, it causes an attempt to establish a new TCP connection.
- accept is used on the server side. It accepts a received incoming attempt to create a new TCP connection from the remote client, and creates a new socket associated with the socket address pair of this connection.
- send, recv, sendto, and recvfrom are used for sending and receiving data. The standard functions write and read may also be used.
- close causes the system to release resources allocated to a socket. In case of TCP, the connection is terminated.
- gethostbyname and gethostbyaddr are used to resolve host names and addresses. IPv4 only.
- select is used to suspend, waiting for one or more of a provided list of sockets to be ready to read, ready to write, or that have errors.
- poll is used to check on the state of a socket in a set of sockets. The set can be tested to see if any socket can be written to, read from or if an error occurred.
- getsockopt is used to retrieve the current value of a particular socket option for the specified socket.
- setsockopt is used to set a particular socket option for the specified socket.
socket
- , which specifies the protocol family of the created socket. For example:
- * for network protocol IPv4
- * for IPv6
- * for local socket
- , one of:
- *
- *
- *
- *
- specifying the actual transport protocol to use. The most common are Transmission Control Protocol|, SCTP|, User Datagram Protocol|, DCCP|. These protocols are specified in file netinet/in.h. The value may be used to select a default protocol from the selected domain and type.
bind
bind associates a socket with an address. When a socket is created with socket, it is only given a protocol family, but not assigned an address. This association must be performed before the socket can accept connections from other hosts. The function has three arguments:- sockfd, a descriptor representing the socket
- my_addr, a pointer to a sockaddr structure representing the address to bind to.
- addrlen, a field of type socklen_t specifying the size of the sockaddr structure.
listen
After a socket has been associated with an address, prepares it for incoming connections. However, this is only necessary for the stream-oriented data modes, i.e., for socket types. listen requires two arguments:- sockfd, a valid socket descriptor.
- backlog, an integer representing the number of pending connections that can be queued up at any one time. The operating system usually places a cap on this value.
accept
When an application is listening for stream-oriented connections from other hosts, it is notified of such events and must initialize the connection using function accept. It creates a new socket for each connection and removes the connection from the listening queue. The function has the following arguments:- sockfd, the descriptor of the listening socket that has the connection queued.
- cliaddr, a pointer to a sockaddr structure to receive the client's address information.
- addrlen, a pointer to a socklen_t location that specifies the size of the client address structure passed to accept. When accept returns, this location contains the size of the structure.
Datagram sockets do not require processing by accept since the receiver may immediately respond to the request using the listening socket.
connect
connect establishes a direct communication link to a specific remote host identified by its address via a socket, identified by its file descriptor.When using a connection-oriented protocol, this establishes a connection. Certain types of protocols are connectionless, most notably the User Datagram Protocol. When used with connectionless protocols, connect defines the remote address for sending and receiving data, allowing the use of functions such as send and recv. In these cases, the connect function prevents reception of datagrams from other sources.
connect returns an integer representing the error code: 0 represents success, while –1 represents an error. Historically, in BSD-derived systems, the state of a socket descriptor is undefined if the call to connect fails, thus, portable applications should close the socket descriptor immediately and obtain a new descriptor with socket, in the case the call to connect fails.
gethostbyname and gethostbyaddr
The functions gethostbyname and gethostbyaddr are used to resolve host names and addresses in the domain name system or the local host's other resolver mechanisms. They return a pointer to an object of type struct hostent, which describes an Internet Protocol host. The functions use the following arguments:- name specifies the DNS name of the host.
- addr specifies a pointer to a struct in_addr containing the address of the host.
- len specifies the length, in bytes, of addr.
- type specifies the address family type of the host address.
These functions are not strictly a component of the BSD socket API, but are often used in conjunction with the API functions. Furthermore, these functions are now considered legacy interfaces for querying the domain name system. New functions that are completely protocol-agnostic have been defined. These new function are getaddrinfo and getnameinfo, and are based on a new addrinfo data structure.
Protocol and address families
The Berkeley socket API is a general interface for networking and interprocess communication, and supports the use of various network protocols and address architectures.The following lists a sampling of protocol families defined in a modern Linux or BSD implementation:
Identifier | Function or use |
PF_LOCAL, PF_UNIX, PF_FILE | Local to host |
PF_INET | Internet Protocol version 4 |
PF_AX25 | Amateur Radio AX.25 |
PF_IPX | Novell's Internetwork Packet Exchange |
PF_APPLETALK | AppleTalk |
PF_NETROM | Amateur radio NetROM |
PF_BRIDGE | Multiprotocol bridge |
PF_ATMPVC | Asynchronous Transfer Mode Permanent Virtual Circuits |
PF_ATMSVC | Asynchronous Transfer Mode Switched Virtual Circuits |
PF_INET6 | Internet Protocol version 6 |
PF_DECnet | Reserved for DECnet project |
PF_NETBEUI | Reserved for 802.2LLC project |
PF_SECURITY | Security callback pseudo AF |
PF_KEY | PF_KEY key management API |
PF_NETLINK, PF_ROUTE | routing API |
PF_PACKET | Packet capture sockets |
PF_ECONET | Acorn Econet |
PF_SNA | Linux Systems Network Architecture Project |
PF_IRDA | IrDA sockets |
PF_PPPOX | PPP over X sockets |
PF_WANPIPE | Sangoma Wanpipe API sockets |
PF_BLUETOOTH | Bluetooth sockets |
A socket for communications is created with the function, by specifying the desired protocol family as an argument.
The original design concept of the socket interface distinguished between protocol types and the specific address types that each may use. It was envisioned that a protocol family may have several address types. Address types were defined by additional symbolic constants, using the prefix instead of. The -identifiers are intended for all data structures that specifically deal with the address type and not the protocol family.
However, this concept of separation of protocol and address type has not found implementation support and the -constants were defined by the corresponding protocol identifier, leaving the distinction between and constants as a technical argument of no practical consequence. Indeed, much confusion exists in the proper usage of both forms.
The POSIX.1—2008 specification doesn't specify any -constants, but only -constants
Raw sockets
s provide a simple interface that bypasses the processing by the host's TCP/IP stack. They permit implementation of networking protocols in user space and aid in debugging of the protocol stack. Raw sockets are used by some services, such as ICMP, that operate at the Internet Layer of the TCP/IP model.Options for sockets
After creating a socket, it is possible to set options on it. Some of the more common options are:- disables the Nagle algorithm.
- enables periodic 'liveness' pings, if supported by the OS.
Blocking and non-blocking mode
A blocking socket does not return control until it has sent some or all data specified for the operation. It is normal for a blocking socket not to send all data. The application must check the return value to determine how many bytes have been sent or received and it must resend any data not already processed. When using blocking sockets, special consideration should be given to accept as it may still block after indicating readability if a client disconnects during the connection phase.
On the other hand, a non-blocking socket returns whatever is in the receive buffer and immediately continues. If not written correctly, programs using non-blocking sockets are particularly susceptible to race conditions due to variances in network link speed.
A socket is typically set to blocking or nonblocking mode using the or functions.
Terminating sockets
The operating system does not release the resources allocated to a socket until the socket is closed. This is especially important if the connect call fails and will be retried.When an application closes a socket, only the interface to the socket is destroyed. It is the kernel's responsibility to destroy the socket internally. Sometimes, a socket may enter a state, on the server side, for up to 4 minutes.
On SVR4 systems use of may discard data. The use of or SO_LINGER may be required on these systems to guarantee delivery of all data.
Client-server example using TCP
The Transmission Control Protocol is a connection-oriented protocol that provides a variety of error correction and performance features for transmission of byte streams. A process creates a TCP socket by calling the function with the parameters for the protocol family, the socket mode for Stream Sockets, and the IP protocol identifier for TCP.Server
Establishing a TCP server involves the following basic steps:- Creating a TCP socket with a call to socket
- Binding the socket to the listening port after setting the port number
- Preparing the socket to listen for connections, with a call to listen.
- Accepting incoming connections. This blocks the process until an incoming connection is received, and returns a socket descriptor for the accepted connection. The initial descriptor remains a listening descriptor, and accept can be called again at any time with this socket, until it is closed.
- Communicating with the remote host with the API functions send and recv, as well as with the general-purpose functions write and read.
- Closing each socket that was opened after use with function close
#include
#include
#include
#include
#include
#include
#include
#include
int main
Client
Programming a TCP client application involves the following steps:- Creating a TCP socket
- Connecting to the server, by passing a structure with the set to, set to the port the endpoint is listening, and set to the IP address of the listening server
- Communicating with the remote host with the API functions send and recv, as well as with the general-purpose functions write and read.
- Closing each socket that was opened after use with function close
#include
#include
#include
#include
#include
#include
#include
#include
int main
Client-server example using UDP
The User Datagram Protocol is a connectionless protocol with no guarantee of delivery. UDP packets may arrive out of order, multiple times, or not at all. Because of this minimal design, UDP has considerably less overhead than TCP. Being connectionless means that there is no concept of a stream or permanent connection between two hosts. Such data are referred to as datagrams.UDP address space, the space of UDP port numbers, is completely disjoint from that of TCP ports.
Server
An application may set up a UDP server on port number 7654 as follows. The programs contains an infinite loop that receives UDP datagrams with function recvfrom.- include
- include
- include
- include
- include
- include
- include
/* for close for socket */ - include
Client
The following is a client program for sending a UDP packet containing the string "Hello World!" to address 127.0.0.1 at port number 7654.- include
- include
- include
- include
- include
- include
- include
- include
- include
In this code, buffer is a pointer to the data to be sent, and buffer_length specifies the size of the data.