mirror of
https://git.libssh.org/projects/libssh.git
synced 2025-11-30 13:01:23 +03:00
start of work to have callbackbased ssh_bind
This commit is contained in:
@@ -147,7 +147,10 @@ struct ssh_bind_struct {
|
|||||||
struct error_struct error;
|
struct error_struct error;
|
||||||
|
|
||||||
ssh_callbacks callbacks; /* Callbacks to user functions */
|
ssh_callbacks callbacks; /* Callbacks to user functions */
|
||||||
|
struct ssh_bind_callbacks_struct *bind_callbacks;
|
||||||
|
void *bind_callbacks_userdata;
|
||||||
|
|
||||||
|
struct ssh_poll_handle_struct *poll;
|
||||||
/* options */
|
/* options */
|
||||||
char *wanted_methods[10];
|
char *wanted_methods[10];
|
||||||
char *banner;
|
char *banner;
|
||||||
@@ -162,6 +165,9 @@ struct ssh_bind_struct {
|
|||||||
int toaccept;
|
int toaccept;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
struct ssh_poll_handle_struct *ssh_bind_get_poll(struct ssh_bind_struct
|
||||||
|
*sshbind);
|
||||||
|
|
||||||
SSH_PACKET_CALLBACK(ssh_packet_disconnect_callback);
|
SSH_PACKET_CALLBACK(ssh_packet_disconnect_callback);
|
||||||
SSH_PACKET_CALLBACK(ssh_packet_ignore_callback);
|
SSH_PACKET_CALLBACK(ssh_packet_ignore_callback);
|
||||||
|
|
||||||
|
|||||||
@@ -48,9 +48,35 @@ enum ssh_bind_options_e {
|
|||||||
SSH_BIND_OPTIONS_LOG_VERBOSITY_STR
|
SSH_BIND_OPTIONS_LOG_VERBOSITY_STR
|
||||||
};
|
};
|
||||||
|
|
||||||
//typedef struct ssh_bind_struct SSH_BIND;
|
|
||||||
|
|
||||||
typedef struct ssh_bind_struct* ssh_bind;
|
typedef struct ssh_bind_struct* ssh_bind;
|
||||||
|
|
||||||
|
/* callback functions */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Incoming connection callback. This callback is called when a ssh_bind
|
||||||
|
* has a new incoming connection.
|
||||||
|
* @param sshbind Current sshbind session handler
|
||||||
|
* @param message the actual message
|
||||||
|
* @param userdata Userdata to be passed to the callback function.
|
||||||
|
*/
|
||||||
|
typedef void (*ssh_bind_incoming_connection_callback) (ssh_bind sshbind,
|
||||||
|
void *userdata);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* These are the callbacks exported by the ssh_bind structure
|
||||||
|
* They are called by the server module when events appear on the network
|
||||||
|
*/
|
||||||
|
|
||||||
|
struct ssh_bind_callbacks_struct {
|
||||||
|
/** DON'T SET THIS use ssh_callbacks_init() instead. */
|
||||||
|
size_t size;
|
||||||
|
/** A new connection is available */
|
||||||
|
ssh_bind_incoming_connection_callback incoming_connection;
|
||||||
|
};
|
||||||
|
typedef struct ssh_bind_callbacks_struct *ssh_bind_callbacks;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Creates a new SSH server bind.
|
* @brief Creates a new SSH server bind.
|
||||||
*
|
*
|
||||||
@@ -80,6 +106,9 @@ LIBSSH_API int ssh_bind_options_set(ssh_bind sshbind,
|
|||||||
*/
|
*/
|
||||||
LIBSSH_API int ssh_bind_listen(ssh_bind ssh_bind_o);
|
LIBSSH_API int ssh_bind_listen(ssh_bind ssh_bind_o);
|
||||||
|
|
||||||
|
LIBSSH_API int ssh_bind_set_callbacks(ssh_bind sshbind, ssh_bind_callbacks callbacks,
|
||||||
|
void *userdata);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Set the session to blocking/nonblocking mode.
|
* @brief Set the session to blocking/nonblocking mode.
|
||||||
*
|
*
|
||||||
|
|||||||
68
src/server.c
68
src/server.c
@@ -44,6 +44,7 @@
|
|||||||
#include "libssh/dh.h"
|
#include "libssh/dh.h"
|
||||||
#include "libssh/messages.h"
|
#include "libssh/messages.h"
|
||||||
#include "libssh/misc.h"
|
#include "libssh/misc.h"
|
||||||
|
#include "libssh/poll.h"
|
||||||
|
|
||||||
#define set_status(session, status) do {\
|
#define set_status(session, status) do {\
|
||||||
if (session->callbacks && session->callbacks->connect_status_function) \
|
if (session->callbacks && session->callbacks->connect_status_function) \
|
||||||
@@ -175,6 +176,73 @@ int ssh_bind_listen(ssh_bind sshbind) {
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief set the bind callbacks for ssh_bind
|
||||||
|
* @code
|
||||||
|
* struct ssh_callbacks_struct cb = {
|
||||||
|
* .userdata = data,
|
||||||
|
* .auth_function = my_auth_function
|
||||||
|
* };
|
||||||
|
* ssh_callbacks_init(&cb);
|
||||||
|
* ssh_set_callbacks(session, &cb);
|
||||||
|
* @endcode
|
||||||
|
* @param sshbind the ssh_bind structure to set
|
||||||
|
* @param callbacks a ssh_bind_callbacks instance already set up. Do
|
||||||
|
* use ssh_callbacks_init() to initialize it.
|
||||||
|
* @param userdata userdata to be used with each callback called
|
||||||
|
* within callbacks.
|
||||||
|
* @returns SSH_OK on success,
|
||||||
|
* SSH_ERROR on error.
|
||||||
|
*/
|
||||||
|
|
||||||
|
int ssh_bind_set_callbacks(ssh_bind sshbind, ssh_bind_callbacks callbacks,
|
||||||
|
void *userdata){
|
||||||
|
if (sshbind == NULL || callbacks == NULL) {
|
||||||
|
return SSH_ERROR;
|
||||||
|
}
|
||||||
|
if(callbacks->size <= 0 || callbacks->size > 1024 * sizeof(void *)){
|
||||||
|
ssh_set_error(sshbind,SSH_FATAL,
|
||||||
|
"Invalid callback passed in (badly initialized)");
|
||||||
|
return SSH_ERROR;
|
||||||
|
}
|
||||||
|
sshbind->bind_callbacks = callbacks;
|
||||||
|
sshbind->bind_callbacks_userdata=userdata;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** @internal
|
||||||
|
* @brief callback being called by poll when an event happens
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
static int ssh_bind_poll_callback(ssh_poll_handle sshpoll,
|
||||||
|
socket_t fd, int revents, void *user){
|
||||||
|
ssh_bind sshbind=(ssh_bind)user;
|
||||||
|
(void)sshpoll;
|
||||||
|
(void)fd;
|
||||||
|
|
||||||
|
if(revents & POLLIN){
|
||||||
|
/* new incoming connection */
|
||||||
|
if(ssh_callbacks_exists(sshbind->bind_callbacks,incoming_connection)){
|
||||||
|
sshbind->bind_callbacks->incoming_connection(sshbind,
|
||||||
|
sshbind->bind_callbacks_userdata);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** @internal
|
||||||
|
* @brief returns the current poll handle, or create it
|
||||||
|
* @param sshbind the ssh_bind object
|
||||||
|
* @returns a ssh_poll handle suitable for operation
|
||||||
|
*/
|
||||||
|
ssh_poll_handle ssh_bind_get_poll(ssh_bind sshbind){
|
||||||
|
if(sshbind->poll)
|
||||||
|
return sshbind->poll;
|
||||||
|
sshbind->poll=ssh_poll_new(sshbind->bindfd,POLLIN,
|
||||||
|
ssh_bind_poll_callback,sshbind);
|
||||||
|
return sshbind->poll;
|
||||||
|
}
|
||||||
|
|
||||||
void ssh_bind_set_blocking(ssh_bind sshbind, int blocking) {
|
void ssh_bind_set_blocking(ssh_bind sshbind, int blocking) {
|
||||||
sshbind->blocking = blocking ? 1 : 0;
|
sshbind->blocking = blocking ? 1 : 0;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user