xref: /freebsd/sys/rpc/svc_dg.c (revision c5405d1c850765d04f74067ebb71f57e9a26b8ea)
1 /*	$NetBSD: svc_dg.c,v 1.4 2000/07/06 03:10:35 christos 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 
33 /*
34  * Copyright (c) 1986-1991 by Sun Microsystems Inc.
35  */
36 
37 /*
38  * svc_dg.c, Server side for connectionless RPC.
39  */
40 
41 #include <sys/param.h>
42 #include <sys/jail.h>
43 #include <sys/lock.h>
44 #include <sys/kernel.h>
45 #include <sys/malloc.h>
46 #include <sys/mbuf.h>
47 #include <sys/mutex.h>
48 #include <sys/proc.h>
49 #include <sys/protosw.h>
50 #include <sys/queue.h>
51 #include <sys/socket.h>
52 #include <sys/socketvar.h>
53 #include <sys/sx.h>
54 #include <sys/systm.h>
55 #include <sys/uio.h>
56 
57 #include <net/vnet.h>
58 
59 #include <rpc/rpc.h>
60 
61 #include <rpc/rpc_com.h>
62 
63 static enum xprt_stat svc_dg_stat(SVCXPRT *);
64 static bool_t svc_dg_recv(SVCXPRT *, struct rpc_msg *,
65     struct sockaddr **, struct mbuf **);
66 static bool_t svc_dg_reply(SVCXPRT *, struct rpc_msg *,
67     struct sockaddr *, struct mbuf *, uint32_t *);
68 static void svc_dg_destroy(SVCXPRT *);
69 static bool_t svc_dg_control(SVCXPRT *, const u_int, void *);
70 static int svc_dg_soupcall(struct socket *so, void *arg, int waitflag);
71 
72 static const struct xp_ops svc_dg_ops = {
73 	.xp_recv =	svc_dg_recv,
74 	.xp_stat =	svc_dg_stat,
75 	.xp_reply =	svc_dg_reply,
76 	.xp_destroy =	svc_dg_destroy,
77 	.xp_control =	svc_dg_control,
78 };
79 
80 /*
81  * Usage:
82  *	xprt = svc_dg_create(sock, sendsize, recvsize);
83  * Does other connectionless specific initializations.
84  * Once *xprt is initialized, it is registered.
85  * see (svc.h, xprt_register). If recvsize or sendsize are 0 suitable
86  * system defaults are chosen.
87  * The routines returns NULL if a problem occurred.
88  */
89 static const char svc_dg_str[] = "svc_dg_create: %s";
90 static const char svc_dg_err1[] = "could not get transport information";
91 static const char svc_dg_err2[] = "transport does not support data transfer";
92 static const char __no_mem_str[] = "out of memory";
93 
94 SVCXPRT *
95 svc_dg_create(SVCPOOL *pool, struct socket *so, size_t sendsize,
96     size_t recvsize)
97 {
98 	SVCXPRT *xprt;
99 	struct __rpc_sockinfo si;
100 	struct sockaddr* sa;
101 	int error;
102 
103 	if (jailed(curthread->td_ucred))
104 		return (NULL);
105 	if (!__rpc_socket2sockinfo(so, &si)) {
106 		printf(svc_dg_str, svc_dg_err1);
107 		return (NULL);
108 	}
109 	/*
110 	 * Find the receive and the send size
111 	 */
112 	sendsize = __rpc_get_t_size(si.si_af, si.si_proto, (int)sendsize);
113 	recvsize = __rpc_get_t_size(si.si_af, si.si_proto, (int)recvsize);
114 	if ((sendsize == 0) || (recvsize == 0)) {
115 		printf(svc_dg_str, svc_dg_err2);
116 		return (NULL);
117 	}
118 
119 	xprt = svc_xprt_alloc();
120 	sx_init(&xprt->xp_lock, "xprt->xp_lock");
121 	xprt->xp_pool = pool;
122 	xprt->xp_socket = so;
123 	xprt->xp_p1 = NULL;
124 	xprt->xp_p2 = NULL;
125 	xprt->xp_ops = &svc_dg_ops;
126 
127 	CURVNET_SET(so->so_vnet);
128 	error = so->so_proto->pr_sockaddr(so, &sa);
129 	CURVNET_RESTORE();
130 	if (error)
131 		goto freedata;
132 
133 	memcpy(&xprt->xp_ltaddr, sa, sa->sa_len);
134 	free(sa, M_SONAME);
135 
136 	xprt_register(xprt);
137 
138 	SOCKBUF_LOCK(&so->so_rcv);
139 	soupcall_set(so, SO_RCV, svc_dg_soupcall, xprt);
140 	SOCKBUF_UNLOCK(&so->so_rcv);
141 
142 	return (xprt);
143 freedata:
144 	(void) printf(svc_dg_str, __no_mem_str);
145 	svc_xprt_free(xprt);
146 
147 	return (NULL);
148 }
149 
150 /*ARGSUSED*/
151 static enum xprt_stat
152 svc_dg_stat(SVCXPRT *xprt)
153 {
154 
155 	if (soreadable(xprt->xp_socket))
156 		return (XPRT_MOREREQS);
157 
158 	return (XPRT_IDLE);
159 }
160 
161 static bool_t
162 svc_dg_recv(SVCXPRT *xprt, struct rpc_msg *msg,
163     struct sockaddr **addrp, struct mbuf **mp)
164 {
165 	struct uio uio;
166 	struct sockaddr *raddr;
167 	struct mbuf *mreq;
168 	XDR xdrs;
169 	int error, rcvflag;
170 
171 	/*
172 	 * Serialise access to the socket.
173 	 */
174 	sx_xlock(&xprt->xp_lock);
175 
176 	/*
177 	 * The socket upcall calls xprt_active() which will eventually
178 	 * cause the server to call us here. We attempt to read a
179 	 * packet from the socket and process it. If the read fails,
180 	 * we have drained all pending requests so we call
181 	 * xprt_inactive().
182 	 */
183 	uio.uio_resid = 1000000000;
184 	uio.uio_td = curthread;
185 	mreq = NULL;
186 	rcvflag = MSG_DONTWAIT;
187 	error = soreceive(xprt->xp_socket, &raddr, &uio, &mreq, NULL, &rcvflag);
188 
189 	if (error == EWOULDBLOCK) {
190 		/*
191 		 * We must re-test for readability after taking the
192 		 * lock to protect us in the case where a new packet
193 		 * arrives on the socket after our call to soreceive
194 		 * fails with EWOULDBLOCK. The pool lock protects us
195 		 * from racing the upcall after our soreadable() call
196 		 * returns false.
197 		 */
198 		SOCKBUF_LOCK(&xprt->xp_socket->so_rcv);
199 		if (!soreadable(xprt->xp_socket))
200 			xprt_inactive_self(xprt);
201 		SOCKBUF_UNLOCK(&xprt->xp_socket->so_rcv);
202 		sx_xunlock(&xprt->xp_lock);
203 		return (FALSE);
204 	}
205 
206 	if (error) {
207 		SOCKBUF_LOCK(&xprt->xp_socket->so_rcv);
208 		soupcall_clear(xprt->xp_socket, SO_RCV);
209 		SOCKBUF_UNLOCK(&xprt->xp_socket->so_rcv);
210 		xprt_inactive_self(xprt);
211 		sx_xunlock(&xprt->xp_lock);
212 		return (FALSE);
213 	}
214 
215 	sx_xunlock(&xprt->xp_lock);
216 
217 	xdrmbuf_create(&xdrs, mreq, XDR_DECODE);
218 	if (! xdr_callmsg(&xdrs, msg)) {
219 		XDR_DESTROY(&xdrs);
220 		return (FALSE);
221 	}
222 
223 	*addrp = raddr;
224 	*mp = xdrmbuf_getall(&xdrs);
225 	XDR_DESTROY(&xdrs);
226 
227 	return (TRUE);
228 }
229 
230 static bool_t
231 svc_dg_reply(SVCXPRT *xprt, struct rpc_msg *msg,
232     struct sockaddr *addr, struct mbuf *m, uint32_t *seq)
233 {
234 	XDR xdrs;
235 	struct mbuf *mrep;
236 	bool_t stat = TRUE;
237 	int error;
238 
239 	mrep = m_gethdr(M_WAITOK, MT_DATA);
240 
241 	xdrmbuf_create(&xdrs, mrep, XDR_ENCODE);
242 
243 	if (msg->rm_reply.rp_stat == MSG_ACCEPTED &&
244 	    msg->rm_reply.rp_acpt.ar_stat == SUCCESS) {
245 		if (!xdr_replymsg(&xdrs, msg))
246 			stat = FALSE;
247 		else
248 			xdrmbuf_append(&xdrs, m);
249 	} else {
250 		stat = xdr_replymsg(&xdrs, msg);
251 	}
252 
253 	if (stat) {
254 		m_fixhdr(mrep);
255 		error = sosend(xprt->xp_socket, addr, NULL, mrep, NULL,
256 		    0, curthread);
257 		if (!error) {
258 			stat = TRUE;
259 		}
260 	} else {
261 		m_freem(mrep);
262 	}
263 
264 	XDR_DESTROY(&xdrs);
265 	xprt->xp_p2 = NULL;
266 
267 	return (stat);
268 }
269 
270 static void
271 svc_dg_destroy(SVCXPRT *xprt)
272 {
273 
274 	SOCKBUF_LOCK(&xprt->xp_socket->so_rcv);
275 	soupcall_clear(xprt->xp_socket, SO_RCV);
276 	SOCKBUF_UNLOCK(&xprt->xp_socket->so_rcv);
277 
278 	sx_destroy(&xprt->xp_lock);
279 	if (xprt->xp_socket)
280 		(void)soclose(xprt->xp_socket);
281 
282 	if (xprt->xp_netid)
283 		(void) mem_free(xprt->xp_netid, strlen(xprt->xp_netid) + 1);
284 	svc_xprt_free(xprt);
285 }
286 
287 static bool_t
288 /*ARGSUSED*/
289 svc_dg_control(SVCXPRT *xprt, const u_int rq, void *in)
290 {
291 
292 	return (FALSE);
293 }
294 
295 static int
296 svc_dg_soupcall(struct socket *so, void *arg, int waitflag)
297 {
298 	SVCXPRT *xprt = (SVCXPRT *) arg;
299 
300 	xprt_active(xprt);
301 	return (SU_OK);
302 }
303