Readjust checklist, because actually the section on updating the
[u/mdw/putty] / raw.c
CommitLineData
eaf1e20a 1/*
2 * "Raw" backend.
3 */
4
5e1a8e27 5#include <stdio.h>
6#include <stdlib.h>
5e1a8e27 7
8#include "putty.h"
9
10#ifndef FALSE
11#define FALSE 0
12#endif
13#ifndef TRUE
14#define TRUE 1
15#endif
16
5471d09a 17#define RAW_MAX_BACKLOG 4096
18
51470298 19typedef struct raw_backend_data {
20 const struct plug_function_table *fn;
21 /* the above field _must_ be first in the structure */
5e1a8e27 22
51470298 23 Socket s;
24 int bufsize;
25 void *frontend;
26} *Raw;
5e1a8e27 27
51470298 28static void raw_size(void *handle, int width, int height);
29
30static void c_write(Raw raw, char *buf, int len)
32874aea 31{
51470298 32 int backlog = from_backend(raw->frontend, 0, buf, len);
33 sk_set_frozen(raw->s, backlog > RAW_MAX_BACKLOG);
5e1a8e27 34}
35
7555d6a5 36static void raw_log(Plug plug, int type, SockAddr addr, int port,
37 const char *error_msg, int error_code)
38{
39 Raw raw = (Raw) plug;
40 char addrbuf[256], *msg;
41
42 sk_getaddr(addr, addrbuf, lenof(addrbuf));
43
44 if (type == 0)
45 msg = dupprintf("Connecting to %s port %d", addrbuf, port);
46 else
47 msg = dupprintf("Failed to connect to %s: %s", addrbuf, error_msg);
48
49 logevent(raw->frontend, msg);
50}
51
cbe2d68f 52static int raw_closing(Plug plug, const char *error_msg, int error_code,
32874aea 53 int calling_back)
54{
51470298 55 Raw raw = (Raw) plug;
56
57 if (raw->s) {
58 sk_close(raw->s);
59 raw->s = NULL;
39934deb 60 notify_remote_exit(raw->frontend);
f3ab576e 61 }
7e78000d 62 if (error_msg) {
32874aea 63 /* A socket error has occurred. */
a8327734 64 logevent(raw->frontend, error_msg);
971bcc0a 65 connection_fatal(raw->frontend, "%s", error_msg);
32874aea 66 } /* Otherwise, the remote side closed the connection normally. */
7e78000d 67 return 0;
68}
69
32874aea 70static int raw_receive(Plug plug, int urgent, char *data, int len)
71{
51470298 72 Raw raw = (Raw) plug;
73 c_write(raw, data, len);
8df7a775 74 return 1;
5e1a8e27 75}
76
3ad9d396 77static void raw_sent(Plug plug, int bufsize)
78{
51470298 79 Raw raw = (Raw) plug;
80 raw->bufsize = bufsize;
3ad9d396 81}
82
5e1a8e27 83/*
8df7a775 84 * Called to set up the raw connection.
85 *
5e1a8e27 86 * Returns an error message, or NULL on success.
87 *
6e1ebb76 88 * Also places the canonical host name into `realhost'. It must be
89 * freed by the caller.
5e1a8e27 90 */
cbe2d68f 91static const char *raw_init(void *frontend_handle, void **backend_handle,
92 Config *cfg,
79bf227b 93 char *host, int port, char **realhost, int nodelay,
94 int keepalive)
32874aea 95{
51470298 96 static const struct plug_function_table fn_table = {
7555d6a5 97 raw_log,
7e78000d 98 raw_closing,
3ad9d396 99 raw_receive,
100 raw_sent
51470298 101 };
8df7a775 102 SockAddr addr;
cbe2d68f 103 const char *err;
51470298 104 Raw raw;
5e1a8e27 105
3d88e64d 106 raw = snew(struct raw_backend_data);
51470298 107 raw->fn = &fn_table;
108 raw->s = NULL;
109 *backend_handle = raw;
110
111 raw->frontend = frontend_handle;
887035a5 112
5e1a8e27 113 /*
114 * Try to find host.
115 */
3ad9d396 116 {
57356d63 117 char *buf;
05581745 118 buf = dupprintf("Looking up host \"%s\"%s", host,
119 (cfg->addressfamily == ADDRTYPE_IPV4 ? " (IPv4)" :
120 (cfg->addressfamily == ADDRTYPE_IPV6 ? " (IPv6)" :
121 "")));
a8327734 122 logevent(raw->frontend, buf);
57356d63 123 sfree(buf);
3ad9d396 124 }
05581745 125 addr = name_lookup(host, port, realhost, cfg, cfg->addressfamily);
f85e6f6e 126 if ((err = sk_addr_error(addr)) != NULL) {
127 sk_addr_free(addr);
8df7a775 128 return err;
f85e6f6e 129 }
5e1a8e27 130
131 if (port < 0)
132 port = 23; /* default telnet port */
133
134 /*
135 * Open socket.
136 */
79bf227b 137 raw->s = new_connection(addr, *realhost, port, 0, 1, nodelay, keepalive,
e8fa8f62 138 (Plug) raw, cfg);
6f1e7b78 139 if ((err = sk_socket_error(raw->s)) != NULL)
8df7a775 140 return err;
5e1a8e27 141
881da168 142 if (*cfg->loghost) {
143 char *colon;
144
145 sfree(*realhost);
146 *realhost = dupstr(cfg->loghost);
147 colon = strrchr(*realhost, ':');
148 if (colon) {
149 /*
150 * FIXME: if we ever update this aspect of ssh.c for
151 * IPv6 literal management, this should change in line
152 * with it.
153 */
154 *colon++ = '\0';
155 }
156 }
157
5e1a8e27 158 return NULL;
159}
160
fabd1805 161static void raw_free(void *handle)
162{
163 Raw raw = (Raw) handle;
164
165 if (raw->s)
166 sk_close(raw->s);
167 sfree(raw);
168}
169
5e1a8e27 170/*
86916870 171 * Stub routine (we don't have any need to reconfigure this backend).
172 */
173static void raw_reconfig(void *handle, Config *cfg)
174{
175}
176
177/*
5e1a8e27 178 * Called to send data down the raw connection.
179 */
51470298 180static int raw_send(void *handle, char *buf, int len)
32874aea 181{
51470298 182 Raw raw = (Raw) handle;
183
184 if (raw->s == NULL)
b5a460cd 185 return 0;
5e1a8e27 186
51470298 187 raw->bufsize = sk_write(raw->s, buf, len);
5471d09a 188
51470298 189 return raw->bufsize;
5471d09a 190}
191
192/*
193 * Called to query the current socket sendability status.
194 */
51470298 195static int raw_sendbuffer(void *handle)
5471d09a 196{
51470298 197 Raw raw = (Raw) handle;
198 return raw->bufsize;
5e1a8e27 199}
200
201/*
202 * Called to set the size of the window
203 */
51470298 204static void raw_size(void *handle, int width, int height)
32874aea 205{
5e1a8e27 206 /* Do nothing! */
207 return;
208}
209
210/*
211 * Send raw special codes.
212 */
51470298 213static void raw_special(void *handle, Telnet_Special code)
32874aea 214{
5e1a8e27 215 /* Do nothing! */
216 return;
217}
218
125105d1 219/*
220 * Return a list of the special codes that make sense in this
221 * protocol.
222 */
223static const struct telnet_special *raw_get_specials(void *handle)
224{
225 return NULL;
226}
227
6226c939 228static int raw_connected(void *handle)
32874aea 229{
51470298 230 Raw raw = (Raw) handle;
6226c939 231 return raw->s != NULL;
32874aea 232}
8ccc75b0 233
51470298 234static int raw_sendok(void *handle)
32874aea 235{
236 return 1;
237}
4017be6d 238
51470298 239static void raw_unthrottle(void *handle, int backlog)
5471d09a 240{
51470298 241 Raw raw = (Raw) handle;
242 sk_set_frozen(raw->s, backlog > RAW_MAX_BACKLOG);
5471d09a 243}
244
51470298 245static int raw_ldisc(void *handle, int option)
32874aea 246{
0965bee0 247 if (option == LD_EDIT || option == LD_ECHO)
32874aea 248 return 1;
0965bee0 249 return 0;
250}
251
b9d7bcad 252static void raw_provide_ldisc(void *handle, void *ldisc)
253{
254 /* This is a stub. */
255}
256
a8327734 257static void raw_provide_logctx(void *handle, void *logctx)
258{
259 /* This is a stub. */
260}
261
51470298 262static int raw_exitcode(void *handle)
d8d6c7e5 263{
0da1a790 264 Raw raw = (Raw) handle;
265 if (raw->s != NULL)
266 return -1; /* still connected */
267 else
268 /* Exit codes are a meaningless concept in the Raw protocol */
269 return 0;
d8d6c7e5 270}
271
f89c3294 272/*
273 * cfg_info for Raw does nothing at all.
274 */
275static int raw_cfg_info(void *handle)
276{
277 return 0;
278}
279
5e1a8e27 280Backend raw_backend = {
281 raw_init,
fabd1805 282 raw_free,
86916870 283 raw_reconfig,
5e1a8e27 284 raw_send,
5471d09a 285 raw_sendbuffer,
5e1a8e27 286 raw_size,
4017be6d 287 raw_special,
125105d1 288 raw_get_specials,
6226c939 289 raw_connected,
d8d6c7e5 290 raw_exitcode,
97db3be4 291 raw_sendok,
0965bee0 292 raw_ldisc,
b9d7bcad 293 raw_provide_ldisc,
a8327734 294 raw_provide_logctx,
5471d09a 295 raw_unthrottle,
f89c3294 296 raw_cfg_info,
9e164d82 297 "raw",
298 PROT_RAW,
a4451dd1 299 0
5e1a8e27 300};