Asynchronous agent requests on Windows. Actually, I've kept the
[u/mdw/putty] / rlogin.c
CommitLineData
c91409da 1#include <stdio.h>
2#include <stdlib.h>
b6c680d4 3#include <ctype.h>
c91409da 4
5#include "putty.h"
6
7#ifndef FALSE
8#define FALSE 0
9#endif
10#ifndef TRUE
11#define TRUE 1
12#endif
13
5471d09a 14#define RLOGIN_MAX_BACKLOG 4096
15
51470298 16typedef struct rlogin_tag {
17 const struct plug_function_table *fn;
18 /* the above field _must_ be first in the structure */
c91409da 19
51470298 20 Socket s;
21 int bufsize;
c85623f9 22 int firstbyte;
51470298 23 int term_width, term_height;
24 void *frontend;
25} *Rlogin;
c91409da 26
51470298 27static void rlogin_size(void *handle, int width, int height);
28
29static void c_write(Rlogin rlogin, char *buf, int len)
32874aea 30{
51470298 31 int backlog = from_backend(rlogin->frontend, 0, buf, len);
32 sk_set_frozen(rlogin->s, backlog > RLOGIN_MAX_BACKLOG);
c91409da 33}
34
32874aea 35static int rlogin_closing(Plug plug, char *error_msg, int error_code,
36 int calling_back)
37{
51470298 38 Rlogin rlogin = (Rlogin) plug;
39 if (rlogin->s) {
40 sk_close(rlogin->s);
41 rlogin->s = NULL;
f3ab576e 42 }
7e78000d 43 if (error_msg) {
32874aea 44 /* A socket error has occurred. */
a8327734 45 logevent(rlogin->frontend, error_msg);
247308b5 46 connection_fatal("%s", error_msg);
32874aea 47 } /* Otherwise, the remote side closed the connection normally. */
7e78000d 48 return 0;
49}
50
32874aea 51static int rlogin_receive(Plug plug, int urgent, char *data, int len)
52{
51470298 53 Rlogin rlogin = (Rlogin) plug;
c91409da 54 if (urgent == 2) {
32874aea 55 char c;
56
57 c = *data++;
58 len--;
59 if (c == '\x80')
51470298 60 rlogin_size(rlogin, rlogin->term_width, rlogin->term_height);
32874aea 61 /*
62 * We should flush everything (aka Telnet SYNCH) if we see
63 * 0x02, and we should turn off and on _local_ flow control
64 * on 0x10 and 0x20 respectively. I'm not convinced it's
65 * worth it...
66 */
8a5fb9e3 67 } else {
32874aea 68 /*
69 * Main rlogin protocol. This is really simple: the first
70 * byte is expected to be NULL and is ignored, and the rest
71 * is printed.
72 */
c85623f9 73 if (rlogin->firstbyte) {
32874aea 74 if (data[0] == '\0') {
75 data++;
76 len--;
77 }
c85623f9 78 rlogin->firstbyte = 0;
32874aea 79 }
2b0c045b 80 if (len > 0)
51470298 81 c_write(rlogin, data, len);
c91409da 82 }
c91409da 83 return 1;
84}
85
3ad9d396 86static void rlogin_sent(Plug plug, int bufsize)
87{
51470298 88 Rlogin rlogin = (Rlogin) plug;
89 rlogin->bufsize = bufsize;
3ad9d396 90}
91
c91409da 92/*
93 * Called to set up the rlogin connection.
94 *
95 * Returns an error message, or NULL on success.
96 *
6e1ebb76 97 * Also places the canonical host name into `realhost'. It must be
98 * freed by the caller.
c91409da 99 */
51470298 100static char *rlogin_init(void *frontend_handle, void **backend_handle,
86916870 101 Config *cfg,
887035a5 102 char *host, int port, char **realhost, int nodelay)
32874aea 103{
51470298 104 static const struct plug_function_table fn_table = {
7e78000d 105 rlogin_closing,
3ad9d396 106 rlogin_receive,
107 rlogin_sent
51470298 108 };
c91409da 109 SockAddr addr;
110 char *err;
51470298 111 Rlogin rlogin;
c91409da 112
3d88e64d 113 rlogin = snew(struct rlogin_tag);
51470298 114 rlogin->fn = &fn_table;
115 rlogin->s = NULL;
116 rlogin->frontend = frontend_handle;
86916870 117 rlogin->term_width = cfg->width;
118 rlogin->term_height = cfg->height;
c85623f9 119 rlogin->firstbyte = 1;
51470298 120 *backend_handle = rlogin;
887035a5 121
c91409da 122 /*
123 * Try to find host.
124 */
3ad9d396 125 {
57356d63 126 char *buf;
127 buf = dupprintf("Looking up host \"%s\"", host);
a8327734 128 logevent(rlogin->frontend, buf);
57356d63 129 sfree(buf);
3ad9d396 130 }
e8fa8f62 131 addr = name_lookup(host, port, realhost, cfg);
6f1e7b78 132 if ((err = sk_addr_error(addr)) != NULL)
c91409da 133 return err;
134
135 if (port < 0)
136 port = 513; /* default rlogin port */
137
138 /*
139 * Open socket.
140 */
3ad9d396 141 {
57356d63 142 char *buf, addrbuf[100];
3ad9d396 143 sk_getaddr(addr, addrbuf, 100);
57356d63 144 buf = dupprintf("Connecting to %s port %d", addrbuf, port);
a8327734 145 logevent(rlogin->frontend, buf);
57356d63 146 sfree(buf);
3ad9d396 147 }
51470298 148 rlogin->s = new_connection(addr, *realhost, port, 1, 0,
e8fa8f62 149 nodelay, (Plug) rlogin, cfg);
6f1e7b78 150 if ((err = sk_socket_error(rlogin->s)) != NULL)
c91409da 151 return err;
152
153 sk_addr_free(addr);
154
155 /*
156 * Send local username, remote username, terminal/speed
157 */
158
159 {
32874aea 160 char z = 0;
161 char *p;
51470298 162 sk_write(rlogin->s, &z, 1);
86916870 163 sk_write(rlogin->s, cfg->localusername,
164 strlen(cfg->localusername));
51470298 165 sk_write(rlogin->s, &z, 1);
86916870 166 sk_write(rlogin->s, cfg->username,
167 strlen(cfg->username));
51470298 168 sk_write(rlogin->s, &z, 1);
86916870 169 sk_write(rlogin->s, cfg->termtype,
170 strlen(cfg->termtype));
51470298 171 sk_write(rlogin->s, "/", 1);
e93ed432 172 for (p = cfg->termspeed; isdigit((unsigned char)*p); p++) continue;
86916870 173 sk_write(rlogin->s, cfg->termspeed, p - cfg->termspeed);
51470298 174 rlogin->bufsize = sk_write(rlogin->s, &z, 1);
c91409da 175 }
176
c91409da 177 return NULL;
178}
179
fabd1805 180static void rlogin_free(void *handle)
181{
182 Rlogin rlogin = (Rlogin) handle;
183
184 if (rlogin->s)
185 sk_close(rlogin->s);
186 sfree(rlogin);
187}
188
c91409da 189/*
86916870 190 * Stub routine (we don't have any need to reconfigure this backend).
191 */
192static void rlogin_reconfig(void *handle, Config *cfg)
193{
194}
195
196/*
c91409da 197 * Called to send data down the rlogin connection.
198 */
51470298 199static int rlogin_send(void *handle, char *buf, int len)
32874aea 200{
51470298 201 Rlogin rlogin = (Rlogin) handle;
202
203 if (rlogin->s == NULL)
b5a460cd 204 return 0;
c91409da 205
51470298 206 rlogin->bufsize = sk_write(rlogin->s, buf, len);
5471d09a 207
51470298 208 return rlogin->bufsize;
5471d09a 209}
210
211/*
212 * Called to query the current socket sendability status.
213 */
51470298 214static int rlogin_sendbuffer(void *handle)
5471d09a 215{
51470298 216 Rlogin rlogin = (Rlogin) handle;
217 return rlogin->bufsize;
c91409da 218}
219
220/*
221 * Called to set the size of the window
222 */
51470298 223static void rlogin_size(void *handle, int width, int height)
32874aea 224{
51470298 225 Rlogin rlogin = (Rlogin) handle;
e418595a 226 char b[12] = { '\xFF', '\xFF', 0x73, 0x73, 0, 0, 0, 0, 0, 0, 0, 0 };
c91409da 227
51470298 228 rlogin->term_width = width;
229 rlogin->term_height = height;
f278d6f8 230
51470298 231 if (rlogin->s == NULL)
cf293dd4 232 return;
f278d6f8 233
51470298 234 b[6] = rlogin->term_width >> 8;
235 b[7] = rlogin->term_width & 0xFF;
236 b[4] = rlogin->term_height >> 8;
237 b[5] = rlogin->term_height & 0xFF;
238 rlogin->bufsize = sk_write(rlogin->s, b, 12);
c91409da 239 return;
240}
241
242/*
243 * Send rlogin special codes.
244 */
51470298 245static void rlogin_special(void *handle, Telnet_Special code)
32874aea 246{
c91409da 247 /* Do nothing! */
248 return;
249}
250
125105d1 251/*
252 * Return a list of the special codes that make sense in this
253 * protocol.
254 */
255static const struct telnet_special *rlogin_get_specials(void *handle)
256{
257 return NULL;
258}
259
51470298 260static Socket rlogin_socket(void *handle)
32874aea 261{
51470298 262 Rlogin rlogin = (Rlogin) handle;
263 return rlogin->s;
32874aea 264}
c91409da 265
51470298 266static int rlogin_sendok(void *handle)
32874aea 267{
68a49acb 268 /* Rlogin rlogin = (Rlogin) handle; */
32874aea 269 return 1;
270}
c91409da 271
51470298 272static void rlogin_unthrottle(void *handle, int backlog)
5471d09a 273{
51470298 274 Rlogin rlogin = (Rlogin) handle;
275 sk_set_frozen(rlogin->s, backlog > RLOGIN_MAX_BACKLOG);
5471d09a 276}
277
51470298 278static int rlogin_ldisc(void *handle, int option)
32874aea 279{
68a49acb 280 /* Rlogin rlogin = (Rlogin) handle; */
0965bee0 281 return 0;
282}
283
b9d7bcad 284static void rlogin_provide_ldisc(void *handle, void *ldisc)
285{
286 /* This is a stub. */
287}
288
a8327734 289static void rlogin_provide_logctx(void *handle, void *logctx)
290{
291 /* This is a stub. */
292}
293
51470298 294static int rlogin_exitcode(void *handle)
d8d6c7e5 295{
0da1a790 296 Rlogin rlogin = (Rlogin) handle;
297 if (rlogin->s != NULL)
298 return -1; /* still connected */
299 else
300 /* If we ever implement RSH, we'll probably need to do this properly */
301 return 0;
d8d6c7e5 302}
303
c91409da 304Backend rlogin_backend = {
305 rlogin_init,
fabd1805 306 rlogin_free,
86916870 307 rlogin_reconfig,
c91409da 308 rlogin_send,
5471d09a 309 rlogin_sendbuffer,
c91409da 310 rlogin_size,
311 rlogin_special,
125105d1 312 rlogin_get_specials,
c91409da 313 rlogin_socket,
d8d6c7e5 314 rlogin_exitcode,
c91409da 315 rlogin_sendok,
0965bee0 316 rlogin_ldisc,
b9d7bcad 317 rlogin_provide_ldisc,
a8327734 318 rlogin_provide_logctx,
5471d09a 319 rlogin_unthrottle,
c91409da 320 1
321};