libc/string: Add timing_safe functions from OpenBSD.
[dragonfly.git] / include / rpc / rpc.h
1 /*-
2  * Copyright (c) 2009, Sun Microsystems, Inc.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are met:
7  * - Redistributions of source code must retain the above copyright notice,
8  *   this list of conditions and the following disclaimer.
9  * - Redistributions in binary form must reproduce the above copyright notice,
10  *   this list of conditions and the following disclaimer in the documentation
11  *   and/or other materials provided with the distribution.
12  * - Neither the name of Sun Microsystems, Inc. nor the names of its
13  *   contributors may be used to endorse or promote products derived
14  *   from this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
20  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26  * POSSIBILITY OF SUCH DAMAGE.
27  *
28  *      from: @(#)rpc.h 1.9 88/02/08 SMI
29  *      from: @(#)rpc.h 2.4 89/07/11 4.0 RPCSRC
30  * $NetBSD: rpc.h,v 1.13 2000/06/02 22:57:56 fvdl Exp $
31  * $FreeBSD: src/include/rpc/rpc.h,v 1.17 2002/03/23 17:24:55 imp Exp $
32  */
33
34 /*
35  * rpc.h, Just includes the billions of rpc header files necessary to
36  * do remote procedure calling.
37  *
38  * Copyright (C) 1984, Sun Microsystems, Inc.
39  */
40 #ifndef _RPC_RPC_H
41 #define _RPC_RPC_H
42
43 #include <rpc/types.h>          /* some typedefs */
44 #include <sys/socket.h>
45 #include <netinet/in.h>
46
47 /* external data representation interfaces */
48 #include <rpc/xdr.h>            /* generic (de)serializer */
49
50 /* Client side only authentication */
51 #include <rpc/auth.h>           /* generic authenticator (client side) */
52
53 /* Client side (mostly) remote procedure call */
54 #include <rpc/clnt.h>           /* generic rpc stuff */
55
56 /* semi-private protocol headers */
57 #include <rpc/rpc_msg.h>        /* protocol for rpc messages */
58 #include <rpc/auth_unix.h>      /* protocol for unix style cred */
59 /*
60  *  Uncomment-out the next line if you are building the rpc library with
61  *  DES Authentication (see the README file in the secure_rpc/ directory).
62  */
63 #include <rpc/auth_des.h>       /* protocol for des style cred */
64
65 /* Server side only remote procedure callee */
66 #include <rpc/svc.h>            /* service manager and multiplexer */
67 #include <rpc/svc_auth.h>       /* service side authenticator */
68
69 /* Portmapper client, server, and protocol headers */
70 #include <rpc/pmap_clnt.h>
71 #include <rpc/pmap_prot.h>
72
73 #ifndef _KERNEL
74 #include <rpc/rpcb_clnt.h>      /* rpcbind interface functions */
75 #endif
76
77 #include <rpc/rpcent.h>
78
79 __BEGIN_DECLS
80 int     get_myaddress(struct sockaddr_in *);
81 int     bindresvport(int, struct sockaddr_in *);
82 int     registerrpc(int, int, int, char *(*)(char [UDPMSGSIZE]), xdrproc_t,
83                     xdrproc_t);
84 int     callrpc(const char *, int, int, int, xdrproc_t, void *, xdrproc_t,
85                 void *);
86 int     getrpcport(char *, int, int, int);
87
88 char            *taddr2uaddr(const struct netconfig *, const struct netbuf *);
89 struct netbuf   *uaddr2taddr(const struct netconfig *, const char *);
90
91 struct sockaddr;
92 int     bindresvport_sa(int, struct sockaddr *);
93 __END_DECLS
94
95 /*
96  * The following are not exported interfaces, they are for internal library
97  * and rpcbind use only. Do not use, they may change without notice.
98  */
99 __BEGIN_DECLS
100 int     __rpc_nconf2fd(const struct netconfig *);
101 int     __rpc_nconf2sockinfo(const struct netconfig *, struct __rpc_sockinfo *);
102 int     __rpc_fd2sockinfo(int, struct __rpc_sockinfo *);
103 u_int   __rpc_get_t_size(int, int, int);
104 __END_DECLS
105
106 #endif /* !_RPC_RPC_H */