Merge branches 'master' and 'suser_to_priv'
[dragonfly.git] / usr.sbin / rpcbind / rpcbind.h
1 /*
2  * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
3  * unrestricted use provided that this legend is included on all tape
4  * media and as a part of the software program in whole or part.  Users
5  * may copy or modify Sun RPC without charge, but are not authorized
6  * to license or distribute it to anyone else except as part of a product or
7  * program developed by the user.
8  *
9  * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
10  * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
11  * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
12  *
13  * Sun RPC is provided with no support and without any obligation on the
14  * part of Sun Microsystems, Inc. to assist in its use, correction,
15  * modification or enhancement.
16  *
17  * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
18  * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
19  * OR ANY PART THEREOF.
20  *
21  * In no event will Sun Microsystems, Inc. be liable for any lost revenue
22  * or profits or other special, indirect and consequential damages, even if
23  * Sun has been advised of the possibility of such damages.
24  *
25  * Sun Microsystems, Inc.
26  * 2550 Garcia Avenue
27  * Mountain View, California  94043
28  *
29  * @(#)rpcbind.h 1.4 90/04/12 SMI
30  * $NetBSD: rpcbind.h,v 1.1 2000/06/03 00:47:21 fvdl Exp $
31  * $FreeBSD: src/usr.sbin/rpcbind/rpcbind.h,v 1.3 2007/11/07 10:53:39 kevlo Exp $
32  * $DragonFly$
33  */
34 /*
35  * Copyright (c) 1986 - 1991 by Sun Microsystems, Inc.
36  */
37
38 /*
39  * rpcbind.h
40  * The common header declarations
41  */
42
43 #ifndef _RPCBIND_H_
44 #define _RPCBIND_H_
45
46 #ifdef PORTMAP
47 #include <rpc/pmap_prot.h>
48 #endif
49 #include <rpc/rpcb_prot.h>
50
51 /*
52  * Stuff for the rmtcall service
53  */
54 struct encap_parms {
55         u_int32_t arglen;
56         char *args;
57 };
58
59 struct r_rmtcall_args {
60         u_int32_t  rmt_prog;
61         u_int32_t  rmt_vers;
62         u_int32_t  rmt_proc;
63         int     rmt_localvers;  /* whether to send port # or uaddr */
64         char    *rmt_uaddr;
65         struct encap_parms rmt_args;
66 };
67
68 extern int debugging;
69 extern int doabort;
70 extern int verboselog;
71 extern int insecure;
72 extern int oldstyle_local;
73 extern rpcblist_ptr list_rbl;   /* A list of version 3 & 4 rpcbind services */
74
75 #ifdef PORTMAP
76 extern struct pmaplist *list_pml; /* A list of version 2 rpcbind services */
77 extern char *udptrans;          /* Name of UDP transport */
78 extern char *tcptrans;          /* Name of TCP transport */
79 extern char *udp_uaddr;         /* Universal UDP address */
80 extern char *tcp_uaddr;         /* Universal TCP address */
81 #endif
82
83 int add_bndlist(struct netconfig *, struct netbuf *);
84 bool_t is_bound(char *, char *);
85 char *mergeaddr(SVCXPRT *, char *, char *, char *);
86 struct netconfig *rpcbind_get_conf(char *);
87
88 void rpcbs_init(void);
89 void rpcbs_procinfo(rpcvers_t, rpcproc_t);
90 void rpcbs_set(rpcvers_t, bool_t);
91 void rpcbs_unset(rpcvers_t, bool_t);
92 void rpcbs_getaddr(rpcvers_t, rpcprog_t, rpcvers_t, char *, char *);
93 void rpcbs_rmtcall(rpcvers_t, rpcproc_t, rpcprog_t, rpcvers_t, rpcproc_t,
94                         char *, rpcblist_ptr);
95 void *rpcbproc_getstat(void *, struct svc_req *, SVCXPRT *, rpcvers_t);
96
97 void rpcb_service_3(struct svc_req *, SVCXPRT *);
98 void rpcb_service_4(struct svc_req *, SVCXPRT *);
99
100 /* Common functions shared between versions */
101 void *rpcbproc_set_com(void *, struct svc_req *, SVCXPRT *, rpcvers_t);
102 void *rpcbproc_unset_com(void *, struct svc_req *, SVCXPRT *, rpcvers_t);
103 bool_t map_set(RPCB *, char *);
104 bool_t map_unset(RPCB *, char *);
105 void delete_prog(unsigned int);
106 void *rpcbproc_getaddr_com(RPCB *, struct svc_req *, SVCXPRT *, rpcvers_t,
107                                  rpcvers_t);
108 void *rpcbproc_gettime_com(void *, struct svc_req *, SVCXPRT *,
109                                 rpcvers_t);
110 void *rpcbproc_uaddr2taddr_com(void *, struct svc_req *,
111                                              SVCXPRT *, rpcvers_t);
112 void *rpcbproc_taddr2uaddr_com(void *, struct svc_req *, SVCXPRT *,
113                                     rpcvers_t);
114 int create_rmtcall_fd(struct netconfig *);
115 void rpcbproc_callit_com(struct svc_req *, SVCXPRT *, rpcvers_t,
116                               rpcvers_t);
117 void my_svc_run(void);
118
119 void rpcbind_abort(void);
120 void reap(int);
121 void toggle_verboselog(int);
122
123 int check_access(SVCXPRT *, rpcproc_t, void *, unsigned int);
124 int check_callit(SVCXPRT *, struct r_rmtcall_args *, int);
125 void logit(int, struct sockaddr *, rpcproc_t, rpcprog_t, const char *);
126 int is_loopback(struct netbuf *);
127
128 #ifdef PORTMAP
129 extern void pmap_service(struct svc_req *, SVCXPRT *);
130 #endif
131
132 void write_warmstart(void);
133 void read_warmstart(void);
134
135 char *addrmerge(struct netbuf *, char *, char *, char *);
136 void network_init(void);
137 struct sockaddr *local_sa(int);
138
139 /* For different getaddr semantics */
140 #define RPCB_ALLVERS 0
141 #define RPCB_ONEVERS 1
142 #endif /* _RPCBIND_H_ */