rcmd.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785
  1. /*
  2. * Copyright (C) 1998 WIDE Project.
  3. * All rights reserved.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions
  7. * are met:
  8. * 1. Redistributions of source code must retain the above copyright
  9. * notice, this list of conditions and the following disclaimer.
  10. * 2. Redistributions in binary form must reproduce the above copyright
  11. * notice, this list of conditions and the following disclaimer in the
  12. * documentation and/or other materials provided with the distribution.
  13. * 3. Neither the name of the project nor the names of its contributors
  14. * may be used to endorse or promote products derived from this software
  15. * without specific prior written permission.
  16. *
  17. * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
  18. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  19. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  20. * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
  21. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  22. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  23. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  24. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  25. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  26. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  27. * SUCH DAMAGE.
  28. */
  29. /*
  30. * Copyright (c) 1983, 1993, 1994
  31. * The Regents of the University of California. All rights reserved.
  32. *
  33. * Redistribution and use in source and binary forms, with or without
  34. * modification, are permitted provided that the following conditions
  35. * are met:
  36. * 1. Redistributions of source code must retain the above copyright
  37. * notice, this list of conditions and the following disclaimer.
  38. * 2. Redistributions in binary form must reproduce the above copyright
  39. * notice, this list of conditions and the following disclaimer in the
  40. * documentation and/or other materials provided with the distribution.
  41. * 4. Neither the name of the University nor the names of its contributors
  42. * may be used to endorse or promote products derived from this software
  43. * without specific prior written permission.
  44. *
  45. * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  46. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  47. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  48. * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  49. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  50. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  51. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  52. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  53. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  54. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  55. * SUCH DAMAGE.
  56. */
  57. #if 0
  58. static char sccsid[] = "@(#)rcmd.c 8.3 (Berkeley) 3/26/94";
  59. #endif /* LIBC_SCCS and not lint */
  60. #define __UCLIBC_HIDE_DEPRECATED__
  61. #include <features.h>
  62. #include <sys/param.h>
  63. #include <sys/poll.h>
  64. #include <sys/socket.h>
  65. #include <sys/stat.h>
  66. #include <netinet/in.h>
  67. #include <arpa/inet.h>
  68. #include <alloca.h>
  69. #include <signal.h>
  70. #include <fcntl.h>
  71. #include <netdb.h>
  72. #include <unistd.h>
  73. #include <pwd.h>
  74. #include <errno.h>
  75. #include <stdio.h>
  76. #include <stdio_ext.h>
  77. #include <ctype.h>
  78. #include <string.h>
  79. #include <libintl.h>
  80. #include <stdlib.h>
  81. #ifdef __UCLIBC_HAS_WCHAR__
  82. #include <wchar.h>
  83. #endif
  84. #include <sys/uio.h>
  85. libc_hidden_proto(memcmp)
  86. libc_hidden_proto(strcat)
  87. libc_hidden_proto(strchr)
  88. libc_hidden_proto(strcmp)
  89. libc_hidden_proto(strcpy)
  90. libc_hidden_proto(strlen)
  91. libc_hidden_proto(strncmp)
  92. libc_hidden_proto(strnlen)
  93. libc_hidden_proto(memmove)
  94. libc_hidden_proto(getpid)
  95. libc_hidden_proto(socket)
  96. libc_hidden_proto(close)
  97. libc_hidden_proto(fcntl)
  98. libc_hidden_proto(read)
  99. libc_hidden_proto(write)
  100. libc_hidden_proto(perror)
  101. libc_hidden_proto(lstat)
  102. libc_hidden_proto(fstat)
  103. libc_hidden_proto(tolower)
  104. libc_hidden_proto(sysconf)
  105. libc_hidden_proto(getline)
  106. libc_hidden_proto(geteuid)
  107. libc_hidden_proto(seteuid)
  108. libc_hidden_proto(getpwnam_r)
  109. libc_hidden_proto(gethostbyname)
  110. libc_hidden_proto(gethostbyname_r)
  111. libc_hidden_proto(fileno)
  112. libc_hidden_proto(sleep)
  113. libc_hidden_proto(inet_addr)
  114. libc_hidden_proto(inet_ntoa)
  115. libc_hidden_proto(herror)
  116. libc_hidden_proto(bind)
  117. libc_hidden_proto(connect)
  118. libc_hidden_proto(sigblock)
  119. libc_hidden_proto(snprintf)
  120. libc_hidden_proto(poll)
  121. libc_hidden_proto(accept)
  122. libc_hidden_proto(listen)
  123. libc_hidden_proto(sigsetmask)
  124. libc_hidden_proto(getc_unlocked)
  125. libc_hidden_proto(__fgetc_unlocked)
  126. libc_hidden_proto(fopen)
  127. libc_hidden_proto(fclose)
  128. libc_hidden_proto(fprintf)
  129. libc_hidden_proto(__h_errno_location)
  130. libc_hidden_proto(stderr)
  131. #ifdef __UCLIBC_HAS_XLOCALE__
  132. libc_hidden_proto(__ctype_b_loc)
  133. libc_hidden_proto(__ctype_tolower_loc)
  134. #else
  135. libc_hidden_proto(__ctype_b)
  136. libc_hidden_proto(__ctype_tolower)
  137. #endif
  138. libc_hidden_proto(rresvport)
  139. /* some forward declarations */
  140. static int __ivaliduser2(FILE *hostf, u_int32_t raddr,
  141. const char *luser, const char *ruser, const char *rhost);
  142. static int iruserok2 (u_int32_t raddr, int superuser, const char *ruser,
  143. const char *luser, const char *rhost);
  144. int rcmd(ahost, rport, locuser, remuser, cmd, fd2p)
  145. char **ahost;
  146. u_short rport;
  147. const char *locuser, *remuser, *cmd;
  148. int *fd2p;
  149. {
  150. #ifdef __UCLIBC_HAS_REENTRANT_RPC__
  151. int herr;
  152. struct hostent hostbuf;
  153. size_t hstbuflen;
  154. char *tmphstbuf;
  155. #endif
  156. struct hostent *hp;
  157. struct sockaddr_in sin, from;
  158. struct pollfd pfd[2];
  159. int32_t oldmask;
  160. pid_t pid;
  161. int s, lport, timo;
  162. char c;
  163. pid = getpid();
  164. #ifdef __UCLIBC_HAS_REENTRANT_RPC__
  165. hstbuflen = 1024;
  166. #ifdef __ARCH_HAS_MMU__
  167. tmphstbuf = alloca (hstbuflen);
  168. #else
  169. tmphstbuf = malloc (hstbuflen);
  170. #endif
  171. while (gethostbyname_r (*ahost, &hostbuf, tmphstbuf,
  172. hstbuflen, &hp, &herr) != 0 || hp == NULL)
  173. {
  174. if (herr != NETDB_INTERNAL || errno != ERANGE)
  175. {
  176. __set_h_errno (herr);
  177. #ifndef __ARCH_HAS_MMU__
  178. free(tmphstbuf);
  179. #endif
  180. herror(*ahost);
  181. return -1;
  182. }
  183. else
  184. {
  185. /* Enlarge the buffer. */
  186. hstbuflen *= 2;
  187. #ifdef __ARCH_HAS_MMU__
  188. tmphstbuf = alloca (hstbuflen);
  189. #else
  190. if (tmphstbuf) {
  191. free(tmphstbuf);
  192. }
  193. tmphstbuf = malloc (hstbuflen);
  194. #endif
  195. }
  196. }
  197. #ifndef __ARCH_HAS_MMU__
  198. free(tmphstbuf);
  199. #endif
  200. #else /* call the non-reentrant version */
  201. if ((hp = gethostbyname(*ahost)) == NULL) {
  202. return -1;
  203. }
  204. #endif
  205. pfd[0].events = POLLIN;
  206. pfd[1].events = POLLIN;
  207. *ahost = hp->h_name;
  208. oldmask = sigblock(sigmask(SIGURG)); /* __sigblock */
  209. for (timo = 1, lport = IPPORT_RESERVED - 1;;) {
  210. s = rresvport(&lport);
  211. if (s < 0) {
  212. if (errno == EAGAIN)
  213. (void)fprintf(stderr,
  214. "rcmd: socket: All ports in use\n");
  215. else
  216. (void)fprintf(stderr, "rcmd: socket: %m\n");
  217. sigsetmask(oldmask); /* sigsetmask */
  218. return -1;
  219. }
  220. fcntl(s, F_SETOWN, pid);
  221. sin.sin_family = hp->h_addrtype;
  222. memmove(&sin.sin_addr, hp->h_addr_list[0],
  223. MIN (sizeof (sin.sin_addr), hp->h_length));
  224. sin.sin_port = rport;
  225. if (connect(s, (struct sockaddr *)&sin, sizeof(sin)) >= 0) /* __connect */
  226. break;
  227. (void)close(s);
  228. if (errno == EADDRINUSE) {
  229. lport--;
  230. continue;
  231. }
  232. if (errno == ECONNREFUSED && timo <= 16) {
  233. (void)sleep(timo); /* __sleep */
  234. timo *= 2;
  235. continue;
  236. }
  237. if (hp->h_addr_list[1] != NULL) {
  238. int oerrno = errno;
  239. (void)fprintf(stderr, "connect to address %s: ",
  240. inet_ntoa(sin.sin_addr));
  241. __set_errno (oerrno);
  242. perror(0);
  243. hp->h_addr_list++;
  244. memmove(&sin.sin_addr, hp->h_addr_list[0],
  245. MIN (sizeof (sin.sin_addr), hp->h_length));
  246. (void)fprintf(stderr, "Trying %s...\n",
  247. inet_ntoa(sin.sin_addr));
  248. continue;
  249. }
  250. (void)fprintf(stderr, "%s: %m\n", hp->h_name);
  251. sigsetmask(oldmask); /* __sigsetmask */
  252. return -1;
  253. }
  254. lport--;
  255. if (fd2p == 0) {
  256. write(s, "", 1);
  257. lport = 0;
  258. } else {
  259. char num[8];
  260. int s2 = rresvport(&lport), s3;
  261. socklen_t len = sizeof(from);
  262. if (s2 < 0)
  263. goto bad;
  264. listen(s2, 1);
  265. (void)snprintf(num, sizeof(num), "%d", lport); /* __snprintf */
  266. if (write(s, num, strlen(num)+1) != strlen(num)+1) {
  267. (void)fprintf(stderr,
  268. "rcmd: write (setting up stderr): %m\n");
  269. (void)close(s2);
  270. goto bad;
  271. }
  272. pfd[0].fd = s;
  273. pfd[1].fd = s2;
  274. __set_errno (0);
  275. if (poll (pfd, 2, -1) < 1 || (pfd[1].revents & POLLIN) == 0){
  276. if (errno != 0)
  277. (void)fprintf(stderr, "rcmd: poll (setting up stderr): %m\n");
  278. else
  279. (void)fprintf(stderr, "poll: protocol failure in circuit setup\n");
  280. (void)close(s2);
  281. goto bad;
  282. }
  283. s3 = accept(s2, (struct sockaddr *)&from, &len);
  284. (void)close(s2);
  285. if (s3 < 0) {
  286. (void)fprintf(stderr,
  287. "rcmd: accept: %m\n");
  288. lport = 0;
  289. goto bad;
  290. }
  291. *fd2p = s3;
  292. from.sin_port = ntohs((u_short)from.sin_port);
  293. if (from.sin_family != AF_INET ||
  294. from.sin_port >= IPPORT_RESERVED ||
  295. from.sin_port < IPPORT_RESERVED / 2) {
  296. (void)fprintf(stderr,
  297. "socket: protocol failure in circuit setup\n");
  298. goto bad2;
  299. }
  300. }
  301. (void)write(s, locuser, strlen(locuser)+1);
  302. (void)write(s, remuser, strlen(remuser)+1);
  303. (void)write(s, cmd, strlen(cmd)+1);
  304. if (read(s, &c, 1) != 1) {
  305. (void)fprintf(stderr,
  306. "rcmd: %s: %m\n", *ahost);
  307. goto bad2;
  308. }
  309. if (c != 0) {
  310. while (read(s, &c, 1) == 1) {
  311. (void)write(STDERR_FILENO, &c, 1);
  312. if (c == '\n')
  313. break;
  314. }
  315. goto bad2;
  316. }
  317. sigsetmask(oldmask);
  318. return s;
  319. bad2:
  320. if (lport)
  321. (void)close(*fd2p);
  322. bad:
  323. (void)close(s);
  324. sigsetmask(oldmask);
  325. return -1;
  326. }
  327. int rresvport(int *alport)
  328. {
  329. struct sockaddr_in sin;
  330. int s;
  331. sin.sin_family = AF_INET;
  332. sin.sin_addr.s_addr = INADDR_ANY;
  333. s = socket(AF_INET, SOCK_STREAM, 0);
  334. if (s < 0)
  335. return -1;
  336. for (;;) {
  337. sin.sin_port = htons((u_short)*alport);
  338. if (bind(s, (struct sockaddr *)&sin, sizeof(sin)) >= 0)
  339. return s;
  340. if (errno != EADDRINUSE) {
  341. (void)close(s);
  342. return -1;
  343. }
  344. (*alport)--;
  345. if (*alport == IPPORT_RESERVED/2) {
  346. (void)close(s);
  347. __set_errno (EAGAIN); /* close */
  348. return -1;
  349. }
  350. }
  351. return -1;
  352. }
  353. libc_hidden_def(rresvport)
  354. static int __check_rhosts_file = 1;
  355. int ruserok(rhost, superuser, ruser, luser)
  356. const char *rhost, *ruser, *luser;
  357. int superuser;
  358. {
  359. struct hostent *hp;
  360. u_int32_t addr;
  361. char **ap;
  362. #ifdef __UCLIBC_HAS_REENTRANT_RPC__
  363. size_t buflen;
  364. char *buffer;
  365. int herr;
  366. struct hostent hostbuf;
  367. #endif
  368. #ifdef __UCLIBC_HAS_REENTRANT_RPC__
  369. buflen = 1024;
  370. #ifdef __ARCH_HAS_MMU__
  371. buffer = alloca (buflen);
  372. #else
  373. buffer = malloc (buflen);
  374. #endif
  375. while (gethostbyname_r (rhost, &hostbuf, buffer,
  376. buflen, &hp, &herr) != 0 || hp == NULL)
  377. {
  378. if (herr != NETDB_INTERNAL || errno != ERANGE) {
  379. #ifndef __ARCH_HAS_MMU__
  380. free(buffer);
  381. #endif
  382. return -1;
  383. } else
  384. {
  385. /* Enlarge the buffer. */
  386. buflen *= 2;
  387. #ifdef __ARCH_HAS_MMU__
  388. buffer = alloca (buflen);
  389. #else
  390. if (buffer) {
  391. free(buffer);
  392. }
  393. buffer = malloc (buflen);
  394. #endif
  395. }
  396. }
  397. #ifndef __ARCH_HAS_MMU__
  398. free(buffer);
  399. #endif
  400. #else
  401. if ((hp = gethostbyname(rhost)) == NULL) {
  402. return -1;
  403. }
  404. #endif
  405. for (ap = hp->h_addr_list; *ap; ++ap) {
  406. memmove(&addr, *ap, sizeof(addr));
  407. if (iruserok2(addr, superuser, ruser, luser, rhost) == 0)
  408. return 0;
  409. }
  410. return -1;
  411. }
  412. /* Extremely paranoid file open function. */
  413. static FILE *
  414. iruserfopen (const char *file, uid_t okuser)
  415. {
  416. struct stat st;
  417. char *cp = NULL;
  418. FILE *res = NULL;
  419. /* If not a regular file, if owned by someone other than user or
  420. root, if writeable by anyone but the owner, or if hardlinked
  421. anywhere, quit. */
  422. if (lstat (file, &st))
  423. cp = "lstat failed";
  424. else if (!S_ISREG (st.st_mode))
  425. cp = "not regular file";
  426. else
  427. {
  428. res = fopen (file, "r");
  429. if (!res)
  430. cp = "cannot open";
  431. else if (fstat (fileno (res), &st) < 0)
  432. cp = "fstat failed";
  433. else if (st.st_uid && st.st_uid != okuser)
  434. cp = "bad owner";
  435. else if (st.st_mode & (S_IWGRP|S_IWOTH))
  436. cp = "writeable by other than owner";
  437. else if (st.st_nlink > 1)
  438. cp = "hard linked somewhere";
  439. }
  440. /* If there were any problems, quit. */
  441. if (cp != NULL)
  442. {
  443. if (res)
  444. fclose (res);
  445. return NULL;
  446. }
  447. return res;
  448. }
  449. /*
  450. * New .rhosts strategy: We are passed an ip address. We spin through
  451. * hosts.equiv and .rhosts looking for a match. When the .rhosts only
  452. * has ip addresses, we don't have to trust a nameserver. When it
  453. * contains hostnames, we spin through the list of addresses the nameserver
  454. * gives us and look for a match.
  455. *
  456. * Returns 0 if ok, -1 if not ok.
  457. */
  458. static int
  459. iruserok2 (raddr, superuser, ruser, luser, rhost)
  460. u_int32_t raddr;
  461. int superuser;
  462. const char *ruser, *luser, *rhost;
  463. {
  464. FILE *hostf = NULL;
  465. int isbad = -1;
  466. if (!superuser)
  467. hostf = iruserfopen (_PATH_HEQUIV, 0);
  468. if (hostf) {
  469. isbad = __ivaliduser2 (hostf, raddr, luser, ruser, rhost);
  470. fclose (hostf);
  471. if (!isbad)
  472. return 0;
  473. }
  474. if (__check_rhosts_file || superuser) {
  475. char *pbuf;
  476. struct passwd *pwd;
  477. size_t dirlen;
  478. uid_t uid;
  479. #ifdef __UCLIBC_HAS_REENTRANT_RPC__
  480. size_t buflen = sysconf (_SC_GETPW_R_SIZE_MAX);
  481. struct passwd pwdbuf;
  482. #ifdef __ARCH_HAS_MMU__
  483. char *buffer = alloca (buflen);
  484. #else
  485. char *buffer = malloc (buflen);
  486. #endif
  487. if (getpwnam_r (luser, &pwdbuf, buffer,
  488. buflen, &pwd) != 0 || pwd == NULL)
  489. {
  490. #ifndef __ARCH_HAS_MMU__
  491. free(buffer);
  492. #endif
  493. return -1;
  494. }
  495. #ifndef __ARCH_HAS_MMU__
  496. free(buffer);
  497. #endif
  498. #else
  499. if ((pwd = getpwnam(luser)) == NULL)
  500. return -1;
  501. #endif
  502. dirlen = strlen (pwd->pw_dir);
  503. pbuf = malloc (dirlen + sizeof "/.rhosts");
  504. strcpy (pbuf, pwd->pw_dir);
  505. strcat (pbuf, "/.rhosts");
  506. /* Change effective uid while reading .rhosts. If root and
  507. reading an NFS mounted file system, can't read files that
  508. are protected read/write owner only. */
  509. uid = geteuid ();
  510. seteuid (pwd->pw_uid);
  511. hostf = iruserfopen (pbuf, pwd->pw_uid);
  512. free(pbuf);
  513. if (hostf != NULL) {
  514. isbad = __ivaliduser2 (hostf, raddr, luser, ruser, rhost);
  515. fclose (hostf);
  516. }
  517. seteuid (uid);
  518. return isbad;
  519. }
  520. return -1;
  521. }
  522. /* This is the exported version. */
  523. int iruserok (u_int32_t raddr, int superuser, const char * ruser, const char * luser);
  524. int iruserok (u_int32_t raddr, int superuser, const char * ruser, const char * luser)
  525. {
  526. return iruserok2 (raddr, superuser, ruser, luser, "-");
  527. }
  528. /*
  529. * XXX
  530. * Don't make static, used by lpd(8).
  531. *
  532. * This function is not used anymore. It is only present because lpd(8)
  533. * calls it (!?!). We simply call __invaliduser2() with an illegal rhost
  534. * argument. This means that netgroups won't work in .rhost/hosts.equiv
  535. * files. If you want lpd to work with netgroups, fix lpd to use ruserok()
  536. * or PAM.
  537. * Returns 0 if ok, -1 if not ok.
  538. */
  539. int
  540. __ivaliduser(FILE *hostf, u_int32_t raddr, const char *luser, const char *ruser);
  541. int
  542. __ivaliduser(FILE *hostf, u_int32_t raddr, const char *luser, const char *ruser)
  543. {
  544. return __ivaliduser2(hostf, raddr, luser, ruser, "-");
  545. }
  546. /* Returns 1 on positive match, 0 on no match, -1 on negative match. */
  547. static int
  548. __icheckhost (u_int32_t raddr, char *lhost, const char *rhost)
  549. {
  550. struct hostent *hp;
  551. u_int32_t laddr;
  552. int negate=1; /* Multiply return with this to get -1 instead of 1 */
  553. char **pp;
  554. #ifdef __UCLIBC_HAS_REENTRANT_RPC__
  555. int save_errno;
  556. size_t buflen;
  557. char *buffer;
  558. struct hostent hostbuf;
  559. int herr;
  560. #endif
  561. #ifdef HAVE_NETGROUP
  562. /* Check nis netgroup. */
  563. if (strncmp ("+@", lhost, 2) == 0)
  564. return innetgr (&lhost[2], rhost, NULL, NULL);
  565. if (strncmp ("-@", lhost, 2) == 0)
  566. return -innetgr (&lhost[2], rhost, NULL, NULL);
  567. #endif /* HAVE_NETGROUP */
  568. /* -host */
  569. if (strncmp ("-", lhost,1) == 0) {
  570. negate = -1;
  571. lhost++;
  572. } else if (strcmp ("+",lhost) == 0) {
  573. return 1; /* asking for trouble, but ok.. */
  574. }
  575. /* Try for raw ip address first. */
  576. if (isdigit (*lhost) && (laddr = inet_addr (lhost)) != INADDR_NONE)
  577. return negate * (! (raddr ^ laddr));
  578. /* Better be a hostname. */
  579. #ifdef __UCLIBC_HAS_REENTRANT_RPC__
  580. buflen = 1024;
  581. buffer = malloc(buflen);
  582. save_errno = errno;
  583. while (gethostbyname_r (lhost, &hostbuf, buffer, buflen, &hp, &herr)
  584. != 0) {
  585. free(buffer);
  586. return (0);
  587. }
  588. free(buffer);
  589. __set_errno (save_errno);
  590. #else
  591. hp = gethostbyname(lhost);
  592. #endif /* __UCLIBC_HAS_REENTRANT_RPC__ */
  593. if (hp == NULL)
  594. return 0;
  595. /* Spin through ip addresses. */
  596. for (pp = hp->h_addr_list; *pp; ++pp)
  597. if (!memcmp (&raddr, *pp, sizeof (u_int32_t)))
  598. return negate;
  599. /* No match. */
  600. return (0);
  601. }
  602. /* Returns 1 on positive match, 0 on no match, -1 on negative match. */
  603. static int
  604. __icheckuser (const char *luser, const char *ruser)
  605. {
  606. /*
  607. luser is user entry from .rhosts/hosts.equiv file
  608. ruser is user id on remote host
  609. */
  610. #ifdef HAVE_NETGROUP
  611. /* [-+]@netgroup */
  612. if (strncmp ("+@", luser, 2) == 0)
  613. return innetgr (&luser[2], NULL, ruser, NULL);
  614. if (strncmp ("-@", luser,2) == 0)
  615. return -innetgr (&luser[2], NULL, ruser, NULL);
  616. #endif /* HAVE_NETGROUP */
  617. /* -user */
  618. if (strncmp ("-", luser, 1) == 0)
  619. return -(strcmp (&luser[1], ruser) == 0);
  620. /* + */
  621. if (strcmp ("+", luser) == 0)
  622. return 1;
  623. /* simple string match */
  624. return strcmp (ruser, luser) == 0;
  625. }
  626. /*
  627. * Returns 1 for blank lines (or only comment lines) and 0 otherwise
  628. */
  629. static int
  630. __isempty(char *p)
  631. {
  632. while (*p && isspace (*p)) {
  633. ++p;
  634. }
  635. return (*p == '\0' || *p == '#') ? 1 : 0 ;
  636. }
  637. /*
  638. * Returns 0 if positive match, -1 if _not_ ok.
  639. */
  640. static int
  641. __ivaliduser2(hostf, raddr, luser, ruser, rhost)
  642. FILE *hostf;
  643. u_int32_t raddr;
  644. const char *luser, *ruser, *rhost;
  645. {
  646. register const char *user;
  647. register char *p;
  648. int hcheck, ucheck;
  649. char *buf = NULL;
  650. size_t bufsize = 0;
  651. int retval = -1;
  652. while (getline (&buf, &bufsize, hostf) > 0) {
  653. buf[bufsize - 1] = '\0'; /* Make sure it's terminated. */
  654. p = buf;
  655. /* Skip empty or comment lines */
  656. if (__isempty (p)) {
  657. continue;
  658. }
  659. /* Skip lines that are too long. */
  660. if (strchr (p, '\n') == NULL) {
  661. int ch = getc_unlocked (hostf);
  662. while (ch != '\n' && ch != EOF)
  663. ch = getc_unlocked (hostf);
  664. continue;
  665. }
  666. for (;*p && !isspace(*p); ++p) {
  667. *p = tolower (*p);
  668. }
  669. /* Next we want to find the permitted name for the remote user. */
  670. if (*p == ' ' || *p == '\t') {
  671. /* <nul> terminate hostname and skip spaces */
  672. for (*p++='\0'; *p && isspace (*p); ++p);
  673. user = p; /* this is the user's name */
  674. while (*p && !isspace (*p))
  675. ++p; /* find end of user's name */
  676. } else
  677. user = p;
  678. *p = '\0'; /* <nul> terminate username (+host?) */
  679. /* buf -> host(?) ; user -> username(?) */
  680. /* First check host part */
  681. hcheck = __icheckhost (raddr, buf, rhost);
  682. if (hcheck < 0)
  683. break;
  684. if (hcheck) {
  685. /* Then check user part */
  686. if (! (*user))
  687. user = luser;
  688. ucheck = __icheckuser (user, ruser);
  689. /* Positive 'host user' match? */
  690. if (ucheck > 0) {
  691. retval = 0;
  692. break;
  693. }
  694. /* Negative 'host -user' match? */
  695. if (ucheck < 0)
  696. break;
  697. /* Neither, go on looking for match */
  698. }
  699. }
  700. if (buf != NULL)
  701. free (buf);
  702. return retval;
  703. }