blob: 905379b075455741115cd278fb9977605e6785bf [file] [log] [blame]
Damien Miller5428f641999-11-25 11:54:57 +11001/*
Ben Lindstrom44697232001-07-04 03:32:30 +00002 * Copyright (c) 1999, 2000, 2001 Markus Friedl. All rights reserved.
Damien Miller5428f641999-11-25 11:54:57 +11003 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
Damien Miller5428f641999-11-25 11:54:57 +110012 *
13 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
14 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
15 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
16 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
17 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
18 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
19 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
20 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 */
24
Damien Millerd4a8b7e1999-10-27 13:42:43 +100025#include "includes.h"
Damien Miller66ac6a42002-01-22 23:22:44 +110026RCSID("$OpenBSD: nchan.c,v 1.36 2002/01/10 12:47:59 markus Exp $");
Damien Millerd4a8b7e1999-10-27 13:42:43 +100027
Ben Lindstrom226cfa02001-01-22 05:34:40 +000028#include "ssh1.h"
29#include "ssh2.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100030#include "buffer.h"
31#include "packet.h"
32#include "channels.h"
Damien Miller33b13562000-04-04 14:38:59 +100033#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000034#include "log.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100035
Ben Lindstrom3b670d02001-06-09 00:57:39 +000036/*
37 * SSH Protocol 1.5 aka New Channel Protocol
38 * Thanks to Martina, Axel and everyone who left Erlangen, leaving me bored.
39 * Written by Markus Friedl in October 1999
40 *
41 * Protocol versions 1.3 and 1.5 differ in the handshake protocol used for the
42 * tear down of channels:
43 *
44 * 1.3: strict request-ack-protocol:
45 * CLOSE ->
46 * <- CLOSE_CONFIRM
47 *
48 * 1.5: uses variations of:
49 * IEOF ->
50 * <- OCLOSE
51 * <- IEOF
52 * OCLOSE ->
53 * i.e. both sides have to close the channel
54 *
55 * 2.0: the EOF messages are optional
56 *
57 * See the debugging output from 'ssh -v' and 'sshd -d' of
58 * ssh-1.2.27 as an example.
59 *
60 */
Kevin Stevesc3422eb2001-09-20 19:33:33 +000061
Damien Miller33b13562000-04-04 14:38:59 +100062/* functions manipulating channel states */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100063/*
Damien Miller95def091999-11-25 00:26:21 +110064 * EVENTS update channel input/output states execute ACTIONS
Damien Millerd4a8b7e1999-10-27 13:42:43 +100065 */
66/* events concerning the INPUT from socket for channel (istate) */
Damien Miller33b13562000-04-04 14:38:59 +100067chan_event_fn *chan_rcvd_oclose = NULL;
68chan_event_fn *chan_read_failed = NULL;
69chan_event_fn *chan_ibuf_empty = NULL;
70/* events concerning the OUTPUT from channel for socket (ostate) */
71chan_event_fn *chan_rcvd_ieof = NULL;
72chan_event_fn *chan_write_failed = NULL;
73chan_event_fn *chan_obuf_empty = NULL;
74/*
75 * ACTIONS: should never update the channel states
76 */
Ben Lindstrombba81212001-06-25 05:01:22 +000077static void chan_send_ieof1(Channel *);
78static void chan_send_oclose1(Channel *);
79static void chan_send_close2(Channel *);
80static void chan_send_eof2(Channel *);
Damien Miller33b13562000-04-04 14:38:59 +100081
Damien Miller33b13562000-04-04 14:38:59 +100082/* helper */
Ben Lindstrombba81212001-06-25 05:01:22 +000083static void chan_shutdown_write(Channel *);
84static void chan_shutdown_read(Channel *);
Damien Miller33b13562000-04-04 14:38:59 +100085
86/*
87 * SSH1 specific implementation of event functions
88 */
89
90static void
91chan_rcvd_oclose1(Channel *c)
Damien Miller95def091999-11-25 00:26:21 +110092{
Damien Miller33b13562000-04-04 14:38:59 +100093 debug("channel %d: rcvd oclose", c->self);
Damien Miller95def091999-11-25 00:26:21 +110094 switch (c->istate) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +100095 case CHAN_INPUT_WAIT_OCLOSE:
Damien Miller33b13562000-04-04 14:38:59 +100096 debug("channel %d: input wait_oclose -> closed", c->self);
Damien Miller95def091999-11-25 00:26:21 +110097 c->istate = CHAN_INPUT_CLOSED;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100098 break;
99 case CHAN_INPUT_OPEN:
Damien Miller33b13562000-04-04 14:38:59 +1000100 debug("channel %d: input open -> closed", c->self);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000101 chan_shutdown_read(c);
Damien Miller33b13562000-04-04 14:38:59 +1000102 chan_send_ieof1(c);
Damien Miller95def091999-11-25 00:26:21 +1100103 c->istate = CHAN_INPUT_CLOSED;
Damien Miller34132e52000-01-14 15:45:46 +1100104 break;
105 case CHAN_INPUT_WAIT_DRAIN:
106 /* both local read_failed and remote write_failed */
Damien Miller33b13562000-04-04 14:38:59 +1000107 log("channel %d: input drain -> closed", c->self);
108 chan_send_ieof1(c);
Damien Miller34132e52000-01-14 15:45:46 +1100109 c->istate = CHAN_INPUT_CLOSED;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000110 break;
111 default:
Ben Lindstrom3b670d02001-06-09 00:57:39 +0000112 error("channel %d: protocol error: rcvd_oclose for istate %d",
Damien Miller33b13562000-04-04 14:38:59 +1000113 c->self, c->istate);
Damien Miller34132e52000-01-14 15:45:46 +1100114 return;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000115 }
116}
Damien Miller33b13562000-04-04 14:38:59 +1000117static void
118chan_read_failed_12(Channel *c)
Damien Miller95def091999-11-25 00:26:21 +1100119{
Damien Miller33b13562000-04-04 14:38:59 +1000120 debug("channel %d: read failed", c->self);
Damien Miller95def091999-11-25 00:26:21 +1100121 switch (c->istate) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000122 case CHAN_INPUT_OPEN:
Damien Miller33b13562000-04-04 14:38:59 +1000123 debug("channel %d: input open -> drain", c->self);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000124 chan_shutdown_read(c);
Damien Miller95def091999-11-25 00:26:21 +1100125 c->istate = CHAN_INPUT_WAIT_DRAIN;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000126 break;
127 default:
Ben Lindstrom3b670d02001-06-09 00:57:39 +0000128 error("channel %d: chan_read_failed for istate %d",
Damien Miller33b13562000-04-04 14:38:59 +1000129 c->self, c->istate);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000130 break;
131 }
132}
Damien Miller33b13562000-04-04 14:38:59 +1000133static void
134chan_ibuf_empty1(Channel *c)
Damien Miller95def091999-11-25 00:26:21 +1100135{
Damien Miller33b13562000-04-04 14:38:59 +1000136 debug("channel %d: ibuf empty", c->self);
Damien Miller95def091999-11-25 00:26:21 +1100137 if (buffer_len(&c->input)) {
Ben Lindstrom3b670d02001-06-09 00:57:39 +0000138 error("channel %d: chan_ibuf_empty for non empty buffer",
Damien Miller33b13562000-04-04 14:38:59 +1000139 c->self);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000140 return;
141 }
Damien Miller95def091999-11-25 00:26:21 +1100142 switch (c->istate) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000143 case CHAN_INPUT_WAIT_DRAIN:
Damien Miller33b13562000-04-04 14:38:59 +1000144 debug("channel %d: input drain -> wait_oclose", c->self);
145 chan_send_ieof1(c);
Damien Miller95def091999-11-25 00:26:21 +1100146 c->istate = CHAN_INPUT_WAIT_OCLOSE;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000147 break;
148 default:
Ben Lindstrom3b670d02001-06-09 00:57:39 +0000149 error("channel %d: chan_ibuf_empty for istate %d",
Damien Miller33b13562000-04-04 14:38:59 +1000150 c->self, c->istate);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000151 break;
152 }
153}
Damien Miller33b13562000-04-04 14:38:59 +1000154static void
155chan_rcvd_ieof1(Channel *c)
Damien Miller95def091999-11-25 00:26:21 +1100156{
Damien Miller33b13562000-04-04 14:38:59 +1000157 debug("channel %d: rcvd ieof", c->self);
Damien Miller95def091999-11-25 00:26:21 +1100158 switch (c->ostate) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000159 case CHAN_OUTPUT_OPEN:
Damien Miller33b13562000-04-04 14:38:59 +1000160 debug("channel %d: output open -> drain", c->self);
Damien Miller95def091999-11-25 00:26:21 +1100161 c->ostate = CHAN_OUTPUT_WAIT_DRAIN;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000162 break;
163 case CHAN_OUTPUT_WAIT_IEOF:
Damien Miller33b13562000-04-04 14:38:59 +1000164 debug("channel %d: output wait_ieof -> closed", c->self);
Damien Miller95def091999-11-25 00:26:21 +1100165 c->ostate = CHAN_OUTPUT_CLOSED;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000166 break;
167 default:
Ben Lindstrom3b670d02001-06-09 00:57:39 +0000168 error("channel %d: protocol error: rcvd_ieof for ostate %d",
Damien Miller33b13562000-04-04 14:38:59 +1000169 c->self, c->ostate);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000170 break;
171 }
172}
Damien Miller33b13562000-04-04 14:38:59 +1000173static void
174chan_write_failed1(Channel *c)
Damien Miller95def091999-11-25 00:26:21 +1100175{
Damien Miller33b13562000-04-04 14:38:59 +1000176 debug("channel %d: write failed", c->self);
Damien Miller95def091999-11-25 00:26:21 +1100177 switch (c->ostate) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000178 case CHAN_OUTPUT_OPEN:
Damien Miller33b13562000-04-04 14:38:59 +1000179 debug("channel %d: output open -> wait_ieof", c->self);
180 chan_send_oclose1(c);
Damien Miller95def091999-11-25 00:26:21 +1100181 c->ostate = CHAN_OUTPUT_WAIT_IEOF;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000182 break;
183 case CHAN_OUTPUT_WAIT_DRAIN:
Damien Miller33b13562000-04-04 14:38:59 +1000184 debug("channel %d: output wait_drain -> closed", c->self);
185 chan_send_oclose1(c);
Damien Miller95def091999-11-25 00:26:21 +1100186 c->ostate = CHAN_OUTPUT_CLOSED;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000187 break;
188 default:
Ben Lindstrom3b670d02001-06-09 00:57:39 +0000189 error("channel %d: chan_write_failed for ostate %d",
Damien Miller33b13562000-04-04 14:38:59 +1000190 c->self, c->ostate);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000191 break;
192 }
193}
Damien Miller33b13562000-04-04 14:38:59 +1000194static void
195chan_obuf_empty1(Channel *c)
Damien Miller95def091999-11-25 00:26:21 +1100196{
Damien Miller33b13562000-04-04 14:38:59 +1000197 debug("channel %d: obuf empty", c->self);
Damien Miller95def091999-11-25 00:26:21 +1100198 if (buffer_len(&c->output)) {
Ben Lindstrom3b670d02001-06-09 00:57:39 +0000199 error("channel %d: chan_obuf_empty for non empty buffer",
Damien Miller33b13562000-04-04 14:38:59 +1000200 c->self);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000201 return;
202 }
Damien Miller95def091999-11-25 00:26:21 +1100203 switch (c->ostate) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000204 case CHAN_OUTPUT_WAIT_DRAIN:
Damien Miller33b13562000-04-04 14:38:59 +1000205 debug("channel %d: output drain -> closed", c->self);
206 chan_send_oclose1(c);
Damien Miller95def091999-11-25 00:26:21 +1100207 c->ostate = CHAN_OUTPUT_CLOSED;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000208 break;
209 default:
Ben Lindstrom3b670d02001-06-09 00:57:39 +0000210 error("channel %d: internal error: obuf_empty for ostate %d",
Damien Miller33b13562000-04-04 14:38:59 +1000211 c->self, c->ostate);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000212 break;
213 }
214}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000215static void
Damien Miller33b13562000-04-04 14:38:59 +1000216chan_send_ieof1(Channel *c)
Damien Miller95def091999-11-25 00:26:21 +1100217{
Damien Miller33b13562000-04-04 14:38:59 +1000218 debug("channel %d: send ieof", c->self);
Damien Miller95def091999-11-25 00:26:21 +1100219 switch (c->istate) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000220 case CHAN_INPUT_OPEN:
221 case CHAN_INPUT_WAIT_DRAIN:
222 packet_start(SSH_MSG_CHANNEL_INPUT_EOF);
223 packet_put_int(c->remote_id);
224 packet_send();
225 break;
226 default:
Ben Lindstrom3b670d02001-06-09 00:57:39 +0000227 error("channel %d: cannot send ieof for istate %d",
Damien Miller33b13562000-04-04 14:38:59 +1000228 c->self, c->istate);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000229 break;
230 }
231}
232static void
Damien Miller33b13562000-04-04 14:38:59 +1000233chan_send_oclose1(Channel *c)
Damien Miller95def091999-11-25 00:26:21 +1100234{
Damien Miller33b13562000-04-04 14:38:59 +1000235 debug("channel %d: send oclose", c->self);
Damien Miller95def091999-11-25 00:26:21 +1100236 switch (c->ostate) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000237 case CHAN_OUTPUT_OPEN:
238 case CHAN_OUTPUT_WAIT_DRAIN:
239 chan_shutdown_write(c);
Damien Miller76765c02002-01-22 23:21:15 +1100240 buffer_clear(&c->output);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000241 packet_start(SSH_MSG_CHANNEL_OUTPUT_CLOSE);
242 packet_put_int(c->remote_id);
243 packet_send();
244 break;
245 default:
Ben Lindstrom3b670d02001-06-09 00:57:39 +0000246 error("channel %d: cannot send oclose for ostate %d",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100247 c->self, c->ostate);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000248 break;
249 }
250}
Damien Miller33b13562000-04-04 14:38:59 +1000251
252/*
253 * the same for SSH2
254 */
255static void
256chan_rcvd_oclose2(Channel *c)
257{
258 debug("channel %d: rcvd close", c->self);
259 if (c->flags & CHAN_CLOSE_RCVD)
260 error("channel %d: protocol error: close rcvd twice", c->self);
261 c->flags |= CHAN_CLOSE_RCVD;
262 if (c->type == SSH_CHANNEL_LARVAL) {
263 /* tear down larval channels immediately */
264 c->ostate = CHAN_OUTPUT_CLOSED;
265 c->istate = CHAN_INPUT_CLOSED;
266 return;
267 }
268 switch (c->ostate) {
269 case CHAN_OUTPUT_OPEN:
Ben Lindstrom3b670d02001-06-09 00:57:39 +0000270 /*
271 * wait until a data from the channel is consumed if a CLOSE
272 * is received
273 */
Damien Miller33b13562000-04-04 14:38:59 +1000274 debug("channel %d: output open -> drain", c->self);
275 c->ostate = CHAN_OUTPUT_WAIT_DRAIN;
276 break;
277 }
278 switch (c->istate) {
279 case CHAN_INPUT_OPEN:
280 debug("channel %d: input open -> closed", c->self);
281 chan_shutdown_read(c);
282 break;
283 case CHAN_INPUT_WAIT_DRAIN:
284 debug("channel %d: input drain -> closed", c->self);
285 chan_send_eof2(c);
286 break;
287 }
288 c->istate = CHAN_INPUT_CLOSED;
289}
290static void
291chan_ibuf_empty2(Channel *c)
292{
293 debug("channel %d: ibuf empty", c->self);
294 if (buffer_len(&c->input)) {
Ben Lindstrom3b670d02001-06-09 00:57:39 +0000295 error("channel %d: chan_ibuf_empty for non empty buffer",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100296 c->self);
Damien Miller33b13562000-04-04 14:38:59 +1000297 return;
298 }
299 switch (c->istate) {
300 case CHAN_INPUT_WAIT_DRAIN:
301 debug("channel %d: input drain -> closed", c->self);
302 if (!(c->flags & CHAN_CLOSE_SENT))
303 chan_send_eof2(c);
304 c->istate = CHAN_INPUT_CLOSED;
305 break;
306 default:
Ben Lindstrom3b670d02001-06-09 00:57:39 +0000307 error("channel %d: chan_ibuf_empty for istate %d",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100308 c->self, c->istate);
Damien Miller33b13562000-04-04 14:38:59 +1000309 break;
310 }
311}
312static void
313chan_rcvd_ieof2(Channel *c)
314{
315 debug("channel %d: rcvd eof", c->self);
316 if (c->ostate == CHAN_OUTPUT_OPEN) {
317 debug("channel %d: output open -> drain", c->self);
318 c->ostate = CHAN_OUTPUT_WAIT_DRAIN;
319 }
320}
321static void
322chan_write_failed2(Channel *c)
323{
324 debug("channel %d: write failed", c->self);
325 switch (c->ostate) {
326 case CHAN_OUTPUT_OPEN:
327 debug("channel %d: output open -> closed", c->self);
Damien Millere247cc42000-05-07 12:03:14 +1000328 chan_shutdown_write(c); /* ?? */
Damien Miller33b13562000-04-04 14:38:59 +1000329 c->ostate = CHAN_OUTPUT_CLOSED;
330 break;
331 case CHAN_OUTPUT_WAIT_DRAIN:
332 debug("channel %d: output drain -> closed", c->self);
333 chan_shutdown_write(c);
334 c->ostate = CHAN_OUTPUT_CLOSED;
335 break;
336 default:
Ben Lindstrom3b670d02001-06-09 00:57:39 +0000337 error("channel %d: chan_write_failed for ostate %d",
Damien Miller33b13562000-04-04 14:38:59 +1000338 c->self, c->ostate);
339 break;
340 }
341}
342static void
343chan_obuf_empty2(Channel *c)
344{
345 debug("channel %d: obuf empty", c->self);
346 if (buffer_len(&c->output)) {
Ben Lindstrom3b670d02001-06-09 00:57:39 +0000347 error("channel %d: chan_obuf_empty for non empty buffer",
Damien Miller33b13562000-04-04 14:38:59 +1000348 c->self);
349 return;
350 }
351 switch (c->ostate) {
352 case CHAN_OUTPUT_WAIT_DRAIN:
353 debug("channel %d: output drain -> closed", c->self);
354 chan_shutdown_write(c);
355 c->ostate = CHAN_OUTPUT_CLOSED;
356 break;
357 default:
Ben Lindstrom3b670d02001-06-09 00:57:39 +0000358 error("channel %d: chan_obuf_empty for ostate %d",
Damien Miller33b13562000-04-04 14:38:59 +1000359 c->self, c->ostate);
360 break;
361 }
362}
363static void
364chan_send_eof2(Channel *c)
365{
366 debug("channel %d: send eof", c->self);
367 switch (c->istate) {
368 case CHAN_INPUT_WAIT_DRAIN:
369 packet_start(SSH2_MSG_CHANNEL_EOF);
370 packet_put_int(c->remote_id);
371 packet_send();
372 break;
373 default:
Ben Lindstrom3b670d02001-06-09 00:57:39 +0000374 error("channel %d: cannot send eof for istate %d",
Damien Miller33b13562000-04-04 14:38:59 +1000375 c->self, c->istate);
376 break;
377 }
378}
379static void
380chan_send_close2(Channel *c)
381{
382 debug("channel %d: send close", c->self);
383 if (c->ostate != CHAN_OUTPUT_CLOSED ||
384 c->istate != CHAN_INPUT_CLOSED) {
Ben Lindstrom3b670d02001-06-09 00:57:39 +0000385 error("channel %d: cannot send close for istate/ostate %d/%d",
Damien Miller33b13562000-04-04 14:38:59 +1000386 c->self, c->istate, c->ostate);
387 } else if (c->flags & CHAN_CLOSE_SENT) {
Ben Lindstrom3b670d02001-06-09 00:57:39 +0000388 error("channel %d: already sent close", c->self);
Damien Miller33b13562000-04-04 14:38:59 +1000389 } else {
390 packet_start(SSH2_MSG_CHANNEL_CLOSE);
391 packet_put_int(c->remote_id);
392 packet_send();
393 c->flags |= CHAN_CLOSE_SENT;
394 }
395}
Ben Lindstrom7fbd4552001-03-05 06:16:11 +0000396
397/* shared */
398
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000399void
400chan_mark_dead(Channel *c)
401{
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000402 c->type = SSH_CHANNEL_ZOMBIE;
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000403}
404
Ben Lindstrom7fbd4552001-03-05 06:16:11 +0000405int
Damien Miller3ec27592001-10-12 11:35:04 +1000406chan_is_dead(Channel *c, int send)
Damien Miller33b13562000-04-04 14:38:59 +1000407{
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000408 if (c->type == SSH_CHANNEL_ZOMBIE) {
409 debug("channel %d: zombie", c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +0000410 return 1;
Ben Lindstromc0dee1a2001-06-05 20:52:50 +0000411 }
Ben Lindstrom7fbd4552001-03-05 06:16:11 +0000412 if (c->istate != CHAN_INPUT_CLOSED || c->ostate != CHAN_OUTPUT_CLOSED)
413 return 0;
414 if (!compat20) {
415 debug("channel %d: is dead", c->self);
416 return 1;
417 }
418 /*
419 * we have to delay the close message if the efd (for stderr) is
420 * still active
421 */
422 if (((c->extended_usage != CHAN_EXTENDED_IGNORE) &&
423 buffer_len(&c->extended) > 0)
424#if 0
425 || ((c->extended_usage == CHAN_EXTENDED_READ) &&
426 c->efd != -1)
427#endif
428 ) {
429 debug2("channel %d: active efd: %d len %d type %s",
430 c->self, c->efd, buffer_len(&c->extended),
431 c->extended_usage==CHAN_EXTENDED_READ ?
Damien Miller9f0f5c62001-12-21 14:45:46 +1100432 "read": "write");
Ben Lindstrom7fbd4552001-03-05 06:16:11 +0000433 } else {
Damien Miller33b13562000-04-04 14:38:59 +1000434 if (!(c->flags & CHAN_CLOSE_SENT)) {
Damien Miller3ec27592001-10-12 11:35:04 +1000435 if (send) {
436 chan_send_close2(c);
437 } else {
438 /* channel would be dead if we sent a close */
439 if (c->flags & CHAN_CLOSE_RCVD) {
440 debug("channel %d: almost dead",
441 c->self);
442 return 1;
443 }
444 }
Damien Miller33b13562000-04-04 14:38:59 +1000445 }
Damien Miller4af51302000-04-16 11:18:38 +1000446 if ((c->flags & CHAN_CLOSE_SENT) &&
Damien Miller33b13562000-04-04 14:38:59 +1000447 (c->flags & CHAN_CLOSE_RCVD)) {
Ben Lindstrom7fbd4552001-03-05 06:16:11 +0000448 debug("channel %d: is dead", c->self);
449 return 1;
Damien Miller4af51302000-04-16 11:18:38 +1000450 }
Damien Miller33b13562000-04-04 14:38:59 +1000451 }
Ben Lindstrom7fbd4552001-03-05 06:16:11 +0000452 return 0;
Damien Miller33b13562000-04-04 14:38:59 +1000453}
454
Damien Miller33b13562000-04-04 14:38:59 +1000455void
456chan_init_iostates(Channel *c)
457{
458 c->ostate = CHAN_OUTPUT_OPEN;
459 c->istate = CHAN_INPUT_OPEN;
460 c->flags = 0;
461}
462
463/* init */
464void
465chan_init(void)
466{
467 if (compat20) {
468 chan_rcvd_oclose = chan_rcvd_oclose2;
469 chan_read_failed = chan_read_failed_12;
470 chan_ibuf_empty = chan_ibuf_empty2;
471
472 chan_rcvd_ieof = chan_rcvd_ieof2;
473 chan_write_failed = chan_write_failed2;
474 chan_obuf_empty = chan_obuf_empty2;
Damien Miller33b13562000-04-04 14:38:59 +1000475 } else {
476 chan_rcvd_oclose = chan_rcvd_oclose1;
477 chan_read_failed = chan_read_failed_12;
478 chan_ibuf_empty = chan_ibuf_empty1;
479
480 chan_rcvd_ieof = chan_rcvd_ieof1;
481 chan_write_failed = chan_write_failed1;
482 chan_obuf_empty = chan_obuf_empty1;
Damien Miller33b13562000-04-04 14:38:59 +1000483 }
484}
Damien Miller95def091999-11-25 00:26:21 +1100485
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000486/* helper */
487static void
Damien Miller95def091999-11-25 00:26:21 +1100488chan_shutdown_write(Channel *c)
489{
Damien Miller76765c02002-01-22 23:21:15 +1100490 buffer_clear(&c->output);
Damien Miller33b13562000-04-04 14:38:59 +1000491 if (compat20 && c->type == SSH_CHANNEL_LARVAL)
492 return;
Damien Miller5428f641999-11-25 11:54:57 +1100493 /* shutdown failure is allowed if write failed already */
Damien Miller33b13562000-04-04 14:38:59 +1000494 debug("channel %d: close_write", c->self);
495 if (c->sock != -1) {
496 if (shutdown(c->sock, SHUT_WR) < 0)
Ben Lindstrom3b670d02001-06-09 00:57:39 +0000497 debug("channel %d: chan_shutdown_write: "
498 "shutdown() failed for fd%d: %.100s",
Damien Miller33b13562000-04-04 14:38:59 +1000499 c->self, c->sock, strerror(errno));
500 } else {
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000501 if (channel_close_fd(&c->wfd) < 0)
Ben Lindstrom3b670d02001-06-09 00:57:39 +0000502 log("channel %d: chan_shutdown_write: "
503 "close() failed for fd%d: %.100s",
Damien Miller33b13562000-04-04 14:38:59 +1000504 c->self, c->wfd, strerror(errno));
Damien Miller33b13562000-04-04 14:38:59 +1000505 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000506}
507static void
Damien Miller95def091999-11-25 00:26:21 +1100508chan_shutdown_read(Channel *c)
509{
Damien Miller33b13562000-04-04 14:38:59 +1000510 if (compat20 && c->type == SSH_CHANNEL_LARVAL)
511 return;
512 debug("channel %d: close_read", c->self);
513 if (c->sock != -1) {
Kevin Stevesef4eea92001-02-05 12:42:17 +0000514 /*
Damien Miller0f091bd2000-08-07 15:47:48 +1000515 * shutdown(sock, SHUT_READ) may return ENOTCONN if the
516 * write side has been closed already. (bug on Linux)
Kevin Steves871f6622001-09-18 16:08:24 +0000517 * HP-UX may return ENOTCONN also.
Damien Miller0f091bd2000-08-07 15:47:48 +1000518 */
519 if (shutdown(c->sock, SHUT_RD) < 0
Kevin Steves871f6622001-09-18 16:08:24 +0000520 && errno != ENOTCONN)
Ben Lindstrom3b670d02001-06-09 00:57:39 +0000521 error("channel %d: chan_shutdown_read: "
522 "shutdown() failed for fd%d [i%d o%d]: %.100s",
523 c->self, c->sock, c->istate, c->ostate,
Kevin Stevesc3422eb2001-09-20 19:33:33 +0000524 strerror(errno));
Damien Miller33b13562000-04-04 14:38:59 +1000525 } else {
Ben Lindstrom16d29d52001-07-18 16:01:46 +0000526 if (channel_close_fd(&c->rfd) < 0)
Ben Lindstrom3b670d02001-06-09 00:57:39 +0000527 log("channel %d: chan_shutdown_read: "
528 "close() failed for fd%d: %.100s",
Damien Miller33b13562000-04-04 14:38:59 +1000529 c->self, c->rfd, strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000530 }
531}