1 .\" Copyright 1993 Rickard E. Faith (faith@cs.unc.edu)
2 .\" and Copyright 2005-2007, Michael Kerrisk <mtk.manpages@gmail.com>
3 .\" Portions extracted from /usr/include/sys/socket.h, which does not have
4 .\" any authorship information in it. It is probably available under the GPL.
6 .\" %%%LICENSE_START(VERBATIM)
7 .\" Permission is granted to make and distribute verbatim copies of this
8 .\" manual provided the copyright notice and this permission notice are
9 .\" preserved on all copies.
11 .\" Permission is granted to copy and distribute modified versions of this
12 .\" manual under the conditions for verbatim copying, provided that the
13 .\" entire resulting derived work is distributed under the terms of a
14 .\" permission notice identical to this one.
16 .\" Since the Linux kernel and libraries are constantly changing, this
17 .\" manual page may be incorrect or out-of-date. The author(s) assume no
18 .\" responsibility for errors or omissions, or for damages resulting from
19 .\" the use of the information contained herein. The author(s) may not
20 .\" have taken the same level of care in the production of this manual,
21 .\" which is licensed free of charge, as they might when working
24 .\" Formatted or processed versions of this manual, if unaccompanied by
25 .\" the source, must acknowledge the copyright and authors of this work.
29 .\" Other portions are from the 6.9 (Berkeley) 3/10/91 man page:
31 .\" Copyright (c) 1983 The Regents of the University of California.
32 .\" All rights reserved.
34 .\" %%%LICENSE_START(BSD_4_CLAUSE_UCB)
35 .\" Redistribution and use in source and binary forms, with or without
36 .\" modification, are permitted provided that the following conditions
38 .\" 1. Redistributions of source code must retain the above copyright
39 .\" notice, this list of conditions and the following disclaimer.
40 .\" 2. Redistributions in binary form must reproduce the above copyright
41 .\" notice, this list of conditions and the following disclaimer in the
42 .\" documentation and/or other materials provided with the distribution.
43 .\" 3. All advertising materials mentioning features or use of this software
44 .\" must display the following acknowledgement:
45 .\" This product includes software developed by the University of
46 .\" California, Berkeley and its contributors.
47 .\" 4. Neither the name of the University nor the names of its contributors
48 .\" may be used to endorse or promote products derived from this software
49 .\" without specific prior written permission.
51 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
52 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
53 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
54 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
55 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
56 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
57 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
58 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
59 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
60 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
64 .\" Modified Mon Oct 21 23:05:29 EDT 1996 by Eric S. Raymond <esr@thyrsus.com>
65 .\" Modified 1998 by Andi Kleen
66 .\" $Id: bind.2,v 1.3 1999/04/23 19:56:07 freitag Exp $
67 .\" Modified 2004-06-23 by Michael Kerrisk <mtk.manpages@gmail.com>
69 .TH BIND 2 2021-03-22 "Linux" "Linux Programmer's Manual"
71 bind \- bind a name to a socket
74 .B #include <sys/socket.h>
76 .BI "int bind(int " sockfd ", const struct sockaddr *" addr ,
77 .BI " socklen_t " addrlen );
80 When a socket is created with
82 it exists in a name space (address family) but has no address assigned to it.
84 assigns the address specified by
86 to the socket referred to by the file descriptor
89 specifies the size, in bytes, of the address structure pointed to by
91 Traditionally, this operation is called \(lqassigning a name to a socket\(rq.
93 It is normally necessary to assign a local address using
97 socket may receive connections (see
100 The rules used in name binding vary between address families.
101 Consult the manual entries in Section 7 for detailed information.
131 The actual structure passed for the
133 argument will depend on the address family.
136 structure is defined as something like:
141 sa_family_t sa_family;
147 The only purpose of this structure is to cast the structure
150 in order to avoid compiler warnings.
153 On success, zero is returned.
154 On error, \-1 is returned, and
156 is set to indicate the error.
160 .\" e.g., privileged port in AF_INET domain
161 The address is protected, and the user is not the superuser.
164 The given address is already in use.
167 (Internet domain sockets)
168 The port number was specified as zero in the socket address structure,
169 but, upon attempting to bind to an ephemeral port,
170 it was determined that all port numbers in the ephemeral port range
171 are currently in use.
172 See the discussion of
173 .I /proc/sys/net/ipv4/ip_local_port_range
178 is not a valid file descriptor.
181 The socket is already bound to an address.
182 .\" This may change in the future: see
183 .\" .I linux/unix/sock.c for details.
189 is not a valid address for this socket's domain.
194 does not refer to a socket.
196 The following errors are specific to UNIX domain
201 Search permission is denied on a component of the path prefix.
203 .BR path_resolution (7).)
206 A nonexistent interface was requested or the requested
207 address was not local.
211 points outside the user's accessible address space.
214 Too many symbolic links were encountered in resolving
222 A component in the directory prefix of the socket pathname does not exist.
225 Insufficient kernel memory was available.
228 A component of the path prefix is not a directory.
231 The socket inode would reside on a read-only filesystem.
233 POSIX.1-2001, POSIX.1-2008, SVr4, 4.4BSD
235 first appeared in 4.2BSD).
236 .\" SVr4 documents an additional
238 .\" general error condition, and
243 .\" UNIX-domain error conditions.
245 For background on the
250 The transparent proxy options are not described.
251 .\" FIXME Document transparent proxy options
253 An example of the use of
255 with Internet domain sockets can be found in
258 The following example shows how to bind a stream socket in the UNIX
260 domain, and accept connections:
261 .\" listen.7 refers to this example.
262 .\" accept.7 refers to this example.
263 .\" unix.7 refers to this example.
266 #include <sys/socket.h>
272 #define MY_SOCK_PATH "/somepath"
273 #define LISTEN_BACKLOG 50
275 #define handle_error(msg) \e
276 do { perror(msg); exit(EXIT_FAILURE); } while (0)
279 main(int argc, char *argv[])
282 struct sockaddr_un my_addr, peer_addr;
283 socklen_t peer_addr_size;
285 sfd = socket(AF_UNIX, SOCK_STREAM, 0);
287 handle_error("socket");
289 memset(&my_addr, 0, sizeof(my_addr));
290 my_addr.sun_family = AF_UNIX;
291 strncpy(my_addr.sun_path, MY_SOCK_PATH,
292 sizeof(my_addr.sun_path) \- 1);
294 if (bind(sfd, (struct sockaddr *) &my_addr,
295 sizeof(my_addr)) == \-1)
296 handle_error("bind");
298 if (listen(sfd, LISTEN_BACKLOG) == \-1)
299 handle_error("listen");
301 /* Now we can accept incoming connections one
302 at a time using accept(2). */
304 peer_addr_size = sizeof(peer_addr);
305 cfd = accept(sfd, (struct sockaddr *) &peer_addr,
308 handle_error("accept");
310 /* Code to deal with incoming connection(s)... */
312 /* When no longer required, the socket pathname, MY_SOCK_PATH
313 should be deleted using unlink(2) or remove(3). */
326 .BR path_resolution (7),