home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / inetutils-1.2-src.tgz / tar.out / fsf / inetutils / uucpd / uucpd.c < prev   
C/C++ Source or Header  |  1996-09-28  |  7KB  |  297 lines

  1. /*
  2.  * Copyright (c) 1985, 1993
  3.  *    The Regents of the University of California.  All rights reserved.
  4.  *
  5.  * This code is derived from software contributed to Berkeley by
  6.  * Rick Adams.
  7.  *
  8.  * Redistribution and use in source and binary forms, with or without
  9.  * modification, are permitted provided that the following conditions
  10.  * are met:
  11.  * 1. Redistributions of source code must retain the above copyright
  12.  *    notice, this list of conditions and the following disclaimer.
  13.  * 2. Redistributions in binary form must reproduce the above copyright
  14.  *    notice, this list of conditions and the following disclaimer in the
  15.  *    documentation and/or other materials provided with the distribution.
  16.  * 3. All advertising materials mentioning features or use of this software
  17.  *    must display the following acknowledgement:
  18.  *    This product includes software developed by the University of
  19.  *    California, Berkeley and its contributors.
  20.  * 4. Neither the name of the University nor the names of its contributors
  21.  *    may be used to endorse or promote products derived from this software
  22.  *    without specific prior written permission.
  23.  *
  24.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  25.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  26.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  27.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  28.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  29.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  30.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  31.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  32.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  33.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  34.  * SUCH DAMAGE.
  35.  */
  36.  
  37. #ifndef lint
  38. static char copyright[] =
  39. "@(#) Copyright (c) 1985, 1993\n\
  40.     The Regents of the University of California.  All rights reserved.\n";
  41. #endif /* not lint */
  42.  
  43. #ifndef lint
  44. static char sccsid[] = "@(#)uucpd.c    8.1 (Berkeley) 6/4/93";
  45. #endif /* not lint */
  46.  
  47. /*
  48.  * 4.2BSD TCP/IP server for uucico
  49.  * uucico's TCP channel causes this server to be run at the remote end.
  50.  */
  51.  
  52. #ifdef HAVE_CONFIG_H
  53. #include <config.h>
  54. #endif
  55.  
  56. #include <sys/types.h>
  57. #include <sys/wait.h>
  58. #include <sys/ioctl.h>
  59. #include <sys/socket.h>
  60. #include <netinet/in.h>
  61. #include <arpa/inet.h>
  62. #include <netdb.h>
  63. #include <signal.h>
  64. #include <fcntl.h>
  65. #include <time.h>
  66. #include <pwd.h>
  67. #include <unistd.h>
  68. #include <errno.h>
  69. #include <stdio.h>
  70. #include <stdlib.h>
  71. #include <string.h>
  72. #include <crypt.h>
  73.  
  74. void dologin ();
  75.  
  76. struct    sockaddr_in hisctladdr;
  77. int hisaddrlen = sizeof hisctladdr;
  78. struct    sockaddr_in myctladdr;
  79. int mypid;
  80.  
  81. char Username[64];
  82. char *nenv[] = {
  83.     Username,
  84.     NULL,
  85. };
  86. extern char **environ;
  87.  
  88. main(argc, argv)
  89. int argc;
  90. char **argv;
  91. {
  92. #ifndef BSDINETD
  93.     register int s, tcp_socket;
  94.     struct servent *sp;
  95. #endif !BSDINETD
  96.     extern int errno;
  97.     void dologout();
  98.  
  99.     environ = nenv;
  100. #ifdef BSDINETD
  101.     close(1); close(2);
  102.     dup(0); dup(0);
  103.     hisaddrlen = sizeof (hisctladdr);
  104.     if (getpeername(0, &hisctladdr, &hisaddrlen) < 0) {
  105.         fprintf(stderr, "%s: ", argv[0]);
  106.         perror("getpeername");
  107.         _exit(1);
  108.     }
  109.     if (fork() == 0)
  110.         doit(&hisctladdr);
  111.     dologout();
  112.     exit(1);
  113. #else !BSDINETD
  114.     sp = getservbyname("uucp", "tcp");
  115.     if (sp == NULL){
  116.         perror("uucpd: getservbyname");
  117.         exit(1);
  118.     }
  119.     if (fork())
  120.         exit(0);
  121.     if ((s=open(_PATH_TTY, 2)) >= 0){
  122.         ioctl(s, TIOCNOTTY, (char *)0);
  123.         close(s);
  124.     }
  125.  
  126.     bzero((char *)&myctladdr, sizeof (myctladdr));
  127.     myctladdr.sin_family = AF_INET;
  128.     myctladdr.sin_port = sp->s_port;
  129. #ifdef BSD4_2
  130.     tcp_socket = socket(AF_INET, SOCK_STREAM, 0);
  131.     if (tcp_socket < 0) {
  132.         perror("uucpd: socket");
  133.         exit(1);
  134.     }
  135.     if (bind(tcp_socket, (char *)&myctladdr, sizeof (myctladdr)) < 0) {
  136.         perror("uucpd: bind");
  137.         exit(1);
  138.     }
  139.     listen(tcp_socket, 3);    /* at most 3 simultaneuos uucp connections */
  140.     signal(SIGCHLD, dologout);
  141.  
  142.     for(;;) {
  143.         s = accept(tcp_socket, &hisctladdr, &hisaddrlen);
  144.         if (s < 0){
  145.             if (errno == EINTR) 
  146.                 continue;
  147.             perror("uucpd: accept");
  148.             exit(1);
  149.         }
  150.         if (fork() == 0) {
  151.             close(0); close(1); close(2);
  152.             dup(s); dup(s); dup(s);
  153.             close(tcp_socket); close(s);
  154.             doit(&hisctladdr);
  155.             exit(1);
  156.         }
  157.         close(s);
  158.     }
  159. #endif BSD4_2
  160.  
  161. #endif    !BSDINETD
  162. }
  163.  
  164. void
  165. doit (sinp)
  166.      struct sockaddr_in *sinp;
  167. {
  168.     struct passwd *pw, *getpwnam();
  169.     char user[64], passwd[64];
  170.     char *xpasswd;
  171.  
  172.     alarm(60);
  173.     printf("login: "); fflush(stdout);
  174.     if (readline(user, sizeof user) < 0) {
  175.         fprintf(stderr, "user read\n");
  176.         return;
  177.     }
  178.     /* truncate username to 8 characters */
  179.     user[8] = '\0';
  180.     pw = getpwnam(user);
  181.     if (pw == NULL) {
  182.         fprintf(stderr, "user unknown\n");
  183.         return;
  184.     }
  185.     if (strcmp(pw->pw_shell, _PATH_UUCICO)) {
  186.         fprintf(stderr, "Login incorrect.");
  187.         return;
  188.     }
  189.     if (pw->pw_passwd && *pw->pw_passwd != '\0') {
  190.         printf("Password: "); fflush(stdout);
  191.         if (readline(passwd, sizeof passwd) < 0) {
  192.             fprintf(stderr, "passwd read\n");
  193.             return;
  194.         }
  195.         xpasswd = CRYPT (passwd, pw->pw_passwd);
  196.         if (strcmp(xpasswd, pw->pw_passwd)) {
  197.             fprintf(stderr, "Login incorrect.");
  198.             return;
  199.         }
  200.     }
  201.     alarm(0);
  202.     sprintf(Username, "USER=%s", user);
  203.     dologin(pw, sinp);
  204.     setgid(pw->pw_gid);
  205. #ifdef BSD4_2
  206.     initgroups(pw->pw_name, pw->pw_gid);
  207. #endif BSD4_2
  208.     chdir(pw->pw_dir);
  209.     setuid(pw->pw_uid);
  210. #ifdef BSD4_2
  211.     execl(UUCICO, "uucico", (char *)0);
  212. #endif BSD4_2
  213.     perror("uucico server: execl");
  214. }
  215.  
  216. readline(p, n)
  217. register char *p;
  218. register int n;
  219. {
  220.     char c;
  221.  
  222.     while (n-- > 0) {
  223.         if (read(0, &c, 1) <= 0)
  224.             return(-1);
  225.         c &= 0177;
  226.         if (c == '\n' || c == '\r') {
  227.             *p = '\0';
  228.             return(0);
  229.         }
  230.         *p++ = c;
  231.     }
  232.     return(-1);
  233. }
  234.  
  235. #ifdef BSD4_2
  236. #include <fcntl.h>
  237. #endif BSD4_2
  238.  
  239. void
  240. dologout()
  241. {
  242.   int status;
  243.   int pid;
  244.  
  245. #ifdef HAVE_WAIT3
  246.   while ((pid = wait3 (&status, WNOHANG, 0)) > 0)
  247. #else
  248.   while ((pid = wait (&status)) > 0)
  249. #endif
  250.     {
  251.       char line[100];
  252.       sprintf(line, "uucp%.4d", pid);
  253.       logwtmp (line, "", "");
  254.     }
  255. }
  256.  
  257. /*
  258.  * Record login in wtmp file.
  259.  */
  260. void
  261. dologin(pw, sin)
  262.      struct passwd *pw;
  263.      struct sockaddr_in *sin;
  264. {
  265.     char line[32];
  266.     char remotehost[32];
  267.     int wtmp, f;
  268.     struct hostent *hp = gethostbyaddr((char *)&sin->sin_addr,
  269.         sizeof (struct in_addr), AF_INET);
  270.  
  271.     if (hp) {
  272.         strncpy(remotehost, hp->h_name, sizeof (remotehost));
  273.         endhostent();
  274.     } else
  275.         strncpy(remotehost, inet_ntoa(sin->sin_addr),
  276.             sizeof (remotehost));
  277.  
  278.     sprintf(line, "uucp%.4d", getpid());
  279.  
  280.     logwtmp (line, pw->pw_name, remotehost);
  281.  
  282. #if defined (_PATH_LASTLOG) && defined (HAVE_STRUCT_LASTLOG)
  283. #define    SCPYN(a, b)    strncpy(a, b, sizeof (a))
  284.     if ((f = open(_PATH_LASTLOG, O_RDWR)) >= 0) {
  285.         struct lastlog ll;
  286.  
  287.         time(&ll.ll_time);
  288.         lseek(f, (long)pw->pw_uid * sizeof(struct lastlog), 0);
  289.         strcpy(line, remotehost);
  290.         SCPYN(ll.ll_line, line);
  291.         SCPYN(ll.ll_host, remotehost);
  292.         (void) write(f, (char *) &ll, sizeof ll);
  293.         (void) close(f);
  294.     }
  295. #endif
  296. }
  297.