[auth1.c authfd.c channels.c]
     spacing
This commit is contained in:
Damien Miller 2006-03-26 13:57:41 +11:00
parent 4ca108d192
commit d62f2ca376
4 changed files with 31 additions and 29 deletions

View File

@ -37,6 +37,9 @@
- dtucker@cvs.openbsd.org 2006/03/19 11:51:52 - dtucker@cvs.openbsd.org 2006/03/19 11:51:52
[servconf.c] [servconf.c]
Correct strdelim null test; ok djm@ Correct strdelim null test; ok djm@
- deraadt@cvs.openbsd.org 2006/03/19 18:52:11
[auth1.c authfd.c channels.c]
spacing
20060325 20060325
- OpenBSD CVS Sync - OpenBSD CVS Sync
@ -4294,4 +4297,4 @@
- (djm) Trim deprecated options from INSTALL. Mention UsePAM - (djm) Trim deprecated options from INSTALL. Mention UsePAM
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
$Id: ChangeLog,v 1.4251 2006/03/26 02:54:37 djm Exp $ $Id: ChangeLog,v 1.4252 2006/03/26 02:57:41 djm Exp $

View File

@ -76,7 +76,7 @@ static const struct AuthMethod1
{ {
int i; int i;
for(i = 0; auth1_methods[i].name != NULL; i++) for (i = 0; auth1_methods[i].name != NULL; i++)
if (auth1_methods[i].type == type) if (auth1_methods[i].type == type)
return (&(auth1_methods[i])); return (&(auth1_methods[i]));

View File

@ -105,7 +105,7 @@ ssh_get_authentication_socket(void)
close(sock); close(sock);
return -1; return -1;
} }
if (connect(sock, (struct sockaddr *) &sunaddr, sizeof sunaddr) < 0) { if (connect(sock, (struct sockaddr *)&sunaddr, sizeof sunaddr) < 0) {
close(sock); close(sock);
return -1; return -1;
} }

View File

@ -173,7 +173,7 @@ channel_lookup(int id)
if ((c = channel_by_id(id)) == NULL) if ((c = channel_by_id(id)) == NULL)
return (NULL); return (NULL);
switch(c->type) { switch (c->type) {
case SSH_CHANNEL_X11_OPEN: case SSH_CHANNEL_X11_OPEN:
case SSH_CHANNEL_LARVAL: case SSH_CHANNEL_LARVAL:
case SSH_CHANNEL_CONNECTING: case SSH_CHANNEL_CONNECTING:
@ -183,7 +183,6 @@ channel_lookup(int id)
case SSH_CHANNEL_INPUT_DRAINING: case SSH_CHANNEL_INPUT_DRAINING:
case SSH_CHANNEL_OUTPUT_DRAINING: case SSH_CHANNEL_OUTPUT_DRAINING:
return (c); return (c);
break;
} }
logit("Non-public channel %d, type %d.", id, c->type); logit("Non-public channel %d, type %d.", id, c->type);
return (NULL); return (NULL);
@ -723,25 +722,25 @@ channel_set_fds(int id, int rfd, int wfd, int efd,
* 'channel_post*': perform any appropriate operations for channels which * 'channel_post*': perform any appropriate operations for channels which
* have events pending. * have events pending.
*/ */
typedef void chan_fn(Channel *c, fd_set * readset, fd_set * writeset); typedef void chan_fn(Channel *c, fd_set *readset, fd_set *writeset);
chan_fn *channel_pre[SSH_CHANNEL_MAX_TYPE]; chan_fn *channel_pre[SSH_CHANNEL_MAX_TYPE];
chan_fn *channel_post[SSH_CHANNEL_MAX_TYPE]; chan_fn *channel_post[SSH_CHANNEL_MAX_TYPE];
static void static void
channel_pre_listener(Channel *c, fd_set * readset, fd_set * writeset) channel_pre_listener(Channel *c, fd_set *readset, fd_set *writeset)
{ {
FD_SET(c->sock, readset); FD_SET(c->sock, readset);
} }
static void static void
channel_pre_connecting(Channel *c, fd_set * readset, fd_set * writeset) channel_pre_connecting(Channel *c, fd_set *readset, fd_set *writeset)
{ {
debug3("channel %d: waiting for connection", c->self); debug3("channel %d: waiting for connection", c->self);
FD_SET(c->sock, writeset); FD_SET(c->sock, writeset);
} }
static void static void
channel_pre_open_13(Channel *c, fd_set * readset, fd_set * writeset) channel_pre_open_13(Channel *c, fd_set *readset, fd_set *writeset)
{ {
if (buffer_len(&c->input) < packet_get_maxsize()) if (buffer_len(&c->input) < packet_get_maxsize())
FD_SET(c->sock, readset); FD_SET(c->sock, readset);
@ -750,7 +749,7 @@ channel_pre_open_13(Channel *c, fd_set * readset, fd_set * writeset)
} }
static void static void
channel_pre_open(Channel *c, fd_set * readset, fd_set * writeset) channel_pre_open(Channel *c, fd_set *readset, fd_set *writeset)
{ {
u_int limit = compat20 ? c->remote_window : packet_get_maxsize(); u_int limit = compat20 ? c->remote_window : packet_get_maxsize();
@ -790,7 +789,7 @@ channel_pre_open(Channel *c, fd_set * readset, fd_set * writeset)
} }
static void static void
channel_pre_input_draining(Channel *c, fd_set * readset, fd_set * writeset) channel_pre_input_draining(Channel *c, fd_set *readset, fd_set *writeset)
{ {
if (buffer_len(&c->input) == 0) { if (buffer_len(&c->input) == 0) {
packet_start(SSH_MSG_CHANNEL_CLOSE); packet_start(SSH_MSG_CHANNEL_CLOSE);
@ -802,7 +801,7 @@ channel_pre_input_draining(Channel *c, fd_set * readset, fd_set * writeset)
} }
static void static void
channel_pre_output_draining(Channel *c, fd_set * readset, fd_set * writeset) channel_pre_output_draining(Channel *c, fd_set *readset, fd_set *writeset)
{ {
if (buffer_len(&c->output) == 0) if (buffer_len(&c->output) == 0)
chan_mark_dead(c); chan_mark_dead(c);
@ -878,7 +877,7 @@ x11_open_helper(Buffer *b)
} }
static void static void
channel_pre_x11_open_13(Channel *c, fd_set * readset, fd_set * writeset) channel_pre_x11_open_13(Channel *c, fd_set *readset, fd_set *writeset)
{ {
int ret = x11_open_helper(&c->output); int ret = x11_open_helper(&c->output);
@ -904,7 +903,7 @@ channel_pre_x11_open_13(Channel *c, fd_set * readset, fd_set * writeset)
} }
static void static void
channel_pre_x11_open(Channel *c, fd_set * readset, fd_set * writeset) channel_pre_x11_open(Channel *c, fd_set *readset, fd_set *writeset)
{ {
int ret = x11_open_helper(&c->output); int ret = x11_open_helper(&c->output);
@ -931,7 +930,7 @@ channel_pre_x11_open(Channel *c, fd_set * readset, fd_set * writeset)
/* try to decode a socks4 header */ /* try to decode a socks4 header */
static int static int
channel_decode_socks4(Channel *c, fd_set * readset, fd_set * writeset) channel_decode_socks4(Channel *c, fd_set *readset, fd_set *writeset)
{ {
char *p, *host; char *p, *host;
u_int len, have, i, found; u_int len, have, i, found;
@ -1009,7 +1008,7 @@ channel_decode_socks4(Channel *c, fd_set * readset, fd_set * writeset)
#define SSH_SOCKS5_SUCCESS 0x00 #define SSH_SOCKS5_SUCCESS 0x00
static int static int
channel_decode_socks5(Channel *c, fd_set * readset, fd_set * writeset) channel_decode_socks5(Channel *c, fd_set *readset, fd_set *writeset)
{ {
struct { struct {
u_int8_t version; u_int8_t version;
@ -1112,7 +1111,7 @@ channel_decode_socks5(Channel *c, fd_set * readset, fd_set * writeset)
/* dynamic port forwarding */ /* dynamic port forwarding */
static void static void
channel_pre_dynamic(Channel *c, fd_set * readset, fd_set * writeset) channel_pre_dynamic(Channel *c, fd_set *readset, fd_set *writeset)
{ {
u_char *p; u_char *p;
u_int have; u_int have;
@ -1156,7 +1155,7 @@ channel_pre_dynamic(Channel *c, fd_set * readset, fd_set * writeset)
/* This is our fake X11 server socket. */ /* This is our fake X11 server socket. */
static void static void
channel_post_x11_listener(Channel *c, fd_set * readset, fd_set * writeset) channel_post_x11_listener(Channel *c, fd_set *readset, fd_set *writeset)
{ {
Channel *nc; Channel *nc;
struct sockaddr addr; struct sockaddr addr;
@ -1281,7 +1280,7 @@ channel_set_reuseaddr(int fd)
* This socket is listening for connections to a forwarded TCP/IP port. * This socket is listening for connections to a forwarded TCP/IP port.
*/ */
static void static void
channel_post_port_listener(Channel *c, fd_set * readset, fd_set * writeset) channel_post_port_listener(Channel *c, fd_set *readset, fd_set *writeset)
{ {
Channel *nc; Channel *nc;
struct sockaddr addr; struct sockaddr addr;
@ -1338,7 +1337,7 @@ channel_post_port_listener(Channel *c, fd_set * readset, fd_set * writeset)
* clients. * clients.
*/ */
static void static void
channel_post_auth_listener(Channel *c, fd_set * readset, fd_set * writeset) channel_post_auth_listener(Channel *c, fd_set *readset, fd_set *writeset)
{ {
Channel *nc; Channel *nc;
int newsock; int newsock;
@ -1371,7 +1370,7 @@ channel_post_auth_listener(Channel *c, fd_set * readset, fd_set * writeset)
} }
static void static void
channel_post_connecting(Channel *c, fd_set * readset, fd_set * writeset) channel_post_connecting(Channel *c, fd_set *readset, fd_set *writeset)
{ {
int err = 0; int err = 0;
socklen_t sz = sizeof(err); socklen_t sz = sizeof(err);
@ -1417,7 +1416,7 @@ channel_post_connecting(Channel *c, fd_set * readset, fd_set * writeset)
} }
static int static int
channel_handle_rfd(Channel *c, fd_set * readset, fd_set * writeset) channel_handle_rfd(Channel *c, fd_set *readset, fd_set *writeset)
{ {
char buf[CHAN_RBUF]; char buf[CHAN_RBUF];
int len; int len;
@ -1457,7 +1456,7 @@ channel_handle_rfd(Channel *c, fd_set * readset, fd_set * writeset)
return 1; return 1;
} }
static int static int
channel_handle_wfd(Channel *c, fd_set * readset, fd_set * writeset) channel_handle_wfd(Channel *c, fd_set *readset, fd_set *writeset)
{ {
struct termios tio; struct termios tio;
u_char *data = NULL, *buf; u_char *data = NULL, *buf;
@ -1544,7 +1543,7 @@ channel_handle_wfd(Channel *c, fd_set * readset, fd_set * writeset)
return 1; return 1;
} }
static int static int
channel_handle_efd(Channel *c, fd_set * readset, fd_set * writeset) channel_handle_efd(Channel *c, fd_set *readset, fd_set *writeset)
{ {
char buf[CHAN_RBUF]; char buf[CHAN_RBUF];
int len; int len;
@ -1587,7 +1586,7 @@ channel_handle_efd(Channel *c, fd_set * readset, fd_set * writeset)
return 1; return 1;
} }
static int static int
channel_handle_ctl(Channel *c, fd_set * readset, fd_set * writeset) channel_handle_ctl(Channel *c, fd_set *readset, fd_set *writeset)
{ {
char buf[16]; char buf[16];
int len; int len;
@ -1634,7 +1633,7 @@ channel_check_window(Channel *c)
} }
static void static void
channel_post_open(Channel *c, fd_set * readset, fd_set * writeset) channel_post_open(Channel *c, fd_set *readset, fd_set *writeset)
{ {
if (c->delayed) if (c->delayed)
return; return;
@ -1648,7 +1647,7 @@ channel_post_open(Channel *c, fd_set * readset, fd_set * writeset)
} }
static void static void
channel_post_output_drain_13(Channel *c, fd_set * readset, fd_set * writeset) channel_post_output_drain_13(Channel *c, fd_set *readset, fd_set *writeset)
{ {
int len; int len;
@ -1765,7 +1764,7 @@ channel_garbage_collect(Channel *c)
} }
static void static void
channel_handler(chan_fn *ftab[], fd_set * readset, fd_set * writeset) channel_handler(chan_fn *ftab[], fd_set *readset, fd_set *writeset)
{ {
static int did_init = 0; static int did_init = 0;
u_int i; u_int i;
@ -1817,7 +1816,7 @@ channel_prepare_select(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
* events pending. * events pending.
*/ */
void void
channel_after_select(fd_set * readset, fd_set * writeset) channel_after_select(fd_set *readset, fd_set *writeset)
{ {
channel_handler(channel_post, readset, writeset); channel_handler(channel_post, readset, writeset);
} }