OSDN Git Service

Last portion of libc_hidden_proto removal.
[uclinux-h8/uClibc.git] / libc / inet / rpc / svc_raw.c
1 /* @(#)svc_raw.c        2.1 88/07/29 4.0 RPCSRC */
2 /*
3  * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
4  * unrestricted use provided that this legend is included on all tape
5  * media and as a part of the software program in whole or part.  Users
6  * may copy or modify Sun RPC without charge, but are not authorized
7  * to license or distribute it to anyone else except as part of a product or
8  * program developed by the user.
9  *
10  * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
11  * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
12  * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
13  *
14  * Sun RPC is provided with no support and without any obligation on the
15  * part of Sun Microsystems, Inc. to assist in its use, correction,
16  * modification or enhancement.
17  *
18  * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
19  * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
20  * OR ANY PART THEREOF.
21  *
22  * In no event will Sun Microsystems, Inc. be liable for any lost revenue
23  * or profits or other special, indirect and consequential damages, even if
24  * Sun has been advised of the possibility of such damages.
25  *
26  * Sun Microsystems, Inc.
27  * 2550 Garcia Avenue
28  * Mountain View, California  94043
29  */
30 #if 0
31 static char sccsid[] = "@(#)svc_raw.c 1.15 87/08/11 Copyr 1984 Sun Micro";
32 #endif
33
34 /*
35  * svc_raw.c,   This a toy for simple testing and timing.
36  * Interface to create an rpc client and server in the same UNIX process.
37  * This lets us simulate rpc and get rpc (round trip) overhead, without
38  * any interference from the kernel.
39  *
40  * Copyright (C) 1984, Sun Microsystems, Inc.
41  */
42
43 #define __FORCE_GLIBC
44 #include <features.h>
45 #include "rpc_private.h"
46 #include <rpc/svc.h>
47
48 /* libc_hidden_proto(xdrmem_create) */
49 /* libc_hidden_proto(xdr_callmsg) */
50 /* libc_hidden_proto(xdr_replymsg) */
51
52 /*
53  * This is the "network" that we will be moving data over
54  */
55 struct svcraw_private_s
56   {
57     char _raw_buf[UDPMSGSIZE];
58     SVCXPRT server;
59     XDR xdr_stream;
60     char verf_body[MAX_AUTH_BYTES];
61   };
62 #ifdef __UCLIBC_HAS_THREADS__
63 #define svcraw_private (*(struct svcraw_private_s **)&RPC_THREAD_VARIABLE(svcraw_private_s))
64 #else
65 static struct svcraw_private_s *svcraw_private;
66 #endif
67
68 static bool_t svcraw_recv (SVCXPRT *, struct rpc_msg *);
69 static enum xprt_stat svcraw_stat (SVCXPRT *);
70 static bool_t svcraw_getargs (SVCXPRT *, xdrproc_t, caddr_t);
71 static bool_t svcraw_reply (SVCXPRT *, struct rpc_msg *);
72 static bool_t svcraw_freeargs (SVCXPRT *, xdrproc_t, caddr_t);
73 static void svcraw_destroy (SVCXPRT *);
74
75 static struct xp_ops server_ops =
76 {
77   svcraw_recv,
78   svcraw_stat,
79   svcraw_getargs,
80   svcraw_reply,
81   svcraw_freeargs,
82   svcraw_destroy
83 };
84
85 SVCXPRT *
86 svcraw_create (void)
87 {
88   struct svcraw_private_s *srp = svcraw_private;
89
90   if (srp == 0)
91     {
92       srp = (struct svcraw_private_s *) calloc (1, sizeof (*srp));
93       if (srp == 0)
94         return NULL;
95     }
96   srp->server.xp_sock = 0;
97   srp->server.xp_port = 0;
98   srp->server.xp_ops = &server_ops;
99   srp->server.xp_verf.oa_base = srp->verf_body;
100   xdrmem_create (&srp->xdr_stream, srp->_raw_buf, UDPMSGSIZE, XDR_FREE);
101   return &srp->server;
102 }
103
104 static enum xprt_stat
105 svcraw_stat (SVCXPRT *xprt attribute_unused)
106 {
107   return XPRT_IDLE;
108 }
109
110 static bool_t
111 svcraw_recv (xprt, msg)
112      SVCXPRT *xprt attribute_unused;
113      struct rpc_msg *msg;
114 {
115   struct svcraw_private_s *srp = svcraw_private;
116   XDR *xdrs;
117
118   if (srp == 0)
119     return FALSE;
120   xdrs = &srp->xdr_stream;
121   xdrs->x_op = XDR_DECODE;
122   XDR_SETPOS (xdrs, 0);
123   if (!xdr_callmsg (xdrs, msg))
124     return FALSE;
125   return TRUE;
126 }
127
128 static bool_t
129 svcraw_reply (SVCXPRT *xprt attribute_unused, struct rpc_msg *msg)
130 {
131   struct svcraw_private_s *srp = svcraw_private;
132   XDR *xdrs;
133
134   if (srp == 0)
135     return FALSE;
136   xdrs = &srp->xdr_stream;
137   xdrs->x_op = XDR_ENCODE;
138   XDR_SETPOS (xdrs, 0);
139   if (!xdr_replymsg (xdrs, msg))
140     return FALSE;
141   (void) XDR_GETPOS (xdrs);     /* called just for overhead */
142   return TRUE;
143 }
144
145 static bool_t
146 svcraw_getargs (SVCXPRT *xprt attribute_unused, xdrproc_t xdr_args, caddr_t args_ptr)
147 {
148   struct svcraw_private_s *srp = svcraw_private;
149
150   if (srp == 0)
151     return FALSE;
152   return (*xdr_args) (&srp->xdr_stream, args_ptr);
153 }
154
155 static bool_t
156 svcraw_freeargs (SVCXPRT *xprt attribute_unused, xdrproc_t xdr_args, caddr_t args_ptr)
157 {
158   struct svcraw_private_s *srp = svcraw_private;
159   XDR *xdrs;
160
161   if (srp == 0)
162     return FALSE;
163   xdrs = &srp->xdr_stream;
164   xdrs->x_op = XDR_FREE;
165   return (*xdr_args) (xdrs, args_ptr);
166 }
167
168 static void
169 svcraw_destroy (SVCXPRT *xprt attribute_unused)
170 {
171 }