rpc_internal.h revision 1.9 1 1.9 christos /* $NetBSD: rpc_internal.h,v 1.9 2024/01/23 17:24:38 christos Exp $ */
2 1.1 fvdl
3 1.4 christos /*-
4 1.4 christos * Copyright (c) 2004 The NetBSD Foundation, Inc.
5 1.4 christos * All rights reserved.
6 1.4 christos *
7 1.4 christos * This code is derived from software contributed to The NetBSD Foundation
8 1.4 christos * by Frank van der Linden.
9 1.4 christos *
10 1.4 christos * Redistribution and use in source and binary forms, with or without
11 1.4 christos * modification, are permitted provided that the following conditions
12 1.4 christos * are met:
13 1.4 christos * 1. Redistributions of source code must retain the above copyright
14 1.4 christos * notice, this list of conditions and the following disclaimer.
15 1.4 christos * 2. Redistributions in binary form must reproduce the above copyright
16 1.4 christos * notice, this list of conditions and the following disclaimer in the
17 1.4 christos * documentation and/or other materials provided with the distribution.
18 1.4 christos *
19 1.4 christos * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 1.4 christos * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 1.4 christos * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 1.4 christos * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 1.4 christos * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 1.4 christos * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 1.4 christos * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 1.4 christos * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 1.4 christos * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 1.4 christos * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 1.4 christos * POSSIBILITY OF SUCH DAMAGE.
30 1.4 christos */
31 1.1 fvdl /*
32 1.1 fvdl * Private include file for XDR functions only used internally in libc.
33 1.1 fvdl * These are not exported interfaces.
34 1.1 fvdl */
35 1.1 fvdl
36 1.6 christos bool_t __xdrrec_getrec(XDR *, enum xprt_stat *, bool_t);
37 1.6 christos bool_t __xdrrec_setnonblock(XDR *, int);
38 1.6 christos void __xprt_unregister_unlocked(SVCXPRT *);
39 1.6 christos bool_t __svc_clean_idle(fd_set *, int, bool_t);
40 1.6 christos
41 1.6 christos u_int __rpc_get_a_size(int);
42 1.6 christos int __rpc_dtbsize(void);
43 1.6 christos struct netconfig *__rpcgettp(int);
44 1.6 christos int __rpc_get_default_domain(char **);
45 1.6 christos
46 1.6 christos char *__rpc_taddr2uaddr_af(int, const struct netbuf *);
47 1.6 christos struct netbuf *__rpc_uaddr2taddr_af(int, const char *);
48 1.6 christos int __rpc_fixup_addr(struct netbuf *, const struct netbuf *);
49 1.6 christos int __rpc_sockinfo2netid(struct __rpc_sockinfo *, const char **);
50 1.6 christos int __rpc_seman2socktype(int);
51 1.6 christos int __rpc_socktype2seman(int);
52 1.6 christos void *rpc_nullproc(CLIENT *);
53 1.6 christos int __rpc_sockisbound(int);
54 1.6 christos
55 1.6 christos struct netbuf *__rpcb_findaddr(rpcprog_t, rpcvers_t, const struct netconfig *,
56 1.6 christos const char *, CLIENT **);
57 1.6 christos bool_t __rpc_control(int, void *);
58 1.1 fvdl
59 1.6 christos char *_get_next_token(char *, int);
60 1.1 fvdl
61 1.6 christos u_int32_t __rpc_getxid(void);
62 1.3 itojun #define __RPC_GETXID() (__rpc_getxid())
63 1.1 fvdl
64 1.1 fvdl extern SVCXPRT **__svc_xports;
65 1.1 fvdl extern int __svc_maxrec;
66 1.8 christos extern int __svc_flags;
67 1.9 christos extern int __rpc_lowvers;
68 1.9 christos
69 1.9 christos #ifdef _REENTRANT
70 1.9 christos extern mutex_t authsvc_lock;
71 1.9 christos extern mutex_t clnt_fd_lock;
72 1.9 christos extern mutex_t clntraw_lock;
73 1.9 christos extern mutex_t dupreq_lock;
74 1.9 christos extern mutex_t loopnconf_lock;
75 1.9 christos extern mutex_t ops_lock;
76 1.9 christos extern mutex_t proglst_lock;
77 1.9 christos extern mutex_t rpcsoc_lock;
78 1.9 christos extern mutex_t svcraw_lock;
79 1.9 christos extern mutex_t xprtlist_lock;
80 1.9 christos extern rwlock_t rpcbaddr_cache_lock;
81 1.9 christos extern rwlock_t svc_fd_lock;
82 1.9 christos extern rwlock_t svc_lock;
83 1.9 christos #endif
84 1.7 christos
85 1.7 christos int __clnt_sigfillset(sigset_t *);
86