xref: /freebsd/sys/rpc/pmap_prot.h (revision c697fb7f)
1 /*	$NetBSD: pmap_prot.h,v 1.8 2000/06/02 22:57:55 fvdl Exp $	*/
2 
3 /*-
4  * SPDX-License-Identifier: BSD-3-Clause
5  *
6  * Copyright (c) 2009, Sun Microsystems, Inc.
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions are met:
11  * - Redistributions of source code must retain the above copyright notice,
12  *   this list of conditions and the following disclaimer.
13  * - Redistributions in binary form must reproduce the above copyright notice,
14  *   this list of conditions and the following disclaimer in the documentation
15  *   and/or other materials provided with the distribution.
16  * - Neither the name of Sun Microsystems, Inc. nor the names of its
17  *   contributors may be used to endorse or promote products derived
18  *   from this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
24  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30  * POSSIBILITY OF SUCH DAMAGE.
31  *
32  *	from: @(#)pmap_prot.h 1.14 88/02/08 SMI
33  *	from: @(#)pmap_prot.h	2.1 88/07/29 4.0 RPCSRC
34  * $FreeBSD$
35  */
36 
37 /*
38  * pmap_prot.h
39  * Protocol for the local binder service, or pmap.
40  *
41  * Copyright (C) 1984, Sun Microsystems, Inc.
42  *
43  * The following procedures are supported by the protocol:
44  *
45  * PMAPPROC_NULL() returns ()
46  * 	takes nothing, returns nothing
47  *
48  * PMAPPROC_SET(struct portmap) returns (bool_t)
49  * 	TRUE is success, FALSE is failure.  Registers the tuple
50  *	[prog, vers, prot, port].
51  *
52  * PMAPPROC_UNSET(struct portmap) returns (bool_t)
53  *	TRUE is success, FALSE is failure.  Un-registers pair
54  *	[prog, vers].  prot and port are ignored.
55  *
56  * PMAPPROC_GETPORT(struct portmap) returns (long unsigned).
57  *	0 is failure.  Otherwise returns the port number where the pair
58  *	[prog, vers] is registered.  It may lie!
59  *
60  * PMAPPROC_DUMP() RETURNS (struct pmaplist *)
61  *
62  * PMAPPROC_CALLIT(unsigned, unsigned, unsigned, string<>)
63  * 	RETURNS (port, string<>);
64  * usage: encapsulatedresults = PMAPPROC_CALLIT(prog, vers, proc, encapsulatedargs);
65  * 	Calls the procedure on the local machine.  If it is not registered,
66  *	this procedure is quite; ie it does not return error information!!!
67  *	This procedure only is supported on rpc/udp and calls via
68  *	rpc/udp.  This routine only passes null authentication parameters.
69  *	This file has no interface to xdr routines for PMAPPROC_CALLIT.
70  *
71  * The service supports remote procedure calls on udp/ip or tcp/ip socket 111.
72  */
73 
74 #ifndef _RPC_PMAP_PROT_H
75 #define _RPC_PMAP_PROT_H
76 #include <sys/cdefs.h>
77 
78 #define PMAPPORT		((u_short)111)
79 #define PMAPPROG		((u_long)100000)
80 #define PMAPVERS		((u_long)2)
81 #define PMAPVERS_PROTO		((u_long)2)
82 #define PMAPVERS_ORIG		((u_long)1)
83 #define PMAPPROC_NULL		((u_long)0)
84 #define PMAPPROC_SET		((u_long)1)
85 #define PMAPPROC_UNSET		((u_long)2)
86 #define PMAPPROC_GETPORT	((u_long)3)
87 #define PMAPPROC_DUMP		((u_long)4)
88 #define PMAPPROC_CALLIT		((u_long)5)
89 
90 struct portmap {
91 	long unsigned pm_prog;
92 	long unsigned pm_vers;
93 	long unsigned pm_prot;
94 	long unsigned pm_port;
95 };
96 
97 struct pmaplist {
98 	struct portmap	pml_map;
99 	struct pmaplist *pml_next;
100 };
101 
102 __BEGIN_DECLS
103 extern bool_t xdr_portmap(XDR *, struct portmap *);
104 extern bool_t xdr_pmaplist(XDR *, struct pmaplist **);
105 extern bool_t xdr_pmaplist_ptr(XDR *, struct pmaplist *);
106 __END_DECLS
107 
108 #endif /* !_RPC_PMAP_PROT_H */
109