]> git.saurik.com Git - apple/xnu.git/blame_incremental - bsd/man/man2/socket.2
xnu-1228.7.58.tar.gz
[apple/xnu.git] / bsd / man / man2 / socket.2
... / ...
CommitLineData
1.\" $NetBSD: socket.2,v 1.5 1995/02/27 12:37:53 cgd Exp $
2.\"
3.\" Copyright (c) 1983, 1991, 1993
4.\" The Regents of the University of California. All rights reserved.
5.\"
6.\" Redistribution and use in source and binary forms, with or without
7.\" modification, are permitted provided that the following conditions
8.\" are met:
9.\" 1. Redistributions of source code must retain the above copyright
10.\" notice, this list of conditions and the following disclaimer.
11.\" 2. Redistributions in binary form must reproduce the above copyright
12.\" notice, this list of conditions and the following disclaimer in the
13.\" documentation and/or other materials provided with the distribution.
14.\" 3. All advertising materials mentioning features or use of this software
15.\" must display the following acknowledgement:
16.\" This product includes software developed by the University of
17.\" California, Berkeley and its contributors.
18.\" 4. Neither the name of the University nor the names of its contributors
19.\" may be used to endorse or promote products derived from this software
20.\" without specific prior written permission.
21.\"
22.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32.\" SUCH DAMAGE.
33.\"
34.\" @(#)socket.2 8.1 (Berkeley) 6/4/93
35.\"
36.Dd June 4, 1993
37.Dt SOCKET 2
38.Os BSD 4.2
39.Sh NAME
40.Nm socket
41.Nd create an endpoint for communication
42.Sh SYNOPSIS
43.Fd #include <sys/socket.h>
44.Ft int
45.Fo socket
46.Fa "int domain"
47.Fa "int type"
48.Fa "int protocol"
49.Fc
50.Sh DESCRIPTION
51.Fn Socket
52creates an endpoint for communication and returns a descriptor.
53.Pp
54The
55.Fa domain
56parameter specifies a communications domain within which
57communication will take place; this selects the protocol family
58which should be used.
59These families are defined in the include file
60.Ao Pa sys/socket.h Ac .
61The currently understood formats are
62.Pp
63.Bd -literal -offset indent -compact
64AF_UNIX (UNIX internal protocols),
65AF_INET (ARPA Internet protocols),
66AF_ISO (ISO protocols),
67AF_NS (Xerox Network Systems protocols), and
68AF_IMPLINK (IMP \*(lqhost at IMP\*(rq link layer).
69.Ed
70.Pp
71The socket has the indicated
72.Fa type ,
73which specifies the semantics of communication. Currently
74defined types are:
75.Pp
76.Bd -literal -offset indent -compact
77SOCK_STREAM
78SOCK_DGRAM
79SOCK_RAW
80SOCK_SEQPACKET
81SOCK_RDM
82.Ed
83.Pp
84A
85.Dv SOCK_STREAM
86type provides sequenced, reliable,
87two-way connection based byte streams.
88An out-of-band data transmission mechanism may be supported.
89A
90.Dv SOCK_DGRAM
91socket supports
92datagrams (connectionless, unreliable messages of
93a fixed (typically small) maximum length).
94A
95.Dv SOCK_SEQPACKET
96socket may provide a sequenced, reliable,
97two-way connection-based data transmission path for datagrams
98of fixed maximum length; a consumer may be required to read
99an entire packet with each read system call.
100This facility is protocol specific, and presently implemented
101only for
102.Dv PF_NS .
103.Dv SOCK_RAW
104sockets provide access to internal network protocols and interfaces.
105The types
106.Dv SOCK_RAW ,
107which is available only to the super-user, and
108.Dv SOCK_RDM ,
109which is planned,
110but not yet implemented, are not described here.
111.Pp
112The
113.Fa protocol
114specifies a particular protocol to be used with the socket.
115Normally only a single protocol exists to support a particular
116socket type within a given protocol family. However, it is possible
117that many protocols may exist, in which case a particular protocol
118must be specified in this manner. The protocol number to use is
119particular to the \*(lqcommunication domain\*(rq in which communication
120is to take place; see
121.Xr protocols 5 .
122.Pp
123Sockets of type
124.Dv SOCK_STREAM
125are full-duplex byte streams, similar
126to pipes. A stream socket must be in a
127.Em connected
128state before any data may be sent or received
129on it. A connection to another socket is created with a
130.Xr connect 2
131call. Once connected, data may be transferred using
132.Xr read 2
133and
134.Xr write 2
135calls or some variant of the
136.Xr send 2
137and
138.Xr recv 2
139calls. When a session has been completed a
140.Xr close 2
141may be performed.
142Out-of-band data may also be transmitted as described in
143.Xr send 2
144and received as described in
145.Xr recv 2 .
146.Pp
147The communications protocols used to implement a
148.Dv SOCK_STREAM
149insure that data
150is not lost or duplicated. If a piece of data for which the
151peer protocol has buffer space cannot be successfully transmitted
152within a reasonable length of time, then
153the connection is considered broken and calls
154will indicate an error with
155-1 returns and with
156.Dv ETIMEDOUT
157as the specific code
158in the global variable
159.Va errno .
160The protocols optionally keep sockets
161.Dq warm
162by forcing transmissions
163roughly every minute in the absence of other activity.
164An error is then indicated if no response can be
165elicited on an otherwise
166idle connection for a extended period (e.g. 5 minutes).
167A
168.Dv SIGPIPE
169signal is raised if a process sends
170on a broken stream; this causes naive processes,
171which do not handle the signal, to exit.
172.Pp
173.Dv SOCK_SEQPACKET
174sockets employ the same system calls
175as
176.Dv SOCK_STREAM
177sockets. The only difference
178is that
179.Xr read 2
180calls will return only the amount of data requested,
181and any remaining in the arriving packet will be discarded.
182.Pp
183.Dv SOCK_DGRAM
184and
185.Dv SOCK_RAW
186sockets allow sending of datagrams to correspondents
187named in
188.Xr send 2
189calls. Datagrams are generally received with
190.Xr recvfrom 2 ,
191which returns the next datagram with its return address.
192.Pp
193An
194.Xr fcntl 2
195call can be used to specify a process group to receive
196a
197.Dv SIGURG
198signal when the out-of-band data arrives.
199It may also enable non-blocking I/O
200and asynchronous notification of I/O events
201via
202.Dv SIGIO .
203.Pp
204The operation of sockets is controlled by socket level
205.Em options .
206These options are defined in the file
207.Ao Pa sys/socket.h Ac .
208.Xr Setsockopt 2
209and
210.Xr getsockopt 2
211are used to set and get options, respectively.
212.Sh RETURN VALUES
213A -1 is returned if an error occurs, otherwise the return
214value is a descriptor referencing the socket.
215.Sh ERRORS
216The
217.Fn socket
218system call fails if:
219.Bl -tag -width Er
220.\" ===========
221.It Bq Er EACCES
222Permission to create a socket of the specified type and/or protocol
223is denied.
224.\" ===========
225.It Bq Er EAFNOSUPPORT
226The specified address family is not supported.
227.\" ===========
228.It Bq Er EISCONN
229The per-process descriptor table is full.
230.\" ===========
231.It Bq Er EMFILE
232The per-process descriptor table is full.
233.\" ===========
234.It Bq Er ENFILE
235The system file table is full.
236.\" ===========
237.It Bq Er ENOBUFS
238Insufficient buffer space is available.
239The socket cannot be created until sufficient resources are freed.
240.\" ===========
241.It Bq Er ENOMEM
242Insufficient memory was available to fulfill the request.
243.\" ===========
244.It Bq Er EPROTONOSUPPORT
245The protocol type or the specified protocol is not supported
246within this domain.
247.\" ===========
248.It Bq Er EPROTOTYPE
249The socket type is not supported by the protocol.
250.El
251.Pp
252If a new protocol family is defined,
253the socreate process is free to return any desired error code.
254The
255.Fn socket
256system call will pass this error code along
257(even if it is undefined).
258.Sh LEGACY SYNOPSIS
259.Fd #include <sys/types.h>
260.Fd #include <sys/socket.h>
261.Pp
262The include file
263.In sys/types.h
264is necessary.
265.Sh SEE ALSO
266.Xr accept 2 ,
267.Xr bind 2 ,
268.Xr connect 2 ,
269.Xr getsockname 2 ,
270.Xr getsockopt 2 ,
271.Xr ioctl 2 ,
272.Xr listen 2 ,
273.Xr read 2 ,
274.Xr recv 2 ,
275.Xr select 2 ,
276.Xr send 2 ,
277.Xr shutdown 2 ,
278.Xr socketpair 2 ,
279.Xr write 2 ,
280.Xr getprotoent 3 ,
281.Xr inet 4 ,
282.Xr inet6 4 ,
283.Xr unix 4 ,
284.Xr compat 5
285.Rs
286.%T "An Introductory 4.3 BSD Interprocess Communication Tutorial"
287.%O "reprinted in UNIX Programmer's Supplementary Documents Volume 1"
288.Re
289.Rs
290.%T "BSD Interprocess Communication Tutorial"
291.%O "reprinted in UNIX Programmer's Supplementary Documents Volume 1"
292.Re
293.Sh HISTORY
294The
295.Fn socket
296function call appeared in
297.Bx 4.2 .