svc_unix.c 14 KB

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