freebsd-dev/dispatch.c

105 lines
2.8 KiB
C
Raw Normal View History

2009-02-24 18:49:27 +00:00
/* $OpenBSD: dispatch.c,v 1.22 2008/10/31 15:05:34 stevesk Exp $ */
2000-05-15 04:37:24 +00:00
/*
* Copyright (c) 2000 Markus Friedl. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
2006-09-30 13:29:51 +00:00
2000-05-15 04:37:24 +00:00
#include "includes.h"
2006-09-30 13:29:51 +00:00
#include <sys/types.h>
#include <signal.h>
#include <stdarg.h>
#include "ssh1.h"
#include "ssh2.h"
#include "log.h"
2000-05-15 04:37:24 +00:00
#include "dispatch.h"
#include "packet.h"
#include "compat.h"
2000-05-15 04:37:24 +00:00
#define DISPATCH_MAX 255
dispatch_fn *dispatch[DISPATCH_MAX];
void
2002-03-18 09:55:03 +00:00
dispatch_protocol_error(int type, u_int32_t seq, void *ctxt)
2000-05-15 04:37:24 +00:00
{
2004-01-07 11:10:17 +00:00
logit("dispatch_protocol_error: type %d seq %u", type, seq);
2002-03-18 09:55:03 +00:00
if (!compat20)
fatal("protocol error");
packet_start(SSH2_MSG_UNIMPLEMENTED);
packet_put_int(seq);
packet_send();
packet_write_wait();
}
void
dispatch_protocol_ignore(int type, u_int32_t seq, void *ctxt)
{
2004-01-07 11:10:17 +00:00
logit("dispatch_protocol_ignore: type %d seq %u", type, seq);
2000-05-15 04:37:24 +00:00
}
void
dispatch_init(dispatch_fn *dflt)
{
2002-03-18 09:55:03 +00:00
u_int i;
2000-05-15 04:37:24 +00:00
for (i = 0; i < DISPATCH_MAX; i++)
dispatch[i] = dflt;
}
void
2002-03-18 09:55:03 +00:00
dispatch_range(u_int from, u_int to, dispatch_fn *fn)
{
u_int i;
for (i = from; i <= to; i++) {
if (i >= DISPATCH_MAX)
break;
dispatch[i] = fn;
}
}
void
2000-05-15 04:37:24 +00:00
dispatch_set(int type, dispatch_fn *fn)
{
dispatch[type] = fn;
}
void
2006-09-30 13:29:51 +00:00
dispatch_run(int mode, volatile sig_atomic_t *done, void *ctxt)
2000-05-15 04:37:24 +00:00
{
for (;;) {
int type;
2002-03-18 09:55:03 +00:00
u_int32_t seqnr;
2000-05-15 04:37:24 +00:00
if (mode == DISPATCH_BLOCK) {
2002-03-18 09:55:03 +00:00
type = packet_read_seqnr(&seqnr);
2000-05-15 04:37:24 +00:00
} else {
2002-03-18 09:55:03 +00:00
type = packet_read_poll_seqnr(&seqnr);
2000-05-15 04:37:24 +00:00
if (type == SSH_MSG_NONE)
return;
}
if (type > 0 && type < DISPATCH_MAX && dispatch[type] != NULL)
2002-03-18 09:55:03 +00:00
(*dispatch[type])(type, seqnr, ctxt);
2000-05-15 04:37:24 +00:00
else
packet_disconnect("protocol error: rcvd type %d", type);
2000-05-15 04:37:24 +00:00
if (done != NULL && *done)
return;
}
}