rcmd.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786
  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. #include <wchar.h>
  82. #include <sys/uio.h>
  83. libc_hidden_proto(memcmp)
  84. libc_hidden_proto(strcat)
  85. libc_hidden_proto(strchr)
  86. libc_hidden_proto(strcmp)
  87. libc_hidden_proto(strcpy)
  88. libc_hidden_proto(strlen)
  89. libc_hidden_proto(strncmp)
  90. libc_hidden_proto(strnlen)
  91. libc_hidden_proto(bcopy)
  92. libc_hidden_proto(getpid)
  93. libc_hidden_proto(socket)
  94. libc_hidden_proto(close)
  95. libc_hidden_proto(fcntl)
  96. libc_hidden_proto(read)
  97. libc_hidden_proto(write)
  98. libc_hidden_proto(perror)
  99. libc_hidden_proto(lstat)
  100. libc_hidden_proto(fstat)
  101. libc_hidden_proto(tolower)
  102. libc_hidden_proto(sysconf)
  103. libc_hidden_proto(getline)
  104. libc_hidden_proto(geteuid)
  105. libc_hidden_proto(seteuid)
  106. libc_hidden_proto(getpwnam_r)
  107. libc_hidden_proto(gethostbyname)
  108. libc_hidden_proto(gethostbyname_r)
  109. libc_hidden_proto(fileno)
  110. libc_hidden_proto(sleep)
  111. libc_hidden_proto(inet_addr)
  112. libc_hidden_proto(inet_ntoa)
  113. libc_hidden_proto(herror)
  114. libc_hidden_proto(bind)
  115. libc_hidden_proto(connect)
  116. libc_hidden_proto(sigblock)
  117. libc_hidden_proto(snprintf)
  118. libc_hidden_proto(poll)
  119. libc_hidden_proto(accept)
  120. libc_hidden_proto(listen)
  121. libc_hidden_proto(sigsetmask)
  122. libc_hidden_proto(getc_unlocked)
  123. libc_hidden_proto(__fgetc_unlocked)
  124. libc_hidden_proto(fopen)
  125. libc_hidden_proto(fclose)
  126. libc_hidden_proto(fprintf)
  127. libc_hidden_proto(__h_errno_location)
  128. libc_hidden_proto(stderr)
  129. #ifdef __UCLIBC_HAS_XLOCALE__
  130. libc_hidden_proto(__ctype_b_loc)
  131. libc_hidden_proto(__ctype_tolower_loc)
  132. #else
  133. libc_hidden_proto(__ctype_b)
  134. libc_hidden_proto(__ctype_tolower)
  135. #endif
  136. libc_hidden_proto(rresvport)
  137. /* some forward declarations */
  138. static int __ivaliduser2(FILE *hostf, u_int32_t raddr,
  139. const char *luser, const char *ruser, const char *rhost);
  140. static int iruserok2 (u_int32_t raddr, int superuser, const char *ruser,
  141. const char *luser, const char *rhost);
  142. int rcmd(ahost, rport, locuser, remuser, cmd, fd2p)
  143. char **ahost;
  144. u_short rport;
  145. const char *locuser, *remuser, *cmd;
  146. int *fd2p;
  147. {
  148. #ifdef __UCLIBC_HAS_REENTRANT_RPC__
  149. int herr;
  150. struct hostent hostbuf;
  151. size_t hstbuflen;
  152. char *tmphstbuf;
  153. #endif
  154. struct hostent *hp;
  155. struct sockaddr_in sin, from;
  156. struct pollfd pfd[2];
  157. int32_t oldmask;
  158. pid_t pid;
  159. int s, lport, timo;
  160. char c;
  161. pid = getpid();
  162. #ifdef __UCLIBC_HAS_REENTRANT_RPC__
  163. hstbuflen = 1024;
  164. #ifdef __ARCH_HAS_MMU__
  165. tmphstbuf = alloca (hstbuflen);
  166. #else
  167. tmphstbuf = malloc (hstbuflen);
  168. #endif
  169. while (gethostbyname_r (*ahost, &hostbuf, tmphstbuf,
  170. hstbuflen, &hp, &herr) != 0 || hp == NULL)
  171. {
  172. if (herr != NETDB_INTERNAL || errno != ERANGE)
  173. {
  174. __set_h_errno (herr);
  175. #ifndef __ARCH_HAS_MMU__
  176. free(tmphstbuf);
  177. #endif
  178. herror(*ahost);
  179. return -1;
  180. }
  181. else
  182. {
  183. /* Enlarge the buffer. */
  184. hstbuflen *= 2;
  185. #ifdef __ARCH_HAS_MMU__
  186. tmphstbuf = alloca (hstbuflen);
  187. #else
  188. if (tmphstbuf) {
  189. free(tmphstbuf);
  190. }
  191. tmphstbuf = malloc (hstbuflen);
  192. #endif
  193. }
  194. }
  195. #ifndef __ARCH_HAS_MMU__
  196. free(tmphstbuf);
  197. #endif
  198. #else /* call the non-reentrant version */
  199. if ((hp = gethostbyname(*ahost)) == NULL) {
  200. return -1;
  201. }
  202. #endif
  203. pfd[0].events = POLLIN;
  204. pfd[1].events = POLLIN;
  205. *ahost = hp->h_name;
  206. oldmask = sigblock(sigmask(SIGURG)); /* __sigblock */
  207. for (timo = 1, lport = IPPORT_RESERVED - 1;;) {
  208. s = rresvport(&lport);
  209. if (s < 0) {
  210. if (errno == EAGAIN)
  211. (void)fprintf(stderr,
  212. "rcmd: socket: All ports in use\n");
  213. else
  214. (void)fprintf(stderr, "rcmd: socket: %m\n");
  215. sigsetmask(oldmask); /* sigsetmask */
  216. return -1;
  217. }
  218. fcntl(s, F_SETOWN, pid);
  219. sin.sin_family = hp->h_addrtype;
  220. bcopy(hp->h_addr_list[0], &sin.sin_addr,
  221. MIN (sizeof (sin.sin_addr), hp->h_length));
  222. sin.sin_port = rport;
  223. if (connect(s, (struct sockaddr *)&sin, sizeof(sin)) >= 0) /* __connect */
  224. break;
  225. (void)close(s);
  226. if (errno == EADDRINUSE) {
  227. lport--;
  228. continue;
  229. }
  230. if (errno == ECONNREFUSED && timo <= 16) {
  231. (void)sleep(timo); /* __sleep */
  232. timo *= 2;
  233. continue;
  234. }
  235. if (hp->h_addr_list[1] != NULL) {
  236. int oerrno = errno;
  237. (void)fprintf(stderr, "connect to address %s: ",
  238. inet_ntoa(sin.sin_addr));
  239. __set_errno (oerrno);
  240. perror(0);
  241. hp->h_addr_list++;
  242. bcopy(hp->h_addr_list[0], &sin.sin_addr,
  243. MIN (sizeof (sin.sin_addr), hp->h_length));
  244. (void)fprintf(stderr, "Trying %s...\n",
  245. inet_ntoa(sin.sin_addr));
  246. continue;
  247. }
  248. (void)fprintf(stderr, "%s: %m\n", hp->h_name);
  249. sigsetmask(oldmask); /* __sigsetmask */
  250. return -1;
  251. }
  252. lport--;
  253. if (fd2p == 0) {
  254. write(s, "", 1);
  255. lport = 0;
  256. } else {
  257. char num[8];
  258. int s2 = rresvport(&lport), s3;
  259. socklen_t len = sizeof(from);
  260. if (s2 < 0)
  261. goto bad;
  262. listen(s2, 1);
  263. (void)snprintf(num, sizeof(num), "%d", lport); /* __snprintf */
  264. if (write(s, num, strlen(num)+1) != strlen(num)+1) {
  265. (void)fprintf(stderr,
  266. "rcmd: write (setting up stderr): %m\n");
  267. (void)close(s2);
  268. goto bad;
  269. }
  270. pfd[0].fd = s;
  271. pfd[1].fd = s2;
  272. __set_errno (0);
  273. if (poll (pfd, 2, -1) < 1 || (pfd[1].revents & POLLIN) == 0){
  274. if (errno != 0)
  275. (void)fprintf(stderr, "rcmd: poll (setting up stderr): %m\n");
  276. else
  277. (void)fprintf(stderr, "poll: protocol failure in circuit setup\n");
  278. (void)close(s2);
  279. goto bad;
  280. }
  281. s3 = accept(s2, (struct sockaddr *)&from, &len);
  282. (void)close(s2);
  283. if (s3 < 0) {
  284. (void)fprintf(stderr,
  285. "rcmd: accept: %m\n");
  286. lport = 0;
  287. goto bad;
  288. }
  289. *fd2p = s3;
  290. from.sin_port = ntohs((u_short)from.sin_port);
  291. if (from.sin_family != AF_INET ||
  292. from.sin_port >= IPPORT_RESERVED ||
  293. from.sin_port < IPPORT_RESERVED / 2) {
  294. (void)fprintf(stderr,
  295. "socket: protocol failure in circuit setup\n");
  296. goto bad2;
  297. }
  298. }
  299. (void)write(s, locuser, strlen(locuser)+1);
  300. (void)write(s, remuser, strlen(remuser)+1);
  301. (void)write(s, cmd, strlen(cmd)+1);
  302. if (read(s, &c, 1) != 1) {
  303. (void)fprintf(stderr,
  304. "rcmd: %s: %m\n", *ahost);
  305. goto bad2;
  306. }
  307. if (c != 0) {
  308. while (read(s, &c, 1) == 1) {
  309. (void)write(STDERR_FILENO, &c, 1);
  310. if (c == '\n')
  311. break;
  312. }
  313. goto bad2;
  314. }
  315. sigsetmask(oldmask);
  316. return s;
  317. bad2:
  318. if (lport)
  319. (void)close(*fd2p);
  320. bad:
  321. (void)close(s);
  322. sigsetmask(oldmask);
  323. return -1;
  324. }
  325. int rresvport(int *alport)
  326. {
  327. struct sockaddr_in sin;
  328. int s;
  329. sin.sin_family = AF_INET;
  330. sin.sin_addr.s_addr = INADDR_ANY;
  331. s = socket(AF_INET, SOCK_STREAM, 0);
  332. if (s < 0)
  333. return -1;
  334. for (;;) {
  335. sin.sin_port = htons((u_short)*alport);
  336. if (bind(s, (struct sockaddr *)&sin, sizeof(sin)) >= 0)
  337. return s;
  338. if (errno != EADDRINUSE) {
  339. (void)close(s);
  340. return -1;
  341. }
  342. (*alport)--;
  343. if (*alport == IPPORT_RESERVED/2) {
  344. (void)close(s);
  345. __set_errno (EAGAIN); /* close */
  346. return -1;
  347. }
  348. }
  349. return -1;
  350. }
  351. libc_hidden_def(rresvport)
  352. static int __check_rhosts_file = 1;
  353. static char *__rcmd_errstr;
  354. int ruserok(rhost, superuser, ruser, luser)
  355. const char *rhost, *ruser, *luser;
  356. int superuser;
  357. {
  358. struct hostent *hp;
  359. u_int32_t addr;
  360. char **ap;
  361. #ifdef __UCLIBC_HAS_REENTRANT_RPC__
  362. size_t buflen;
  363. char *buffer;
  364. int herr;
  365. struct hostent hostbuf;
  366. #endif
  367. #ifdef __UCLIBC_HAS_REENTRANT_RPC__
  368. buflen = 1024;
  369. #ifdef __ARCH_HAS_MMU__
  370. buffer = alloca (buflen);
  371. #else
  372. buffer = malloc (buflen);
  373. #endif
  374. while (gethostbyname_r (rhost, &hostbuf, buffer,
  375. buflen, &hp, &herr) != 0 || hp == NULL)
  376. {
  377. if (herr != NETDB_INTERNAL || errno != ERANGE) {
  378. #ifndef __ARCH_HAS_MMU__
  379. free(buffer);
  380. #endif
  381. return -1;
  382. } else
  383. {
  384. /* Enlarge the buffer. */
  385. buflen *= 2;
  386. #ifdef __ARCH_HAS_MMU__
  387. buffer = alloca (buflen);
  388. #else
  389. if (buffer) {
  390. free(buffer);
  391. }
  392. buffer = malloc (buflen);
  393. #endif
  394. }
  395. }
  396. #ifndef __ARCH_HAS_MMU__
  397. free(buffer);
  398. #endif
  399. #else
  400. if ((hp = gethostbyname(rhost)) == NULL) {
  401. return -1;
  402. }
  403. #endif
  404. for (ap = hp->h_addr_list; *ap; ++ap) {
  405. bcopy(*ap, &addr, sizeof(addr));
  406. if (iruserok2(addr, superuser, ruser, luser, rhost) == 0)
  407. return 0;
  408. }
  409. return -1;
  410. }
  411. /* Extremely paranoid file open function. */
  412. static FILE *
  413. iruserfopen (char *file, uid_t okuser)
  414. {
  415. struct stat st;
  416. char *cp = NULL;
  417. FILE *res = NULL;
  418. /* If not a regular file, if owned by someone other than user or
  419. root, if writeable by anyone but the owner, or if hardlinked
  420. anywhere, quit. */
  421. cp = NULL;
  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. __rcmd_errstr = cp;
  444. if (res)
  445. fclose (res);
  446. return NULL;
  447. }
  448. return res;
  449. }
  450. /*
  451. * New .rhosts strategy: We are passed an ip address. We spin through
  452. * hosts.equiv and .rhosts looking for a match. When the .rhosts only
  453. * has ip addresses, we don't have to trust a nameserver. When it
  454. * contains hostnames, we spin through the list of addresses the nameserver
  455. * gives us and look for a match.
  456. *
  457. * Returns 0 if ok, -1 if not ok.
  458. */
  459. static int
  460. iruserok2 (raddr, superuser, ruser, luser, rhost)
  461. u_int32_t raddr;
  462. int superuser;
  463. const char *ruser, *luser, *rhost;
  464. {
  465. FILE *hostf = NULL;
  466. int isbad = -1;
  467. if (!superuser)
  468. hostf = iruserfopen (_PATH_HEQUIV, 0);
  469. if (hostf) {
  470. isbad = __ivaliduser2 (hostf, raddr, luser, ruser, rhost);
  471. fclose (hostf);
  472. if (!isbad)
  473. return 0;
  474. }
  475. if (__check_rhosts_file || superuser) {
  476. char *pbuf;
  477. struct passwd *pwd;
  478. size_t dirlen;
  479. uid_t uid;
  480. #ifdef __UCLIBC_HAS_REENTRANT_RPC__
  481. size_t buflen = sysconf (_SC_GETPW_R_SIZE_MAX);
  482. struct passwd pwdbuf;
  483. #ifdef __ARCH_HAS_MMU__
  484. char *buffer = alloca (buflen);
  485. #else
  486. char *buffer = malloc (buflen);
  487. #endif
  488. if (getpwnam_r (luser, &pwdbuf, buffer,
  489. buflen, &pwd) != 0 || pwd == NULL)
  490. {
  491. #ifndef __ARCH_HAS_MMU__
  492. free(buffer);
  493. #endif
  494. return -1;
  495. }
  496. #ifndef __ARCH_HAS_MMU__
  497. free(buffer);
  498. #endif
  499. #else
  500. if ((pwd = getpwnam(luser)) == NULL)
  501. return -1;
  502. #endif
  503. dirlen = strlen (pwd->pw_dir);
  504. pbuf = malloc (dirlen + sizeof "/.rhosts");
  505. strcpy (pbuf, pwd->pw_dir);
  506. strcat (pbuf, "/.rhosts");
  507. /* Change effective uid while reading .rhosts. If root and
  508. reading an NFS mounted file system, can't read files that
  509. are protected read/write owner only. */
  510. uid = geteuid ();
  511. seteuid (pwd->pw_uid);
  512. hostf = iruserfopen (pbuf, pwd->pw_uid);
  513. free(pbuf);
  514. if (hostf != NULL) {
  515. isbad = __ivaliduser2 (hostf, raddr, luser, ruser, rhost);
  516. fclose (hostf);
  517. }
  518. seteuid (uid);
  519. return isbad;
  520. }
  521. return -1;
  522. }
  523. /* This is the exported version. */
  524. int iruserok (u_int32_t raddr, int superuser, const char * ruser, const char * luser);
  525. int iruserok (u_int32_t raddr, int superuser, const char * ruser, const char * luser)
  526. {
  527. return iruserok2 (raddr, superuser, ruser, luser, "-");
  528. }
  529. /*
  530. * XXX
  531. * Don't make static, used by lpd(8).
  532. *
  533. * This function is not used anymore. It is only present because lpd(8)
  534. * calls it (!?!). We simply call __invaliduser2() with an illegal rhost
  535. * argument. This means that netgroups won't work in .rhost/hosts.equiv
  536. * files. If you want lpd to work with netgroups, fix lpd to use ruserok()
  537. * or PAM.
  538. * Returns 0 if ok, -1 if not ok.
  539. */
  540. int
  541. __ivaliduser(FILE *hostf, u_int32_t raddr, const char *luser, const char *ruser);
  542. int
  543. __ivaliduser(FILE *hostf, u_int32_t raddr, const char *luser, const char *ruser)
  544. {
  545. return __ivaliduser2(hostf, raddr, luser, ruser, "-");
  546. }
  547. /* Returns 1 on positive match, 0 on no match, -1 on negative match. */
  548. static int
  549. __icheckhost (u_int32_t raddr, char *lhost, const char *rhost)
  550. {
  551. struct hostent *hp;
  552. u_int32_t laddr;
  553. int negate=1; /* Multiply return with this to get -1 instead of 1 */
  554. char **pp;
  555. #ifdef __UCLIBC_HAS_REENTRANT_RPC__
  556. int save_errno;
  557. size_t buflen;
  558. char *buffer;
  559. struct hostent hostbuf;
  560. int herr;
  561. #endif
  562. #ifdef HAVE_NETGROUP
  563. /* Check nis netgroup. */
  564. if (strncmp ("+@", lhost, 2) == 0)
  565. return innetgr (&lhost[2], rhost, NULL, NULL);
  566. if (strncmp ("-@", lhost, 2) == 0)
  567. return -innetgr (&lhost[2], rhost, NULL, NULL);
  568. #endif /* HAVE_NETGROUP */
  569. /* -host */
  570. if (strncmp ("-", lhost,1) == 0) {
  571. negate = -1;
  572. lhost++;
  573. } else if (strcmp ("+",lhost) == 0) {
  574. return 1; /* asking for trouble, but ok.. */
  575. }
  576. /* Try for raw ip address first. */
  577. if (isdigit (*lhost) && (laddr = inet_addr (lhost)) != INADDR_NONE)
  578. return negate * (! (raddr ^ laddr));
  579. /* Better be a hostname. */
  580. #ifdef __UCLIBC_HAS_REENTRANT_RPC__
  581. buflen = 1024;
  582. buffer = malloc(buflen);
  583. save_errno = errno;
  584. while (gethostbyname_r (lhost, &hostbuf, buffer, buflen, &hp, &herr)
  585. != 0) {
  586. free(buffer);
  587. return (0);
  588. }
  589. free(buffer);
  590. __set_errno (save_errno);
  591. #else
  592. hp = gethostbyname(lhost);
  593. #endif /* __UCLIBC_HAS_REENTRANT_RPC__ */
  594. if (hp == NULL)
  595. return 0;
  596. /* Spin through ip addresses. */
  597. for (pp = hp->h_addr_list; *pp; ++pp)
  598. if (!memcmp (&raddr, *pp, sizeof (u_int32_t)))
  599. return negate;
  600. /* No match. */
  601. return (0);
  602. }
  603. /* Returns 1 on positive match, 0 on no match, -1 on negative match. */
  604. static int
  605. __icheckuser (const char *luser, const char *ruser)
  606. {
  607. /*
  608. luser is user entry from .rhosts/hosts.equiv file
  609. ruser is user id on remote host
  610. */
  611. #ifdef HAVE_NETGROUP
  612. /* [-+]@netgroup */
  613. if (strncmp ("+@", luser, 2) == 0)
  614. return innetgr (&luser[2], NULL, ruser, NULL);
  615. if (strncmp ("-@", luser,2) == 0)
  616. return -innetgr (&luser[2], NULL, ruser, NULL);
  617. #endif /* HAVE_NETGROUP */
  618. /* -user */
  619. if (strncmp ("-", luser, 1) == 0)
  620. return -(strcmp (&luser[1], ruser) == 0);
  621. /* + */
  622. if (strcmp ("+", luser) == 0)
  623. return 1;
  624. /* simple string match */
  625. return strcmp (ruser, luser) == 0;
  626. }
  627. /*
  628. * Returns 1 for blank lines (or only comment lines) and 0 otherwise
  629. */
  630. static int
  631. __isempty(char *p)
  632. {
  633. while (*p && isspace (*p)) {
  634. ++p;
  635. }
  636. return (*p == '\0' || *p == '#') ? 1 : 0 ;
  637. }
  638. /*
  639. * Returns 0 if positive match, -1 if _not_ ok.
  640. */
  641. static int
  642. __ivaliduser2(hostf, raddr, luser, ruser, rhost)
  643. FILE *hostf;
  644. u_int32_t raddr;
  645. const char *luser, *ruser, *rhost;
  646. {
  647. register const char *user;
  648. register char *p;
  649. int hcheck, ucheck;
  650. char *buf = NULL;
  651. size_t bufsize = 0;
  652. int retval = -1;
  653. while (getline (&buf, &bufsize, hostf) > 0) {
  654. buf[bufsize - 1] = '\0'; /* Make sure it's terminated. */
  655. p = buf;
  656. /* Skip empty or comment lines */
  657. if (__isempty (p)) {
  658. continue;
  659. }
  660. /* Skip lines that are too long. */
  661. if (strchr (p, '\n') == NULL) {
  662. int ch = getc_unlocked (hostf);
  663. while (ch != '\n' && ch != EOF)
  664. ch = getc_unlocked (hostf);
  665. continue;
  666. }
  667. for (;*p && !isspace(*p); ++p) {
  668. *p = tolower (*p);
  669. }
  670. /* Next we want to find the permitted name for the remote user. */
  671. if (*p == ' ' || *p == '\t') {
  672. /* <nul> terminate hostname and skip spaces */
  673. for (*p++='\0'; *p && isspace (*p); ++p);
  674. user = p; /* this is the user's name */
  675. while (*p && !isspace (*p))
  676. ++p; /* find end of user's name */
  677. } else
  678. user = p;
  679. *p = '\0'; /* <nul> terminate username (+host?) */
  680. /* buf -> host(?) ; user -> username(?) */
  681. /* First check host part */
  682. hcheck = __icheckhost (raddr, buf, rhost);
  683. if (hcheck < 0)
  684. break;
  685. if (hcheck) {
  686. /* Then check user part */
  687. if (! (*user))
  688. user = luser;
  689. ucheck = __icheckuser (user, ruser);
  690. /* Positive 'host user' match? */
  691. if (ucheck > 0) {
  692. retval = 0;
  693. break;
  694. }
  695. /* Negative 'host -user' match? */
  696. if (ucheck < 0)
  697. break;
  698. /* Neither, go on looking for match */
  699. }
  700. }
  701. if (buf != NULL)
  702. free (buf);
  703. return retval;
  704. }