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.
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.
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.
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.
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.
25 * Sun Microsystems, Inc.
27 * Mountain View, California 94043
31 * svc_unix.c, Server side for TCP/IP based RPC.
33 * Copyright (C) 1984, Sun Microsystems, Inc.
35 * Actually implements two flavors of transporter -
36 * a unix rendezvouser (a listener and connection establisher)
37 * and a record/unix stream.
44 #include <sys/socket.h>
51 * Ops vector for AF_UNIX based rpc service handle
53 static bool_t
svcunix_recv (SVCXPRT
*, struct rpc_msg
*);
54 static enum xprt_stat
svcunix_stat (SVCXPRT
*);
55 static bool_t
svcunix_getargs (SVCXPRT
*, xdrproc_t
, caddr_t
);
56 static bool_t
svcunix_reply (SVCXPRT
*, struct rpc_msg
*);
57 static bool_t
svcunix_freeargs (SVCXPRT
*, xdrproc_t
, caddr_t
);
58 static void svcunix_destroy (SVCXPRT
*);
60 static const struct xp_ops svcunix_op
=
71 * Ops vector for AF_UNIX rendezvous handler
73 static bool_t
rendezvous_request (SVCXPRT
*, struct rpc_msg
*);
74 static enum xprt_stat
rendezvous_stat (SVCXPRT
*);
76 static const struct xp_ops svcunix_rendezvous_op
=
80 (bool_t (*) (SVCXPRT
*, xdrproc_t
, caddr_t
)) abort
,
81 (bool_t (*) (SVCXPRT
*, struct rpc_msg
*)) abort
,
82 (bool_t (*) (SVCXPRT
*, xdrproc_t
, caddr_t
)) abort
,
86 static int readunix (char*, char *, int);
87 static int writeunix (char *, char *, int);
88 static SVCXPRT
*makefd_xprt (int, u_int
, u_int
) internal_function
;
90 struct unix_rendezvous
{ /* kept in xprt->xp_p1 */
95 struct unix_conn
{ /* kept in xprt->xp_p1 */
96 enum xprt_stat strm_stat
;
99 char verf_body
[MAX_AUTH_BYTES
];
104 * xprt = svcunix_create(sock, send_buf_size, recv_buf_size);
106 * Creates, registers, and returns a (rpc) unix based transporter.
107 * Once *xprt is initialized, it is registered as a transporter
108 * see (svc.h, xprt_register). This routine returns
109 * a NULL if a problem occurred.
111 * If sock<0 then a socket is created, else sock is used.
112 * If the socket, sock is not bound to a port then svcunix_create
113 * binds it to an arbitrary port. The routine then starts a unix
114 * listener on the socket's associated port. In any (successful) case,
115 * xprt->xp_sock is the registered socket number and xprt->xp_port is the
116 * associated port number.
118 * Since unix streams do buffered io similar to stdio, the caller can specify
119 * how big the send and receive buffers are via the second and third parms;
120 * 0 => use the system default.
123 svcunix_create (int sock
, u_int sendsize
, u_int recvsize
, char *path
)
125 bool_t madesock
= FALSE
;
127 struct unix_rendezvous
*r
;
128 struct sockaddr_un addr
;
129 socklen_t len
= sizeof (struct sockaddr_in
);
131 if (sock
== RPC_ANYSOCK
)
133 if ((sock
= __socket (AF_UNIX
, SOCK_STREAM
, 0)) < 0)
135 perror (_("svc_unix.c - AF_UNIX socket creation problem"));
136 return (SVCXPRT
*) NULL
;
140 memset (&addr
, '\0', sizeof (addr
));
141 addr
.sun_family
= AF_UNIX
;
142 len
= strlen (path
) + 1;
143 memcpy (addr
.sun_path
, path
, len
);
144 len
+= sizeof (addr
.sun_family
);
146 bind (sock
, (struct sockaddr
*) &addr
, len
);
148 if (getsockname (sock
, (struct sockaddr
*) &addr
, &len
) != 0
149 || listen (sock
, 2) != 0)
151 perror (_("svc_unix.c - cannot getsockname or listen"));
154 return (SVCXPRT
*) NULL
;
157 r
= (struct unix_rendezvous
*) mem_alloc (sizeof (*r
));
160 fputs (_("svcunix_create: out of memory\n"), stderr
);
163 r
->sendsize
= sendsize
;
164 r
->recvsize
= recvsize
;
165 xprt
= (SVCXPRT
*) mem_alloc (sizeof (SVCXPRT
));
168 fputs (_("svcunix_create: out of memory\n"), stderr
);
172 xprt
->xp_p1
= (caddr_t
) r
;
173 xprt
->xp_verf
= _null_auth
;
174 xprt
->xp_ops
= &svcunix_rendezvous_op
;
176 xprt
->xp_sock
= sock
;
177 xprt_register (xprt
);
182 * Like svunix_create(), except the routine takes any *open* UNIX file
183 * descriptor as its first input.
186 svcunixfd_create (int fd
, u_int sendsize
, u_int recvsize
)
188 return makefd_xprt (fd
, sendsize
, recvsize
);
193 makefd_xprt (int fd
, u_int sendsize
, u_int recvsize
)
196 struct unix_conn
*cd
;
198 xprt
= (SVCXPRT
*) mem_alloc (sizeof (SVCXPRT
));
199 if (xprt
== (SVCXPRT
*) NULL
)
201 (void) fputs (_("svc_unix: makefd_xprt: out of memory\n"), stderr
);
204 cd
= (struct unix_conn
*) mem_alloc (sizeof (struct unix_conn
));
205 if (cd
== (struct unix_conn
*) NULL
)
207 (void) fputs (_("svc_unix: makefd_xprt: out of memory\n"), stderr
);
208 mem_free ((char *) xprt
, sizeof (SVCXPRT
));
209 xprt
= (SVCXPRT
*) NULL
;
212 cd
->strm_stat
= XPRT_IDLE
;
213 xdrrec_create (&(cd
->xdrs
), sendsize
, recvsize
,
214 (caddr_t
) xprt
, readunix
, writeunix
);
216 xprt
->xp_p1
= (caddr_t
) cd
;
217 xprt
->xp_verf
.oa_base
= cd
->verf_body
;
218 xprt
->xp_addrlen
= 0;
219 xprt
->xp_ops
= &svcunix_op
; /* truly deals with calls */
220 xprt
->xp_port
= 0; /* this is a connection, not a rendezvouser */
222 xprt_register (xprt
);
228 rendezvous_request (SVCXPRT
*xprt
, struct rpc_msg
*errmsg
)
231 struct unix_rendezvous
*r
;
232 struct sockaddr_un addr
;
233 struct sockaddr_in in_addr
;
236 r
= (struct unix_rendezvous
*) xprt
->xp_p1
;
238 len
= sizeof (struct sockaddr_un
);
239 if ((sock
= accept (xprt
->xp_sock
, (struct sockaddr
*) &addr
, &len
)) < 0)
246 * make a new transporter (re-uses xprt)
248 memset (&in_addr
, '\0', sizeof (in_addr
));
249 in_addr
.sin_family
= AF_UNIX
;
250 xprt
= makefd_xprt (sock
, r
->sendsize
, r
->recvsize
);
251 xprt
->xp_raddr
= in_addr
;
252 xprt
->xp_addrlen
= len
;
253 return FALSE
; /* there is never an rpc msg to be processed */
256 static enum xprt_stat
257 rendezvous_stat (SVCXPRT
*xprt
)
263 svcunix_destroy (SVCXPRT
*xprt
)
265 struct unix_conn
*cd
= (struct unix_conn
*) xprt
->xp_p1
;
267 xprt_unregister (xprt
);
268 __close (xprt
->xp_sock
);
269 if (xprt
->xp_port
!= 0)
271 /* a rendezvouser socket */
276 /* an actual connection socket */
277 XDR_DESTROY (&(cd
->xdrs
));
279 mem_free ((caddr_t
) cd
, sizeof (struct unix_conn
));
280 mem_free ((caddr_t
) xprt
, sizeof (SVCXPRT
));
288 /* XXX This is not thread safe, but since the main functions in svc.c
289 and the rpcgen generated *_svc functions for the daemon are also not
290 thread safe and uses static global variables, it doesn't matter. */
291 static struct cmessage cm
;
294 __msgread (int sock
, void *buf
, size_t cnt
)
300 iov
[0].iov_base
= buf
;
301 iov
[0].iov_len
= cnt
;
307 msg
.msg_control
= (caddr_t
) &cm
;
308 msg
.msg_controllen
= sizeof (struct cmessage
);
312 if (setsockopt (sock
, SOL_SOCKET
, SO_PASSCRED
, &on
, sizeof (on
)))
316 return recvmsg (sock
, &msg
, 0);
320 __msgwrite (int sock
, void *buf
, size_t cnt
)
322 #ifndef SCM_CREDENTIALS
323 /* We cannot implement this reliably. */
324 __set_errno (ENOSYS
);
330 iov
[0].iov_base
= buf
;
331 iov
[0].iov_len
= cnt
;
333 cm
.cmsg
.cmsg_type
= SCM_CREDENTIALS
;
334 cm
.cmsg
.cmsg_level
= SOL_SOCKET
;
335 cm
.cmsg
.cmsg_len
= sizeof (struct cmessage
);
336 /* XXX I'm not sure, if we really should use gete?id(), or get?id().
337 It would be much better, if the kernel could pass both to the
339 cm
.cmcred
.pid
= __getpid ();
340 cm
.cmcred
.uid
= __geteuid ();
341 cm
.cmcred
.gid
= __getegid ();
347 msg
.msg_control
= (caddr_t
) &cm
;
348 msg
.msg_controllen
= sizeof (struct cmessage
);
351 return sendmsg (sock
, &msg
, 0);
356 * reads data from the unix connection.
357 * any error is fatal and the connection is closed.
358 * (And a read of zero bytes is a half closed stream => error.)
361 readunix (char *xprtptr
, char *buf
, int len
)
363 SVCXPRT
*xprt
= (SVCXPRT
*) xprtptr
;
364 int sock
= xprt
->xp_sock
;
365 int milliseconds
= 35 * 1000;
366 struct pollfd pollfd
;
371 pollfd
.events
= POLLIN
;
372 switch (__poll (&pollfd
, 1, milliseconds
))
381 if ((pollfd
.revents
& POLLERR
) || (pollfd
.revents
& POLLHUP
)
382 || (pollfd
.revents
& POLLNVAL
))
387 while ((pollfd
.revents
& POLLIN
) == 0);
389 if ((len
= __msgread (sock
, buf
, len
)) > 0)
393 ((struct unix_conn
*) (xprt
->xp_p1
))->strm_stat
= XPRT_DIED
;
398 * writes data to the unix connection.
399 * Any error is fatal and the connection is closed.
402 writeunix (char *xprtptr
, char * buf
, int len
)
404 SVCXPRT
*xprt
= (SVCXPRT
*) xprtptr
;
407 for (cnt
= len
; cnt
> 0; cnt
-= i
, buf
+= i
)
409 if ((i
= __msgwrite (xprt
->xp_sock
, buf
, cnt
)) < 0)
411 ((struct unix_conn
*) (xprt
->xp_p1
))->strm_stat
= XPRT_DIED
;
418 static enum xprt_stat
419 svcunix_stat (SVCXPRT
*xprt
)
421 struct unix_conn
*cd
=
422 (struct unix_conn
*) (xprt
->xp_p1
);
424 if (cd
->strm_stat
== XPRT_DIED
)
426 if (!xdrrec_eof (&(cd
->xdrs
)))
427 return XPRT_MOREREQS
;
432 svcunix_recv (SVCXPRT
*xprt
, struct rpc_msg
*msg
)
434 struct unix_conn
*cd
= (struct unix_conn
*) (xprt
->xp_p1
);
435 XDR
*xdrs
= &(cd
->xdrs
);
437 xdrs
->x_op
= XDR_DECODE
;
438 xdrrec_skiprecord (xdrs
);
439 if (xdr_callmsg (xdrs
, msg
))
441 cd
->x_id
= msg
->rm_xid
;
442 /* set up verifiers */
443 msg
->rm_call
.cb_verf
.oa_flavor
= AUTH_UNIX
;
444 msg
->rm_call
.cb_verf
.oa_base
= (caddr_t
) &cm
;
445 msg
->rm_call
.cb_verf
.oa_length
= sizeof (cm
);
448 cd
->strm_stat
= XPRT_DIED
; /* XXXX */
453 svcunix_getargs (SVCXPRT
*xprt
, xdrproc_t xdr_args
, caddr_t args_ptr
)
455 return (*xdr_args
) (&(((struct unix_conn
*) (xprt
->xp_p1
))->xdrs
),
460 svcunix_freeargs (SVCXPRT
*xprt
, xdrproc_t xdr_args
, caddr_t args_ptr
)
462 XDR
*xdrs
= &(((struct unix_conn
*) (xprt
->xp_p1
))->xdrs
);
464 xdrs
->x_op
= XDR_FREE
;
465 return (*xdr_args
) (xdrs
, args_ptr
);
469 svcunix_reply (SVCXPRT
*xprt
, struct rpc_msg
*msg
)
471 struct unix_conn
*cd
= (struct unix_conn
*) (xprt
->xp_p1
);
472 XDR
*xdrs
= &(cd
->xdrs
);
475 xdrs
->x_op
= XDR_ENCODE
;
476 msg
->rm_xid
= cd
->x_id
;
477 stat
= xdr_replymsg (xdrs
, msg
);
478 (void) xdrrec_endofrecord (xdrs
, TRUE
);