summaryrefslogtreecommitdiff
path: root/usr/src/man/man3nsl/netdir.3nsl
blob: 310aea1772c8c7daf7f9de2e65475461a47d60cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
'\" te
.\" Copyright 2015 Nexenta Systems, Inc.  All rights reserved.
.\"  Copyright 1989 AT&T
.\" Copyright (C) 2005, Sun Microsystems, Inc. All Rights Reserved
.\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License").  You may not use this file except in compliance with the License.
.\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing.  See the License for the specific language governing permissions and limitations under the License.
.\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE.  If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner]
.TH NETDIR 3NSL "Feb 14, 2015"
.SH NAME
netdir, netdir_getbyname, netdir_getbyaddr, netdir_free, netdir_options,
taddr2uaddr, uaddr2taddr, netdir_perror, netdir_sperror, netdir_mergeaddr \-
generic transport name-to-address translation
.SH SYNOPSIS
.LP
.nf
\fBcc\fR [ \fIflag\fR... ] \fIfile\fR... \fB-lnsl\fR [ \fIlibrary\fR...]
#include <netdir.h>

\fBint\fR \fBnetdir_getbyname\fR(\fBstruct netconfig  *\fR\fIconfig\fR,
     \fBstruct nd_hostserv *\fR\fIservice\fR, \fBstruct nd_addrlist **\fR\fIaddrs\fR);
.fi

.LP
.nf
\fBint\fR \fBnetdir_getbyaddr\fR(\fBstruct netconfig  *\fR\fIconfig\fR,
     \fBstruct nd_hostservlist **\fR\fIservice\fR, \fBstruct netbuf  *\fR\fInetaddr\fR);
.fi

.LP
.nf
\fBvoid\fR \fBnetdir_free\fR(\fBvoid *\fR\fIptr\fR, \fBint\fR \fIstruct_type\fR);
.fi

.LP
.nf
\fBint\fR \fBnetdir_options\fR(\fBstruct netconfig  *\fR\fIconfig\fR, \fBint\fR \fIoption\fR, \fBint\fR \fIfildes\fR,
     \fBchar *\fR\fIpointer_to_args\fR);
.fi

.LP
.nf
\fBchar *\fR\fBtaddr2uaddr\fR(\fBstruct netconfig *\fR\fIconfig\fR, \fBstruct netbuf *\fR\fIaddr\fR);
.fi

.LP
.nf
\fBstruct netbuf *\fR\fBuaddr2taddr\fR(\fBstruct netconfig *\fR\fIconfig\fR, \fBchar *\fR\fIuaddr\fR);
.fi

.LP
.nf
\fBvoid\fR \fBnetdir_perror\fR(\fBchar *\fR\fIs\fR);
.fi

.LP
.nf
\fBchar *\fR\fBnetdir_sperror\fR(\fBvoid\fR);
.fi

.SH DESCRIPTION
.LP
The \fBnetdir\fR functions provide a generic interface for name-to-address
mapping that will work with all transport protocols. This interface provides a
generic way for programs to convert transport specific addresses into common
structures and back again. The \fBnetconfig\fR structure, described on the
\fBnetconfig\fR(4) manual page, identifies the transport.
.sp
.LP
The \fBnetdir_getbyname()\fR function maps the machine name and service name in
the \fBnd_hostserv\fR structure to a collection of addresses of the type
understood by the transport identified in the \fBnetconfig\fR structure. This
function returns all addresses that are valid for that transport in the
\fBnd_addrlist\fR structure. The \fBnd_hostserv\fR structure contains the
following members:
.sp
.in +2
.nf
char *h_host;      /* host name */
char *h_serv;      /* service name */
.fi
.in -2

.sp
.LP
The \fBnd_addrlist\fR structure contains the following members:
.sp
.in +2
.nf
int  n_cnt;       /* number of addresses */
struct netbuf *n_addrs;
.fi
.in -2

.sp
.LP
The \fBnetdir_getbyname()\fR function accepts some special-case host names. The
host names are defined in <\fBnetdir.h\fR>. The currently defined host names
are:
.sp
.ne 2
.na
\fB\fBHOST_SELF\fR\fR
.ad
.RS 21n
Represents the address to which local programs will bind their endpoints.
\fBHOST_SELF\fR differs from the host name provided by \fBgethostname\fR(3C),
which represents the address to which \fIremote\fR programs will bind their
endpoints.
.RE

.sp
.ne 2
.na
\fB\fBHOST_ANY\fR\fR
.ad
.RS 21n
Represents any host accessible by this transport provider. \fBHOST_ANY\fR
allows applications to specify a required service without specifying a
particular host name.
.RE

.sp
.ne 2
.na
\fB\fBHOST_SELF_CONNECT\fR\fR
.ad
.RS 21n
Represents the host address that can be used to connect to the local host.
.RE

.sp
.ne 2
.na
\fB\fBHOST_BROADCAST\fR\fR
.ad
.RS 21n
Represents the address for all hosts accessible by this transport provider.
Network requests to this address are received by all machines.
.RE

.sp
.LP
All fields of the \fBnd_hostserv\fR structure must be initialized.
.sp
.LP
To find the address of a given host and service on all available transports,
call the \fBnetdir_getbyname()\fR function with each \fBstruct netconfig\fR
structure returned by \fBgetnetconfig\fR(3NSL).
.sp
.LP
The \fBnetdir_getbyaddr()\fR function maps addresses to service names. The
function returns \fIservice\fR, a list of host and service pairs that yield
these addresses. If more than one tuple of host and service name is returned,
the first tuple contains the preferred host and service names:
.sp
.in +2
.nf
struct nd_hostservlist {
   int  *h_cnt;                  /* number of hostservs found */
   struct hostserv *h_hostservs;
}
.fi
.in -2

.sp
.LP
The \fBnetdir_free()\fR structure is used to free the structures allocated by
the name to address translation functions. The \fIptr\fR parameter points to
the structure that has to be freed. The parameter \fBstruct_type\fR identifies
the structure:
.sp
.in +2
.nf
struct netbuf            ND_ADDR
struct nd_addrlist       ND_ADDRLIST
struct hostserv          ND_HOSTSERV
struct nd_hostservlist   ND_HOSTSERVLIST
.fi
.in -2

.sp
.LP
The \fBnetdir_options()\fR function is used to do all transport-specific setups
and option management. \fIfildes\fR is the associated file descriptor.
\fIoption\fR, \fIfildes\fR, and \fIpointer_to_args\fR are passed to the
\fBnetdir_options()\fR function for the transport specified in \fIconfig\fR.
Currently four values are defined for \fIoption\fR:
.br

.in +2
\fBND_SET_BROADCAST\fR
.in -2
.br
.in +2
\fBND_SET_RESERVEDPORT\fR
.in -2
.br
.in +2
\fBND_CHECK_RESERVEDPORT\fR
.in -2
.br
.in +2
\fBND_MERGEADDR\fR
.sp
.LP
The specific actions of each option follow.
.sp
.ne 2
.na
\fB\fBND_SET_BROADCAST\fR\fR
.ad
.RS 25n
Sets the transport provider up to allow broadcast if the transport supports
broadcast. \fIfildes\fR is a file descriptor into the transport, that is, the
result of a \fBt_open\fR of \fB/dev/udp\fR. \fIpointer_to_args\fR is not used.
If this completes, broadcast operations can be performed on file descriptor
\fIfildes\fR.
.RE

.sp
.ne 2
.na
\fB\fBND_SET_RESERVEDPORT\fR\fR
.ad
.RS 25n
Allows the application to bind to a reserved port if that concept exists for
the transport provider. \fIfildes\fR is an unbound file descriptor into the
transport. If \fIpointer_to_args\fR is \fINULL,\fR \fIfildes\fR is bound to a
reserved port. If \fIpointer_to_args\fR is a pointer to a \fBnetbuf\fR
structure, an attempt is made to bind to any reserved port on the specified
address.
.RE

.sp
.ne 2
.na
\fB\fBND_CHECK_RESERVEDPORT\fR\fR
.ad
.RS 25n
Used to verify that the address corresponds to a reserved port if that concept
exists for the transport provider. \fIfildes\fR is not used.
\fIpointer_to_args\fR is a pointer to a \fBnetbuf\fR structure that contains
the address. This option returns \fB0\fR only if the address specified in
\fIpointer_to_args\fR is reserved.
.RE

.sp
.ne 2
.na
\fB\fBND_MERGEADDR\fR\fR
.ad
.RS 25n
Used to take a ``local address'' such as a \fB0.0.0.0\fR TCP address and return
a ``real address'' to which client machines can connect. \fIfildes\fR is not
used. \fIpointer_to_args\fR is a pointer to a \fBstruct nd_mergearg\fR which
has the following members:
.sp
.in +2
.nf
\fBchar\fR \fIs_uaddr;\fR  /* server's universal address */
\fBchar\fR \fIc_uaddr;\fR  /* client's universal address */
\fBchar\fR \fIm_uaddr;\fR  /* the result */
.fi
.in -2

If \fBs_uaddr\fR is an address such as \fB0.0.0.0.1.12\fR, and the call is
successful \fBm_uaddr\fR is set to an address such as \fB192.11.109.89.1.12\fR.
For most transports, \fBm_uaddr\fR is identical to \fBs_uaddr\fR.
.RE
.sp
.LP
If a transport provider does not support an option, \fBnetdir_options\fR
returns \fB-1\fR and the error message can be printed through
\fBnetdir_perror()\fR or \fBnetdir_sperror()\fR.

.in -2
.sp
.LP
The \fBtaddr2uaddr()\fR and \fBuaddr2taddr()\fR functions support translation
between universal addresses and \fBTLI\fR type \fBnetbufs\fR. The
\fBtaddr2uaddr()\fR function takes a \fBstruct\fR \fBnetbuf\fR data structure
and returns a pointer to a string that contains the universal address. It
returns \fINULL\fR if the conversion is not possible. This is not a fatal
condition as some transports do not support a universal address form.
.sp
.LP
The \fBfree()\fR function is used to free the universal address returned by the
\fBtaddr2uaddr()\fR function.
.sp
.LP
The \fBuaddr2taddr()\fR function is the reverse of the \fBtaddr2uaddr()\fR
function. It returns the \fBstruct netbuf\fR data structure for the given
universal address and \fINULL\fR on failure.

.sp
.LP
The \fBnetdir_perror()\fR function prints an error message in standard output
that states the cause of a name-to-address mapping failure. The error message
is preceded by the string given as an argument.
.sp
.LP
The \fBnetdir_sperror()\fR function returns a string with an error message that
states the cause of a name-to-address mapping failure.

.SH RETURN VALUES
.LP
The \fBnetdir_sperror()\fR function returns a pointer to a buffer which
contains the error message string. The buffer is overwritten on each call. In
multithreaded applications, this buffer is implemented as thread-specific
data.
.sp
.LP
The \fBnetdir_getbyname()\fR, \fBnetdir_getbyaddr()\fR, and \fBnetdir_options()\fR
functions return \fB0\fR on success and a non-zero value on failure.
.SH ATTRIBUTES
.LP
See \fBattributes\fR(5) for descriptions of the following attributes:
.sp

.sp
.TS
box;
c | c
l | l .
ATTRIBUTE TYPE	ATTRIBUTE VALUE
_
MT-Level	Safe
.TE

.SH SEE ALSO
.LP
\fBgethostname\fR(3C), \fBgetnetconfig\fR(3NSL), \fBgetnetpath\fR(3NSL),
\fBnetconfig\fR(4), \fBattributes\fR(5)