]> asedeno.scripts.mit.edu Git - PuTTY.git/blob - rlogin.c
Merge branch 'pre-0.65'
[PuTTY.git] / rlogin.c
1 /*
2  * Rlogin backend.
3  */
4
5 #include <stdio.h>
6 #include <stdlib.h>
7 #include <limits.h>
8 #include <ctype.h>
9
10 #include "putty.h"
11
12 #ifndef FALSE
13 #define FALSE 0
14 #endif
15 #ifndef TRUE
16 #define TRUE 1
17 #endif
18
19 #define RLOGIN_MAX_BACKLOG 4096
20
21 typedef struct rlogin_tag {
22     const struct plug_function_table *fn;
23     /* the above field _must_ be first in the structure */
24
25     Socket s;
26     int closed_on_socket_error;
27     int bufsize;
28     int firstbyte;
29     int cansize;
30     int term_width, term_height;
31     void *frontend;
32
33     Conf *conf;
34
35     /* In case we need to read a username from the terminal before starting */
36     prompts_t *prompt;
37 } *Rlogin;
38
39 static void rlogin_size(void *handle, int width, int height);
40
41 static void c_write(Rlogin rlogin, char *buf, int len)
42 {
43     int backlog = from_backend(rlogin->frontend, 0, buf, len);
44     sk_set_frozen(rlogin->s, backlog > RLOGIN_MAX_BACKLOG);
45 }
46
47 static void rlogin_log(Plug plug, int type, SockAddr addr, int port,
48                        const char *error_msg, int error_code)
49 {
50     Rlogin rlogin = (Rlogin) plug;
51     char addrbuf[256], *msg;
52
53     sk_getaddr(addr, addrbuf, lenof(addrbuf));
54
55     if (type == 0)
56         msg = dupprintf("Connecting to %s port %d", addrbuf, port);
57     else
58         msg = dupprintf("Failed to connect to %s: %s", addrbuf, error_msg);
59
60     logevent(rlogin->frontend, msg);
61     sfree(msg);
62 }
63
64 static int rlogin_closing(Plug plug, const char *error_msg, int error_code,
65                           int calling_back)
66 {
67     Rlogin rlogin = (Rlogin) plug;
68
69     /*
70      * We don't implement independent EOF in each direction for Telnet
71      * connections; as soon as we get word that the remote side has
72      * sent us EOF, we wind up the whole connection.
73      */
74
75     if (rlogin->s) {
76         sk_close(rlogin->s);
77         rlogin->s = NULL;
78         if (error_msg)
79             rlogin->closed_on_socket_error = TRUE;
80         notify_remote_exit(rlogin->frontend);
81     }
82     if (error_msg) {
83         /* A socket error has occurred. */
84         logevent(rlogin->frontend, error_msg);
85         connection_fatal(rlogin->frontend, "%s", error_msg);
86     }                                  /* Otherwise, the remote side closed the connection normally. */
87     return 0;
88 }
89
90 static int rlogin_receive(Plug plug, int urgent, char *data, int len)
91 {
92     Rlogin rlogin = (Rlogin) plug;
93     if (urgent == 2) {
94         char c;
95
96         c = *data++;
97         len--;
98         if (c == '\x80') {
99             rlogin->cansize = 1;
100             rlogin_size(rlogin, rlogin->term_width, rlogin->term_height);
101         }
102         /*
103          * We should flush everything (aka Telnet SYNCH) if we see
104          * 0x02, and we should turn off and on _local_ flow control
105          * on 0x10 and 0x20 respectively. I'm not convinced it's
106          * worth it...
107          */
108     } else {
109         /*
110          * Main rlogin protocol. This is really simple: the first
111          * byte is expected to be NULL and is ignored, and the rest
112          * is printed.
113          */
114         if (rlogin->firstbyte) {
115             if (data[0] == '\0') {
116                 data++;
117                 len--;
118             }
119             rlogin->firstbyte = 0;
120         }
121         if (len > 0)
122             c_write(rlogin, data, len);
123     }
124     return 1;
125 }
126
127 static void rlogin_sent(Plug plug, int bufsize)
128 {
129     Rlogin rlogin = (Rlogin) plug;
130     rlogin->bufsize = bufsize;
131 }
132
133 static void rlogin_startup(Rlogin rlogin, const char *ruser)
134 {
135     char z = 0;
136     char *p;
137
138     sk_write(rlogin->s, &z, 1);
139     p = conf_get_str(rlogin->conf, CONF_localusername);
140     sk_write(rlogin->s, p, strlen(p));
141     sk_write(rlogin->s, &z, 1);
142     sk_write(rlogin->s, ruser, strlen(ruser));
143     sk_write(rlogin->s, &z, 1);
144     p = conf_get_str(rlogin->conf, CONF_termtype);
145     sk_write(rlogin->s, p, strlen(p));
146     sk_write(rlogin->s, "/", 1);
147     p = conf_get_str(rlogin->conf, CONF_termspeed);
148     sk_write(rlogin->s, p, strspn(p, "0123456789"));
149     rlogin->bufsize = sk_write(rlogin->s, &z, 1);
150
151     rlogin->prompt = NULL;
152 }
153
154 /*
155  * Called to set up the rlogin connection.
156  * 
157  * Returns an error message, or NULL on success.
158  *
159  * Also places the canonical host name into `realhost'. It must be
160  * freed by the caller.
161  */
162 static const char *rlogin_init(void *frontend_handle, void **backend_handle,
163                                Conf *conf,
164                                const char *host, int port, char **realhost,
165                                int nodelay, int keepalive)
166 {
167     static const struct plug_function_table fn_table = {
168         rlogin_log,
169         rlogin_closing,
170         rlogin_receive,
171         rlogin_sent
172     };
173     SockAddr addr;
174     const char *err;
175     Rlogin rlogin;
176     char *ruser;
177     int addressfamily;
178     char *loghost;
179
180     rlogin = snew(struct rlogin_tag);
181     rlogin->fn = &fn_table;
182     rlogin->s = NULL;
183     rlogin->closed_on_socket_error = FALSE;
184     rlogin->frontend = frontend_handle;
185     rlogin->term_width = conf_get_int(conf, CONF_width);
186     rlogin->term_height = conf_get_int(conf, CONF_height);
187     rlogin->firstbyte = 1;
188     rlogin->cansize = 0;
189     rlogin->prompt = NULL;
190     rlogin->conf = conf_copy(conf);
191     *backend_handle = rlogin;
192
193     addressfamily = conf_get_int(conf, CONF_addressfamily);
194     /*
195      * Try to find host.
196      */
197     {
198         char *buf;
199         buf = dupprintf("Looking up host \"%s\"%s", host,
200                         (addressfamily == ADDRTYPE_IPV4 ? " (IPv4)" :
201                          (addressfamily == ADDRTYPE_IPV6 ? " (IPv6)" :
202                           "")));
203         logevent(rlogin->frontend, buf);
204         sfree(buf);
205     }
206     addr = name_lookup(host, port, realhost, conf, addressfamily);
207     if ((err = sk_addr_error(addr)) != NULL) {
208         sk_addr_free(addr);
209         return err;
210     }
211
212     if (port < 0)
213         port = 513;                    /* default rlogin port */
214
215     /*
216      * Open socket.
217      */
218     rlogin->s = new_connection(addr, *realhost, port, 1, 0,
219                                nodelay, keepalive, (Plug) rlogin, conf);
220     if ((err = sk_socket_error(rlogin->s)) != NULL)
221         return err;
222
223     loghost = conf_get_str(conf, CONF_loghost);
224     if (*loghost) {
225         char *colon;
226
227         sfree(*realhost);
228         *realhost = dupstr(loghost);
229
230         colon = host_strrchr(*realhost, ':');
231         if (colon)
232             *colon++ = '\0';
233     }
234
235     /*
236      * Send local username, remote username, terminal type and
237      * terminal speed - unless we don't have the remote username yet,
238      * in which case we prompt for it and may end up deferring doing
239      * anything else until the local prompt mechanism returns.
240      */
241     if ((ruser = get_remote_username(conf)) != NULL) {
242         rlogin_startup(rlogin, ruser);
243         sfree(ruser);
244     } else {
245         int ret;
246
247         rlogin->prompt = new_prompts(rlogin->frontend);
248         rlogin->prompt->to_server = TRUE;
249         rlogin->prompt->name = dupstr("Rlogin login name");
250         add_prompt(rlogin->prompt, dupstr("rlogin username: "), TRUE); 
251         ret = get_userpass_input(rlogin->prompt, NULL, 0);
252         if (ret >= 0) {
253             rlogin_startup(rlogin, rlogin->prompt->prompts[0]->result);
254         }
255     }
256
257     return NULL;
258 }
259
260 static void rlogin_free(void *handle)
261 {
262     Rlogin rlogin = (Rlogin) handle;
263
264     if (rlogin->prompt)
265         free_prompts(rlogin->prompt);
266     if (rlogin->s)
267         sk_close(rlogin->s);
268     conf_free(rlogin->conf);
269     sfree(rlogin);
270 }
271
272 /*
273  * Stub routine (we don't have any need to reconfigure this backend).
274  */
275 static void rlogin_reconfig(void *handle, Conf *conf)
276 {
277 }
278
279 /*
280  * Called to send data down the rlogin connection.
281  */
282 static int rlogin_send(void *handle, const char *buf, int len)
283 {
284     Rlogin rlogin = (Rlogin) handle;
285
286     if (rlogin->s == NULL)
287         return 0;
288
289     if (rlogin->prompt) {
290         /*
291          * We're still prompting for a username, and aren't talking
292          * directly to the network connection yet.
293          */
294         int ret = get_userpass_input(rlogin->prompt,
295                                      (unsigned char *)buf, len);
296         if (ret >= 0) {
297             rlogin_startup(rlogin, rlogin->prompt->prompts[0]->result);
298             /* that nulls out rlogin->prompt, so then we'll start sending
299              * data down the wire in the obvious way */
300         }
301     } else {
302         rlogin->bufsize = sk_write(rlogin->s, buf, len);
303     }
304
305     return rlogin->bufsize;
306 }
307
308 /*
309  * Called to query the current socket sendability status.
310  */
311 static int rlogin_sendbuffer(void *handle)
312 {
313     Rlogin rlogin = (Rlogin) handle;
314     return rlogin->bufsize;
315 }
316
317 /*
318  * Called to set the size of the window
319  */
320 static void rlogin_size(void *handle, int width, int height)
321 {
322     Rlogin rlogin = (Rlogin) handle;
323     char b[12] = { '\xFF', '\xFF', 0x73, 0x73, 0, 0, 0, 0, 0, 0, 0, 0 };
324
325     rlogin->term_width = width;
326     rlogin->term_height = height;
327
328     if (rlogin->s == NULL || !rlogin->cansize)
329         return;
330
331     b[6] = rlogin->term_width >> 8;
332     b[7] = rlogin->term_width & 0xFF;
333     b[4] = rlogin->term_height >> 8;
334     b[5] = rlogin->term_height & 0xFF;
335     rlogin->bufsize = sk_write(rlogin->s, b, 12);
336     return;
337 }
338
339 /*
340  * Send rlogin special codes.
341  */
342 static void rlogin_special(void *handle, Telnet_Special code)
343 {
344     /* Do nothing! */
345     return;
346 }
347
348 /*
349  * Return a list of the special codes that make sense in this
350  * protocol.
351  */
352 static const struct telnet_special *rlogin_get_specials(void *handle)
353 {
354     return NULL;
355 }
356
357 static int rlogin_connected(void *handle)
358 {
359     Rlogin rlogin = (Rlogin) handle;
360     return rlogin->s != NULL;
361 }
362
363 static int rlogin_sendok(void *handle)
364 {
365     /* Rlogin rlogin = (Rlogin) handle; */
366     return 1;
367 }
368
369 static void rlogin_unthrottle(void *handle, int backlog)
370 {
371     Rlogin rlogin = (Rlogin) handle;
372     sk_set_frozen(rlogin->s, backlog > RLOGIN_MAX_BACKLOG);
373 }
374
375 static int rlogin_ldisc(void *handle, int option)
376 {
377     /* Rlogin rlogin = (Rlogin) handle; */
378     return 0;
379 }
380
381 static void rlogin_provide_ldisc(void *handle, void *ldisc)
382 {
383     /* This is a stub. */
384 }
385
386 static void rlogin_provide_logctx(void *handle, void *logctx)
387 {
388     /* This is a stub. */
389 }
390
391 static int rlogin_exitcode(void *handle)
392 {
393     Rlogin rlogin = (Rlogin) handle;
394     if (rlogin->s != NULL)
395         return -1;                     /* still connected */
396     else if (rlogin->closed_on_socket_error)
397         return INT_MAX;     /* a socket error counts as an unclean exit */
398     else
399         /* If we ever implement RSH, we'll probably need to do this properly */
400         return 0;
401 }
402
403 /*
404  * cfg_info for rlogin does nothing at all.
405  */
406 static int rlogin_cfg_info(void *handle)
407 {
408     return 0;
409 }
410
411 Backend rlogin_backend = {
412     rlogin_init,
413     rlogin_free,
414     rlogin_reconfig,
415     rlogin_send,
416     rlogin_sendbuffer,
417     rlogin_size,
418     rlogin_special,
419     rlogin_get_specials,
420     rlogin_connected,
421     rlogin_exitcode,
422     rlogin_sendok,
423     rlogin_ldisc,
424     rlogin_provide_ldisc,
425     rlogin_provide_logctx,
426     rlogin_unthrottle,
427     rlogin_cfg_info,
428     "rlogin",
429     PROT_RLOGIN,
430     513
431 };