Fix off-by-one in selection update while scrolling. Thanks Richard B.
[u/mdw/putty] / raw.c
CommitLineData
5e1a8e27 1#include <stdio.h>
2#include <stdlib.h>
5e1a8e27 3
4#include "putty.h"
5
6#ifndef FALSE
7#define FALSE 0
8#endif
9#ifndef TRUE
10#define TRUE 1
11#endif
12
5471d09a 13#define RAW_MAX_BACKLOG 4096
14
51470298 15typedef struct raw_backend_data {
16 const struct plug_function_table *fn;
17 /* the above field _must_ be first in the structure */
5e1a8e27 18
51470298 19 Socket s;
20 int bufsize;
21 void *frontend;
22} *Raw;
5e1a8e27 23
51470298 24static void raw_size(void *handle, int width, int height);
25
26static void c_write(Raw raw, char *buf, int len)
32874aea 27{
51470298 28 int backlog = from_backend(raw->frontend, 0, buf, len);
29 sk_set_frozen(raw->s, backlog > RAW_MAX_BACKLOG);
5e1a8e27 30}
31
32874aea 32static int raw_closing(Plug plug, char *error_msg, int error_code,
33 int calling_back)
34{
51470298 35 Raw raw = (Raw) plug;
36
37 if (raw->s) {
38 sk_close(raw->s);
39 raw->s = NULL;
f3ab576e 40 }
7e78000d 41 if (error_msg) {
32874aea 42 /* A socket error has occurred. */
a8327734 43 logevent(raw->frontend, error_msg);
247308b5 44 connection_fatal("%s", error_msg);
32874aea 45 } /* Otherwise, the remote side closed the connection normally. */
7e78000d 46 return 0;
47}
48
32874aea 49static int raw_receive(Plug plug, int urgent, char *data, int len)
50{
51470298 51 Raw raw = (Raw) plug;
52 c_write(raw, data, len);
8df7a775 53 return 1;
5e1a8e27 54}
55
3ad9d396 56static void raw_sent(Plug plug, int bufsize)
57{
51470298 58 Raw raw = (Raw) plug;
59 raw->bufsize = bufsize;
3ad9d396 60}
61
5e1a8e27 62/*
8df7a775 63 * Called to set up the raw connection.
64 *
5e1a8e27 65 * Returns an error message, or NULL on success.
66 *
6e1ebb76 67 * Also places the canonical host name into `realhost'. It must be
68 * freed by the caller.
5e1a8e27 69 */
51470298 70static char *raw_init(void *frontend_handle, void **backend_handle,
86916870 71 Config *cfg,
51470298 72 char *host, int port, char **realhost, int nodelay)
32874aea 73{
51470298 74 static const struct plug_function_table fn_table = {
7e78000d 75 raw_closing,
3ad9d396 76 raw_receive,
77 raw_sent
51470298 78 };
8df7a775 79 SockAddr addr;
80 char *err;
51470298 81 Raw raw;
5e1a8e27 82
51470298 83 raw = smalloc(sizeof(*raw));
84 raw->fn = &fn_table;
85 raw->s = NULL;
86 *backend_handle = raw;
87
88 raw->frontend = frontend_handle;
887035a5 89
5e1a8e27 90 /*
91 * Try to find host.
92 */
3ad9d396 93 {
57356d63 94 char *buf;
95 buf = dupprintf("Looking up host \"%s\"", host);
a8327734 96 logevent(raw->frontend, buf);
57356d63 97 sfree(buf);
3ad9d396 98 }
e8fa8f62 99 addr = name_lookup(host, port, realhost, cfg);
6f1e7b78 100 if ((err = sk_addr_error(addr)) != NULL)
8df7a775 101 return err;
5e1a8e27 102
103 if (port < 0)
104 port = 23; /* default telnet port */
105
106 /*
107 * Open socket.
108 */
3ad9d396 109 {
57356d63 110 char *buf, addrbuf[100];
3ad9d396 111 sk_getaddr(addr, addrbuf, 100);
57356d63 112 buf = dupprintf("Connecting to %s port %d", addrbuf, port);
a8327734 113 logevent(raw->frontend, buf);
57356d63 114 sfree(buf);
3ad9d396 115 }
e8fa8f62 116 raw->s = new_connection(addr, *realhost, port, 0, 1, nodelay,
117 (Plug) raw, cfg);
6f1e7b78 118 if ((err = sk_socket_error(raw->s)) != NULL)
8df7a775 119 return err;
5e1a8e27 120
8df7a775 121 sk_addr_free(addr);
5e1a8e27 122
123 return NULL;
124}
125
fabd1805 126static void raw_free(void *handle)
127{
128 Raw raw = (Raw) handle;
129
130 if (raw->s)
131 sk_close(raw->s);
132 sfree(raw);
133}
134
5e1a8e27 135/*
86916870 136 * Stub routine (we don't have any need to reconfigure this backend).
137 */
138static void raw_reconfig(void *handle, Config *cfg)
139{
140}
141
142/*
5e1a8e27 143 * Called to send data down the raw connection.
144 */
51470298 145static int raw_send(void *handle, char *buf, int len)
32874aea 146{
51470298 147 Raw raw = (Raw) handle;
148
149 if (raw->s == NULL)
b5a460cd 150 return 0;
5e1a8e27 151
51470298 152 raw->bufsize = sk_write(raw->s, buf, len);
5471d09a 153
51470298 154 return raw->bufsize;
5471d09a 155}
156
157/*
158 * Called to query the current socket sendability status.
159 */
51470298 160static int raw_sendbuffer(void *handle)
5471d09a 161{
51470298 162 Raw raw = (Raw) handle;
163 return raw->bufsize;
5e1a8e27 164}
165
166/*
167 * Called to set the size of the window
168 */
51470298 169static void raw_size(void *handle, int width, int height)
32874aea 170{
5e1a8e27 171 /* Do nothing! */
172 return;
173}
174
175/*
176 * Send raw special codes.
177 */
51470298 178static void raw_special(void *handle, Telnet_Special code)
32874aea 179{
5e1a8e27 180 /* Do nothing! */
181 return;
182}
183
51470298 184static Socket raw_socket(void *handle)
32874aea 185{
51470298 186 Raw raw = (Raw) handle;
187 return raw->s;
32874aea 188}
8ccc75b0 189
51470298 190static int raw_sendok(void *handle)
32874aea 191{
192 return 1;
193}
4017be6d 194
51470298 195static void raw_unthrottle(void *handle, int backlog)
5471d09a 196{
51470298 197 Raw raw = (Raw) handle;
198 sk_set_frozen(raw->s, backlog > RAW_MAX_BACKLOG);
5471d09a 199}
200
51470298 201static int raw_ldisc(void *handle, int option)
32874aea 202{
0965bee0 203 if (option == LD_EDIT || option == LD_ECHO)
32874aea 204 return 1;
0965bee0 205 return 0;
206}
207
b9d7bcad 208static void raw_provide_ldisc(void *handle, void *ldisc)
209{
210 /* This is a stub. */
211}
212
a8327734 213static void raw_provide_logctx(void *handle, void *logctx)
214{
215 /* This is a stub. */
216}
217
51470298 218static int raw_exitcode(void *handle)
d8d6c7e5 219{
220 /* Exit codes are a meaningless concept in the Raw protocol */
221 return 0;
222}
223
5e1a8e27 224Backend raw_backend = {
225 raw_init,
fabd1805 226 raw_free,
86916870 227 raw_reconfig,
5e1a8e27 228 raw_send,
5471d09a 229 raw_sendbuffer,
5e1a8e27 230 raw_size,
4017be6d 231 raw_special,
8ccc75b0 232 raw_socket,
d8d6c7e5 233 raw_exitcode,
97db3be4 234 raw_sendok,
0965bee0 235 raw_ldisc,
b9d7bcad 236 raw_provide_ldisc,
a8327734 237 raw_provide_logctx,
5471d09a 238 raw_unthrottle,
97db3be4 239 1
5e1a8e27 240};