svc_unix.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517
  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. /*
  30. * svc_unix.c, Server side for TCP/IP based RPC.
  31. *
  32. * Copyright (C) 1984, Sun Microsystems, Inc.
  33. *
  34. * Actually implements two flavors of transporter -
  35. * a unix rendezvouser (a listener and connection establisher)
  36. * and a record/unix stream.
  37. */
  38. #include <stdio.h>
  39. #include <unistd.h>
  40. #include <string.h>
  41. #include "rpc_private.h"
  42. #include <rpc/svc.h>
  43. #include <sys/socket.h>
  44. #include <sys/uio.h>
  45. #include <sys/poll.h>
  46. #include <errno.h>
  47. #include <stdlib.h>
  48. /*
  49. * Ops vector for AF_UNIX based rpc service handle
  50. */
  51. static bool_t svcunix_recv (SVCXPRT *, struct rpc_msg *);
  52. static enum xprt_stat svcunix_stat (SVCXPRT *);
  53. static bool_t svcunix_getargs (SVCXPRT *, xdrproc_t, caddr_t);
  54. static bool_t svcunix_reply (SVCXPRT *, struct rpc_msg *);
  55. static bool_t svcunix_freeargs (SVCXPRT *, xdrproc_t, caddr_t);
  56. static void svcunix_destroy (SVCXPRT *);
  57. static const struct xp_ops svcunix_op =
  58. {
  59. svcunix_recv,
  60. svcunix_stat,
  61. svcunix_getargs,
  62. svcunix_reply,
  63. svcunix_freeargs,
  64. svcunix_destroy
  65. };
  66. /*
  67. * Ops vector for AF_UNIX rendezvous handler
  68. */
  69. static bool_t rendezvous_request (SVCXPRT *, struct rpc_msg *);
  70. static enum xprt_stat rendezvous_stat (SVCXPRT *);
  71. static void svcunix_rendezvous_abort (void) attribute_noreturn;
  72. /* This function makes sure abort() relocation goes through PLT
  73. and thus can be lazy bound. */
  74. static void
  75. svcunix_rendezvous_abort (void)
  76. {
  77. abort ();
  78. };
  79. static const struct xp_ops svcunix_rendezvous_op =
  80. {
  81. rendezvous_request,
  82. rendezvous_stat,
  83. (bool_t (*) (SVCXPRT *, xdrproc_t, caddr_t)) svcunix_rendezvous_abort,
  84. (bool_t (*) (SVCXPRT *, struct rpc_msg *)) svcunix_rendezvous_abort,
  85. (bool_t (*) (SVCXPRT *, xdrproc_t, caddr_t)) svcunix_rendezvous_abort,
  86. svcunix_destroy
  87. };
  88. static int readunix (char*, char *, int);
  89. static int writeunix (char *, char *, int);
  90. static SVCXPRT *makefd_xprt (int, u_int, u_int) internal_function;
  91. struct unix_rendezvous { /* kept in xprt->xp_p1 */
  92. u_int sendsize;
  93. u_int recvsize;
  94. };
  95. struct unix_conn { /* kept in xprt->xp_p1 */
  96. enum xprt_stat strm_stat;
  97. u_long x_id;
  98. XDR xdrs;
  99. char verf_body[MAX_AUTH_BYTES];
  100. };
  101. /*
  102. * Usage:
  103. * xprt = svcunix_create(sock, send_buf_size, recv_buf_size);
  104. *
  105. * Creates, registers, and returns a (rpc) unix based transporter.
  106. * Once *xprt is initialized, it is registered as a transporter
  107. * see (svc.h, xprt_register). This routine returns
  108. * a NULL if a problem occurred.
  109. *
  110. * If sock<0 then a socket is created, else sock is used.
  111. * If the socket, sock is not bound to a port then svcunix_create
  112. * binds it to an arbitrary port. The routine then starts a unix
  113. * listener on the socket's associated port. In any (successful) case,
  114. * xprt->xp_sock is the registered socket number and xprt->xp_port is the
  115. * associated port number.
  116. *
  117. * Since unix streams do buffered io similar to stdio, the caller can specify
  118. * how big the send and receive buffers are via the second and third parms;
  119. * 0 => use the system default.
  120. */
  121. SVCXPRT *
  122. svcunix_create (int sock, u_int sendsize, u_int recvsize, char *path)
  123. {
  124. bool_t madesock = FALSE;
  125. SVCXPRT *xprt;
  126. struct unix_rendezvous *r;
  127. struct sockaddr_un addr;
  128. socklen_t len = sizeof (struct sockaddr_in);
  129. if (sock == RPC_ANYSOCK)
  130. {
  131. if ((sock = socket (AF_UNIX, SOCK_STREAM, 0)) < 0)
  132. {
  133. perror ("svc_unix.c - AF_UNIX socket creation problem");
  134. return (SVCXPRT *) NULL;
  135. }
  136. madesock = TRUE;
  137. }
  138. memset (&addr, '\0', sizeof (addr));
  139. addr.sun_family = AF_UNIX;
  140. len = strlen (path) + 1;
  141. memcpy (addr.sun_path, path, len);
  142. len += sizeof (addr.sun_family);
  143. bind (sock, (struct sockaddr *) &addr, len);
  144. if (getsockname (sock, (struct sockaddr *) &addr, &len) != 0
  145. || listen (sock, 2) != 0)
  146. {
  147. perror ("svc_unix.c - cannot getsockname or listen");
  148. if (madesock)
  149. close (sock);
  150. return (SVCXPRT *) NULL;
  151. }
  152. r = (struct unix_rendezvous *) mem_alloc (sizeof (*r));
  153. xprt = (SVCXPRT *) mem_alloc (sizeof (SVCXPRT));
  154. if (r == NULL || xprt == NULL)
  155. {
  156. fputs ("svcunix_create: out of memory\n", stderr);
  157. mem_free (r, sizeof (*r));
  158. mem_free (xprt, sizeof (SVCXPRT));
  159. return NULL;
  160. }
  161. r->sendsize = sendsize;
  162. r->recvsize = recvsize;
  163. xprt->xp_p2 = NULL;
  164. xprt->xp_p1 = (caddr_t) r;
  165. xprt->xp_verf = _null_auth;
  166. xprt->xp_ops = &svcunix_rendezvous_op;
  167. xprt->xp_port = -1;
  168. xprt->xp_sock = sock;
  169. xprt_register (xprt);
  170. return xprt;
  171. }
  172. /*
  173. * Like svunix_create(), except the routine takes any *open* UNIX file
  174. * descriptor as its first input.
  175. */
  176. SVCXPRT *
  177. svcunixfd_create (int fd, u_int sendsize, u_int recvsize);
  178. SVCXPRT *
  179. svcunixfd_create (int fd, u_int sendsize, u_int recvsize)
  180. {
  181. return makefd_xprt (fd, sendsize, recvsize);
  182. }
  183. static SVCXPRT *
  184. internal_function
  185. makefd_xprt (int fd, u_int sendsize, u_int recvsize)
  186. {
  187. SVCXPRT *xprt;
  188. struct unix_conn *cd;
  189. xprt = (SVCXPRT *) mem_alloc (sizeof (SVCXPRT));
  190. cd = (struct unix_conn *) mem_alloc (sizeof (struct unix_conn));
  191. if (xprt == (SVCXPRT *) NULL || cd == (struct unix_conn *) NULL)
  192. {
  193. (void) fputs ("svc_unix: makefd_xprt: out of memory\n", stderr);
  194. mem_free (xprt, sizeof (SVCXPRT));
  195. mem_free (cd, sizeof (struct unix_conn));
  196. return NULL;
  197. }
  198. cd->strm_stat = XPRT_IDLE;
  199. xdrrec_create (&(cd->xdrs), sendsize, recvsize,
  200. (caddr_t) xprt, readunix, writeunix);
  201. xprt->xp_p2 = NULL;
  202. xprt->xp_p1 = (caddr_t) cd;
  203. xprt->xp_verf.oa_base = cd->verf_body;
  204. xprt->xp_addrlen = 0;
  205. xprt->xp_ops = &svcunix_op; /* truly deals with calls */
  206. xprt->xp_port = 0; /* this is a connection, not a rendezvouser */
  207. xprt->xp_sock = fd;
  208. xprt_register (xprt);
  209. return xprt;
  210. }
  211. static bool_t
  212. rendezvous_request (SVCXPRT *xprt, struct rpc_msg *errmsg attribute_unused)
  213. {
  214. int sock;
  215. struct unix_rendezvous *r;
  216. struct sockaddr_un addr;
  217. struct sockaddr_in in_addr;
  218. socklen_t len;
  219. r = (struct unix_rendezvous *) xprt->xp_p1;
  220. again:
  221. len = sizeof (struct sockaddr_un);
  222. if ((sock = accept (xprt->xp_sock, (struct sockaddr *) &addr, &len)) < 0)
  223. {
  224. if (errno == EINTR)
  225. goto again;
  226. return FALSE;
  227. }
  228. /*
  229. * make a new transporter (re-uses xprt)
  230. */
  231. memset (&in_addr, '\0', sizeof (in_addr));
  232. in_addr.sin_family = AF_UNIX;
  233. xprt = makefd_xprt (sock, r->sendsize, r->recvsize);
  234. memcpy (&xprt->xp_raddr, &in_addr, sizeof (in_addr));
  235. xprt->xp_addrlen = len;
  236. return FALSE; /* there is never an rpc msg to be processed */
  237. }
  238. static enum xprt_stat
  239. rendezvous_stat (SVCXPRT *xprt attribute_unused)
  240. {
  241. return XPRT_IDLE;
  242. }
  243. static void
  244. svcunix_destroy (SVCXPRT *xprt)
  245. {
  246. struct unix_conn *cd = (struct unix_conn *) xprt->xp_p1;
  247. xprt_unregister (xprt);
  248. close (xprt->xp_sock);
  249. if (xprt->xp_port != 0)
  250. {
  251. /* a rendezvouser socket */
  252. xprt->xp_port = 0;
  253. }
  254. else
  255. {
  256. /* an actual connection socket */
  257. XDR_DESTROY (&(cd->xdrs));
  258. }
  259. mem_free ((caddr_t) cd, sizeof (struct unix_conn));
  260. mem_free ((caddr_t) xprt, sizeof (SVCXPRT));
  261. }
  262. #ifdef SCM_CREDENTIALS
  263. struct cmessage {
  264. struct cmsghdr cmsg;
  265. struct ucred cmcred;
  266. /* hack to make sure we have enough memory */
  267. char dummy[(CMSG_ALIGN (sizeof (struct ucred)) - sizeof (struct ucred) + sizeof (long))];
  268. };
  269. /* XXX This is not thread safe, but since the main functions in svc.c
  270. and the rpcgen generated *_svc functions for the daemon are also not
  271. thread safe and uses static global variables, it doesn't matter. */
  272. static struct cmessage cm;
  273. #endif
  274. static int
  275. __msgread (int sock, void *data, size_t cnt)
  276. {
  277. struct iovec iov;
  278. struct msghdr msg;
  279. int len;
  280. iov.iov_base = data;
  281. iov.iov_len = cnt;
  282. msg.msg_iov = &iov;
  283. msg.msg_iovlen = 1;
  284. msg.msg_name = NULL;
  285. msg.msg_namelen = 0;
  286. #ifdef SCM_CREDENTIALS
  287. msg.msg_control = (caddr_t) &cm;
  288. msg.msg_controllen = sizeof (struct cmessage);
  289. #endif
  290. msg.msg_flags = 0;
  291. #ifdef SO_PASSCRED
  292. {
  293. int on = 1;
  294. if (setsockopt (sock, SOL_SOCKET, SO_PASSCRED, &on, sizeof (on)))
  295. return -1;
  296. }
  297. #endif
  298. restart:
  299. len = recvmsg (sock, &msg, 0);
  300. if (len >= 0)
  301. {
  302. if (msg.msg_flags & MSG_CTRUNC || len == 0)
  303. return 0;
  304. else
  305. return len;
  306. }
  307. if (errno == EINTR)
  308. goto restart;
  309. return -1;
  310. }
  311. static int
  312. __msgwrite (int sock, void *data, size_t cnt)
  313. {
  314. #ifndef SCM_CREDENTIALS
  315. /* We cannot implement this reliably. */
  316. __set_errno (ENOSYS);
  317. return -1;
  318. #else
  319. struct iovec iov;
  320. struct msghdr msg;
  321. struct cmsghdr *cmsg = &cm.cmsg;
  322. struct ucred cred;
  323. int len;
  324. /* XXX I'm not sure, if gete?id() is always correct, or if we should use
  325. get?id(). But since keyserv needs geteuid(), we have no other chance.
  326. It would be much better, if the kernel could pass both to the server. */
  327. cred.pid = getpid ();
  328. cred.uid = geteuid ();
  329. cred.gid = getegid ();
  330. memcpy (CMSG_DATA(cmsg), &cred, sizeof (struct ucred));
  331. cmsg->cmsg_level = SOL_SOCKET;
  332. cmsg->cmsg_type = SCM_CREDENTIALS;
  333. cmsg->cmsg_len = sizeof(*cmsg) + sizeof(struct ucred);
  334. iov.iov_base = data;
  335. iov.iov_len = cnt;
  336. msg.msg_iov = &iov;
  337. msg.msg_iovlen = 1;
  338. msg.msg_name = NULL;
  339. msg.msg_namelen = 0;
  340. msg.msg_control = cmsg;
  341. msg.msg_controllen = CMSG_ALIGN(cmsg->cmsg_len);
  342. msg.msg_flags = 0;
  343. restart:
  344. len = sendmsg (sock, &msg, 0);
  345. if (len >= 0)
  346. return len;
  347. if (errno == EINTR)
  348. goto restart;
  349. return -1;
  350. #endif
  351. }
  352. /*
  353. * reads data from the unix connection.
  354. * any error is fatal and the connection is closed.
  355. * (And a read of zero bytes is a half closed stream => error.)
  356. */
  357. static int
  358. readunix (char *xprtptr, char *buf, int len)
  359. {
  360. SVCXPRT *xprt = (SVCXPRT *) xprtptr;
  361. int sock = xprt->xp_sock;
  362. int milliseconds = 35 * 1000;
  363. struct pollfd pollfd;
  364. do
  365. {
  366. pollfd.fd = sock;
  367. pollfd.events = POLLIN;
  368. switch (poll (&pollfd, 1, milliseconds))
  369. {
  370. case -1:
  371. if (errno == EINTR)
  372. continue;
  373. /*FALLTHROUGH*/
  374. case 0:
  375. goto fatal_err;
  376. default:
  377. if ((pollfd.revents & POLLERR) || (pollfd.revents & POLLHUP)
  378. || (pollfd.revents & POLLNVAL))
  379. goto fatal_err;
  380. break;
  381. }
  382. }
  383. while ((pollfd.revents & POLLIN) == 0);
  384. if ((len = __msgread (sock, buf, len)) > 0)
  385. return len;
  386. fatal_err:
  387. ((struct unix_conn *) (xprt->xp_p1))->strm_stat = XPRT_DIED;
  388. return -1;
  389. }
  390. /*
  391. * writes data to the unix connection.
  392. * Any error is fatal and the connection is closed.
  393. */
  394. static int
  395. writeunix (char *xprtptr, char * buf, int len)
  396. {
  397. SVCXPRT *xprt = (SVCXPRT *) xprtptr;
  398. int i, cnt;
  399. for (cnt = len; cnt > 0; cnt -= i, buf += i)
  400. {
  401. if ((i = __msgwrite (xprt->xp_sock, buf, cnt)) < 0)
  402. {
  403. ((struct unix_conn *) (xprt->xp_p1))->strm_stat = XPRT_DIED;
  404. return -1;
  405. }
  406. }
  407. return len;
  408. }
  409. static enum xprt_stat
  410. svcunix_stat (SVCXPRT *xprt)
  411. {
  412. struct unix_conn *cd =
  413. (struct unix_conn *) (xprt->xp_p1);
  414. if (cd->strm_stat == XPRT_DIED)
  415. return XPRT_DIED;
  416. if (!xdrrec_eof (&(cd->xdrs)))
  417. return XPRT_MOREREQS;
  418. return XPRT_IDLE;
  419. }
  420. static bool_t
  421. svcunix_recv (SVCXPRT *xprt, struct rpc_msg *msg)
  422. {
  423. struct unix_conn *cd = (struct unix_conn *) (xprt->xp_p1);
  424. XDR *xdrs = &(cd->xdrs);
  425. xdrs->x_op = XDR_DECODE;
  426. xdrrec_skiprecord (xdrs);
  427. if (xdr_callmsg (xdrs, msg))
  428. {
  429. cd->x_id = msg->rm_xid;
  430. /* set up verifiers */
  431. #ifdef SCM_CREDENTIALS
  432. msg->rm_call.cb_verf.oa_flavor = AUTH_UNIX;
  433. msg->rm_call.cb_verf.oa_base = (caddr_t) &cm;
  434. msg->rm_call.cb_verf.oa_length = sizeof (cm);
  435. #endif
  436. return TRUE;
  437. }
  438. cd->strm_stat = XPRT_DIED; /* XXXX */
  439. return FALSE;
  440. }
  441. static bool_t
  442. svcunix_getargs (SVCXPRT *xprt, xdrproc_t xdr_args, caddr_t args_ptr)
  443. {
  444. return (*xdr_args) (&(((struct unix_conn *) (xprt->xp_p1))->xdrs),
  445. args_ptr);
  446. }
  447. static bool_t
  448. svcunix_freeargs (SVCXPRT *xprt, xdrproc_t xdr_args, caddr_t args_ptr)
  449. {
  450. XDR *xdrs = &(((struct unix_conn *) (xprt->xp_p1))->xdrs);
  451. xdrs->x_op = XDR_FREE;
  452. return (*xdr_args) (xdrs, args_ptr);
  453. }
  454. static bool_t
  455. svcunix_reply (SVCXPRT *xprt, struct rpc_msg *msg)
  456. {
  457. struct unix_conn *cd = (struct unix_conn *) (xprt->xp_p1);
  458. XDR *xdrs = &(cd->xdrs);
  459. bool_t stat;
  460. xdrs->x_op = XDR_ENCODE;
  461. msg->rm_xid = cd->x_id;
  462. stat = xdr_replymsg (xdrs, msg);
  463. (void) xdrrec_endofrecord (xdrs, TRUE);
  464. return stat;
  465. }