Home | History | Annotate | Line # | Download | only in telnet
terminal.c revision 1.13
      1  1.13       agc /*	$NetBSD: terminal.c,v 1.13 2003/08/07 11:16:11 agc Exp $	*/
      2   1.5   thorpej 
      3   1.1       cgd /*
      4   1.3       cgd  * Copyright (c) 1988, 1990, 1993
      5   1.3       cgd  *	The Regents of the University of California.  All rights reserved.
      6   1.1       cgd  *
      7   1.1       cgd  * Redistribution and use in source and binary forms, with or without
      8   1.1       cgd  * modification, are permitted provided that the following conditions
      9   1.1       cgd  * are met:
     10   1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     11   1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     12   1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     14   1.1       cgd  *    documentation and/or other materials provided with the distribution.
     15  1.13       agc  * 3. Neither the name of the University nor the names of its contributors
     16   1.1       cgd  *    may be used to endorse or promote products derived from this software
     17   1.1       cgd  *    without specific prior written permission.
     18   1.1       cgd  *
     19   1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     20   1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     21   1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     22   1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     23   1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     24   1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     25   1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     26   1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     27   1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     28   1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     29   1.1       cgd  * SUCH DAMAGE.
     30   1.1       cgd  */
     31   1.1       cgd 
     32   1.6  christos #include <sys/cdefs.h>
     33   1.1       cgd #ifndef lint
     34   1.5   thorpej #if 0
     35   1.5   thorpej static char sccsid[] = "@(#)terminal.c	8.2 (Berkeley) 2/16/95";
     36   1.5   thorpej #else
     37  1.13       agc __RCSID("$NetBSD: terminal.c,v 1.13 2003/08/07 11:16:11 agc Exp $");
     38   1.5   thorpej #endif
     39   1.1       cgd #endif /* not lint */
     40   1.1       cgd 
     41   1.1       cgd #include <arpa/telnet.h>
     42   1.1       cgd #include <sys/types.h>
     43   1.1       cgd 
     44   1.1       cgd #include "ring.h"
     45   1.1       cgd 
     46   1.1       cgd #include "externs.h"
     47   1.1       cgd #include "types.h"
     48   1.1       cgd 
     49   1.7   thorpej #ifdef ENCRYPTION
     50   1.7   thorpej #include <libtelnet/encrypt.h>
     51   1.7   thorpej #endif
     52   1.7   thorpej 
     53   1.1       cgd Ring		ttyoring, ttyiring;
     54   1.1       cgd unsigned char	ttyobuf[2*BUFSIZ], ttyibuf[BUFSIZ];
     55   1.1       cgd 
     56   1.1       cgd int termdata;			/* Debugging flag */
     57   1.1       cgd 
     58   1.1       cgd /*
     59   1.1       cgd  * initialize the terminal data structures.
     60   1.1       cgd  */
     61   1.1       cgd 
     62  1.10  christos void
     63  1.10  christos init_terminal(void)
     64   1.1       cgd {
     65   1.1       cgd     if (ring_init(&ttyoring, ttyobuf, sizeof ttyobuf) != 1) {
     66   1.1       cgd 	exit(1);
     67   1.1       cgd     }
     68   1.1       cgd     if (ring_init(&ttyiring, ttyibuf, sizeof ttyibuf) != 1) {
     69   1.1       cgd 	exit(1);
     70   1.1       cgd     }
     71   1.1       cgd     autoflush = TerminalAutoFlush();
     72   1.1       cgd }
     73   1.1       cgd 
     74   1.1       cgd 
     75   1.1       cgd /*
     76   1.1       cgd  *		Send as much data as possible to the terminal.
     77   1.1       cgd  *
     78   1.1       cgd  *		Return value:
     79   1.9  christos  *			-2: Permanent error writing to FD.
     80   1.1       cgd  *			-1: No useful work done, data waiting to go out.
     81   1.1       cgd  *			 0: No data was waiting, so nothing was done.
     82   1.1       cgd  *			 1: All waiting data was written out.
     83   1.1       cgd  *			 n: All data - n was written out.
     84   1.1       cgd  */
     85   1.1       cgd 
     86   1.1       cgd 
     87  1.10  christos int
     88  1.10  christos ttyflush(int drop)
     89   1.1       cgd {
     90   1.8       wiz     int n, n0, n1;
     91   1.1       cgd 
     92   1.1       cgd     n0 = ring_full_count(&ttyoring);
     93   1.1       cgd     if ((n1 = n = ring_full_consecutive(&ttyoring)) > 0) {
     94   1.1       cgd 	if (drop) {
     95   1.1       cgd 	    TerminalFlushOutput();
     96   1.1       cgd 	    /* we leave 'n' alone! */
     97   1.1       cgd 	} else {
     98   1.1       cgd 	    n = TerminalWrite(ttyoring.consume, n);
     99   1.1       cgd 	}
    100   1.1       cgd     }
    101   1.1       cgd     if (n > 0) {
    102   1.1       cgd 	if (termdata && n) {
    103   1.1       cgd 	    Dump('>', ttyoring.consume, n);
    104   1.1       cgd 	}
    105   1.1       cgd 	/*
    106   1.1       cgd 	 * If we wrote everything, and the full count is
    107   1.1       cgd 	 * larger than what we wrote, then write the
    108   1.1       cgd 	 * rest of the buffer.
    109   1.1       cgd 	 */
    110   1.1       cgd 	if (n1 == n && n0 > n) {
    111   1.1       cgd 		n1 = n0 - n;
    112   1.1       cgd 		if (!drop)
    113   1.1       cgd 			n1 = TerminalWrite(ttyoring.bottom, n1);
    114   1.4       jtk 		if (n1 > 0)
    115   1.4       jtk 			n += n1;
    116   1.1       cgd 	}
    117   1.1       cgd 	ring_consumed(&ttyoring, n);
    118   1.1       cgd     }
    119   1.9  christos     if (n < 0) {
    120   1.9  christos 	if (errno == EAGAIN)
    121   1.9  christos 	    return -1;
    122   1.9  christos 	else
    123   1.9  christos 	    return -2;
    124   1.9  christos     }
    125   1.1       cgd     if (n == n0) {
    126   1.1       cgd 	if (n0)
    127   1.1       cgd 	    return -1;
    128   1.1       cgd 	return 0;
    129   1.1       cgd     }
    130   1.1       cgd     return n0 - n + 1;
    131   1.1       cgd }
    132   1.1       cgd 
    133   1.1       cgd 
    134   1.1       cgd /*
    136   1.1       cgd  * These routines decides on what the mode should be (based on the values
    137   1.1       cgd  * of various global variables).
    138   1.1       cgd  */
    139   1.1       cgd 
    140  1.10  christos 
    141  1.10  christos int
    142   1.1       cgd getconnmode(void)
    143   1.1       cgd {
    144   1.1       cgd     extern int linemode;
    145   1.1       cgd     int mode = 0;
    146   1.1       cgd #ifdef	KLUDGELINEMODE
    147   1.1       cgd     extern int kludgelinemode;
    148   1.1       cgd #endif
    149   1.1       cgd 
    150   1.1       cgd     if (In3270)
    151   1.1       cgd 	return(MODE_FLOW);
    152   1.1       cgd 
    153   1.1       cgd     if (my_want_state_is_dont(TELOPT_ECHO))
    154   1.1       cgd 	mode |= MODE_ECHO;
    155   1.1       cgd 
    156   1.1       cgd     if (localflow)
    157   1.1       cgd 	mode |= MODE_FLOW;
    158   1.1       cgd 
    159   1.1       cgd     if (my_want_state_is_will(TELOPT_BINARY))
    160   1.1       cgd 	mode |= MODE_INBIN;
    161   1.1       cgd 
    162   1.1       cgd     if (his_want_state_is_will(TELOPT_BINARY))
    163   1.1       cgd 	mode |= MODE_OUTBIN;
    164   1.1       cgd 
    165   1.1       cgd #ifdef	KLUDGELINEMODE
    166   1.1       cgd     if (kludgelinemode) {
    167   1.1       cgd 	if (my_want_state_is_dont(TELOPT_SGA)) {
    168   1.1       cgd 	    mode |= (MODE_TRAPSIG|MODE_EDIT);
    169   1.1       cgd 	    if (dontlecho && (clocks.echotoggle > clocks.modenegotiated)) {
    170   1.1       cgd 		mode &= ~MODE_ECHO;
    171   1.1       cgd 	    }
    172   1.1       cgd 	}
    173   1.1       cgd 	return(mode);
    174   1.1       cgd     }
    175   1.1       cgd #endif
    176   1.1       cgd     if (my_want_state_is_will(TELOPT_LINEMODE))
    177   1.1       cgd 	mode |= linemode;
    178   1.1       cgd     return(mode);
    179   1.1       cgd }
    180  1.10  christos 
    181  1.10  christos void
    182   1.1       cgd setconnmode(int force)
    183   1.7   thorpej {
    184   1.7   thorpej #ifdef	ENCRYPTION
    185   1.7   thorpej     static int enc_passwd = 0;
    186   1.8       wiz #endif
    187   1.1       cgd     int newmode;
    188   1.1       cgd 
    189   1.1       cgd     newmode = getconnmode()|(force?MODE_FORCE:0);
    190   1.1       cgd 
    191   1.1       cgd     TerminalNewMode(newmode);
    192   1.7   thorpej 
    193   1.7   thorpej #ifdef	ENCRYPTION
    194   1.7   thorpej     if ((newmode & (MODE_ECHO|MODE_EDIT)) == MODE_EDIT) {
    195   1.7   thorpej 	if (my_want_state_is_will(TELOPT_ENCRYPT)
    196   1.7   thorpej 				&& (enc_passwd == 0) && !encrypt_output) {
    197   1.7   thorpej 	    encrypt_request_start(0, 0);
    198   1.7   thorpej 	    enc_passwd = 1;
    199   1.7   thorpej 	}
    200   1.7   thorpej     } else {
    201   1.7   thorpej 	if (enc_passwd) {
    202   1.7   thorpej 	    encrypt_request_end();
    203   1.7   thorpej 	    enc_passwd = 0;
    204   1.7   thorpej 	}
    205   1.7   thorpej     }
    206   1.1       cgd #endif	/* ENCRYPTION */
    207   1.1       cgd }
    208   1.1       cgd 
    209  1.10  christos 
    210  1.10  christos void
    211   1.1       cgd setcommandmode(void)
    212   1.1       cgd {
    213   1.1       cgd     TerminalNewMode(-1);
    214                 }
    215