📄 inrld~1.c
字号:
/*in.rld.c*/#ifndef _POSIX_SOURCE#define _POSIX_SOURCE 1#endif#include <sys/types.h>#include <sys/wait.h>#include <sys/stat.h>#include <sys/ioctl.h>#include <ctype.h>#include <errno.h>#include <fcntl.h>#include <limits.h>#include <pwd.h>#include <signal.h>#include <stdio.h>#include <stdlib.h>#include <string.h>#include <termios.h>#include <time.h>#if __minix && __i86#define SEEK_SET 0 /* Leave <unistd.h> out to keep cc from blowing up */_PROTOTYPE( off_t lseek, (int _fd, off_t _offset, int _whence) );#else#include <unistd.h>#endif#include <utmp.h>#include <net/hton.h>#include <net/netlib.h>#include <net/gen/in.h>#include <net/gen/inet.h>#include <net/gen/tcp.h>#include <net/gen/tcp_io.h>#include <net/gen/netdb.h>#include <net/gen/socket.h>char pty_str[]= "/dev/ptyXX";char tty_str[]= "/dev/ttyXX";char hex_str[16]= "0123456789abcdef";#define NMAX 30char PATH_UTMP[] = "/etc/utmp"; /* current logins */char PATH_WTMP[] = "/usr/adm/wtmp"; /* login/logout history */char *prog_name;char *hostname;char line[1024];int authenticated= 0;char lusername[NMAX+1], rusername[NMAX+1];char term[64]= "TERM=";#define ENVSIZE (sizeof("TERM=")-1) /* skip null for concatenation. */int confirmed= 0;char *env[2];char *args[10];int main _ARGS(( int argc, char *argv[] ));void do_child _ARGS(( int tty_fd, char *tty_str ));void dealloc_term _ARGS(( int slot, char *tty_str, int pid ));void wtmp _ARGS(( char *user, char *id, char *line, int pid, int type, int slot ));int do_rlogin _ARGS(( void ));void getstr _ARGS(( char *buf, int cnt, char *errmsg ));void fatal _ARGS(( int fd, char *msg, int err ));void setup_term _ARGS(( int fd ));speed_t num2speed _ARGS(( int num ));int do_control _ARGS(( char *buf, int cnt ));void readall _ARGS(( char *buf, int cnt ));int main(argc, argv) char *argv[];{ int error; int i, j; int tty_fd, pty_fd; int login_pid, write_pid; int count, bytes, tmp_count; char *lp, *cp; struct stat struct_stat; int result; int slot; struct nwio_tcpconf tcpconf; struct nwio_tcpopt tcpopt; struct hostent *hostent; prog_name= argv[0]; /* Let's lookup the hostname for the connection. */ result= ioctl (0, NWIOGTCPCONF, &tcpconf); if (result<0) { fprintf(stderr, "%s: ioctl(NWIOTCPCONF): %s\r\n", prog_name, strerror(errno)); exit(1); } hostent= gethostbyaddr((char *)&tcpconf.nwtc_remaddr, sizeof(tcpconf.nwtc_remaddr), AF_INET); if (!hostent) { printf("Host name for your adress (%s) unknown\r\n", inet_ntoa(tcpconf.nwtc_remaddr)); exit(1); } hostname= hostent->h_name; if (do_rlogin() == 0) authenticated= 1; write(1, "", 1); /* Send the '\0' */ confirmed= 1; /* We try to convince the other side not the do ^S/^Q, the rlogin * protocol indicates the we only send this when XOFF is turned off * but we don't know when this happens so we tell the other side that * it is turned off. */#if __minix_vmd tcpopt.nwto_flags= NWTO_BSD_URG | NWTO_SND_URG; error= ioctl(1, NWIOSTCPOPT, &tcpopt); if (error == -1) { fprintf(stderr, "rlogind: NWIOSTCPOPT failed: %s\r\n", strerror(errno)); }#endif write(1, "\220", 1);#if __minix_vmd tcpopt.nwto_flags= NWTO_SND_NOTURG; error= ioctl(1, NWIOSTCPOPT, &tcpopt);#endif /* Let's look for a pty. */ pty_fd= -1; for (i= 'p'; i <= 'z'; i++) { pty_str[sizeof(pty_str)-3]= i; pty_str[sizeof(pty_str)-2]= '0'; error= stat(pty_str, &struct_stat); if (error == -1) continue; for (j= 0; j < 16; j++) { pty_str[sizeof(pty_str)-2]= hex_str[j]; pty_fd= open(pty_str, O_RDWR); if (pty_fd != -1) break; } if (pty_fd != -1) break; } if (pty_fd == -1) { printf("%s: out of ptys\r\n", prog_name); exit(1); } tty_str[sizeof(pty_str)-3]= i; tty_str[sizeof(pty_str)-2]= hex_str[j]; tty_fd= open(tty_str, O_RDWR); if (tty_fd == -1) { printf("%s: unable to open '%s': %s\r\n", prog_name, tty_str, strerror(errno)); exit(1); } slot= fttyslot(tty_fd); login_pid= fork(); if (login_pid == -1) { printf("%s: unable to fork: %s\r\n", prog_name, strerror(errno)); exit(1); } if (login_pid == 0) { close(pty_fd); wtmp("", "", tty_str, login_pid, LOGIN_PROCESS, slot); do_child(tty_fd, tty_str); } close(tty_fd); write_pid= fork(); if (write_pid == -1) { printf("%s: unable to fork: %s\r\n", prog_name, strerror(errno)); exit(1); } if (write_pid == 0) { dup2(pty_fd, 0); count= 0; for (;;) { if (!count) { count= read(0, line, sizeof(line)); if (count <= 0) break; lp= line; } bytes= write(1, lp, count); if (bytes <= 0 || bytes > count) break; lp += bytes; count -= bytes; } kill(getppid(), SIGKILL); dealloc_term(slot, tty_str, login_pid); _exit(1); } dup2(pty_fd, 1); count= 0; for (;;) { if (!count) { count= read(0, line, sizeof(line)); if (count <= 0) break; lp= line; } tmp_count= count; cp= memchr(lp, 255, count); if (cp) { tmp_count= cp-lp; if (tmp_count == 0) { tmp_count= do_control(lp, count); if (tmp_count) { lp += tmp_count; count -= tmp_count; continue; } } } bytes= write(1, lp, tmp_count); if (bytes <= 0 || bytes > count) break; lp += bytes; count -= bytes; } kill(write_pid, SIGKILL); dealloc_term(slot, tty_str, login_pid); return(0);}void do_child(tty_fd, tty_str)int tty_fd;char *tty_str;{ int ctty_fd, tst_fd; FILE *tty_file; int sav_errno; char **argp; /* Set up the terminal attributes. */ setup_term(tty_fd); /* Let's start the new session. */ setsid(); ctty_fd= open(tty_str, O_RDWR); if (ctty_fd == -1) { printf("%s(do_child): unable to open '%s': %s\r\n", prog_name, tty_str, strerror(errno)); exit(1); } /* Test if we really got a controlling tty. */ tst_fd= open("/dev/tty", O_RDWR); if (tst_fd == -1) { printf( "%s(do_child): '%s' didn't result in a controlling tty (%s)\r\n", prog_name, tty_str, strerror(errno)); exit(1); } argp= args; *argp++= "login"; *argp++= "-p"; *argp++= "-h"; *argp++= hostname; if (authenticated) *argp++= "-f"; if (lusername[0] != '\0') *argp++= lusername; /* We reached the point of no return. */ close(tst_fd); close(tty_fd); if (ctty_fd != 0) { dup2(ctty_fd, 0); close(ctty_fd); ctty_fd= 0; } dup2(ctty_fd, 1);#if DEBUG fprintf(stderr, "execing login\r\n"); #endif dup2(ctty_fd, 2); execve("/bin/login", args, env); if (errno == ENOENT) execve("/usr/bin/login", args, env); sav_errno= errno; tty_file= fdopen(2, "w"); if (tty_file) { fprintf(tty_file, "%s(do_child): unable to exec login: %s\r\n", prog_name, strerror(sav_errno)); fflush(tty_file); } _exit(1);}void dealloc_term(slot, tty_str, pid)int slot;char *tty_str;int pid;{ wtmp("", "", tty_str, pid, DEAD_PROCESS, slot); /* Finally we reset the owner and mode of the terminal. */ chown(tty_str, 0, 0); chmod(tty_str, 0666);}void wtmp(user, id, line, pid, type, slot)char *user; /* name of user */char *id; /* inittab ID */char *line; /* TTY name */int pid; /* PID of process */int type; /* TYPE of entry */int slot; /* slot number in UTMP */{/* Log an event into the UTMP and WTMP files. */ struct utmp utmp; /* UTMP/WTMP User Accounting */ int fd= -1; int log = 1; /* log in wtmp */ char *p; /* Strip the /dev part of the TTY name. */ p = strrchr(line, '/'); if (p != 0) line= p+1; if (type == DEAD_PROCESS) { /* Don't add a logout entry for just a dying login. */ if ((fd = open(PATH_UTMP, O_RDONLY)) < 0) return; if (lseek(fd, (off_t) slot * sizeof(utmp), SEEK_SET) != -1 && read(fd, (void *) &utmp, sizeof(utmp)) == sizeof(utmp)) { if (utmp.ut_type != INIT_PROCESS && utmp.ut_type != USER_PROCESS) log= 0; } close(fd); } if (type == LOGIN_PROCESS) log= 0; /* and don't log this one */ /* Clear the utmp record. */ memset((void *) &utmp, 0, sizeof(utmp)); /* Enter new values. */ strncpy(utmp.ut_name, user, sizeof(utmp.ut_name)); strncpy(utmp.ut_id, id, sizeof(utmp.ut_id)); strncpy(utmp.ut_line, line, sizeof(utmp.ut_line)); strncpy(utmp.ut_host, hostname, sizeof(utmp.ut_host)); utmp.ut_pid = pid; utmp.ut_type = type; utmp.ut_time = time((time_t *)0); if (log) { if ((fd = open(PATH_WTMP, O_WRONLY | O_APPEND)) < 0) return; write(fd, (char *) &utmp, sizeof(struct utmp)); close(fd); } /* write entry to utmp */ if ((fd = open(PATH_UTMP, O_WRONLY)) < 0) return; if (lseek(fd, (off_t) slot * sizeof(utmp), SEEK_SET) != -1) write(fd, (char *) &utmp, sizeof(struct utmp)); close(fd);}int do_rlogin(){ char c; struct passwd *pwd; getstr(&c, 1, "protocol violation"); getstr(rusername, sizeof(rusername), "remuser too long"); getstr(lusername, sizeof(lusername), "locuser too long"); getstr(term+ENVSIZE, sizeof(term)-ENVSIZE, "Terminal type too long");#if DEBUG fprintf(stderr, "got lu= %s, ru= %s, te= %s\r\n", lusername, rusername, term);#endif pwd= getpwnam(lusername); if (pwd == NULL) return -1; return(ruserok(hostname, 0, rusername, lusername));}void getstr(buf, cnt, errmsg)char *buf;int cnt;char *errmsg;{ char c; errno= 0; do { if (read(0, &c, 1) != 1) fatal(1, "read failed", errno); cnt--; if (cnt < 0) fatal(1, errmsg, 0); *buf++= c; } while(c != 0);}void fatal(fd, msg, err)int fd;char *msg;int err;{ int len; char buf[80], *bp; bp= buf; if (!confirmed) *bp++= '\1'; if (err) len= sprintf(bp, "rlogind: %s: %s.\r\n", msg, strerror(err)); else len= sprintf(bp, "rlogind: %s.\r\n", msg); write(fd, buf, bp+len-buf); exit(1);}void setup_term(fd)int fd;{ char *cp, *speed; struct termios tt; speed_t spd; int num; char *check; cp= strchr(term, '/'); if (cp) { tcgetattr(fd, &tt); *cp++= '\0'; speed= cp; cp= strchr(speed, '/'); if (cp) *cp++= '\0'; num= strtol(speed, &check, 0); spd= num2speed(num); if (spd != B0 && check[0] == '\0') { cfsetospeed(&tt, spd); cfsetispeed(&tt, spd); } tcsetattr(fd, TCSANOW, &tt); } env[0]= term; env[1]= 0;}speed_t num2speed(num)int num;{ static struct { int num; speed_t value; } speed_table[]= { { 0, B0, }, { 50, B50, }, { 75, B75, }, { 110, B110, }, { 134, B134, }, { 150, B150, }, { 200, B200, }, { 300, B300, }, { 600, B600, }, { 1200, B1200, }, { 1800, B1800, }, { 2400, B2400, }, { 4800, B4800, }, { 9600, B9600, }, { 19200, B19200, }, { 38400, B38400, }, { -1, -1 }, }; int i; for (i= 0; speed_table[i].num != -1; i++) { if (speed_table[i].num == num) return (speed_table[i].value); } return B0;}int do_control(cp, cnt)char *cp;int cnt;{ char buf[20], *bp; struct winsize winsize; if (cnt > sizeof(buf)) cnt= sizeof(buf); memcpy(buf, cp, cnt); /* Let's fetch the first 2 bytes. */ if (cnt < 2) readall(buf+cnt, 2-cnt); if ((unsigned char)buf[1] != 255) return 0; /* Let's fetch the first 4 bytes. */ if (cnt < 4) readall(buf+cnt, 4-cnt); if (buf[2] != 's' || buf[3] != 's') return 0; /* Let's fetch a winsize structure. */ if (cnt < 4 + sizeof(winsize)) readall(buf+cnt, 4 + sizeof(winsize) - cnt); memcpy(&winsize, buf+4, sizeof(winsize)); winsize.ws_row= ntohs(winsize.ws_row); winsize.ws_col= ntohs(winsize.ws_col); winsize.ws_xpixel= ntohs(winsize.ws_xpixel); winsize.ws_ypixel= ntohs(winsize.ws_ypixel);#if DEBUG fprintf(stderr, "setting window size to %d, %d\r\n", winsize.ws_row, winsize.ws_col);#endif ioctl(1, TIOCSWINSZ, &winsize); return 4 + sizeof(winsize);}void readall(buf, cnt)char *buf;int cnt;{ int res; while(cnt) { res= read(0, buf, cnt); if (res <= 0) return; buf += cnt; cnt -= res; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -