4c9bf3f8b13a54c2c15145d34c6e49087f63448f
[dragonfly.git] / lib / libc / net / getifaddrs.3
1 .\"     $KAME: getifaddrs.3,v 1.4 2000/05/17 14:13:14 itojun Exp $
2 .\"     BSDI    getifaddrs.3,v 2.5 2000/02/23 14:51:59 dab Exp
3 .\"
4 .\" Copyright (c) 1995, 1999
5 .\"     Berkeley Software Design, Inc.  All rights reserved.
6 .\"
7 .\" Redistribution and use in source and binary forms, with or without
8 .\" modification, are permitted provided that the following conditions
9 .\" are met:
10 .\" 1. Redistributions of source code must retain the above copyright
11 .\"    notice, this list of conditions and the following disclaimer.
12 .\"
13 .\" THIS SOFTWARE IS PROVIDED BY Berkeley Software Design, Inc. ``AS IS'' AND
14 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16 .\" ARE DISCLAIMED.  IN NO EVENT SHALL Berkeley Software Design, Inc. BE LIABLE
17 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23 .\" SUCH DAMAGE.
24 .\"
25 .\" $FreeBSD: src/lib/libc/net/getifaddrs.3,v 1.10 2005/02/09 18:03:13 ru Exp $
26 .\"
27 .Dd February 24, 2014
28 .Dt GETIFADDRS 3
29 .Os
30 .Sh NAME
31 .Nm getifaddrs
32 .Nd get interface addresses
33 .Sh LIBRARY
34 .Lb libc
35 .Sh SYNOPSIS
36 .In sys/types.h
37 .In sys/socket.h
38 .In ifaddrs.h
39 .Ft int
40 .Fn getifaddrs "struct ifaddrs **ifap"
41 .Ft void
42 .Fn freeifaddrs "struct ifaddrs *ifp"
43 .Sh DESCRIPTION
44 The
45 .Fn getifaddrs
46 function stores a reference to a linked list of the network interfaces
47 on the local machine in the memory referenced by
48 .Fa ifap .
49 The list consists of
50 .Nm ifaddrs
51 structures, as defined in the include file
52 .In ifaddrs.h .
53 The
54 .Nm ifaddrs
55 structure contains at least the following entries:
56 .Bd -literal
57     struct ifaddrs   *ifa_next;         /* Pointer to next struct */
58     char             *ifa_name;         /* Interface name */
59     u_int             ifa_flags;        /* Interface flags */
60     struct sockaddr  *ifa_addr;         /* Interface address */
61     struct sockaddr  *ifa_netmask;      /* Interface netmask */
62     struct sockaddr  *ifa_dstaddr;      /* P2P interface destination */
63     void             *ifa_data;         /* Address specific data */
64 .Ed
65 .Pp
66 The
67 .Fa ifa_next
68 field contains a pointer to the next structure on the list.
69 This field is
70 .Dv NULL
71 in last structure on the list.
72 .Pp
73 The
74 .Fa ifa_name
75 field contains the interface name.
76 .Pp
77 The
78 .Fa ifa_flags
79 field contains the interface flags, as set by
80 .Xr ifconfig 8
81 utility.
82 .Pp
83 The
84 .Fa ifa_addr
85 field references either the address of the interface or the link level
86 address of the interface, if one exists, otherwise it is NULL.
87 (The
88 .Fa sa_family
89 field of the
90 .Fa ifa_addr
91 field should be consulted to determine the format of the
92 .Fa ifa_addr
93 address.)
94 .Pp
95 The
96 .Fa ifa_netmask
97 field references the netmask associated with
98 .Fa ifa_addr ,
99 if one is set, otherwise it is NULL.
100 .Pp
101 The
102 .Fa ifa_dstaddr
103 field references the destination address on a P2P interface,
104 if one exists, otherwise it is NULL.
105 .Pp
106 The
107 .Fa ifa_broadaddr
108 field,
109 which should only be referenced for non-P2P interfaces,
110 references the broadcast address associated with
111 .Fa ifa_addr ,
112 if one exists, otherwise it is NULL.
113 It is really just another name for
114 .Fa ifa_dstaddr .
115 .Pp
116 The
117 .Fa ifa_data
118 field references address family specific data.
119 For
120 .Dv AF_LINK
121 addresses it contains a pointer to the
122 .Vt struct if_data
123 (as defined in include file
124 .In net/if.h )
125 which contains various interface attributes and statistics.
126 For all other address families, it contains a pointer to the
127 .Vt struct ifa_data
128 (as defined in include file
129 .In net/if.h )
130 which contains per-address interface statistics.
131 .Pp
132 The data returned by
133 .Fn getifaddrs
134 is dynamically allocated and should be freed using
135 .Fn freeifaddrs
136 when no longer needed.
137 .Sh RETURN VALUES
138 .Rv -std getifaddrs
139 .Sh ERRORS
140 The
141 .Fn getifaddrs
142 may fail and set
143 .Va errno
144 for any of the errors specified for the library routines
145 .Xr ioctl 2 ,
146 .Xr socket 2 ,
147 .Xr malloc 3
148 or
149 .Xr sysctl 3 .
150 .Sh SEE ALSO
151 .Xr ioctl 2 ,
152 .Xr socket 2 ,
153 .Xr sysctl 3 ,
154 .Xr networking 4 ,
155 .Xr ifconfig 8
156 .Sh HISTORY
157 The
158 .Nm
159 implementation first appeared in BSDi
160 .Bsx .
161 .Sh BUGS
162 If both
163 .In net/if.h
164 and
165 .In ifaddrs.h
166 are being included,
167 .In net/if.h
168 .Em must
169 be included before
170 .In ifaddrs.h .