Files
libssh/libssh/messages.c
Andreas Schneider 1d3eeda7f9 Replace ssh_say with ssh_log.
git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@265 7dcaeef0-15fb-0310-b436-a5af3365683c
2009-03-11 11:54:36 +00:00

468 lines
16 KiB
C

/* messages.c */
/*
Copyright 2005 Aris Adamantiadis
This file is part of the SSH Library
The SSH Library is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or (at your
option) any later version.
The SSH Library is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
License for more details.
You should have received a copy of the GNU Lesser General Public License
along with the SSH Library; see the file COPYING. If not, write to
the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
MA 02111-1307, USA. */
/** \defgroup ssh_messages SSH Messages
* this file contains the Message parsing utilities for server programs using
* libssh. The main loop of the program will call ssh_message_get(session) to
* get messages as they come. they are not 1-1 with the protocol messages.
* then, the user will know what kind of a message it is and use the appropriate
* functions to handle it (or use the default handlers if she doesn't know what to
* do
* \addtogroup ssh_messages
* @{
*/
#include <string.h>
#include <stdlib.h>
#include "libssh/libssh.h"
#include "libssh/priv.h"
#include "libssh/server.h"
#include "libssh/ssh2.h"
static SSH_MESSAGE *message_new(SSH_SESSION *session){
SSH_MESSAGE *msg=session->ssh_message;
if(!msg){
msg=malloc(sizeof(SSH_MESSAGE));
session->ssh_message=msg;
}
memset(msg,0,sizeof (*msg));
msg->session=session;
return msg;
}
static int handle_service_request(SSH_SESSION *session){
STRING *service;
char *service_c;
enter_function();
service=buffer_get_ssh_string(session->in_buffer);
if(!service){
ssh_set_error(session,SSH_FATAL,"Invalid SSH_MSG_SERVICE_REQUEST packet");
leave_function();
return -1;
}
service_c=string_to_char(service);
ssh_log(session, SSH_LOG_PACKET,
"Sending a SERVICE_ACCEPT for service %s", service_c);
free(service_c);
buffer_add_u8(session->out_buffer,SSH2_MSG_SERVICE_ACCEPT);
buffer_add_ssh_string(session->out_buffer,service);
packet_send(session);
free(service);
leave_function();
return 0;
}
static void handle_unimplemented(SSH_SESSION *session){
buffer_add_u32(session->out_buffer,htonl(session->recv_seq-1));
packet_send(session);
}
static SSH_MESSAGE *handle_userauth_request(SSH_SESSION *session){
STRING *user=buffer_get_ssh_string(session->in_buffer);
STRING *service=buffer_get_ssh_string(session->in_buffer);
STRING *method=buffer_get_ssh_string(session->in_buffer);
SSH_MESSAGE *msg;
char *service_c,*method_c;
enter_function();
msg=message_new(session);
msg->type=SSH_AUTH_REQUEST;
msg->auth_request.username=string_to_char(user);
free(user);
service_c=string_to_char(service);
method_c=string_to_char(method);
free(service);
free(method);
ssh_log(session, SSH_LOG_PACKET,
"Auth request for service %s, method %s for user '%s'",
service_c, method_c,
msg->auth_request.username);
free(service_c);
if(!strcmp(method_c,"none")){
msg->auth_request.method=SSH_AUTH_NONE;
free(method_c);
leave_function();
return msg;
}
if(!strcmp(method_c,"password")){
STRING *pass;
u8 tmp;
msg->auth_request.method=SSH_AUTH_PASSWORD;
free(method_c);
buffer_get_u8(session->in_buffer,&tmp);
pass=buffer_get_ssh_string(session->in_buffer);
msg->auth_request.password=string_to_char(pass);
free(pass);
leave_function();
return msg;
}
msg->auth_request.method=SSH_AUTH_UNKNOWN;
free(method_c);
leave_function();
return msg;
}
char *ssh_message_auth_user(SSH_MESSAGE *msg){
return msg->auth_request.username;
}
char *ssh_message_auth_password(SSH_MESSAGE *msg){
return msg->auth_request.password;
}
void ssh_message_auth_set_methods(SSH_MESSAGE *msg,int methods){
msg->session->auth_methods=methods;
}
static int ssh_message_auth_reply_default(SSH_MESSAGE *msg,int partial){
char methods_c[128]="";
STRING *methods;
SSH_SESSION *session=msg->session;
int ret;
enter_function();
buffer_add_u8(session->out_buffer,SSH2_MSG_USERAUTH_FAILURE);
if(session->auth_methods==0){
session->auth_methods=SSH_AUTH_PUBLICKEY|SSH_AUTH_PASSWORD;
}
if(session->auth_methods & SSH_AUTH_PUBLICKEY)
strcat(methods_c,"publickey,");
if(session->auth_methods & SSH_AUTH_KEYBINT)
strcat(methods_c,"keyboard-interactive,");
if(session->auth_methods & SSH_AUTH_PASSWORD)
strcat(methods_c,"password,");
if(session->auth_methods & SSH_AUTH_HOSTBASED)
strcat(methods_c,"hostbased,");
methods_c[strlen(methods_c)-1]=0; // strip the comma. We are sure there is at
// least one word into the list
ssh_log(session, SSH_LOG_PACKET,
"Sending a auth failure. methods that can continue: %s", methods_c);
methods=string_from_char(methods_c);
buffer_add_ssh_string(msg->session->out_buffer,methods);
free(methods);
if(partial)
buffer_add_u8(session->out_buffer,1);
else
buffer_add_u8(session->out_buffer,0); // no partial success
ret = packet_send(msg->session);
leave_function();
return ret;
}
int ssh_message_auth_reply_success(SSH_MESSAGE *msg,int partial){
if(partial)
return ssh_message_auth_reply_default(msg,partial);
buffer_add_u8(msg->session->out_buffer,SSH2_MSG_USERAUTH_SUCCESS);
return packet_send(msg->session);
}
static SSH_MESSAGE *handle_channel_request_open(SSH_SESSION *session){
SSH_MESSAGE *msg;
STRING *type;
char *type_c;
u32 sender, window, packet;
enter_function();
msg=message_new(session);
msg->type=SSH_CHANNEL_REQUEST_OPEN;
type=buffer_get_ssh_string(session->in_buffer);
type_c=string_to_char(type);
ssh_log(session, SSH_LOG_PACKET,
"Clients wants to open a %s channel", type_c);
free(type);
buffer_get_u32(session->in_buffer,&sender);
buffer_get_u32(session->in_buffer,&window);
buffer_get_u32(session->in_buffer,&packet);
msg->channel_request_open.sender=ntohl(sender);
msg->channel_request_open.window=ntohl(window);
msg->channel_request_open.packet_size=ntohl(packet);
if(!strcmp(type_c,"session")){
msg->channel_request_open.type=SSH_CHANNEL_SESSION;
free(type_c);
leave_function();
return msg;
}
msg->channel_request_open.type=SSH_CHANNEL_UNKNOWN;
free(type_c);
leave_function();
return msg;
}
CHANNEL *ssh_message_channel_request_open_reply_accept(SSH_MESSAGE *msg){
SSH_SESSION *session=msg->session;
CHANNEL *chan;
enter_function();
chan=channel_new(session);
chan->local_channel=ssh_channel_new_id(session);
chan->local_maxpacket=35000;
chan->local_window=32000;
chan->remote_channel=msg->channel_request_open.sender;
chan->remote_maxpacket=msg->channel_request_open.packet_size;
chan->remote_window=msg->channel_request_open.window;
chan->open=1;
buffer_add_u8(session->out_buffer,SSH2_MSG_CHANNEL_OPEN_CONFIRMATION);
buffer_add_u32(session->out_buffer,htonl(chan->remote_channel));
buffer_add_u32(session->out_buffer,htonl(chan->local_channel));
buffer_add_u32(session->out_buffer,htonl(chan->local_window));
buffer_add_u32(session->out_buffer,htonl(chan->local_maxpacket));
ssh_log(session, SSH_LOG_PACKET,
"Accepting a channel request_open for chan %d", chan->remote_channel);
if(packet_send(session)){
channel_free(chan);
leave_function();
return NULL;
}
leave_function();
return chan;
}
static int ssh_message_channel_request_open_reply_default(SSH_MESSAGE *msg){
ssh_log(msg->session, SSH_LOG_FUNCTIONS, "Refusing a channel");
buffer_add_u8(msg->session->out_buffer,SSH2_MSG_CHANNEL_OPEN_FAILURE);
buffer_add_u32(msg->session->out_buffer,htonl(msg->channel_request_open.sender));
buffer_add_u32(msg->session->out_buffer,htonl(SSH2_OPEN_ADMINISTRATIVELY_PROHIBITED));
buffer_add_u32(msg->session->out_buffer,0); // reason is an empty string
buffer_add_u32(msg->session->out_buffer,0); // language too
return packet_send(msg->session);
}
static SSH_MESSAGE *handle_channel_request(SSH_SESSION *session){
u32 channel;
STRING *type;
char *type_c;
u8 want_reply;
SSH_MESSAGE *msg=message_new(session);
enter_function();
buffer_get_u32(session->in_buffer,&channel);
channel=ntohl(channel);
type=buffer_get_ssh_string(session->in_buffer);
buffer_get_u8(session->in_buffer,&want_reply);
type_c=string_to_char(type);
free(type);
ssh_log(session, SSH_LOG_PACKET,
"Received a %s channel_request for channel %d (want_reply=%hhd)",
type_c, channel, want_reply);
msg->type=SSH_CHANNEL_REQUEST;
msg->channel_request.channel=ssh_channel_from_local(session,channel);
msg->channel_request.want_reply=want_reply;
if(!strcmp(type_c,"pty-req")){
STRING *term;
char *term_c;
free(type_c);
term=buffer_get_ssh_string(session->in_buffer);
term_c=string_to_char(term);
free(term);
msg->channel_request.type=SSH_CHANNEL_REQUEST_PTY;
msg->channel_request.TERM=term_c;
buffer_get_u32(session->in_buffer,&msg->channel_request.width);
buffer_get_u32(session->in_buffer,&msg->channel_request.height);
buffer_get_u32(session->in_buffer,&msg->channel_request.pxwidth);
buffer_get_u32(session->in_buffer,&msg->channel_request.pxheight);
msg->channel_request.width=ntohl(msg->channel_request.width);
msg->channel_request.height=ntohl(msg->channel_request.height);
msg->channel_request.pxwidth=ntohl(msg->channel_request.pxwidth);
msg->channel_request.pxheight=ntohl(msg->channel_request.pxheight);
msg->channel_request.modes=buffer_get_ssh_string(session->in_buffer);
leave_function();
return msg;
}
if(!strcmp(type_c,"subsystem")){
STRING *subsys;
char *subsys_c;
free(type_c);
subsys=buffer_get_ssh_string(session->in_buffer);
subsys_c=string_to_char(subsys);
free(subsys);
msg->channel_request.type=SSH_CHANNEL_REQUEST_SUBSYSTEM;
msg->channel_request.subsystem=subsys_c;
leave_function();
return msg;
}
if(!strcmp(type_c,"shell")){
free(type_c);
msg->channel_request.type=SSH_CHANNEL_REQUEST_SHELL;
leave_function();
return msg;
}
if(!strcmp(type_c,"exec")){
STRING *cmd=buffer_get_ssh_string(session->in_buffer);
free(type_c);
msg->channel_request.type=SSH_CHANNEL_REQUEST_EXEC;
msg->channel_request.command=string_to_char(cmd);
free(cmd);
leave_function();
return msg;
}
msg->channel_request.type=SSH_CHANNEL_UNKNOWN;
free(type_c);
leave_function();
return msg;
}
char *ssh_message_channel_request_subsystem(SSH_MESSAGE *msg){
return msg->channel_request.subsystem;
}
int ssh_message_channel_request_reply_success(SSH_MESSAGE *msg){
u32 channel;
if(msg->channel_request.want_reply){
channel=msg->channel_request.channel->remote_channel;
ssh_log(msg->session, SSH_LOG_PACKET,
"Sending a channel_request success to channel %d", channel);
buffer_add_u8(msg->session->out_buffer,SSH2_MSG_CHANNEL_SUCCESS);
buffer_add_u32(msg->session->out_buffer,htonl(channel));
return packet_send(msg->session);
} else {
ssh_log(msg->session, SSH_LOG_PACKET,
"The client doesn't want to know the request successed");
return 0;
}
}
static int ssh_message_channel_request_reply_default(SSH_MESSAGE *msg){
u32 channel;
if(msg->channel_request.want_reply){
channel=msg->channel_request.channel->remote_channel;
ssh_log(msg->session, SSH_LOG_PACKET,
"Sending a default channel_request denied to channel %d", channel);
buffer_add_u8(msg->session->out_buffer,SSH2_MSG_CHANNEL_FAILURE);
buffer_add_u32(msg->session->out_buffer,htonl(channel));
return packet_send(msg->session);
} else {
ssh_log(msg->session, SSH_LOG_PACKET,
"The client doesn't want to know the request failed!");
return 0;
}
}
SSH_MESSAGE *ssh_message_get(SSH_SESSION *session){
SSH_MESSAGE *ret;
enter_function();
while(1){
if(packet_read(session) || packet_translate(session)){
leave_function();
return NULL;
}
switch(session->in_packet.type){
case SSH2_MSG_SERVICE_REQUEST:
if(handle_service_request(session)){
leave_function();
return NULL;
}
break;
case SSH2_MSG_IGNORE:
case SSH2_MSG_DEBUG:
break;
case SSH2_MSG_USERAUTH_REQUEST:
ret = handle_userauth_request(session);
leave_function();
return ret;
case SSH2_MSG_CHANNEL_OPEN:
ret = handle_channel_request_open(session);
leave_function();
return ret;
case SSH2_MSG_CHANNEL_REQUEST:
ret = handle_channel_request(session);
leave_function();
return ret;
default:
handle_unimplemented(session);
ssh_set_error(session,SSH_FATAL,"Unhandled message %d\n",session->in_packet.type);
leave_function();
return NULL;
}
}
leave_function();
return NULL;
}
int ssh_message_type(SSH_MESSAGE *msg){
return msg->type;
}
int ssh_message_subtype(SSH_MESSAGE *msg){
switch(msg->type){
case SSH_AUTH_REQUEST:
return msg->auth_request.method;
case SSH_CHANNEL_REQUEST_OPEN:
return msg->channel_request_open.type;
case SSH_CHANNEL_REQUEST:
return msg->channel_request.type;
}
return -1;
}
int ssh_message_reply_default(SSH_MESSAGE *msg){
switch(msg->type){
case SSH_AUTH_REQUEST:
return ssh_message_auth_reply_default(msg,0);
break;
case SSH_CHANNEL_REQUEST_OPEN:
return ssh_message_channel_request_open_reply_default(msg);
break;
case SSH_CHANNEL_REQUEST:
return ssh_message_channel_request_reply_default(msg);
break;
default:
ssh_log(msg->session, SSH_LOG_PACKET,
"Don't know what to default reply to %d type",
msg->type);
break;
}
return 0;
}
void ssh_message_free(SSH_MESSAGE *msg){
switch(msg->type){
case SSH_AUTH_REQUEST:
if(msg->auth_request.username)
free(msg->auth_request.username);
if(msg->auth_request.password){
memset(msg->auth_request.password,0,strlen(msg->auth_request.password));
free(msg->auth_request.password);
}
break;
case SSH_CHANNEL_REQUEST_OPEN:
if(msg->channel_request_open.originator)
free(msg->channel_request_open.originator);
if(msg->channel_request_open.destination)
free(msg->channel_request_open.destination);
break;
case SSH_CHANNEL_REQUEST:
if(msg->channel_request.TERM)
free(msg->channel_request.TERM);
if(msg->channel_request.modes)
free(msg->channel_request.modes);
if(msg->channel_request.var_name)
free(msg->channel_request.var_name);
if(msg->channel_request.var_value)
free(msg->channel_request.var_value);
if(msg->channel_request.command)
free(msg->channel_request.command);
if(msg->channel_request.subsystem)
free(msg->channel_request.subsystem);
break;
}
memset(msg,0,sizeof(*msg));
}
/** @}
*/