| 1 | /* |
| 2 | * Jexer - Java Text User Interface |
| 3 | * |
| 4 | * The MIT License (MIT) |
| 5 | * |
| 6 | * Copyright (C) 2019 Kevin Lamonte |
| 7 | * |
| 8 | * Permission is hereby granted, free of charge, to any person obtaining a |
| 9 | * copy of this software and associated documentation files (the "Software"), |
| 10 | * to deal in the Software without restriction, including without limitation |
| 11 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| 12 | * and/or sell copies of the Software, and to permit persons to whom the |
| 13 | * Software is furnished to do so, subject to the following conditions: |
| 14 | * |
| 15 | * The above copyright notice and this permission notice shall be included in |
| 16 | * all copies or substantial portions of the Software. |
| 17 | * |
| 18 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 19 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 20 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 21 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 22 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
| 23 | * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
| 24 | * DEALINGS IN THE SOFTWARE. |
| 25 | * |
| 26 | * @author Kevin Lamonte [kevin.lamonte@gmail.com] |
| 27 | * @version 1 |
| 28 | */ |
| 29 | package jexer.net; |
| 30 | |
| 31 | import java.io.InputStream; |
| 32 | import java.io.IOException; |
| 33 | import java.util.ArrayList; |
| 34 | import java.util.Map; |
| 35 | import java.util.TreeMap; |
| 36 | |
| 37 | import jexer.backend.SessionInfo; |
| 38 | import static jexer.net.TelnetSocket.*; |
| 39 | |
| 40 | /** |
| 41 | * TelnetInputStream works with TelnetSocket to perform the telnet protocol. |
| 42 | */ |
| 43 | public class TelnetInputStream extends InputStream implements SessionInfo { |
| 44 | |
| 45 | // ------------------------------------------------------------------------ |
| 46 | // Constants -------------------------------------------------------------- |
| 47 | // ------------------------------------------------------------------------ |
| 48 | |
| 49 | // ------------------------------------------------------------------------ |
| 50 | // Variables -------------------------------------------------------------- |
| 51 | // ------------------------------------------------------------------------ |
| 52 | |
| 53 | /** |
| 54 | * The root TelnetSocket that has my telnet protocol state. |
| 55 | */ |
| 56 | private TelnetSocket master; |
| 57 | |
| 58 | /** |
| 59 | * The raw socket's InputStream. |
| 60 | */ |
| 61 | private InputStream input; |
| 62 | |
| 63 | /** |
| 64 | * The telnet-aware OutputStream. |
| 65 | */ |
| 66 | private TelnetOutputStream output; |
| 67 | |
| 68 | /** |
| 69 | * Persistent read buffer. In practice this will only be used if the |
| 70 | * single-byte read() is called sometime. |
| 71 | */ |
| 72 | private byte [] readBuffer; |
| 73 | |
| 74 | /** |
| 75 | * Current writing position in readBuffer - what is passed into |
| 76 | * input.read(). |
| 77 | */ |
| 78 | private int readBufferEnd; |
| 79 | |
| 80 | /** |
| 81 | * Current read position in readBuffer - what is passed to the client in |
| 82 | * response to this.read(). |
| 83 | */ |
| 84 | private int readBufferStart; |
| 85 | |
| 86 | /** |
| 87 | * User name. |
| 88 | */ |
| 89 | private String username = ""; |
| 90 | |
| 91 | /** |
| 92 | * Language. |
| 93 | */ |
| 94 | private String language = "en_US"; |
| 95 | |
| 96 | /** |
| 97 | * Text window width. |
| 98 | */ |
| 99 | private int windowWidth = 80; |
| 100 | |
| 101 | /** |
| 102 | * Text window height. |
| 103 | */ |
| 104 | private int windowHeight = 24; |
| 105 | |
| 106 | /** |
| 107 | * When true, the last read byte from the remote side was IAC. |
| 108 | */ |
| 109 | private boolean iac = false; |
| 110 | |
| 111 | /** |
| 112 | * When true, we are in the middle of a DO/DONT/WILL/WONT negotiation. |
| 113 | */ |
| 114 | private boolean dowill = false; |
| 115 | |
| 116 | /** |
| 117 | * The telnet option being negotiated. |
| 118 | */ |
| 119 | private int dowillType = 0; |
| 120 | |
| 121 | /** |
| 122 | * When true, we are waiting to see the end of the sub-negotiation |
| 123 | * sequence. |
| 124 | */ |
| 125 | private boolean subnegEnd = false; |
| 126 | |
| 127 | /** |
| 128 | * When true, the last byte read from the remote side was CR. |
| 129 | */ |
| 130 | private boolean readCR = false; |
| 131 | |
| 132 | /** |
| 133 | * The subnegotiation buffer. |
| 134 | */ |
| 135 | private ArrayList<Byte> subnegBuffer; |
| 136 | |
| 137 | // ------------------------------------------------------------------------ |
| 138 | // Constructors ----------------------------------------------------------- |
| 139 | // ------------------------------------------------------------------------ |
| 140 | |
| 141 | /** |
| 142 | * Package private constructor. |
| 143 | * |
| 144 | * @param master the master TelnetSocket |
| 145 | * @param input the underlying socket's InputStream |
| 146 | * @param output the telnet-aware OutputStream |
| 147 | */ |
| 148 | TelnetInputStream(final TelnetSocket master, final InputStream input, |
| 149 | final TelnetOutputStream output) { |
| 150 | |
| 151 | this.master = master; |
| 152 | this.input = input; |
| 153 | this.output = output; |
| 154 | |
| 155 | // Setup new read buffer |
| 156 | readBuffer = new byte[1024]; |
| 157 | readBufferStart = 0; |
| 158 | readBufferEnd = 0; |
| 159 | subnegBuffer = new ArrayList<Byte>(); |
| 160 | } |
| 161 | |
| 162 | // ------------------------------------------------------------------------ |
| 163 | // SessionInfo ------------------------------------------------------------ |
| 164 | // ------------------------------------------------------------------------ |
| 165 | |
| 166 | /** |
| 167 | * Username getter. |
| 168 | * |
| 169 | * @return the username |
| 170 | */ |
| 171 | public String getUsername() { |
| 172 | return this.username; |
| 173 | } |
| 174 | |
| 175 | /** |
| 176 | * Username setter. |
| 177 | * |
| 178 | * @param username the value |
| 179 | */ |
| 180 | public void setUsername(final String username) { |
| 181 | this.username = username; |
| 182 | } |
| 183 | |
| 184 | /** |
| 185 | * Language getter. |
| 186 | * |
| 187 | * @return the language |
| 188 | */ |
| 189 | public String getLanguage() { |
| 190 | return this.language; |
| 191 | } |
| 192 | |
| 193 | /** |
| 194 | * Language setter. |
| 195 | * |
| 196 | * @param language the value |
| 197 | */ |
| 198 | public void setLanguage(final String language) { |
| 199 | this.language = language; |
| 200 | } |
| 201 | |
| 202 | /** |
| 203 | * Get the terminal type as reported by the telnet Terminal Type option. |
| 204 | * |
| 205 | * @return the terminal type |
| 206 | */ |
| 207 | public String getTerminalType() { |
| 208 | return master.terminalType; |
| 209 | } |
| 210 | |
| 211 | /** |
| 212 | * Text window width getter. |
| 213 | * |
| 214 | * @return the window width |
| 215 | */ |
| 216 | public int getWindowWidth() { |
| 217 | return windowWidth; |
| 218 | } |
| 219 | |
| 220 | /** |
| 221 | * Text window height getter. |
| 222 | * |
| 223 | * @return the window height |
| 224 | */ |
| 225 | public int getWindowHeight() { |
| 226 | return windowHeight; |
| 227 | } |
| 228 | |
| 229 | /** |
| 230 | * Re-query the text window size. |
| 231 | */ |
| 232 | public void queryWindowSize() { |
| 233 | // NOP |
| 234 | } |
| 235 | |
| 236 | // ------------------------------------------------------------------------ |
| 237 | // InputStream ------------------------------------------------------------ |
| 238 | // ------------------------------------------------------------------------ |
| 239 | |
| 240 | /** |
| 241 | * Returns an estimate of the number of bytes that can be read (or |
| 242 | * skipped over) from this input stream without blocking by the next |
| 243 | * invocation of a method for this input stream. |
| 244 | * |
| 245 | * @return an estimate of the number of bytes that can be read (or |
| 246 | * skipped over) from this input stream without blocking or 0 when it |
| 247 | * reaches the end of the input stream. |
| 248 | * @throws IOException if an I/O error occurs |
| 249 | */ |
| 250 | @Override |
| 251 | public int available() throws IOException { |
| 252 | if (readBuffer == null) { |
| 253 | throw new IOException("InputStream is closed"); |
| 254 | } |
| 255 | if (readBufferEnd - readBufferStart > 0) { |
| 256 | return (readBufferEnd - readBufferStart); |
| 257 | } |
| 258 | return input.available(); |
| 259 | } |
| 260 | |
| 261 | /** |
| 262 | * Closes this input stream and releases any system resources associated |
| 263 | * with the stream. |
| 264 | * |
| 265 | * @throws IOException if an I/O error occurs |
| 266 | */ |
| 267 | @Override |
| 268 | public void close() throws IOException { |
| 269 | if (readBuffer != null) { |
| 270 | readBuffer = null; |
| 271 | input.close(); |
| 272 | } |
| 273 | } |
| 274 | |
| 275 | /** |
| 276 | * Marks the current position in this input stream. |
| 277 | * |
| 278 | * @param readLimit the maximum limit of bytes that can be read before |
| 279 | * the mark position becomes invalid |
| 280 | */ |
| 281 | @Override |
| 282 | public void mark(final int readLimit) { |
| 283 | // Do nothing |
| 284 | } |
| 285 | |
| 286 | /** |
| 287 | * Tests if this input stream supports the mark and reset methods. |
| 288 | * |
| 289 | * @return true if this stream instance supports the mark and reset |
| 290 | * methods; false otherwise |
| 291 | */ |
| 292 | @Override |
| 293 | public boolean markSupported() { |
| 294 | return false; |
| 295 | } |
| 296 | |
| 297 | /** |
| 298 | * Reads the next byte of data from the input stream. |
| 299 | * |
| 300 | * @return the next byte of data, or -1 if there is no more data because |
| 301 | * the end of the stream has been reached. |
| 302 | * @throws IOException if an I/O error occurs |
| 303 | */ |
| 304 | @Override |
| 305 | public int read() throws IOException { |
| 306 | |
| 307 | // If the post-processed buffer has bytes, use that. |
| 308 | if (readBufferEnd - readBufferStart > 0) { |
| 309 | readBufferStart++; |
| 310 | return readBuffer[readBufferStart - 1]; |
| 311 | } |
| 312 | |
| 313 | // The buffer is empty, so reset the indexes to 0. |
| 314 | readBufferStart = 0; |
| 315 | readBufferEnd = 0; |
| 316 | |
| 317 | // Read some fresh data and run it through the telnet protocol. |
| 318 | int rc = readImpl(readBuffer, readBufferEnd, |
| 319 | readBuffer.length - readBufferEnd); |
| 320 | |
| 321 | // If we got something, return it. |
| 322 | if (rc > 0) { |
| 323 | readBufferEnd += rc; |
| 324 | readBufferStart++; |
| 325 | return readBuffer[readBufferStart - 1]; |
| 326 | } |
| 327 | // If we read 0, I screwed up big time. |
| 328 | assert (rc != 0); |
| 329 | |
| 330 | // We read -1 (EOF). |
| 331 | return rc; |
| 332 | } |
| 333 | |
| 334 | /** |
| 335 | * Reads some number of bytes from the input stream and stores them into |
| 336 | * the buffer array b. |
| 337 | * |
| 338 | * @param b the buffer into which the data is read. |
| 339 | * @return the total number of bytes read into the buffer, or -1 if there |
| 340 | * is no more data because the end of the stream has been reached. |
| 341 | * @throws IOException if an I/O error occurs |
| 342 | */ |
| 343 | @Override |
| 344 | public int read(final byte[] b) throws IOException { |
| 345 | return read(b, 0, b.length); |
| 346 | } |
| 347 | |
| 348 | /** |
| 349 | * Reads up to len bytes of data from the input stream into an array of |
| 350 | * bytes. |
| 351 | * |
| 352 | * @param b the buffer into which the data is read. |
| 353 | * @param off the start offset in array b at which the data is written. |
| 354 | * @param len the maximum number of bytes to read. |
| 355 | * @return the total number of bytes read into the buffer, or -1 if there |
| 356 | * is no more data because the end of the stream has been reached. |
| 357 | * @throws IOException if an I/O error occurs |
| 358 | */ |
| 359 | @Override |
| 360 | public int read(final byte[] b, final int off, |
| 361 | final int len) throws IOException { |
| 362 | |
| 363 | // The only time we can return 0 is if len is 0, as per the |
| 364 | // InputStream contract. |
| 365 | if (len == 0) { |
| 366 | return 0; |
| 367 | } |
| 368 | |
| 369 | // If the post-processed buffer has bytes, use that. |
| 370 | if (readBufferEnd - readBufferStart > 0) { |
| 371 | int n = Math.min(len, readBufferEnd - readBufferStart); |
| 372 | System.arraycopy(b, off, readBuffer, readBufferStart, n); |
| 373 | readBufferStart += n; |
| 374 | return n; |
| 375 | } |
| 376 | |
| 377 | // The buffer is empty, so reset the indexes to 0. |
| 378 | readBufferStart = 0; |
| 379 | readBufferEnd = 0; |
| 380 | |
| 381 | // The maximum number of bytes we will ask for will definitely be |
| 382 | // within the bounds of what we can return in a single call. |
| 383 | int n = Math.min(len, readBuffer.length); |
| 384 | |
| 385 | // Read some fresh data and run it through the telnet protocol. |
| 386 | int rc = readImpl(readBuffer, readBufferEnd, n); |
| 387 | |
| 388 | // If we got something, return it. |
| 389 | if (rc > 0) { |
| 390 | System.arraycopy(readBuffer, 0, b, off, rc); |
| 391 | return rc; |
| 392 | } |
| 393 | // If we read 0, I screwed up big time. |
| 394 | assert (rc != 0); |
| 395 | |
| 396 | // We read -1 (EOF). |
| 397 | return rc; |
| 398 | } |
| 399 | |
| 400 | /** |
| 401 | * Repositions this stream to the position at the time the mark method |
| 402 | * was last called on this input stream. This is not supported by |
| 403 | * TelnetInputStream, so IOException is always thrown. |
| 404 | * |
| 405 | * @throws IOException if this function is used |
| 406 | */ |
| 407 | @Override |
| 408 | public void reset() throws IOException { |
| 409 | throw new IOException("InputStream does not support mark/reset"); |
| 410 | } |
| 411 | |
| 412 | /** |
| 413 | * Skips over and discards n bytes of data from this input stream. |
| 414 | * |
| 415 | * @param n the number of bytes to be skipped |
| 416 | * @return the actual number of bytes skipped |
| 417 | * @throws IOException if an I/O error occurs |
| 418 | */ |
| 419 | @Override |
| 420 | public long skip(final long n) throws IOException { |
| 421 | if (n < 0) { |
| 422 | return 0; |
| 423 | } |
| 424 | for (int i = 0; i < n; i++) { |
| 425 | read(); |
| 426 | } |
| 427 | return n; |
| 428 | } |
| 429 | |
| 430 | // ------------------------------------------------------------------------ |
| 431 | // TelnetInputStream ------------------------------------------------------ |
| 432 | // ------------------------------------------------------------------------ |
| 433 | |
| 434 | /** |
| 435 | * For debugging, return a descriptive string for this telnet option. |
| 436 | * These are pulled from: http://www.iana.org/assignments/telnet-options |
| 437 | * |
| 438 | * @param option the telnet option byte |
| 439 | * @return a string describing the telnet option code |
| 440 | */ |
| 441 | @SuppressWarnings("unused") |
| 442 | private String optionString(final int option) { |
| 443 | switch (option) { |
| 444 | case 0: return "Binary Transmission"; |
| 445 | case 1: return "Echo"; |
| 446 | case 2: return "Reconnection"; |
| 447 | case 3: return "Suppress Go Ahead"; |
| 448 | case 4: return "Approx Message Size Negotiation"; |
| 449 | case 5: return "Status"; |
| 450 | case 6: return "Timing Mark"; |
| 451 | case 7: return "Remote Controlled Trans and Echo"; |
| 452 | case 8: return "Output Line Width"; |
| 453 | case 9: return "Output Page Size"; |
| 454 | case 10: return "Output Carriage-Return Disposition"; |
| 455 | case 11: return "Output Horizontal Tab Stops"; |
| 456 | case 12: return "Output Horizontal Tab Disposition"; |
| 457 | case 13: return "Output Formfeed Disposition"; |
| 458 | case 14: return "Output Vertical Tabstops"; |
| 459 | case 15: return "Output Vertical Tab Disposition"; |
| 460 | case 16: return "Output Linefeed Disposition"; |
| 461 | case 17: return "Extended ASCII"; |
| 462 | case 18: return "Logout"; |
| 463 | case 19: return "Byte Macro"; |
| 464 | case 20: return "Data Entry Terminal"; |
| 465 | case 21: return "SUPDUP"; |
| 466 | case 22: return "SUPDUP Output"; |
| 467 | case 23: return "Send Location"; |
| 468 | case 24: return "Terminal Type"; |
| 469 | case 25: return "End of Record"; |
| 470 | case 26: return "TACACS User Identification"; |
| 471 | case 27: return "Output Marking"; |
| 472 | case 28: return "Terminal Location Number"; |
| 473 | case 29: return "Telnet 3270 Regime"; |
| 474 | case 30: return "X.3 PAD"; |
| 475 | case 31: return "Negotiate About Window Size"; |
| 476 | case 32: return "Terminal Speed"; |
| 477 | case 33: return "Remote Flow Control"; |
| 478 | case 34: return "Linemode"; |
| 479 | case 35: return "X Display Location"; |
| 480 | case 36: return "Environment Option"; |
| 481 | case 37: return "Authentication Option"; |
| 482 | case 38: return "Encryption Option"; |
| 483 | case 39: return "New Environment Option"; |
| 484 | case 40: return "TN3270E"; |
| 485 | case 41: return "XAUTH"; |
| 486 | case 42: return "CHARSET"; |
| 487 | case 43: return "Telnet Remote Serial Port (RSP)"; |
| 488 | case 44: return "Com Port Control Option"; |
| 489 | case 45: return "Telnet Suppress Local Echo"; |
| 490 | case 46: return "Telnet Start TLS"; |
| 491 | case 47: return "KERMIT"; |
| 492 | case 48: return "SEND-URL"; |
| 493 | case 49: return "FORWARD_X"; |
| 494 | case 138: return "TELOPT PRAGMA LOGON"; |
| 495 | case 139: return "TELOPT SSPI LOGON"; |
| 496 | case 140: return "TELOPT PRAGMA HEARTBEAT"; |
| 497 | case 255: return "Extended-Options-List"; |
| 498 | default: |
| 499 | if ((option >= 50) && (option <= 137)) { |
| 500 | return "Unassigned"; |
| 501 | } |
| 502 | return "UNKNOWN - OTHER"; |
| 503 | } |
| 504 | } |
| 505 | |
| 506 | /** |
| 507 | * Send a DO/DON'T/WILL/WON'T response to the remote side. |
| 508 | * |
| 509 | * @param response a TELNET_DO/DONT/WILL/WONT byte |
| 510 | * @param option telnet option byte (binary mode, term type, etc.) |
| 511 | * @throws IOException if an I/O error occurs |
| 512 | */ |
| 513 | private void respond(final int response, |
| 514 | final int option) throws IOException { |
| 515 | |
| 516 | byte [] buffer = new byte[3]; |
| 517 | buffer[0] = (byte) TELNET_IAC; |
| 518 | buffer[1] = (byte) response; |
| 519 | buffer[2] = (byte) option; |
| 520 | |
| 521 | output.rawWrite(buffer); |
| 522 | } |
| 523 | |
| 524 | /** |
| 525 | * Tell the remote side we WILL support an option. |
| 526 | * |
| 527 | * @param option telnet option byte (binary mode, term type, etc.) |
| 528 | * @throws IOException if an I/O error occurs |
| 529 | */ |
| 530 | private void WILL(final int option) throws IOException { |
| 531 | respond(TELNET_WILL, option); |
| 532 | } |
| 533 | |
| 534 | /** |
| 535 | * Tell the remote side we WON'T support an option. |
| 536 | * |
| 537 | * @param option telnet option byte (binary mode, term type, etc.) |
| 538 | * @throws IOException if an I/O error occurs |
| 539 | */ |
| 540 | private void WONT(final int option) throws IOException { |
| 541 | respond(TELNET_WONT, option); |
| 542 | } |
| 543 | |
| 544 | /** |
| 545 | * Tell the remote side we DO support an option. |
| 546 | * |
| 547 | * @param option telnet option byte (binary mode, term type, etc.) |
| 548 | * @throws IOException if an I/O error occurs |
| 549 | */ |
| 550 | private void DO(final int option) throws IOException { |
| 551 | respond(TELNET_DO, option); |
| 552 | } |
| 553 | |
| 554 | /** |
| 555 | * Tell the remote side we DON'T support an option. |
| 556 | * |
| 557 | * @param option telnet option byte (binary mode, term type, etc.) |
| 558 | * @throws IOException if an I/O error occurs |
| 559 | */ |
| 560 | private void DONT(final int option) throws IOException { |
| 561 | respond(TELNET_DONT, option); |
| 562 | } |
| 563 | |
| 564 | /** |
| 565 | * Tell the remote side we WON't or DON'T support an option. |
| 566 | * |
| 567 | * @param remoteQuery a TELNET_DO/DONT/WILL/WONT byte |
| 568 | * @param option telnet option byte (binary mode, term type, etc.) |
| 569 | * @throws IOException if an I/O error occurs |
| 570 | */ |
| 571 | private void refuse(final int remoteQuery, |
| 572 | final int option) throws IOException { |
| 573 | |
| 574 | if (remoteQuery == TELNET_DO) { |
| 575 | WONT(option); |
| 576 | } else { |
| 577 | DONT(option); |
| 578 | } |
| 579 | } |
| 580 | |
| 581 | /** |
| 582 | * Build sub-negotiation packet (RFC 855). |
| 583 | * |
| 584 | * @param option telnet option |
| 585 | * @param response output buffer of response bytes |
| 586 | * @throws IOException if an I/O error occurs |
| 587 | */ |
| 588 | private void telnetSendSubnegResponse(final int option, |
| 589 | final byte [] response) throws IOException { |
| 590 | |
| 591 | byte [] buffer = new byte[response.length + 5]; |
| 592 | buffer[0] = (byte) TELNET_IAC; |
| 593 | buffer[1] = (byte) TELNET_SB; |
| 594 | buffer[2] = (byte) option; |
| 595 | System.arraycopy(response, 0, buffer, 3, response.length); |
| 596 | buffer[response.length + 3] = (byte) TELNET_IAC; |
| 597 | buffer[response.length + 4] = (byte) TELNET_SE; |
| 598 | output.rawWrite(buffer); |
| 599 | } |
| 600 | |
| 601 | /** |
| 602 | * Telnet option: Terminal Speed (RFC 1079). Client side. |
| 603 | * |
| 604 | * @throws IOException if an I/O error occurs |
| 605 | */ |
| 606 | private void telnetSendTerminalSpeed() throws IOException { |
| 607 | byte [] response = {0, '3', '8', '4', '0', '0', ',', |
| 608 | '3', '8', '4', '0', '0'}; |
| 609 | telnetSendSubnegResponse(32, response); |
| 610 | } |
| 611 | |
| 612 | /** |
| 613 | * Telnet option: Terminal Type (RFC 1091). Client side. |
| 614 | * |
| 615 | * @throws IOException if an I/O error occurs |
| 616 | */ |
| 617 | private void telnetSendTerminalType() throws IOException { |
| 618 | byte [] response = {0, 'v', 't', '1', '0', '0' }; |
| 619 | telnetSendSubnegResponse(24, response); |
| 620 | } |
| 621 | |
| 622 | /** |
| 623 | * Telnet option: Terminal Type (RFC 1091). Server side. |
| 624 | * |
| 625 | * @throws IOException if an I/O error occurs |
| 626 | */ |
| 627 | private void requestTerminalType() throws IOException { |
| 628 | byte [] response = new byte[1]; |
| 629 | response[0] = 1; |
| 630 | telnetSendSubnegResponse(24, response); |
| 631 | } |
| 632 | |
| 633 | /** |
| 634 | * Telnet option: Terminal Speed (RFC 1079). Server side. |
| 635 | * |
| 636 | * @throws IOException if an I/O error occurs |
| 637 | */ |
| 638 | private void requestTerminalSpeed() throws IOException { |
| 639 | byte [] response = new byte[1]; |
| 640 | response[0] = 1; |
| 641 | telnetSendSubnegResponse(32, response); |
| 642 | } |
| 643 | |
| 644 | /** |
| 645 | * Telnet option: New Environment (RFC 1572). Server side. |
| 646 | * |
| 647 | * @throws IOException if an I/O error occurs |
| 648 | */ |
| 649 | private void requestEnvironment() throws IOException { |
| 650 | byte [] response = new byte[1]; |
| 651 | response[0] = 1; |
| 652 | telnetSendSubnegResponse(39, response); |
| 653 | } |
| 654 | |
| 655 | /** |
| 656 | * Send the options we want to negotiate on. |
| 657 | * |
| 658 | * <p>The options we use are: |
| 659 | * |
| 660 | * <p> |
| 661 | * <pre> |
| 662 | * Binary Transmission RFC 856 |
| 663 | * Suppress Go Ahead RFC 858 |
| 664 | * Negotiate About Window Size RFC 1073 |
| 665 | * Terminal Type RFC 1091 |
| 666 | * Terminal Speed RFC 1079 |
| 667 | * New Environment RFC 1572 |
| 668 | * |
| 669 | * When run as a server: |
| 670 | * Echo RFC 857 |
| 671 | * </pre> |
| 672 | * |
| 673 | * @throws IOException if an I/O error occurs |
| 674 | */ |
| 675 | void telnetSendOptions() throws IOException { |
| 676 | if (master.binaryMode == false) { |
| 677 | // Binary Transmission: must ask both do and will |
| 678 | DO(0); |
| 679 | WILL(0); |
| 680 | } |
| 681 | |
| 682 | if (master.goAhead == true) { |
| 683 | // Suppress Go Ahead |
| 684 | DO(3); |
| 685 | WILL(3); |
| 686 | } |
| 687 | |
| 688 | // Server only options |
| 689 | if (master.isServer == true) { |
| 690 | // Enable Echo - I echo to them, they do not echo back to me. |
| 691 | DONT(1); |
| 692 | WILL(1); |
| 693 | |
| 694 | if (master.doTermType == true) { |
| 695 | // Terminal type - request it |
| 696 | DO(24); |
| 697 | } |
| 698 | |
| 699 | if (master.doTermSpeed == true) { |
| 700 | // Terminal speed - request it |
| 701 | DO(32); |
| 702 | } |
| 703 | |
| 704 | if (master.doNAWS == true) { |
| 705 | // NAWS - request it |
| 706 | DO(31); |
| 707 | } |
| 708 | |
| 709 | if (master.doEnvironment == true) { |
| 710 | // Environment - request it |
| 711 | DO(39); |
| 712 | } |
| 713 | |
| 714 | } else { |
| 715 | |
| 716 | if (master.doTermType == true) { |
| 717 | // Terminal type - request it |
| 718 | WILL(24); |
| 719 | } |
| 720 | |
| 721 | if (master.doTermSpeed == true) { |
| 722 | // Terminal speed - request it |
| 723 | WILL(32); |
| 724 | } |
| 725 | |
| 726 | if (master.doNAWS == true) { |
| 727 | // NAWS - request it |
| 728 | WILL(31); |
| 729 | } |
| 730 | |
| 731 | if (master.doEnvironment == true) { |
| 732 | // Environment - request it |
| 733 | WILL(39); |
| 734 | } |
| 735 | } |
| 736 | |
| 737 | // Push it all out |
| 738 | output.flush(); |
| 739 | } |
| 740 | |
| 741 | /** |
| 742 | * New Environment parsing state. |
| 743 | */ |
| 744 | private enum EnvState { |
| 745 | INIT, |
| 746 | TYPE, |
| 747 | NAME, |
| 748 | VALUE |
| 749 | } |
| 750 | |
| 751 | /** |
| 752 | * Handle the New Environment option. Note that this implementation |
| 753 | * fails to handle ESC as defined in RFC 1572. |
| 754 | */ |
| 755 | private void handleNewEnvironment() { |
| 756 | Map<String, String> newEnv = new TreeMap<String, String>(); |
| 757 | |
| 758 | EnvState state = EnvState.INIT; |
| 759 | StringBuilder name = new StringBuilder(); |
| 760 | StringBuilder value = new StringBuilder(); |
| 761 | |
| 762 | /* |
| 763 | System.err.printf("handleNewEnvironment() %d bytes\n", |
| 764 | subnegBuffer.size()); |
| 765 | */ |
| 766 | |
| 767 | for (int i = 1; i < subnegBuffer.size(); i++) { |
| 768 | Byte b = subnegBuffer.get(i); |
| 769 | /* |
| 770 | System.err.printf(" b: %c %d 0x%02x\n", (char)b.byteValue(), |
| 771 | b, b); |
| 772 | */ |
| 773 | |
| 774 | switch (state) { |
| 775 | |
| 776 | case INIT: |
| 777 | // Looking for "IS" |
| 778 | if (b == 0) { |
| 779 | state = EnvState.TYPE; |
| 780 | } else { |
| 781 | // The other side isn't following the rules, see ya. |
| 782 | return; |
| 783 | } |
| 784 | break; |
| 785 | |
| 786 | case TYPE: |
| 787 | // Looking for "VAR" or "USERVAR" |
| 788 | if (b == 0) { |
| 789 | // VAR |
| 790 | state = EnvState.NAME; |
| 791 | name = new StringBuilder(); |
| 792 | } else if (b == 3) { |
| 793 | // USERVAR |
| 794 | state = EnvState.NAME; |
| 795 | name = new StringBuilder(); |
| 796 | } else { |
| 797 | // The other side isn't following the rules, see ya |
| 798 | return; |
| 799 | } |
| 800 | break; |
| 801 | |
| 802 | case NAME: |
| 803 | // Looking for "VALUE" or a name byte |
| 804 | if (b == 1) { |
| 805 | // VALUE |
| 806 | state = EnvState.VALUE; |
| 807 | value = new StringBuilder(); |
| 808 | } else { |
| 809 | // Take it as an environment variable name/key byte |
| 810 | name.append((char)b.byteValue()); |
| 811 | } |
| 812 | |
| 813 | break; |
| 814 | |
| 815 | case VALUE: |
| 816 | // Looking for "VAR", "USERVAR", or a name byte, or the end |
| 817 | if (b == 0) { |
| 818 | // VAR |
| 819 | state = EnvState.NAME; |
| 820 | if (value.length() > 0) { |
| 821 | /* |
| 822 | System.err.printf("NAME: '%s' VALUE: '%s'\n", |
| 823 | name, value); |
| 824 | */ |
| 825 | newEnv.put(name.toString(), value.toString()); |
| 826 | } |
| 827 | name = new StringBuilder(); |
| 828 | } else if (b == 3) { |
| 829 | // USERVAR |
| 830 | state = EnvState.NAME; |
| 831 | if (value.length() > 0) { |
| 832 | /* |
| 833 | System.err.printf("NAME: '%s' VALUE: '%s'\n", |
| 834 | name, value); |
| 835 | */ |
| 836 | newEnv.put(name.toString(), value.toString()); |
| 837 | } |
| 838 | name = new StringBuilder(); |
| 839 | } else { |
| 840 | // Take it as an environment variable value byte |
| 841 | value.append((char)b.byteValue()); |
| 842 | } |
| 843 | break; |
| 844 | |
| 845 | default: |
| 846 | throw new RuntimeException("Invalid state: " + state); |
| 847 | |
| 848 | } |
| 849 | } |
| 850 | |
| 851 | if ((name.length() > 0) && (value.length() > 0)) { |
| 852 | /* |
| 853 | System.err.printf("NAME: '%s' VALUE: '%s'\n", name, value); |
| 854 | */ |
| 855 | newEnv.put(name.toString(), value.toString()); |
| 856 | } |
| 857 | |
| 858 | for (String key: newEnv.keySet()) { |
| 859 | if (key.equals("LANG")) { |
| 860 | language = newEnv.get(key); |
| 861 | } |
| 862 | if (key.equals("LOGNAME")) { |
| 863 | username = newEnv.get(key); |
| 864 | } |
| 865 | if (key.equals("USER")) { |
| 866 | username = newEnv.get(key); |
| 867 | } |
| 868 | } |
| 869 | } |
| 870 | |
| 871 | /** |
| 872 | * Handle an option sub-negotiation. |
| 873 | * |
| 874 | * @throws IOException if an I/O error occurs |
| 875 | */ |
| 876 | private void handleSubneg() throws IOException { |
| 877 | Byte option; |
| 878 | |
| 879 | // Sanity check: there must be at least 1 byte in subnegBuffer |
| 880 | if (subnegBuffer.size() < 1) { |
| 881 | // Buffer too small: the other side is a broken telnetd, it did |
| 882 | // not send the right sub-negotiation data. Bail out now. |
| 883 | return; |
| 884 | } |
| 885 | option = subnegBuffer.get(0); |
| 886 | |
| 887 | switch (option) { |
| 888 | |
| 889 | case 24: |
| 890 | // Terminal Type |
| 891 | if ((subnegBuffer.size() > 1) && (subnegBuffer.get(1) == 1)) { |
| 892 | // Server sent "SEND", we say "IS" |
| 893 | telnetSendTerminalType(); |
| 894 | } |
| 895 | if ((subnegBuffer.size() > 1) && (subnegBuffer.get(1) == 0)) { |
| 896 | // Client sent "IS", record it |
| 897 | StringBuilder terminalString = new StringBuilder(); |
| 898 | for (int i = 2; i < subnegBuffer.size(); i++) { |
| 899 | terminalString.append((char)subnegBuffer. |
| 900 | get(i).byteValue()); |
| 901 | } |
| 902 | master.terminalType = terminalString.toString(); |
| 903 | /* |
| 904 | System.err.printf("terminal type: '%s'\n", |
| 905 | master.terminalType); |
| 906 | */ |
| 907 | } |
| 908 | break; |
| 909 | |
| 910 | case 32: |
| 911 | // Terminal Speed |
| 912 | if ((subnegBuffer.size() > 1) && (subnegBuffer.get(1) == 1)) { |
| 913 | // Server sent "SEND", we say "IS" |
| 914 | telnetSendTerminalSpeed(); |
| 915 | } |
| 916 | if ((subnegBuffer.size() > 1) && (subnegBuffer.get(1) == 0)) { |
| 917 | // Client sent "IS", record it |
| 918 | StringBuilder speedString = new StringBuilder(); |
| 919 | for (int i = 2; i < subnegBuffer.size(); i++) { |
| 920 | speedString.append((char)subnegBuffer.get(i).byteValue()); |
| 921 | } |
| 922 | master.terminalSpeed = speedString.toString(); |
| 923 | /* |
| 924 | System.err.printf("terminal speed: '%s'\n", |
| 925 | master.terminalSpeed); |
| 926 | */ |
| 927 | } |
| 928 | break; |
| 929 | |
| 930 | case 31: |
| 931 | // NAWS |
| 932 | if (subnegBuffer.size() >= 5) { |
| 933 | int i = 0; |
| 934 | |
| 935 | i++; |
| 936 | if (subnegBuffer.get(i) == (byte) TELNET_IAC) { |
| 937 | i++; |
| 938 | } |
| 939 | int width = subnegBuffer.get(i); |
| 940 | if (width < 0) { |
| 941 | width += 256; |
| 942 | } |
| 943 | windowWidth = width * 256; |
| 944 | |
| 945 | i++; |
| 946 | if (subnegBuffer.get(i) == (byte) TELNET_IAC) { |
| 947 | i++; |
| 948 | } |
| 949 | width = subnegBuffer.get(i); |
| 950 | windowWidth += width; |
| 951 | if (width < 0) { |
| 952 | windowWidth += 256; |
| 953 | } |
| 954 | |
| 955 | i++; |
| 956 | if (subnegBuffer.get(i) == (byte) TELNET_IAC) { |
| 957 | i++; |
| 958 | } |
| 959 | int height = subnegBuffer.get(i); |
| 960 | if (height < 0) { |
| 961 | height += 256; |
| 962 | } |
| 963 | windowHeight = height * 256; |
| 964 | |
| 965 | i++; |
| 966 | if (subnegBuffer.get(i) == (byte) TELNET_IAC) { |
| 967 | i++; |
| 968 | } |
| 969 | height = subnegBuffer.get(i); |
| 970 | windowHeight += height; |
| 971 | if (height < 0) { |
| 972 | windowHeight += 256; |
| 973 | } |
| 974 | } |
| 975 | break; |
| 976 | |
| 977 | case 39: |
| 978 | // Environment |
| 979 | handleNewEnvironment(); |
| 980 | break; |
| 981 | |
| 982 | default: |
| 983 | // Ignore this one |
| 984 | break; |
| 985 | } |
| 986 | } |
| 987 | |
| 988 | /** |
| 989 | * Reads up to len bytes of data from the input stream into an array of |
| 990 | * bytes. |
| 991 | * |
| 992 | * @param buf the buffer into which the data is read. |
| 993 | * @param off the start offset in array b at which the data is written. |
| 994 | * @param len the maximum number of bytes to read. |
| 995 | * @return the total number of bytes read into the buffer, or -1 if there |
| 996 | * is no more data because the end of the stream has been reached. |
| 997 | * @throws IOException if an I/O error occurs |
| 998 | */ |
| 999 | private int readImpl(final byte[] buf, final int off, |
| 1000 | final int len) throws IOException { |
| 1001 | |
| 1002 | assert (len > 0); |
| 1003 | |
| 1004 | // The current writing position in buf. |
| 1005 | int bufN = off; |
| 1006 | |
| 1007 | // We will keep trying to read() until we have something to return. |
| 1008 | do { |
| 1009 | |
| 1010 | byte [] buffer = null; |
| 1011 | if (master.binaryMode) { |
| 1012 | // Binary mode: read up to len bytes. There will never be |
| 1013 | // more bytes to pass upstream than there are bytes on the |
| 1014 | // wire. |
| 1015 | buffer = new byte[len]; |
| 1016 | } else { |
| 1017 | // ASCII mode: read up to len - 2 bytes. There may have been |
| 1018 | // some combination of IAC, CR, and NUL from a previous |
| 1019 | // readImpl() that could result in more bytes to pass up than |
| 1020 | // are on the wire. |
| 1021 | buffer = new byte[len - 2]; |
| 1022 | } |
| 1023 | |
| 1024 | int bufferN = 0; |
| 1025 | |
| 1026 | // Read some data from the other end |
| 1027 | int rc = input.read(buffer); |
| 1028 | |
| 1029 | // Check for EOF or error |
| 1030 | if (rc > 0) { |
| 1031 | // More data came in |
| 1032 | bufferN = rc; |
| 1033 | } else { |
| 1034 | // EOF, just return it. |
| 1035 | return rc; |
| 1036 | } |
| 1037 | |
| 1038 | // Loop through the read bytes |
| 1039 | for (int i = 0; i < bufferN; i++) { |
| 1040 | byte b = buffer[i]; |
| 1041 | |
| 1042 | if (subnegEnd == true) { |
| 1043 | // Looking for IAC SE to end this subnegotiation |
| 1044 | if (b == (byte) TELNET_SE) { |
| 1045 | if (iac == true) { |
| 1046 | iac = false; |
| 1047 | subnegEnd = false; |
| 1048 | handleSubneg(); |
| 1049 | } |
| 1050 | } else if (b == (byte) TELNET_IAC) { |
| 1051 | if (iac == true) { |
| 1052 | // An argument to the subnegotiation option |
| 1053 | subnegBuffer.add((byte) TELNET_IAC); |
| 1054 | } else { |
| 1055 | iac = true; |
| 1056 | } |
| 1057 | } else { |
| 1058 | // An argument to the subnegotiation option |
| 1059 | subnegBuffer.add(b); |
| 1060 | } |
| 1061 | continue; |
| 1062 | } |
| 1063 | |
| 1064 | // Look for DO/DON'T/WILL/WON'T option |
| 1065 | if (dowill == true) { |
| 1066 | |
| 1067 | // Look for option/ |
| 1068 | switch (b) { |
| 1069 | |
| 1070 | case 0: |
| 1071 | // Binary Transmission |
| 1072 | if (dowillType == (byte) TELNET_WILL) { |
| 1073 | // Server will use binary transmission, yay. |
| 1074 | master.binaryMode = true; |
| 1075 | } else if (dowillType == (byte) TELNET_DO) { |
| 1076 | // Server asks for binary transmission. |
| 1077 | WILL(b); |
| 1078 | master.binaryMode = true; |
| 1079 | } else if (dowillType == (byte) TELNET_WONT) { |
| 1080 | // We're screwed, server won't do binary |
| 1081 | // transmission. |
| 1082 | master.binaryMode = false; |
| 1083 | } else { |
| 1084 | // Server demands NVT ASCII mode. |
| 1085 | master.binaryMode = false; |
| 1086 | } |
| 1087 | break; |
| 1088 | |
| 1089 | case 1: |
| 1090 | // Echo |
| 1091 | if (dowillType == (byte) TELNET_WILL) { |
| 1092 | // Server will use echo, yay. |
| 1093 | master.echoMode = true; |
| 1094 | } else if (dowillType == (byte) TELNET_DO) { |
| 1095 | // Server asks for echo. |
| 1096 | WILL(b); |
| 1097 | master.echoMode = true; |
| 1098 | } else if (dowillType == (byte) TELNET_WONT) { |
| 1099 | // We're screwed, server won't do echo. |
| 1100 | master.echoMode = false; |
| 1101 | } else { |
| 1102 | // Server demands no echo. |
| 1103 | master.echoMode = false; |
| 1104 | } |
| 1105 | break; |
| 1106 | |
| 1107 | case 3: |
| 1108 | // Suppress Go Ahead |
| 1109 | if (dowillType == (byte) TELNET_WILL) { |
| 1110 | // Server will use suppress go-ahead, yay. |
| 1111 | master.goAhead = false; |
| 1112 | } else if (dowillType == (byte) TELNET_DO) { |
| 1113 | // Server asks for suppress go-ahead. |
| 1114 | WILL(b); |
| 1115 | master.goAhead = false; |
| 1116 | } else if (dowillType == (byte) TELNET_WONT) { |
| 1117 | // We're screwed, server won't do suppress |
| 1118 | // go-ahead. |
| 1119 | master.goAhead = true; |
| 1120 | } else { |
| 1121 | // Server demands Go-Ahead mode. |
| 1122 | master.goAhead = true; |
| 1123 | } |
| 1124 | break; |
| 1125 | |
| 1126 | case 24: |
| 1127 | // Terminal Type - send what's in TERM |
| 1128 | if (dowillType == (byte) TELNET_WILL) { |
| 1129 | // Server will use terminal type, yay. |
| 1130 | if (master.isServer |
| 1131 | && master.doTermType |
| 1132 | ) { |
| 1133 | requestTerminalType(); |
| 1134 | master.doTermType = false; |
| 1135 | } else if (!master.isServer) { |
| 1136 | master.doTermType = true; |
| 1137 | } |
| 1138 | } else if (dowillType == (byte) TELNET_DO) { |
| 1139 | // Server asks for terminal type. |
| 1140 | WILL(b); |
| 1141 | master.doTermType = true; |
| 1142 | } else if (dowillType == (byte) TELNET_WONT) { |
| 1143 | // We're screwed, server won't do terminal type. |
| 1144 | master.doTermType = false; |
| 1145 | } else { |
| 1146 | // Server will not listen to terminal type. |
| 1147 | master.doTermType = false; |
| 1148 | } |
| 1149 | break; |
| 1150 | |
| 1151 | case 31: |
| 1152 | // NAWS |
| 1153 | if (dowillType == (byte) TELNET_WILL) { |
| 1154 | // Server will use NAWS, yay. |
| 1155 | master.doNAWS = true; |
| 1156 | // NAWS cannot be requested by the server, it is |
| 1157 | // only sent by the client. |
| 1158 | } else if (dowillType == (byte) TELNET_DO) { |
| 1159 | // Server asks for NAWS. |
| 1160 | WILL(b); |
| 1161 | master.doNAWS = true; |
| 1162 | } else if (dowillType == (byte) TELNET_WONT) { |
| 1163 | // Server won't do NAWS. |
| 1164 | master.doNAWS = false; |
| 1165 | } else { |
| 1166 | // Server will not listen to NAWS. |
| 1167 | master.doNAWS = false; |
| 1168 | } |
| 1169 | break; |
| 1170 | |
| 1171 | case 32: |
| 1172 | // Terminal Speed |
| 1173 | if (dowillType == (byte) TELNET_WILL) { |
| 1174 | // Server will use terminal speed, yay. |
| 1175 | if (master.isServer |
| 1176 | && master.doTermSpeed |
| 1177 | ) { |
| 1178 | requestTerminalSpeed(); |
| 1179 | master.doTermSpeed = false; |
| 1180 | } else if (!master.isServer) { |
| 1181 | master.doTermSpeed = true; |
| 1182 | } |
| 1183 | } else if (dowillType == (byte) TELNET_DO) { |
| 1184 | // Server asks for terminal speed. |
| 1185 | WILL(b); |
| 1186 | master.doTermSpeed = true; |
| 1187 | } else if (dowillType == (byte) TELNET_WONT) { |
| 1188 | // We're screwed, server won't do terminal speed. |
| 1189 | master.doTermSpeed = false; |
| 1190 | } else { |
| 1191 | // Server will not listen to terminal speed. |
| 1192 | master.doTermSpeed = false; |
| 1193 | } |
| 1194 | break; |
| 1195 | |
| 1196 | case 39: |
| 1197 | // New Environment |
| 1198 | if (dowillType == (byte) TELNET_WILL) { |
| 1199 | // Server will use NewEnvironment, yay. |
| 1200 | if (master.isServer |
| 1201 | && master.doEnvironment |
| 1202 | ) { |
| 1203 | requestEnvironment(); |
| 1204 | master.doEnvironment = false; |
| 1205 | } else if (!master.isServer) { |
| 1206 | master.doEnvironment = true; |
| 1207 | } |
| 1208 | } else if (dowillType == (byte) TELNET_DO) { |
| 1209 | // Server asks for NewEnvironment. |
| 1210 | WILL(b); |
| 1211 | master.doEnvironment = true; |
| 1212 | } else if (dowillType == (byte) TELNET_WONT) { |
| 1213 | // Server won't do NewEnvironment. |
| 1214 | master.doEnvironment = false; |
| 1215 | } else { |
| 1216 | // Server will not listen to New Environment. |
| 1217 | master.doEnvironment = false; |
| 1218 | } |
| 1219 | break; |
| 1220 | |
| 1221 | |
| 1222 | default: |
| 1223 | // Other side asked for something we don't |
| 1224 | // understand. Tell them we will not do this option. |
| 1225 | refuse(dowillType, b); |
| 1226 | break; |
| 1227 | } |
| 1228 | |
| 1229 | dowill = false; |
| 1230 | continue; |
| 1231 | } // if (dowill == true) |
| 1232 | |
| 1233 | // Perform read processing |
| 1234 | if (b == (byte) TELNET_IAC) { |
| 1235 | |
| 1236 | // Telnet command |
| 1237 | if (iac == true) { |
| 1238 | // IAC IAC -> IAC |
| 1239 | buf[bufN++] = (byte) TELNET_IAC; |
| 1240 | iac = false; |
| 1241 | } else { |
| 1242 | iac = true; |
| 1243 | } |
| 1244 | continue; |
| 1245 | } else { |
| 1246 | if (iac == true) { |
| 1247 | |
| 1248 | switch (b) { |
| 1249 | |
| 1250 | case (byte) TELNET_SE: |
| 1251 | // END Sub-Negotiation |
| 1252 | break; |
| 1253 | case (byte) TELNET_NOP: |
| 1254 | // NOP |
| 1255 | break; |
| 1256 | case (byte) TELNET_DM: |
| 1257 | // Data Mark |
| 1258 | break; |
| 1259 | case (byte) TELNET_BRK: |
| 1260 | // Break |
| 1261 | break; |
| 1262 | case (byte) TELNET_IP: |
| 1263 | // Interrupt Process |
| 1264 | break; |
| 1265 | case (byte) TELNET_AO: |
| 1266 | // Abort Output |
| 1267 | break; |
| 1268 | case (byte) TELNET_AYT: |
| 1269 | // Are You There? |
| 1270 | break; |
| 1271 | case (byte) TELNET_EC: |
| 1272 | // Erase Character |
| 1273 | break; |
| 1274 | case (byte) TELNET_EL: |
| 1275 | // Erase Line |
| 1276 | break; |
| 1277 | case (byte) TELNET_GA: |
| 1278 | // Go Ahead |
| 1279 | break; |
| 1280 | case (byte) TELNET_SB: |
| 1281 | // START Sub-Negotiation |
| 1282 | // From here we wait for the IAC SE |
| 1283 | subnegEnd = true; |
| 1284 | subnegBuffer.clear(); |
| 1285 | break; |
| 1286 | case (byte) TELNET_WILL: |
| 1287 | // WILL |
| 1288 | dowill = true; |
| 1289 | dowillType = b; |
| 1290 | break; |
| 1291 | case (byte) TELNET_WONT: |
| 1292 | // WON'T |
| 1293 | dowill = true; |
| 1294 | dowillType = b; |
| 1295 | break; |
| 1296 | case (byte) TELNET_DO: |
| 1297 | // DO |
| 1298 | dowill = true; |
| 1299 | dowillType = b; |
| 1300 | break; |
| 1301 | case (byte) TELNET_DONT: |
| 1302 | // DON'T |
| 1303 | dowill = true; |
| 1304 | dowillType = b; |
| 1305 | break; |
| 1306 | default: |
| 1307 | // This should be equivalent to IAC NOP |
| 1308 | break; |
| 1309 | } |
| 1310 | iac = false; |
| 1311 | continue; |
| 1312 | |
| 1313 | } // if (iac == true) |
| 1314 | |
| 1315 | /* |
| 1316 | * All of the regular IAC processing is completed at this |
| 1317 | * point. Now we need to handle the CR and CR LF cases. |
| 1318 | * |
| 1319 | * According to RFC 854, in NVT ASCII mode: |
| 1320 | * Bare CR -> CR NUL |
| 1321 | * CR LF -> CR LF |
| 1322 | * |
| 1323 | */ |
| 1324 | if (master.binaryMode == false) { |
| 1325 | |
| 1326 | if (b == C_LF) { |
| 1327 | if (readCR == true) { |
| 1328 | // This is CR LF. Send CR LF and turn the cr |
| 1329 | // flag off. |
| 1330 | buf[bufN++] = C_CR; |
| 1331 | buf[bufN++] = C_LF; |
| 1332 | readCR = false; |
| 1333 | continue; |
| 1334 | } |
| 1335 | // This is bare LF. Send LF. |
| 1336 | buf[bufN++] = C_LF; |
| 1337 | continue; |
| 1338 | } |
| 1339 | |
| 1340 | if (b == C_NUL) { |
| 1341 | if (readCR == true) { |
| 1342 | // This is CR NUL. Send CR and turn the cr |
| 1343 | // flag off. |
| 1344 | buf[bufN++] = C_CR; |
| 1345 | readCR = false; |
| 1346 | continue; |
| 1347 | } |
| 1348 | // This is bare NUL. Send NUL. |
| 1349 | buf[bufN++] = C_NUL; |
| 1350 | continue; |
| 1351 | } |
| 1352 | |
| 1353 | if (b == C_CR) { |
| 1354 | if (readCR == true) { |
| 1355 | // This is CR CR. Send a CR NUL and leave |
| 1356 | // the cr flag on. |
| 1357 | buf[bufN++] = C_CR; |
| 1358 | buf[bufN++] = C_NUL; |
| 1359 | continue; |
| 1360 | } |
| 1361 | // This is the first CR. Set the cr flag. |
| 1362 | readCR = true; |
| 1363 | continue; |
| 1364 | } |
| 1365 | |
| 1366 | if (readCR == true) { |
| 1367 | // This was a bare CR in the stream. |
| 1368 | buf[bufN++] = C_CR; |
| 1369 | readCR = false; |
| 1370 | } |
| 1371 | |
| 1372 | // This is a regular character. Pass it on. |
| 1373 | buf[bufN++] = b; |
| 1374 | continue; |
| 1375 | } |
| 1376 | |
| 1377 | /* |
| 1378 | * This is the case for any of: |
| 1379 | * |
| 1380 | * 1) A NVT ASCII character that isn't CR, LF, or |
| 1381 | * NUL. |
| 1382 | * |
| 1383 | * 2) A NVT binary character. |
| 1384 | * |
| 1385 | * For all of these cases, we just pass the character on. |
| 1386 | */ |
| 1387 | buf[bufN++] = b; |
| 1388 | |
| 1389 | } // if (b == TELNET_IAC) |
| 1390 | |
| 1391 | } // for (int i = 0; i < bufferN; i++) |
| 1392 | |
| 1393 | } while (bufN == 0); |
| 1394 | |
| 1395 | // Return bytes read |
| 1396 | return bufN; |
| 1397 | } |
| 1398 | |
| 1399 | } |