Bernhard Reutner-Fischer | 2c99851 | 2006-04-12 18:09:26 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Bernhard Reutner-Fischer | dac7ff1 | 2006-04-12 17:55:51 +0000 | [diff] [blame] | 2 | /* |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 3 | * Simple telnet server |
| 4 | * Bjorn Wesen, Axis Communications AB (bjornw@axis.com) |
| 5 | * |
Rob Landley | 1ec5b29 | 2006-05-29 07:42:02 +0000 | [diff] [blame] | 6 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 7 | * |
| 8 | * --------------------------------------------------------------------------- |
| 9 | * (C) Copyright 2000, Axis Communications AB, LUND, SWEDEN |
| 10 | **************************************************************************** |
| 11 | * |
| 12 | * The telnetd manpage says it all: |
| 13 | * |
| 14 | * Telnetd operates by allocating a pseudo-terminal device (see pty(4)) for |
| 15 | * a client, then creating a login process which has the slave side of the |
| 16 | * pseudo-terminal as stdin, stdout, and stderr. Telnetd manipulates the |
| 17 | * master side of the pseudo-terminal, implementing the telnet protocol and |
| 18 | * passing characters between the remote client and the login process. |
| 19 | * |
| 20 | * Vladimir Oleynik <dzo@simtreas.ru> 2001 |
| 21 | * Set process group corrections, initial busybox port |
| 22 | */ |
| 23 | |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 24 | #define DEBUG 0 |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 25 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 26 | #include "libbb.h" |
Bernhard Reutner-Fischer | f470196 | 2008-01-27 12:50:12 +0000 | [diff] [blame] | 27 | #include <syslog.h> |
Rob Landley | 099ed50 | 2006-08-28 09:41:49 +0000 | [diff] [blame] | 28 | |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 29 | #if DEBUG |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 30 | #define TELCMDS |
| 31 | #define TELOPTS |
| 32 | #endif |
| 33 | #include <arpa/telnet.h> |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 34 | |
Denis Vlasenko | 59d7c43 | 2007-10-15 15:19:36 +0000 | [diff] [blame] | 35 | /* Structure that describes a session */ |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 36 | struct tsession { |
| 37 | struct tsession *next; |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 38 | int sockfd_read, sockfd_write, ptyfd; |
Denis Vlasenko | 2450c45 | 2007-10-15 22:09:15 +0000 | [diff] [blame] | 39 | int shell_pid; |
Denis Vlasenko | 59d7c43 | 2007-10-15 15:19:36 +0000 | [diff] [blame] | 40 | |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 41 | /* two circular buffers */ |
Denis Vlasenko | 59d7c43 | 2007-10-15 15:19:36 +0000 | [diff] [blame] | 42 | /*char *buf1, *buf2;*/ |
| 43 | /*#define TS_BUF1 ts->buf1*/ |
| 44 | /*#define TS_BUF2 TS_BUF2*/ |
Denis Vlasenko | 10916c5 | 2007-10-15 17:28:00 +0000 | [diff] [blame] | 45 | #define TS_BUF1 ((unsigned char*)(ts + 1)) |
| 46 | #define TS_BUF2 (((unsigned char*)(ts + 1)) + BUFSIZE) |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 47 | int rdidx1, wridx1, size1; |
| 48 | int rdidx2, wridx2, size2; |
| 49 | }; |
| 50 | |
Denis Vlasenko | 88308fe | 2007-06-25 10:35:11 +0000 | [diff] [blame] | 51 | /* Two buffers are directly after tsession in malloced memory. |
| 52 | * Make whole thing fit in 4k */ |
Denis Vlasenko | 59d7c43 | 2007-10-15 15:19:36 +0000 | [diff] [blame] | 53 | enum { BUFSIZE = (4 * 1024 - sizeof(struct tsession)) / 2 }; |
Denis Vlasenko | 88308fe | 2007-06-25 10:35:11 +0000 | [diff] [blame] | 54 | |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 55 | |
Denis Vlasenko | 59d7c43 | 2007-10-15 15:19:36 +0000 | [diff] [blame] | 56 | /* Globals */ |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 57 | static int maxfd; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 58 | static struct tsession *sessions; |
Denis Vlasenko | 59d7c43 | 2007-10-15 15:19:36 +0000 | [diff] [blame] | 59 | static const char *loginpath = "/bin/login"; |
Denis Vlasenko | 59d7c43 | 2007-10-15 15:19:36 +0000 | [diff] [blame] | 60 | static const char *issuefile = "/etc/issue.net"; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 61 | |
| 62 | |
| 63 | /* |
Denis Vlasenko | 59d7c43 | 2007-10-15 15:19:36 +0000 | [diff] [blame] | 64 | Remove all IAC's from buf1 (received IACs are ignored and must be removed |
| 65 | so as to not be interpreted by the terminal). Make an uninterrupted |
| 66 | string of characters fit for the terminal. Do this by packing |
| 67 | all characters meant for the terminal sequentially towards the end of buf. |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 68 | |
| 69 | Return a pointer to the beginning of the characters meant for the terminal. |
| 70 | and make *num_totty the number of characters that should be sent to |
| 71 | the terminal. |
| 72 | |
| 73 | Note - If an IAC (3 byte quantity) starts before (bf + len) but extends |
Denis Vlasenko | 59d7c43 | 2007-10-15 15:19:36 +0000 | [diff] [blame] | 74 | past (bf + len) then that IAC will be left unprocessed and *processed |
| 75 | will be less than len. |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 76 | |
| 77 | FIXME - if we mean to send 0xFF to the terminal then it will be escaped, |
| 78 | what is the escape character? We aren't handling that situation here. |
| 79 | |
Denis Vlasenko | 10916c5 | 2007-10-15 17:28:00 +0000 | [diff] [blame] | 80 | CR-LF ->'s CR mapping is also done here, for convenience. |
| 81 | |
| 82 | NB: may fail to remove iacs which wrap around buffer! |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 83 | */ |
Denis Vlasenko | 10916c5 | 2007-10-15 17:28:00 +0000 | [diff] [blame] | 84 | static unsigned char * |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 85 | remove_iacs(struct tsession *ts, int *pnum_totty) |
| 86 | { |
Denis Vlasenko | 10916c5 | 2007-10-15 17:28:00 +0000 | [diff] [blame] | 87 | unsigned char *ptr0 = TS_BUF1 + ts->wridx1; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 88 | unsigned char *ptr = ptr0; |
| 89 | unsigned char *totty = ptr; |
| 90 | unsigned char *end = ptr + MIN(BUFSIZE - ts->wridx1, ts->size1); |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 91 | int num_totty; |
| 92 | |
| 93 | while (ptr < end) { |
| 94 | if (*ptr != IAC) { |
Denis Vlasenko | 10916c5 | 2007-10-15 17:28:00 +0000 | [diff] [blame] | 95 | char c = *ptr; |
| 96 | |
| 97 | *totty++ = c; |
| 98 | ptr++; |
Eric Andersen | 3752d33 | 2003-12-19 11:30:13 +0000 | [diff] [blame] | 99 | /* We now map \r\n ==> \r for pragmatic reasons. |
| 100 | * Many client implementations send \r\n when |
| 101 | * the user hits the CarriageReturn key. |
| 102 | */ |
Denis Vlasenko | 10916c5 | 2007-10-15 17:28:00 +0000 | [diff] [blame] | 103 | if (c == '\r' && ptr < end && (*ptr == '\n' || *ptr == '\0')) |
Eric Andersen | 3752d33 | 2003-12-19 11:30:13 +0000 | [diff] [blame] | 104 | ptr++; |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 105 | } else { |
Glenn L McGrath | 90ed9a0 | 2004-02-22 09:45:57 +0000 | [diff] [blame] | 106 | /* |
| 107 | * TELOPT_NAWS support! |
| 108 | */ |
| 109 | if ((ptr+2) >= end) { |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 110 | /* only the beginning of the IAC is in the |
| 111 | buffer we were asked to process, we can't |
| 112 | process this char. */ |
| 113 | break; |
| 114 | } |
Glenn L McGrath | 90ed9a0 | 2004-02-22 09:45:57 +0000 | [diff] [blame] | 115 | |
| 116 | /* |
| 117 | * IAC -> SB -> TELOPT_NAWS -> 4-byte -> IAC -> SE |
| 118 | */ |
| 119 | else if (ptr[1] == SB && ptr[2] == TELOPT_NAWS) { |
| 120 | struct winsize ws; |
Denis Vlasenko | 10916c5 | 2007-10-15 17:28:00 +0000 | [diff] [blame] | 121 | |
Glenn L McGrath | 90ed9a0 | 2004-02-22 09:45:57 +0000 | [diff] [blame] | 122 | if ((ptr+8) >= end) |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 123 | break; /* incomplete, can't process */ |
Glenn L McGrath | 90ed9a0 | 2004-02-22 09:45:57 +0000 | [diff] [blame] | 124 | ws.ws_col = (ptr[3] << 8) | ptr[4]; |
| 125 | ws.ws_row = (ptr[5] << 8) | ptr[6]; |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 126 | ioctl(ts->ptyfd, TIOCSWINSZ, (char *)&ws); |
Glenn L McGrath | 90ed9a0 | 2004-02-22 09:45:57 +0000 | [diff] [blame] | 127 | ptr += 9; |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 128 | } else { |
Glenn L McGrath | 90ed9a0 | 2004-02-22 09:45:57 +0000 | [diff] [blame] | 129 | /* skip 3-byte IAC non-SB cmd */ |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 130 | #if DEBUG |
Glenn L McGrath | 90ed9a0 | 2004-02-22 09:45:57 +0000 | [diff] [blame] | 131 | fprintf(stderr, "Ignoring IAC %s,%s\n", |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 132 | TELCMD(ptr[1]), TELOPT(ptr[2])); |
Glenn L McGrath | 90ed9a0 | 2004-02-22 09:45:57 +0000 | [diff] [blame] | 133 | #endif |
| 134 | ptr += 3; |
| 135 | } |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 136 | } |
| 137 | } |
| 138 | |
Denis Vlasenko | 0de37e1 | 2007-10-17 11:08:53 +0000 | [diff] [blame] | 139 | num_totty = totty - ptr0; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 140 | *pnum_totty = num_totty; |
Denis Vlasenko | 10916c5 | 2007-10-15 17:28:00 +0000 | [diff] [blame] | 141 | /* the difference between ptr and totty is number of iacs |
| 142 | we removed from the stream. Adjust buf1 accordingly. */ |
| 143 | if ((ptr - totty) == 0) /* 99.999% of cases */ |
| 144 | return ptr0; |
| 145 | ts->wridx1 += ptr - totty; |
| 146 | ts->size1 -= ptr - totty; |
| 147 | /* move chars meant for the terminal towards the end of the buffer */ |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 148 | return memmove(ptr - num_totty, ptr0, num_totty); |
| 149 | } |
| 150 | |
| 151 | |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 152 | static struct tsession * |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 153 | make_new_session( |
Denis Vlasenko | f472b23 | 2007-10-16 21:35:17 +0000 | [diff] [blame] | 154 | USE_FEATURE_TELNETD_STANDALONE(int sock) |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 155 | SKIP_FEATURE_TELNETD_STANDALONE(void) |
| 156 | ) { |
Denis Vlasenko | 88308fe | 2007-06-25 10:35:11 +0000 | [diff] [blame] | 157 | const char *login_argv[2]; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 158 | struct termios termbuf; |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 159 | int fd, pid; |
Denis Vlasenko | 85c2471 | 2008-03-17 09:04:04 +0000 | [diff] [blame] | 160 | char tty_name[GETPTY_BUFSIZE]; |
Rob Landley | 1ec5b29 | 2006-05-29 07:42:02 +0000 | [diff] [blame] | 161 | struct tsession *ts = xzalloc(sizeof(struct tsession) + BUFSIZE * 2); |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 162 | |
Denis Vlasenko | 59d7c43 | 2007-10-15 15:19:36 +0000 | [diff] [blame] | 163 | /*ts->buf1 = (char *)(ts + 1);*/ |
| 164 | /*ts->buf2 = ts->buf1 + BUFSIZE;*/ |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 165 | |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 166 | /* Got a new connection, set up a tty. */ |
Bernhard Reutner-Fischer | ae4342c | 2008-05-19 08:18:50 +0000 | [diff] [blame] | 167 | fd = xgetpty(tty_name); |
Denis Vlasenko | f472b23 | 2007-10-16 21:35:17 +0000 | [diff] [blame] | 168 | if (fd > maxfd) |
| 169 | maxfd = fd; |
Denis Vlasenko | 59d7c43 | 2007-10-15 15:19:36 +0000 | [diff] [blame] | 170 | ts->ptyfd = fd; |
| 171 | ndelay_on(fd); |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 172 | #if ENABLE_FEATURE_TELNETD_STANDALONE |
Denis Vlasenko | f472b23 | 2007-10-16 21:35:17 +0000 | [diff] [blame] | 173 | ts->sockfd_read = sock; |
| 174 | ndelay_on(sock); |
Denis Vlasenko | 9e23767 | 2007-10-17 11:18:49 +0000 | [diff] [blame] | 175 | if (!sock) { /* We are called with fd 0 - we are in inetd mode */ |
| 176 | sock++; /* so use fd 1 for output */ |
| 177 | ndelay_on(sock); |
| 178 | } |
Denis Vlasenko | f472b23 | 2007-10-16 21:35:17 +0000 | [diff] [blame] | 179 | ts->sockfd_write = sock; |
Denis Vlasenko | f472b23 | 2007-10-16 21:35:17 +0000 | [diff] [blame] | 180 | if (sock > maxfd) |
| 181 | maxfd = sock; |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 182 | #else |
Denis Vlasenko | 59d7c43 | 2007-10-15 15:19:36 +0000 | [diff] [blame] | 183 | /* ts->sockfd_read = 0; - done by xzalloc */ |
Denis Vlasenko | f472b23 | 2007-10-16 21:35:17 +0000 | [diff] [blame] | 184 | ts->sockfd_write = 1; |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 185 | ndelay_on(0); |
| 186 | ndelay_on(1); |
| 187 | #endif |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 188 | /* Make the telnet client understand we will echo characters so it |
| 189 | * should not do it locally. We don't tell the client to run linemode, |
| 190 | * because we want to handle line editing and tab completion and other |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 191 | * stuff that requires char-by-char support. */ |
Denis Vlasenko | 59d7c43 | 2007-10-15 15:19:36 +0000 | [diff] [blame] | 192 | { |
| 193 | static const char iacs_to_send[] ALIGN1 = { |
| 194 | IAC, DO, TELOPT_ECHO, |
| 195 | IAC, DO, TELOPT_NAWS, |
| 196 | IAC, DO, TELOPT_LFLOW, |
| 197 | IAC, WILL, TELOPT_ECHO, |
| 198 | IAC, WILL, TELOPT_SGA |
| 199 | }; |
| 200 | memcpy(TS_BUF2, iacs_to_send, sizeof(iacs_to_send)); |
| 201 | ts->rdidx2 = sizeof(iacs_to_send); |
| 202 | ts->size2 = sizeof(iacs_to_send); |
| 203 | } |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 204 | |
Denis Vlasenko | 59d7c43 | 2007-10-15 15:19:36 +0000 | [diff] [blame] | 205 | fflush(NULL); /* flush all streams */ |
| 206 | pid = vfork(); /* NOMMU-friendly */ |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 207 | if (pid < 0) { |
| 208 | free(ts); |
| 209 | close(fd); |
Denis Vlasenko | 23c8128 | 2007-10-16 22:01:23 +0000 | [diff] [blame] | 210 | /* sock will be closed by caller */ |
Denis Vlasenko | 59d7c43 | 2007-10-15 15:19:36 +0000 | [diff] [blame] | 211 | bb_perror_msg("vfork"); |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 212 | return NULL; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 213 | } |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 214 | if (pid > 0) { |
Denis Vlasenko | 59d7c43 | 2007-10-15 15:19:36 +0000 | [diff] [blame] | 215 | /* Parent */ |
Denis Vlasenko | 2450c45 | 2007-10-15 22:09:15 +0000 | [diff] [blame] | 216 | ts->shell_pid = pid; |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 217 | return ts; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 218 | } |
Denis Vlasenko | f7996f3 | 2007-01-11 17:20:00 +0000 | [diff] [blame] | 219 | |
Denis Vlasenko | 59d7c43 | 2007-10-15 15:19:36 +0000 | [diff] [blame] | 220 | /* Child */ |
| 221 | /* Careful - we are after vfork! */ |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 222 | |
Denis Vlasenko | 88308fe | 2007-06-25 10:35:11 +0000 | [diff] [blame] | 223 | /* make new session and process group */ |
Denis Vlasenko | 9af7c9d | 2007-01-19 21:19:35 +0000 | [diff] [blame] | 224 | setsid(); |
Denis Vlasenko | 9af7c9d | 2007-01-19 21:19:35 +0000 | [diff] [blame] | 225 | |
Denis Vlasenko | 018b155 | 2007-11-06 01:38:46 +0000 | [diff] [blame] | 226 | /* Restore default signal handling */ |
Denis Vlasenko | 25591c3 | 2008-02-16 22:58:56 +0000 | [diff] [blame] | 227 | bb_signals((1 << SIGCHLD) + (1 << SIGPIPE), SIG_DFL); |
Denis Vlasenko | 018b155 | 2007-11-06 01:38:46 +0000 | [diff] [blame] | 228 | |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 229 | /* open the child's side of the tty. */ |
Denis Vlasenko | 9af7c9d | 2007-01-19 21:19:35 +0000 | [diff] [blame] | 230 | /* NB: setsid() disconnects from any previous ctty's. Therefore |
| 231 | * we must open child's side of the tty AFTER setsid! */ |
Denis Vlasenko | 1101d1c | 2008-07-21 09:22:28 +0000 | [diff] [blame] | 232 | close(0); |
| 233 | xopen(tty_name, O_RDWR); /* becomes our ctty */ |
| 234 | xdup2(0, 1); |
| 235 | xdup2(0, 2); |
Denis Vlasenko | 88308fe | 2007-06-25 10:35:11 +0000 | [diff] [blame] | 236 | tcsetpgrp(0, getpid()); /* switch this tty's process group to us */ |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 237 | |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 238 | /* The pseudo-terminal allocated to the client is configured to operate in |
| 239 | * cooked mode, and with XTABS CRMOD enabled (see tty(4)). */ |
| 240 | tcgetattr(0, &termbuf); |
| 241 | termbuf.c_lflag |= ECHO; /* if we use readline we dont want this */ |
Denis Vlasenko | 59d7c43 | 2007-10-15 15:19:36 +0000 | [diff] [blame] | 242 | termbuf.c_oflag |= ONLCR | XTABS; |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 243 | termbuf.c_iflag |= ICRNL; |
| 244 | termbuf.c_iflag &= ~IXOFF; |
| 245 | /*termbuf.c_lflag &= ~ICANON;*/ |
| 246 | tcsetattr(0, TCSANOW, &termbuf); |
| 247 | |
Denis Vlasenko | 59d7c43 | 2007-10-15 15:19:36 +0000 | [diff] [blame] | 248 | /* Uses FILE-based I/O to stdout, but does fflush(stdout), |
| 249 | * so should be safe with vfork. |
| 250 | * I fear, though, that some users will have ridiculously big |
Denis Vlasenko | 018b155 | 2007-11-06 01:38:46 +0000 | [diff] [blame] | 251 | * issue files, and they may block writing to fd 1, |
| 252 | * (parent is supposed to read it, but parent waits |
| 253 | * for vforked child to exec!) */ |
Denis Vlasenko | 1101d1c | 2008-07-21 09:22:28 +0000 | [diff] [blame] | 254 | print_login_issue(issuefile, tty_name); |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 255 | |
Denis Vlasenko | 59d7c43 | 2007-10-15 15:19:36 +0000 | [diff] [blame] | 256 | /* Exec shell / login / whatever */ |
Denis Vlasenko | 88308fe | 2007-06-25 10:35:11 +0000 | [diff] [blame] | 257 | login_argv[0] = loginpath; |
| 258 | login_argv[1] = NULL; |
Denis Vlasenko | 018b155 | 2007-11-06 01:38:46 +0000 | [diff] [blame] | 259 | /* exec busybox applet (if PREFER_APPLETS=y), if that fails, |
| 260 | * exec external program */ |
| 261 | BB_EXECVP(loginpath, (char **)login_argv); |
| 262 | /* _exit is safer with vfork, and we shouldn't send message |
Denis Vlasenko | 2450c45 | 2007-10-15 22:09:15 +0000 | [diff] [blame] | 263 | * to remote clients anyway */ |
Bernhard Reutner-Fischer | 636a1f8 | 2008-05-19 09:29:47 +0000 | [diff] [blame] | 264 | _exit(EXIT_FAILURE); /*bb_perror_msg_and_die("execv %s", loginpath);*/ |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 265 | } |
| 266 | |
Denis Vlasenko | e87b868 | 2007-10-17 14:33:31 +0000 | [diff] [blame] | 267 | /* Must match getopt32 string */ |
| 268 | enum { |
| 269 | OPT_WATCHCHILD = (1 << 2), /* -K */ |
| 270 | OPT_INETD = (1 << 3) * ENABLE_FEATURE_TELNETD_STANDALONE, /* -i */ |
| 271 | OPT_PORT = (1 << 4) * ENABLE_FEATURE_TELNETD_STANDALONE, /* -p */ |
| 272 | OPT_FOREGROUND = (1 << 6) * ENABLE_FEATURE_TELNETD_STANDALONE, /* -F */ |
| 273 | }; |
| 274 | |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 275 | #if ENABLE_FEATURE_TELNETD_STANDALONE |
| 276 | |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 277 | static void |
| 278 | free_session(struct tsession *ts) |
| 279 | { |
| 280 | struct tsession *t = sessions; |
| 281 | |
Denis Vlasenko | e87b868 | 2007-10-17 14:33:31 +0000 | [diff] [blame] | 282 | if (option_mask32 & OPT_INETD) |
Bernhard Reutner-Fischer | 636a1f8 | 2008-05-19 09:29:47 +0000 | [diff] [blame] | 283 | exit(EXIT_SUCCESS); |
Denis Vlasenko | e87b868 | 2007-10-17 14:33:31 +0000 | [diff] [blame] | 284 | |
Denis Vlasenko | 59d7c43 | 2007-10-15 15:19:36 +0000 | [diff] [blame] | 285 | /* Unlink this telnet session from the session list */ |
Mike Frysinger | 731f81c | 2006-05-10 15:23:12 +0000 | [diff] [blame] | 286 | if (t == ts) |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 287 | sessions = ts->next; |
| 288 | else { |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 289 | while (t->next != ts) |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 290 | t = t->next; |
| 291 | t->next = ts->next; |
| 292 | } |
| 293 | |
Denis Vlasenko | f472b23 | 2007-10-16 21:35:17 +0000 | [diff] [blame] | 294 | #if 0 |
Denis Vlasenko | 59d7c43 | 2007-10-15 15:19:36 +0000 | [diff] [blame] | 295 | /* It was said that "normal" telnetd just closes ptyfd, |
| 296 | * doesn't send SIGKILL. When we close ptyfd, |
| 297 | * kernel sends SIGHUP to processes having slave side opened. */ |
Denis Vlasenko | f472b23 | 2007-10-16 21:35:17 +0000 | [diff] [blame] | 298 | kill(ts->shell_pid, SIGKILL); |
| 299 | wait4(ts->shell_pid, NULL, 0, NULL); |
| 300 | #endif |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 301 | close(ts->ptyfd); |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 302 | close(ts->sockfd_read); |
Denis Vlasenko | f472b23 | 2007-10-16 21:35:17 +0000 | [diff] [blame] | 303 | /* We do not need to close(ts->sockfd_write), it's the same |
| 304 | * as sockfd_read unless we are in inetd mode. But in inetd mode |
Denis Vlasenko | e87b868 | 2007-10-17 14:33:31 +0000 | [diff] [blame] | 305 | * we do not reach this */ |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 306 | free(ts); |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 307 | |
Denis Vlasenko | 59d7c43 | 2007-10-15 15:19:36 +0000 | [diff] [blame] | 308 | /* Scan all sessions and find new maxfd */ |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 309 | maxfd = 0; |
Denis Vlasenko | f472b23 | 2007-10-16 21:35:17 +0000 | [diff] [blame] | 310 | ts = sessions; |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 311 | while (ts) { |
| 312 | if (maxfd < ts->ptyfd) |
| 313 | maxfd = ts->ptyfd; |
| 314 | if (maxfd < ts->sockfd_read) |
| 315 | maxfd = ts->sockfd_read; |
Denis Vlasenko | f472b23 | 2007-10-16 21:35:17 +0000 | [diff] [blame] | 316 | #if 0 |
| 317 | /* Again, sockfd_write == sockfd_read here */ |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 318 | if (maxfd < ts->sockfd_write) |
| 319 | maxfd = ts->sockfd_write; |
Denis Vlasenko | f472b23 | 2007-10-16 21:35:17 +0000 | [diff] [blame] | 320 | #endif |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 321 | ts = ts->next; |
| 322 | } |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 323 | } |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 324 | |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 325 | #else /* !FEATURE_TELNETD_STANDALONE */ |
| 326 | |
Bernhard Reutner-Fischer | 636a1f8 | 2008-05-19 09:29:47 +0000 | [diff] [blame] | 327 | /* Used in main() only, thus "return 0" actually is exit(EXIT_SUCCESS). */ |
Denis Vlasenko | e87b868 | 2007-10-17 14:33:31 +0000 | [diff] [blame] | 328 | #define free_session(ts) return 0 |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 329 | |
| 330 | #endif |
| 331 | |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 332 | static void handle_sigchld(int sig UNUSED_PARAM) |
Denis Vlasenko | 2450c45 | 2007-10-15 22:09:15 +0000 | [diff] [blame] | 333 | { |
| 334 | pid_t pid; |
| 335 | struct tsession *ts; |
| 336 | |
Denis Vlasenko | 018b155 | 2007-11-06 01:38:46 +0000 | [diff] [blame] | 337 | /* Looping: more than one child may have exited */ |
| 338 | while (1) { |
Denis Vlasenko | fb0eba7 | 2008-01-02 19:55:04 +0000 | [diff] [blame] | 339 | pid = wait_any_nohang(NULL); |
Denis Vlasenko | 018b155 | 2007-11-06 01:38:46 +0000 | [diff] [blame] | 340 | if (pid <= 0) |
| 341 | break; |
Denis Vlasenko | 2450c45 | 2007-10-15 22:09:15 +0000 | [diff] [blame] | 342 | ts = sessions; |
| 343 | while (ts) { |
| 344 | if (ts->shell_pid == pid) { |
| 345 | ts->shell_pid = -1; |
Denis Vlasenko | 018b155 | 2007-11-06 01:38:46 +0000 | [diff] [blame] | 346 | break; |
Denis Vlasenko | 2450c45 | 2007-10-15 22:09:15 +0000 | [diff] [blame] | 347 | } |
| 348 | ts = ts->next; |
| 349 | } |
| 350 | } |
| 351 | } |
| 352 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 353 | int telnetd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 354 | int telnetd_main(int argc UNUSED_PARAM, char **argv) |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 355 | { |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 356 | fd_set rdfdset, wrfdset; |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 357 | unsigned opt; |
Denis Vlasenko | 10916c5 | 2007-10-15 17:28:00 +0000 | [diff] [blame] | 358 | int count; |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 359 | struct tsession *ts; |
| 360 | #if ENABLE_FEATURE_TELNETD_STANDALONE |
| 361 | #define IS_INETD (opt & OPT_INETD) |
Denis Vlasenko | 59d7c43 | 2007-10-15 15:19:36 +0000 | [diff] [blame] | 362 | int master_fd = master_fd; /* be happy, gcc */ |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 363 | unsigned portnbr = 23; |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 364 | char *opt_bindaddr = NULL; |
| 365 | char *opt_portnbr; |
| 366 | #else |
| 367 | enum { |
| 368 | IS_INETD = 1, |
| 369 | master_fd = -1, |
| 370 | portnbr = 23, |
| 371 | }; |
Glenn L McGrath | c2b9186 | 2003-09-12 11:27:15 +0000 | [diff] [blame] | 372 | #endif |
Denis Vlasenko | 2450c45 | 2007-10-15 22:09:15 +0000 | [diff] [blame] | 373 | /* Even if !STANDALONE, we accept (and ignore) -i, thus people |
Denis Vlasenko | 59d7c43 | 2007-10-15 15:19:36 +0000 | [diff] [blame] | 374 | * don't need to guess whether it's ok to pass -i to us */ |
Denis Vlasenko | 2450c45 | 2007-10-15 22:09:15 +0000 | [diff] [blame] | 375 | opt = getopt32(argv, "f:l:Ki" USE_FEATURE_TELNETD_STANDALONE("p:b:F"), |
Denis Vlasenko | 0e87d34 | 2006-09-22 08:50:29 +0000 | [diff] [blame] | 376 | &issuefile, &loginpath |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 377 | USE_FEATURE_TELNETD_STANDALONE(, &opt_portnbr, &opt_bindaddr)); |
Denis Vlasenko | 2450c45 | 2007-10-15 22:09:15 +0000 | [diff] [blame] | 378 | if (!IS_INETD /*&& !re_execed*/) { |
| 379 | /* inform that we start in standalone mode? |
| 380 | * May be useful when people forget to give -i */ |
| 381 | /*bb_error_msg("listening for connections");*/ |
| 382 | if (!(opt & OPT_FOREGROUND)) { |
| 383 | /* DAEMON_CHDIR_ROOT was giving inconsistent |
Denis Vlasenko | 008eda2 | 2007-10-16 10:47:27 +0000 | [diff] [blame] | 384 | * behavior with/without -F, -i */ |
Denis Vlasenko | 018b155 | 2007-11-06 01:38:46 +0000 | [diff] [blame] | 385 | bb_daemonize_or_rexec(0 /*was DAEMON_CHDIR_ROOT*/, argv); |
Denis Vlasenko | 2450c45 | 2007-10-15 22:09:15 +0000 | [diff] [blame] | 386 | } |
| 387 | } |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 388 | /* Redirect log to syslog early, if needed */ |
| 389 | if (IS_INETD || !(opt & OPT_FOREGROUND)) { |
| 390 | openlog(applet_name, 0, LOG_USER); |
| 391 | logmode = LOGMODE_SYSLOG; |
| 392 | } |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 393 | USE_FEATURE_TELNETD_STANDALONE( |
Denis Vlasenko | 2450c45 | 2007-10-15 22:09:15 +0000 | [diff] [blame] | 394 | if (opt & OPT_PORT) |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 395 | portnbr = xatou16(opt_portnbr); |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 396 | ); |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 397 | |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 398 | /* Used to check access(loginpath, X_OK) here. Pointless. |
| 399 | * exec will do this for us for free later. */ |
Glenn L McGrath | 9e5d6c0 | 2003-01-21 20:55:56 +0000 | [diff] [blame] | 400 | |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 401 | #if ENABLE_FEATURE_TELNETD_STANDALONE |
| 402 | if (IS_INETD) { |
Denis Vlasenko | f472b23 | 2007-10-16 21:35:17 +0000 | [diff] [blame] | 403 | sessions = make_new_session(0); |
Denis Vlasenko | 59d7c43 | 2007-10-15 15:19:36 +0000 | [diff] [blame] | 404 | if (!sessions) /* pty opening or vfork problem, exit */ |
| 405 | return 1; /* make_new_session prints error message */ |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 406 | } else { |
Denis Vlasenko | 9de420c | 2007-01-10 09:28:01 +0000 | [diff] [blame] | 407 | master_fd = create_and_bind_stream_or_die(opt_bindaddr, portnbr); |
Denis Vlasenko | c8717cd | 2006-11-22 16:10:39 +0000 | [diff] [blame] | 408 | xlisten(master_fd, 1); |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 409 | } |
Rob Landley | 00e76cb | 2005-05-10 23:53:33 +0000 | [diff] [blame] | 410 | #else |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 411 | sessions = make_new_session(); |
Denis Vlasenko | 59d7c43 | 2007-10-15 15:19:36 +0000 | [diff] [blame] | 412 | if (!sessions) /* pty opening or vfork problem, exit */ |
| 413 | return 1; /* make_new_session prints error message */ |
Rob Landley | 00e76cb | 2005-05-10 23:53:33 +0000 | [diff] [blame] | 414 | #endif |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 415 | |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 416 | /* We don't want to die if just one session is broken */ |
| 417 | signal(SIGPIPE, SIG_IGN); |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 418 | |
Denis Vlasenko | 2450c45 | 2007-10-15 22:09:15 +0000 | [diff] [blame] | 419 | if (opt & OPT_WATCHCHILD) |
| 420 | signal(SIGCHLD, handle_sigchld); |
Denis Vlasenko | 018b155 | 2007-11-06 01:38:46 +0000 | [diff] [blame] | 421 | else /* prevent dead children from becoming zombies */ |
| 422 | signal(SIGCHLD, SIG_IGN); |
Denis Vlasenko | 2450c45 | 2007-10-15 22:09:15 +0000 | [diff] [blame] | 423 | |
Denis Vlasenko | 59d7c43 | 2007-10-15 15:19:36 +0000 | [diff] [blame] | 424 | /* |
| 425 | This is how the buffers are used. The arrows indicate the movement |
| 426 | of data. |
| 427 | +-------+ wridx1++ +------+ rdidx1++ +----------+ |
| 428 | | | <-------------- | buf1 | <-------------- | | |
| 429 | | | size1-- +------+ size1++ | | |
| 430 | | pty | | socket | |
| 431 | | | rdidx2++ +------+ wridx2++ | | |
| 432 | | | --------------> | buf2 | --------------> | | |
| 433 | +-------+ size2++ +------+ size2-- +----------+ |
| 434 | |
| 435 | size1: "how many bytes are buffered for pty between rdidx1 and wridx1?" |
| 436 | size2: "how many bytes are buffered for socket between rdidx2 and wridx2?" |
| 437 | |
| 438 | Each session has got two buffers. Buffers are circular. If sizeN == 0, |
| 439 | buffer is empty. If sizeN == BUFSIZE, buffer is full. In both these cases |
| 440 | rdidxN == wridxN. |
| 441 | */ |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 442 | again: |
| 443 | FD_ZERO(&rdfdset); |
| 444 | FD_ZERO(&wrfdset); |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 445 | |
Denis Vlasenko | 59d7c43 | 2007-10-15 15:19:36 +0000 | [diff] [blame] | 446 | /* Select on the master socket, all telnet sockets and their |
| 447 | * ptys if there is room in their session buffers. |
| 448 | * NB: scalability problem: we recalculate entire bitmap |
| 449 | * before each select. Can be a problem with 500+ connections. */ |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 450 | ts = sessions; |
| 451 | while (ts) { |
Denis Vlasenko | 2450c45 | 2007-10-15 22:09:15 +0000 | [diff] [blame] | 452 | struct tsession *next = ts->next; /* in case we free ts. */ |
| 453 | if (ts->shell_pid == -1) { |
Denis Vlasenko | 018b155 | 2007-11-06 01:38:46 +0000 | [diff] [blame] | 454 | /* Child died and we detected that */ |
Denis Vlasenko | 2450c45 | 2007-10-15 22:09:15 +0000 | [diff] [blame] | 455 | free_session(ts); |
| 456 | } else { |
| 457 | if (ts->size1 > 0) /* can write to pty */ |
| 458 | FD_SET(ts->ptyfd, &wrfdset); |
| 459 | if (ts->size1 < BUFSIZE) /* can read from socket */ |
| 460 | FD_SET(ts->sockfd_read, &rdfdset); |
| 461 | if (ts->size2 > 0) /* can write to socket */ |
| 462 | FD_SET(ts->sockfd_write, &wrfdset); |
| 463 | if (ts->size2 < BUFSIZE) /* can read from pty */ |
| 464 | FD_SET(ts->ptyfd, &rdfdset); |
| 465 | } |
| 466 | ts = next; |
| 467 | } |
| 468 | if (!IS_INETD) { |
| 469 | FD_SET(master_fd, &rdfdset); |
| 470 | /* This is needed because free_session() does not |
Denis Vlasenko | 018b155 | 2007-11-06 01:38:46 +0000 | [diff] [blame] | 471 | * take master_fd into account when it finds new |
Denis Vlasenko | 2450c45 | 2007-10-15 22:09:15 +0000 | [diff] [blame] | 472 | * maxfd among remaining fd's */ |
| 473 | if (master_fd > maxfd) |
| 474 | maxfd = master_fd; |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 475 | } |
| 476 | |
Denis Vlasenko | 10916c5 | 2007-10-15 17:28:00 +0000 | [diff] [blame] | 477 | count = select(maxfd + 1, &rdfdset, &wrfdset, NULL, NULL); |
| 478 | if (count < 0) |
Denis Vlasenko | 59d7c43 | 2007-10-15 15:19:36 +0000 | [diff] [blame] | 479 | goto again; /* EINTR or ENOMEM */ |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 480 | |
| 481 | #if ENABLE_FEATURE_TELNETD_STANDALONE |
| 482 | /* First check for and accept new sessions. */ |
| 483 | if (!IS_INETD && FD_ISSET(master_fd, &rdfdset)) { |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 484 | int fd; |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 485 | struct tsession *new_ts; |
| 486 | |
Denis Vlasenko | 59d7c43 | 2007-10-15 15:19:36 +0000 | [diff] [blame] | 487 | fd = accept(master_fd, NULL, NULL); |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 488 | if (fd < 0) |
| 489 | goto again; |
| 490 | /* Create a new session and link it into our active list */ |
Denis Vlasenko | f472b23 | 2007-10-16 21:35:17 +0000 | [diff] [blame] | 491 | new_ts = make_new_session(fd); |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 492 | if (new_ts) { |
| 493 | new_ts->next = sessions; |
| 494 | sessions = new_ts; |
| 495 | } else { |
| 496 | close(fd); |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 497 | } |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 498 | } |
| 499 | #endif |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 500 | |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 501 | /* Then check for data tunneling. */ |
| 502 | ts = sessions; |
| 503 | while (ts) { /* For all sessions... */ |
| 504 | struct tsession *next = ts->next; /* in case we free ts. */ |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 505 | |
Denis Vlasenko | 59d7c43 | 2007-10-15 15:19:36 +0000 | [diff] [blame] | 506 | if (/*ts->size1 &&*/ FD_ISSET(ts->ptyfd, &wrfdset)) { |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 507 | int num_totty; |
Denis Vlasenko | 10916c5 | 2007-10-15 17:28:00 +0000 | [diff] [blame] | 508 | unsigned char *ptr; |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 509 | /* Write to pty from buffer 1. */ |
| 510 | ptr = remove_iacs(ts, &num_totty); |
Denis Vlasenko | 10916c5 | 2007-10-15 17:28:00 +0000 | [diff] [blame] | 511 | count = safe_write(ts->ptyfd, ptr, num_totty); |
| 512 | if (count < 0) { |
Denis Vlasenko | 59d7c43 | 2007-10-15 15:19:36 +0000 | [diff] [blame] | 513 | if (errno == EAGAIN) |
| 514 | goto skip1; |
Denis Vlasenko | f472b23 | 2007-10-16 21:35:17 +0000 | [diff] [blame] | 515 | goto kill_session; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 516 | } |
Denis Vlasenko | 10916c5 | 2007-10-15 17:28:00 +0000 | [diff] [blame] | 517 | ts->size1 -= count; |
| 518 | ts->wridx1 += count; |
Denis Vlasenko | 59d7c43 | 2007-10-15 15:19:36 +0000 | [diff] [blame] | 519 | if (ts->wridx1 >= BUFSIZE) /* actually == BUFSIZE */ |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 520 | ts->wridx1 = 0; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 521 | } |
Denis Vlasenko | 59d7c43 | 2007-10-15 15:19:36 +0000 | [diff] [blame] | 522 | skip1: |
| 523 | if (/*ts->size2 &&*/ FD_ISSET(ts->sockfd_write, &wrfdset)) { |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 524 | /* Write to socket from buffer 2. */ |
Denis Vlasenko | 10916c5 | 2007-10-15 17:28:00 +0000 | [diff] [blame] | 525 | count = MIN(BUFSIZE - ts->wridx2, ts->size2); |
| 526 | count = safe_write(ts->sockfd_write, TS_BUF2 + ts->wridx2, count); |
| 527 | if (count < 0) { |
Denis Vlasenko | 59d7c43 | 2007-10-15 15:19:36 +0000 | [diff] [blame] | 528 | if (errno == EAGAIN) |
| 529 | goto skip2; |
Denis Vlasenko | f472b23 | 2007-10-16 21:35:17 +0000 | [diff] [blame] | 530 | goto kill_session; |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 531 | } |
Denis Vlasenko | 10916c5 | 2007-10-15 17:28:00 +0000 | [diff] [blame] | 532 | ts->size2 -= count; |
| 533 | ts->wridx2 += count; |
Denis Vlasenko | 59d7c43 | 2007-10-15 15:19:36 +0000 | [diff] [blame] | 534 | if (ts->wridx2 >= BUFSIZE) /* actually == BUFSIZE */ |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 535 | ts->wridx2 = 0; |
| 536 | } |
Denis Vlasenko | 59d7c43 | 2007-10-15 15:19:36 +0000 | [diff] [blame] | 537 | skip2: |
Denis Vlasenko | 10916c5 | 2007-10-15 17:28:00 +0000 | [diff] [blame] | 538 | /* Should not be needed, but... remove_iacs is actually buggy |
| 539 | * (it cannot process iacs which wrap around buffer's end)! |
| 540 | * Since properly fixing it requires writing bigger code, |
Denis Vlasenko | f472b23 | 2007-10-16 21:35:17 +0000 | [diff] [blame] | 541 | * we rely instead on this code making it virtually impossible |
Denis Vlasenko | 10916c5 | 2007-10-15 17:28:00 +0000 | [diff] [blame] | 542 | * to have wrapped iac (people don't type at 2k/second). |
| 543 | * It also allows for bigger reads in common case. */ |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 544 | if (ts->size1 == 0) { |
| 545 | ts->rdidx1 = 0; |
| 546 | ts->wridx1 = 0; |
| 547 | } |
| 548 | if (ts->size2 == 0) { |
| 549 | ts->rdidx2 = 0; |
| 550 | ts->wridx2 = 0; |
| 551 | } |
Denis Vlasenko | 10916c5 | 2007-10-15 17:28:00 +0000 | [diff] [blame] | 552 | |
Denis Vlasenko | 59d7c43 | 2007-10-15 15:19:36 +0000 | [diff] [blame] | 553 | if (/*ts->size1 < BUFSIZE &&*/ FD_ISSET(ts->sockfd_read, &rdfdset)) { |
| 554 | /* Read from socket to buffer 1. */ |
Denis Vlasenko | 10916c5 | 2007-10-15 17:28:00 +0000 | [diff] [blame] | 555 | count = MIN(BUFSIZE - ts->rdidx1, BUFSIZE - ts->size1); |
| 556 | count = safe_read(ts->sockfd_read, TS_BUF1 + ts->rdidx1, count); |
| 557 | if (count <= 0) { |
| 558 | if (count < 0 && errno == EAGAIN) |
Denis Vlasenko | 59d7c43 | 2007-10-15 15:19:36 +0000 | [diff] [blame] | 559 | goto skip3; |
Denis Vlasenko | f472b23 | 2007-10-16 21:35:17 +0000 | [diff] [blame] | 560 | goto kill_session; |
Denis Vlasenko | 59d7c43 | 2007-10-15 15:19:36 +0000 | [diff] [blame] | 561 | } |
| 562 | /* Ignore trailing NUL if it is there */ |
Denis Vlasenko | 10916c5 | 2007-10-15 17:28:00 +0000 | [diff] [blame] | 563 | if (!TS_BUF1[ts->rdidx1 + count - 1]) { |
Denis Vlasenko | f472b23 | 2007-10-16 21:35:17 +0000 | [diff] [blame] | 564 | --count; |
Denis Vlasenko | 59d7c43 | 2007-10-15 15:19:36 +0000 | [diff] [blame] | 565 | } |
Denis Vlasenko | 10916c5 | 2007-10-15 17:28:00 +0000 | [diff] [blame] | 566 | ts->size1 += count; |
| 567 | ts->rdidx1 += count; |
Denis Vlasenko | 59d7c43 | 2007-10-15 15:19:36 +0000 | [diff] [blame] | 568 | if (ts->rdidx1 >= BUFSIZE) /* actually == BUFSIZE */ |
| 569 | ts->rdidx1 = 0; |
| 570 | } |
| 571 | skip3: |
| 572 | if (/*ts->size2 < BUFSIZE &&*/ FD_ISSET(ts->ptyfd, &rdfdset)) { |
| 573 | /* Read from pty to buffer 2. */ |
Denis Vlasenko | 10916c5 | 2007-10-15 17:28:00 +0000 | [diff] [blame] | 574 | count = MIN(BUFSIZE - ts->rdidx2, BUFSIZE - ts->size2); |
| 575 | count = safe_read(ts->ptyfd, TS_BUF2 + ts->rdidx2, count); |
| 576 | if (count <= 0) { |
| 577 | if (count < 0 && errno == EAGAIN) |
Denis Vlasenko | 59d7c43 | 2007-10-15 15:19:36 +0000 | [diff] [blame] | 578 | goto skip4; |
Denis Vlasenko | f472b23 | 2007-10-16 21:35:17 +0000 | [diff] [blame] | 579 | goto kill_session; |
Denis Vlasenko | 59d7c43 | 2007-10-15 15:19:36 +0000 | [diff] [blame] | 580 | } |
Denis Vlasenko | 10916c5 | 2007-10-15 17:28:00 +0000 | [diff] [blame] | 581 | ts->size2 += count; |
| 582 | ts->rdidx2 += count; |
Denis Vlasenko | 59d7c43 | 2007-10-15 15:19:36 +0000 | [diff] [blame] | 583 | if (ts->rdidx2 >= BUFSIZE) /* actually == BUFSIZE */ |
| 584 | ts->rdidx2 = 0; |
| 585 | } |
| 586 | skip4: |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 587 | ts = next; |
Denis Vlasenko | f472b23 | 2007-10-16 21:35:17 +0000 | [diff] [blame] | 588 | continue; |
| 589 | kill_session: |
| 590 | free_session(ts); |
| 591 | ts = next; |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 592 | } |
Denis Vlasenko | f472b23 | 2007-10-16 21:35:17 +0000 | [diff] [blame] | 593 | |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 594 | goto again; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 595 | } |