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" |
Rob Landley | 099ed50 | 2006-08-28 09:41:49 +0000 | [diff] [blame] | 27 | |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 28 | #if DEBUG |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 29 | #define TELCMDS |
| 30 | #define TELOPTS |
| 31 | #endif |
| 32 | #include <arpa/telnet.h> |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 33 | #include <sys/syslog.h> |
| 34 | |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 35 | |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 36 | #if ENABLE_LOGIN |
Glenn L McGrath | d4004ee | 2004-09-14 17:24:59 +0000 | [diff] [blame] | 37 | static const char *loginpath = "/bin/login"; |
Glenn L McGrath | 9e5d6c0 | 2003-01-21 20:55:56 +0000 | [diff] [blame] | 38 | #else |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 39 | static const char *loginpath = DEFAULT_SHELL; |
Glenn L McGrath | 9e5d6c0 | 2003-01-21 20:55:56 +0000 | [diff] [blame] | 40 | #endif |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 41 | |
Glenn L McGrath | 9e5d6c0 | 2003-01-21 20:55:56 +0000 | [diff] [blame] | 42 | static const char *issuefile = "/etc/issue.net"; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 43 | |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 44 | /* structure that describes a session */ |
| 45 | |
| 46 | struct tsession { |
| 47 | struct tsession *next; |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 48 | int sockfd_read, sockfd_write, ptyfd; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 49 | int shell_pid; |
| 50 | /* two circular buffers */ |
| 51 | char *buf1, *buf2; |
| 52 | int rdidx1, wridx1, size1; |
| 53 | int rdidx2, wridx2, size2; |
| 54 | }; |
| 55 | |
Denis Vlasenko | 88308fe | 2007-06-25 10:35:11 +0000 | [diff] [blame] | 56 | /* Two buffers are directly after tsession in malloced memory. |
| 57 | * Make whole thing fit in 4k */ |
| 58 | enum { BUFSIZE = (4*1024 - sizeof(struct tsession)) / 2 }; |
| 59 | |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 60 | /* |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 61 | This is how the buffers are used. The arrows indicate the movement |
| 62 | of data. |
| 63 | |
| 64 | +-------+ wridx1++ +------+ rdidx1++ +----------+ |
| 65 | | | <-------------- | buf1 | <-------------- | | |
| 66 | | | size1-- +------+ size1++ | | |
Mike Frysinger | d2c8fd6 | 2006-05-10 17:17:09 +0000 | [diff] [blame] | 67 | | pty | | socket | |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 68 | | | rdidx2++ +------+ wridx2++ | | |
| 69 | | | --------------> | buf2 | --------------> | | |
| 70 | +-------+ size2++ +------+ size2-- +----------+ |
| 71 | |
| 72 | Each session has got two buffers. |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 73 | */ |
| 74 | |
| 75 | static int maxfd; |
| 76 | |
| 77 | static struct tsession *sessions; |
| 78 | |
| 79 | |
| 80 | /* |
Bernhard Reutner-Fischer | e0387a6 | 2006-06-07 13:31:59 +0000 | [diff] [blame] | 81 | Remove all IAC's from the buffer pointed to by bf (received IACs are ignored |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 82 | and must be removed so as to not be interpreted by the terminal). Make an |
| 83 | uninterrupted string of characters fit for the terminal. Do this by packing |
| 84 | all characters meant for the terminal sequentially towards the end of bf. |
| 85 | |
| 86 | Return a pointer to the beginning of the characters meant for the terminal. |
| 87 | and make *num_totty the number of characters that should be sent to |
| 88 | the terminal. |
| 89 | |
| 90 | Note - If an IAC (3 byte quantity) starts before (bf + len) but extends |
| 91 | past (bf + len) then that IAC will be left unprocessed and *processed will be |
| 92 | less than len. |
| 93 | |
| 94 | FIXME - if we mean to send 0xFF to the terminal then it will be escaped, |
| 95 | what is the escape character? We aren't handling that situation here. |
| 96 | |
Eric Andersen | 3752d33 | 2003-12-19 11:30:13 +0000 | [diff] [blame] | 97 | CR-LF ->'s CR mapping is also done here, for convenience |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 98 | */ |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 99 | static char * |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 100 | remove_iacs(struct tsession *ts, int *pnum_totty) |
| 101 | { |
Eric Andersen | 0cb6f35 | 2006-01-30 22:30:41 +0000 | [diff] [blame] | 102 | unsigned char *ptr0 = (unsigned char *)ts->buf1 + ts->wridx1; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 103 | unsigned char *ptr = ptr0; |
| 104 | unsigned char *totty = ptr; |
| 105 | unsigned char *end = ptr + MIN(BUFSIZE - ts->wridx1, ts->size1); |
| 106 | int processed; |
| 107 | int num_totty; |
| 108 | |
| 109 | while (ptr < end) { |
| 110 | if (*ptr != IAC) { |
Eric Andersen | 3752d33 | 2003-12-19 11:30:13 +0000 | [diff] [blame] | 111 | int c = *ptr; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 112 | *totty++ = *ptr++; |
Eric Andersen | 3752d33 | 2003-12-19 11:30:13 +0000 | [diff] [blame] | 113 | /* We now map \r\n ==> \r for pragmatic reasons. |
| 114 | * Many client implementations send \r\n when |
| 115 | * the user hits the CarriageReturn key. |
| 116 | */ |
| 117 | if (c == '\r' && (*ptr == '\n' || *ptr == 0) && ptr < end) |
| 118 | ptr++; |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 119 | } else { |
Glenn L McGrath | 90ed9a0 | 2004-02-22 09:45:57 +0000 | [diff] [blame] | 120 | /* |
| 121 | * TELOPT_NAWS support! |
| 122 | */ |
| 123 | if ((ptr+2) >= end) { |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 124 | /* only the beginning of the IAC is in the |
| 125 | buffer we were asked to process, we can't |
| 126 | process this char. */ |
| 127 | break; |
| 128 | } |
Glenn L McGrath | 90ed9a0 | 2004-02-22 09:45:57 +0000 | [diff] [blame] | 129 | |
| 130 | /* |
| 131 | * IAC -> SB -> TELOPT_NAWS -> 4-byte -> IAC -> SE |
| 132 | */ |
| 133 | else if (ptr[1] == SB && ptr[2] == TELOPT_NAWS) { |
| 134 | struct winsize ws; |
| 135 | if ((ptr+8) >= end) |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 136 | break; /* incomplete, can't process */ |
Glenn L McGrath | 90ed9a0 | 2004-02-22 09:45:57 +0000 | [diff] [blame] | 137 | ws.ws_col = (ptr[3] << 8) | ptr[4]; |
| 138 | ws.ws_row = (ptr[5] << 8) | ptr[6]; |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 139 | ioctl(ts->ptyfd, TIOCSWINSZ, (char *)&ws); |
Glenn L McGrath | 90ed9a0 | 2004-02-22 09:45:57 +0000 | [diff] [blame] | 140 | ptr += 9; |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 141 | } else { |
Glenn L McGrath | 90ed9a0 | 2004-02-22 09:45:57 +0000 | [diff] [blame] | 142 | /* skip 3-byte IAC non-SB cmd */ |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 143 | #if DEBUG |
Glenn L McGrath | 90ed9a0 | 2004-02-22 09:45:57 +0000 | [diff] [blame] | 144 | fprintf(stderr, "Ignoring IAC %s,%s\n", |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 145 | TELCMD(ptr[1]), TELOPT(ptr[2])); |
Glenn L McGrath | 90ed9a0 | 2004-02-22 09:45:57 +0000 | [diff] [blame] | 146 | #endif |
| 147 | ptr += 3; |
| 148 | } |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 149 | } |
| 150 | } |
| 151 | |
| 152 | processed = ptr - ptr0; |
| 153 | num_totty = totty - ptr0; |
| 154 | /* the difference between processed and num_to tty |
| 155 | is all the iacs we removed from the stream. |
| 156 | Adjust buf1 accordingly. */ |
| 157 | ts->wridx1 += processed - num_totty; |
| 158 | ts->size1 -= processed - num_totty; |
| 159 | *pnum_totty = num_totty; |
| 160 | /* move the chars meant for the terminal towards the end of the |
| 161 | buffer. */ |
| 162 | return memmove(ptr - num_totty, ptr0, num_totty); |
| 163 | } |
| 164 | |
| 165 | |
| 166 | static int |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 167 | getpty(char *line, int size) |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 168 | { |
| 169 | int p; |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 170 | #if ENABLE_FEATURE_DEVPTS |
Denis Vlasenko | c6ec8c9 | 2006-10-15 18:22:05 +0000 | [diff] [blame] | 171 | p = open("/dev/ptmx", O_RDWR); |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 172 | if (p > 0) { |
Denis Vlasenko | c6ec8c9 | 2006-10-15 18:22:05 +0000 | [diff] [blame] | 173 | const char *name; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 174 | grantpt(p); |
| 175 | unlockpt(p); |
Denis Vlasenko | c6ec8c9 | 2006-10-15 18:22:05 +0000 | [diff] [blame] | 176 | name = ptsname(p); |
| 177 | if (!name) { |
| 178 | bb_perror_msg("ptsname error (is /dev/pts mounted?)"); |
| 179 | return -1; |
| 180 | } |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 181 | safe_strncpy(line, name, size); |
Denis Vlasenko | c6ec8c9 | 2006-10-15 18:22:05 +0000 | [diff] [blame] | 182 | return p; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 183 | } |
| 184 | #else |
| 185 | struct stat stb; |
| 186 | int i; |
| 187 | int j; |
| 188 | |
| 189 | strcpy(line, "/dev/ptyXX"); |
| 190 | |
| 191 | for (i = 0; i < 16; i++) { |
| 192 | line[8] = "pqrstuvwxyzabcde"[i]; |
| 193 | line[9] = '0'; |
| 194 | if (stat(line, &stb) < 0) { |
| 195 | continue; |
| 196 | } |
| 197 | for (j = 0; j < 16; j++) { |
| 198 | line[9] = j < 10 ? j + '0' : j - 10 + 'a'; |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 199 | if (DEBUG) |
| 200 | fprintf(stderr, "Trying to open device: %s\n", line); |
Denis Vlasenko | c6ec8c9 | 2006-10-15 18:22:05 +0000 | [diff] [blame] | 201 | p = open(line, O_RDWR | O_NOCTTY); |
| 202 | if (p >= 0) { |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 203 | line[5] = 't'; |
| 204 | return p; |
| 205 | } |
| 206 | } |
| 207 | } |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 208 | #endif /* FEATURE_DEVPTS */ |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 209 | return -1; |
| 210 | } |
| 211 | |
| 212 | |
| 213 | static void |
| 214 | send_iac(struct tsession *ts, unsigned char command, int option) |
| 215 | { |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 216 | /* We rely on that there is space in the buffer for now. */ |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 217 | char *b = ts->buf2 + ts->rdidx2; |
| 218 | *b++ = IAC; |
| 219 | *b++ = command; |
| 220 | *b++ = option; |
| 221 | ts->rdidx2 += 3; |
| 222 | ts->size2 += 3; |
| 223 | } |
| 224 | |
| 225 | |
| 226 | static struct tsession * |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 227 | make_new_session( |
| 228 | USE_FEATURE_TELNETD_STANDALONE(int sock_r, int sock_w) |
| 229 | SKIP_FEATURE_TELNETD_STANDALONE(void) |
| 230 | ) { |
Denis Vlasenko | 88308fe | 2007-06-25 10:35:11 +0000 | [diff] [blame] | 231 | const char *login_argv[2]; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 232 | struct termios termbuf; |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 233 | int fd, pid; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 234 | char tty_name[32]; |
Rob Landley | 1ec5b29 | 2006-05-29 07:42:02 +0000 | [diff] [blame] | 235 | struct tsession *ts = xzalloc(sizeof(struct tsession) + BUFSIZE * 2); |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 236 | |
| 237 | ts->buf1 = (char *)(&ts[1]); |
| 238 | ts->buf2 = ts->buf1 + BUFSIZE; |
| 239 | |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 240 | /* Got a new connection, set up a tty. */ |
| 241 | fd = getpty(tty_name, 32); |
| 242 | if (fd < 0) { |
Denis Vlasenko | 3538b9a | 2006-09-06 18:36:50 +0000 | [diff] [blame] | 243 | bb_error_msg("all terminals in use"); |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 244 | return NULL; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 245 | } |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 246 | if (fd > maxfd) maxfd = fd; |
| 247 | ndelay_on(ts->ptyfd = fd); |
| 248 | #if ENABLE_FEATURE_TELNETD_STANDALONE |
| 249 | if (sock_w > maxfd) maxfd = sock_w; |
| 250 | if (sock_r > maxfd) maxfd = sock_r; |
| 251 | ndelay_on(ts->sockfd_write = sock_w); |
| 252 | ndelay_on(ts->sockfd_read = sock_r); |
| 253 | #else |
| 254 | ts->sockfd_write = 1; |
| 255 | /* xzalloc: ts->sockfd_read = 0; */ |
| 256 | ndelay_on(0); |
| 257 | ndelay_on(1); |
| 258 | #endif |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 259 | /* Make the telnet client understand we will echo characters so it |
| 260 | * should not do it locally. We don't tell the client to run linemode, |
| 261 | * because we want to handle line editing and tab completion and other |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 262 | * stuff that requires char-by-char support. */ |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 263 | send_iac(ts, DO, TELOPT_ECHO); |
Glenn L McGrath | 90ed9a0 | 2004-02-22 09:45:57 +0000 | [diff] [blame] | 264 | send_iac(ts, DO, TELOPT_NAWS); |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 265 | send_iac(ts, DO, TELOPT_LFLOW); |
| 266 | send_iac(ts, WILL, TELOPT_ECHO); |
| 267 | send_iac(ts, WILL, TELOPT_SGA); |
| 268 | |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 269 | pid = fork(); |
| 270 | if (pid < 0) { |
| 271 | free(ts); |
| 272 | close(fd); |
Denis Vlasenko | 3538b9a | 2006-09-06 18:36:50 +0000 | [diff] [blame] | 273 | bb_perror_msg("fork"); |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 274 | return NULL; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 275 | } |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 276 | if (pid > 0) { |
| 277 | /* parent */ |
| 278 | ts->shell_pid = pid; |
| 279 | return ts; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 280 | } |
Denis Vlasenko | f7996f3 | 2007-01-11 17:20:00 +0000 | [diff] [blame] | 281 | |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 282 | /* child */ |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 283 | |
Denis Vlasenko | 88308fe | 2007-06-25 10:35:11 +0000 | [diff] [blame] | 284 | /* make new session and process group */ |
Denis Vlasenko | 9af7c9d | 2007-01-19 21:19:35 +0000 | [diff] [blame] | 285 | setsid(); |
Denis Vlasenko | 9af7c9d | 2007-01-19 21:19:35 +0000 | [diff] [blame] | 286 | |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 287 | /* open the child's side of the tty. */ |
Denis Vlasenko | 9af7c9d | 2007-01-19 21:19:35 +0000 | [diff] [blame] | 288 | /* NB: setsid() disconnects from any previous ctty's. Therefore |
| 289 | * we must open child's side of the tty AFTER setsid! */ |
| 290 | fd = xopen(tty_name, O_RDWR); /* becomes our ctty */ |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 291 | dup2(fd, 0); |
| 292 | dup2(fd, 1); |
| 293 | dup2(fd, 2); |
| 294 | while (fd > 2) close(fd--); |
Denis Vlasenko | 88308fe | 2007-06-25 10:35:11 +0000 | [diff] [blame] | 295 | tcsetpgrp(0, getpid()); /* switch this tty's process group to us */ |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 296 | |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 297 | /* The pseudo-terminal allocated to the client is configured to operate in |
| 298 | * cooked mode, and with XTABS CRMOD enabled (see tty(4)). */ |
| 299 | tcgetattr(0, &termbuf); |
| 300 | termbuf.c_lflag |= ECHO; /* if we use readline we dont want this */ |
| 301 | termbuf.c_oflag |= ONLCR|XTABS; |
| 302 | termbuf.c_iflag |= ICRNL; |
| 303 | termbuf.c_iflag &= ~IXOFF; |
| 304 | /*termbuf.c_lflag &= ~ICANON;*/ |
| 305 | tcsetattr(0, TCSANOW, &termbuf); |
| 306 | |
| 307 | print_login_issue(issuefile, NULL); |
| 308 | |
Denis Vlasenko | 88308fe | 2007-06-25 10:35:11 +0000 | [diff] [blame] | 309 | /* exec shell / login /whatever */ |
| 310 | login_argv[0] = loginpath; |
| 311 | login_argv[1] = NULL; |
| 312 | execv(loginpath, (char **)login_argv); |
| 313 | /* Hmmm... this gets sent to the client thru fd#2! Is it ok?? */ |
| 314 | bb_perror_msg_and_die("execv %s", loginpath); |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 315 | } |
| 316 | |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 317 | #if ENABLE_FEATURE_TELNETD_STANDALONE |
| 318 | |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 319 | static void |
| 320 | free_session(struct tsession *ts) |
| 321 | { |
| 322 | struct tsession *t = sessions; |
| 323 | |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 324 | /* unlink this telnet session from the session list */ |
Mike Frysinger | 731f81c | 2006-05-10 15:23:12 +0000 | [diff] [blame] | 325 | if (t == ts) |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 326 | sessions = ts->next; |
| 327 | else { |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 328 | while (t->next != ts) |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 329 | t = t->next; |
| 330 | t->next = ts->next; |
| 331 | } |
| 332 | |
| 333 | kill(ts->shell_pid, SIGKILL); |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 334 | wait4(ts->shell_pid, NULL, 0, NULL); |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 335 | close(ts->ptyfd); |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 336 | close(ts->sockfd_read); |
| 337 | /* error if ts->sockfd_read == ts->sockfd_write. So what? ;) */ |
| 338 | close(ts->sockfd_write); |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 339 | free(ts); |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 340 | |
| 341 | /* scan all sessions and find new maxfd */ |
Denis Vlasenko | 150f402 | 2007-01-13 21:06:21 +0000 | [diff] [blame] | 342 | ts = sessions; |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 343 | maxfd = 0; |
| 344 | while (ts) { |
| 345 | if (maxfd < ts->ptyfd) |
| 346 | maxfd = ts->ptyfd; |
| 347 | if (maxfd < ts->sockfd_read) |
| 348 | maxfd = ts->sockfd_read; |
| 349 | if (maxfd < ts->sockfd_write) |
| 350 | maxfd = ts->sockfd_write; |
| 351 | ts = ts->next; |
| 352 | } |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 353 | } |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 354 | |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 355 | #else /* !FEATURE_TELNETD_STANDALONE */ |
| 356 | |
| 357 | /* Never actually called */ |
| 358 | void free_session(struct tsession *ts); |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 359 | |
| 360 | #endif |
| 361 | |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 362 | |
Denis Vlasenko | 06af216 | 2007-02-03 17:28:39 +0000 | [diff] [blame] | 363 | int telnetd_main(int argc, char **argv); |
| 364 | int telnetd_main(int argc, char **argv) |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 365 | { |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 366 | fd_set rdfdset, wrfdset; |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 367 | unsigned opt; |
| 368 | int selret, maxlen, w, r; |
| 369 | struct tsession *ts; |
| 370 | #if ENABLE_FEATURE_TELNETD_STANDALONE |
| 371 | #define IS_INETD (opt & OPT_INETD) |
| 372 | int master_fd = -1; /* be happy, gcc */ |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 373 | unsigned portnbr = 23; |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 374 | char *opt_bindaddr = NULL; |
| 375 | char *opt_portnbr; |
| 376 | #else |
| 377 | enum { |
| 378 | IS_INETD = 1, |
| 379 | master_fd = -1, |
| 380 | portnbr = 23, |
| 381 | }; |
Glenn L McGrath | c2b9186 | 2003-09-12 11:27:15 +0000 | [diff] [blame] | 382 | #endif |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 383 | enum { |
| 384 | OPT_PORT = 4 * ENABLE_FEATURE_TELNETD_STANDALONE, |
| 385 | OPT_FOREGROUND = 0x10 * ENABLE_FEATURE_TELNETD_STANDALONE, |
| 386 | OPT_INETD = 0x20 * ENABLE_FEATURE_TELNETD_STANDALONE, |
| 387 | }; |
Glenn L McGrath | c2b9186 | 2003-09-12 11:27:15 +0000 | [diff] [blame] | 388 | |
Denis Vlasenko | fe7cd64 | 2007-08-18 15:32:12 +0000 | [diff] [blame] | 389 | opt = getopt32(argv, "f:l:" USE_FEATURE_TELNETD_STANDALONE("p:b:Fi"), |
Denis Vlasenko | 0e87d34 | 2006-09-22 08:50:29 +0000 | [diff] [blame] | 390 | &issuefile, &loginpath |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 391 | USE_FEATURE_TELNETD_STANDALONE(, &opt_portnbr, &opt_bindaddr)); |
| 392 | /* Redirect log to syslog early, if needed */ |
| 393 | if (IS_INETD || !(opt & OPT_FOREGROUND)) { |
| 394 | openlog(applet_name, 0, LOG_USER); |
| 395 | logmode = LOGMODE_SYSLOG; |
| 396 | } |
Denis Vlasenko | 0e87d34 | 2006-09-22 08:50:29 +0000 | [diff] [blame] | 397 | //if (opt & 1) // -f |
| 398 | //if (opt & 2) // -l |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 399 | USE_FEATURE_TELNETD_STANDALONE( |
| 400 | if (opt & OPT_PORT) // -p |
| 401 | portnbr = xatou16(opt_portnbr); |
| 402 | //if (opt & 8) // -b |
| 403 | //if (opt & 0x10) // -F |
| 404 | //if (opt & 0x20) // -i |
| 405 | ); |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 406 | |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 407 | /* Used to check access(loginpath, X_OK) here. Pointless. |
| 408 | * exec will do this for us for free later. */ |
Glenn L McGrath | 9e5d6c0 | 2003-01-21 20:55:56 +0000 | [diff] [blame] | 409 | |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 410 | #if ENABLE_FEATURE_TELNETD_STANDALONE |
| 411 | if (IS_INETD) { |
| 412 | sessions = make_new_session(0, 1); |
| 413 | } else { |
Denis Vlasenko | 9de420c | 2007-01-10 09:28:01 +0000 | [diff] [blame] | 414 | master_fd = create_and_bind_stream_or_die(opt_bindaddr, portnbr); |
Denis Vlasenko | c8717cd | 2006-11-22 16:10:39 +0000 | [diff] [blame] | 415 | xlisten(master_fd, 1); |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 416 | if (!(opt & OPT_FOREGROUND)) |
Denis Vlasenko | 5a14202 | 2007-03-26 13:20:54 +0000 | [diff] [blame] | 417 | bb_daemonize(DAEMON_CHDIR_ROOT); |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 418 | } |
Rob Landley | 00e76cb | 2005-05-10 23:53:33 +0000 | [diff] [blame] | 419 | #else |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 420 | sessions = make_new_session(); |
Rob Landley | 00e76cb | 2005-05-10 23:53:33 +0000 | [diff] [blame] | 421 | #endif |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 422 | |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 423 | /* We don't want to die if just one session is broken */ |
| 424 | signal(SIGPIPE, SIG_IGN); |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 425 | |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 426 | again: |
| 427 | FD_ZERO(&rdfdset); |
| 428 | FD_ZERO(&wrfdset); |
| 429 | if (!IS_INETD) { |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 430 | FD_SET(master_fd, &rdfdset); |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 431 | /* This is needed because free_session() does not |
| 432 | * take into account master_fd when it finds new |
| 433 | * maxfd among remaining fd's: */ |
| 434 | if (master_fd > maxfd) |
| 435 | maxfd = master_fd; |
| 436 | } |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 437 | |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 438 | /* select on the master socket, all telnet sockets and their |
| 439 | * ptys if there is room in their session buffers. */ |
| 440 | ts = sessions; |
| 441 | while (ts) { |
| 442 | /* buf1 is used from socket to pty |
| 443 | * buf2 is used from pty to socket */ |
| 444 | if (ts->size1 > 0) /* can write to pty */ |
| 445 | FD_SET(ts->ptyfd, &wrfdset); |
| 446 | if (ts->size1 < BUFSIZE) /* can read from socket */ |
| 447 | FD_SET(ts->sockfd_read, &rdfdset); |
| 448 | if (ts->size2 > 0) /* can write to socket */ |
| 449 | FD_SET(ts->sockfd_write, &wrfdset); |
| 450 | if (ts->size2 < BUFSIZE) /* can read from pty */ |
| 451 | FD_SET(ts->ptyfd, &rdfdset); |
| 452 | ts = ts->next; |
| 453 | } |
| 454 | |
| 455 | selret = select(maxfd + 1, &rdfdset, &wrfdset, 0, 0); |
| 456 | if (!selret) |
| 457 | return 0; |
| 458 | |
| 459 | #if ENABLE_FEATURE_TELNETD_STANDALONE |
| 460 | /* First check for and accept new sessions. */ |
| 461 | if (!IS_INETD && FD_ISSET(master_fd, &rdfdset)) { |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 462 | int fd; |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 463 | struct tsession *new_ts; |
| 464 | |
Denis Vlasenko | 2c91652 | 2007-01-12 14:57:37 +0000 | [diff] [blame] | 465 | fd = accept(master_fd, NULL, 0); |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 466 | if (fd < 0) |
| 467 | goto again; |
| 468 | /* Create a new session and link it into our active list */ |
| 469 | new_ts = make_new_session(fd, fd); |
| 470 | if (new_ts) { |
| 471 | new_ts->next = sessions; |
| 472 | sessions = new_ts; |
| 473 | } else { |
| 474 | close(fd); |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 475 | } |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 476 | } |
| 477 | #endif |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 478 | |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 479 | /* Then check for data tunneling. */ |
| 480 | ts = sessions; |
| 481 | while (ts) { /* For all sessions... */ |
| 482 | struct tsession *next = ts->next; /* in case we free ts. */ |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 483 | |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 484 | if (ts->size1 && FD_ISSET(ts->ptyfd, &wrfdset)) { |
| 485 | int num_totty; |
| 486 | char *ptr; |
| 487 | /* Write to pty from buffer 1. */ |
| 488 | ptr = remove_iacs(ts, &num_totty); |
| 489 | w = safe_write(ts->ptyfd, ptr, num_totty); |
| 490 | /* needed? if (w < 0 && errno == EAGAIN) continue; */ |
| 491 | if (w < 0) { |
| 492 | if (IS_INETD) |
| 493 | return 0; |
| 494 | free_session(ts); |
| 495 | ts = next; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 496 | continue; |
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 | ts->wridx1 += w; |
| 499 | ts->size1 -= w; |
| 500 | if (ts->wridx1 == BUFSIZE) |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 501 | ts->wridx1 = 0; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 502 | } |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 503 | |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 504 | if (ts->size2 && FD_ISSET(ts->sockfd_write, &wrfdset)) { |
| 505 | /* Write to socket from buffer 2. */ |
| 506 | maxlen = MIN(BUFSIZE - ts->wridx2, ts->size2); |
| 507 | w = safe_write(ts->sockfd_write, ts->buf2 + ts->wridx2, maxlen); |
| 508 | /* needed? if (w < 0 && errno == EAGAIN) continue; */ |
| 509 | if (w < 0) { |
| 510 | if (IS_INETD) |
| 511 | return 0; |
| 512 | free_session(ts); |
| 513 | ts = next; |
| 514 | continue; |
| 515 | } |
| 516 | ts->wridx2 += w; |
| 517 | ts->size2 -= w; |
| 518 | if (ts->wridx2 == BUFSIZE) |
| 519 | ts->wridx2 = 0; |
| 520 | } |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 521 | |
Denis Vlasenko | 75f8d08 | 2006-11-22 15:54:52 +0000 | [diff] [blame] | 522 | if (ts->size1 < BUFSIZE && FD_ISSET(ts->sockfd_read, &rdfdset)) { |
| 523 | /* Read from socket to buffer 1. */ |
| 524 | maxlen = MIN(BUFSIZE - ts->rdidx1, BUFSIZE - ts->size1); |
| 525 | r = safe_read(ts->sockfd_read, ts->buf1 + ts->rdidx1, maxlen); |
| 526 | if (r < 0 && errno == EAGAIN) continue; |
| 527 | if (r <= 0) { |
| 528 | if (IS_INETD) |
| 529 | return 0; |
| 530 | free_session(ts); |
| 531 | ts = next; |
| 532 | continue; |
| 533 | } |
| 534 | if (!ts->buf1[ts->rdidx1 + r - 1]) |
| 535 | if (!--r) |
| 536 | continue; |
| 537 | ts->rdidx1 += r; |
| 538 | ts->size1 += r; |
| 539 | if (ts->rdidx1 == BUFSIZE) |
| 540 | ts->rdidx1 = 0; |
| 541 | } |
| 542 | |
| 543 | if (ts->size2 < BUFSIZE && FD_ISSET(ts->ptyfd, &rdfdset)) { |
| 544 | /* Read from pty to buffer 2. */ |
| 545 | maxlen = MIN(BUFSIZE - ts->rdidx2, BUFSIZE - ts->size2); |
| 546 | r = safe_read(ts->ptyfd, ts->buf2 + ts->rdidx2, maxlen); |
| 547 | if (r < 0 && errno == EAGAIN) continue; |
| 548 | if (r <= 0) { |
| 549 | if (IS_INETD) |
| 550 | return 0; |
| 551 | free_session(ts); |
| 552 | ts = next; |
| 553 | continue; |
| 554 | } |
| 555 | ts->rdidx2 += r; |
| 556 | ts->size2 += r; |
| 557 | if (ts->rdidx2 == BUFSIZE) |
| 558 | ts->rdidx2 = 0; |
| 559 | } |
| 560 | |
| 561 | if (ts->size1 == 0) { |
| 562 | ts->rdidx1 = 0; |
| 563 | ts->wridx1 = 0; |
| 564 | } |
| 565 | if (ts->size2 == 0) { |
| 566 | ts->rdidx2 = 0; |
| 567 | ts->wridx2 = 0; |
| 568 | } |
| 569 | ts = next; |
| 570 | } |
| 571 | goto again; |
Eric Andersen | 08a7220 | 2002-09-30 20:52:10 +0000 | [diff] [blame] | 572 | } |