xref: /freebsd-14.2/lib/libc/sys/bind.2 (revision a5aa0913)
1.\" Copyright (c) 1983, 1993
2.\"	The Regents of the University of California.  All rights reserved.
3.\"
4.\" Redistribution and use in source and binary forms, with or without
5.\" modification, are permitted provided that the following conditions
6.\" are met:
7.\" 1. Redistributions of source code must retain the above copyright
8.\"    notice, this list of conditions and the following disclaimer.
9.\" 2. Redistributions in binary form must reproduce the above copyright
10.\"    notice, this list of conditions and the following disclaimer in the
11.\"    documentation and/or other materials provided with the distribution.
12.\" 3. All advertising materials mentioning features or use of this software
13.\"    must display the following acknowledgement:
14.\"	This product includes software developed by the University of
15.\"	California, Berkeley and its contributors.
16.\" 4. Neither the name of the University nor the names of its contributors
17.\"    may be used to endorse or promote products derived from this software
18.\"    without specific prior written permission.
19.\"
20.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30.\" SUCH DAMAGE.
31.\"
32.\"     @(#)bind.2	8.1 (Berkeley) 6/4/93
33.\" $FreeBSD$
34.\"
35.Dd June 4, 1993
36.Dt BIND 2
37.Os BSD 4.2
38.Sh NAME
39.Nm bind
40.Nd assign a local protocol address to a socket.
41.Sh SYNOPSIS
42.Fd #include <sys/types.h>
43.Fd #include <sys/socket.h>
44.Ft int
45.Fn bind "int s" "const struct sockaddr *addr" "socklen_t addrlen"
46.Sh DESCRIPTION
47.Fn Bind
48assigns the local protocol address to a socket.
49When a socket is created
50with
51.Xr socket 2
52it exists in an address family space but has no protocol address assigned.
53.Fn Bind
54requests that
55.Fa addr
56be assigned to the socket.
57.Sh NOTES
58Binding an address in the UNIX domain creates a socket in the file
59system that must be deleted by the caller when it is no longer
60needed (using
61.Xr unlink 2 ) .
62.Pp
63The rules used in address binding vary between communication domains.
64Consult the manual entries in section 4 for detailed information.
65.Sh IMPLEMENTATION NOTES
66.Pp
67In the non-threaded library
68.Fn bind
69is implemented as the
70.Va bind
71syscall.
72.Pp
73In the threaded library, the
74.Va bind
75syscall is assembled to
76.Fn _thread_sys_bind
77and
78.Fn bind
79is implemented as a function which locks
80.Va s
81for read and write, then calls
82.Fn _thread_sys_bind .
83Before returning,
84.Fn bind
85unlocks
86.Va s .
87.Sh RETURN VALUES
88If the bind is successful, a 0 value is returned.
89A return value of -1 indicates an error, which is
90further specified in the global
91.Va errno .
92.Sh ERRORS
93The
94.Fn bind
95call will fail if:
96.Bl -tag -width EADDRNOTAVA
97.It Bq Er EAGAIN
98Kernel resources to complete the request are
99temporarily unavilable.
100.It Bq Er EBADF
101.Fa S
102is not a valid descriptor.
103.It Bq Er ENOTSOCK
104.Fa S
105is not a socket.
106.It Bq Er EADDRNOTAVAIL
107The specified address is not available from the local machine.
108.It Bq Er EADDRINUSE
109The specified address is already in use.
110.It Bq Er EACCES
111The requested address is protected, and the current user
112has inadequate permission to access it.
113.It Bq Er EFAULT
114The
115.Fa addr
116parameter is not in a valid part of the user
117address space.
118.El
119.Pp
120The following errors are specific to binding addresses in the UNIX domain.
121.Bl -tag -width EADDRNOTAVA
122.It Bq Er ENOTDIR
123A component of the path prefix is not a directory.
124.It Bq Er ENAMETOOLONG
125A component of a pathname exceeded 255 characters,
126or an entire path name exceeded 1023 characters.
127.It Bq Er ENOENT
128A prefix component of the path name does not exist.
129.It Bq Er ELOOP
130Too many symbolic links were encountered in translating the pathname.
131.It Bq Er EIO
132An I/O error occurred while making the directory entry or allocating the inode.
133.It Bq Er EROFS
134The name would reside on a read-only file system.
135.It Bq Er EISDIR
136An empty pathname was specified.
137.El
138.Sh SEE ALSO
139.Xr connect 2 ,
140.Xr getsockname 2 ,
141.Xr listen 2 ,
142.Xr socket 2
143.Sh HISTORY
144The
145.Fn bind
146function call appeared in
147.Bx 4.2 .
148