2014-09-14 22:08:03 +02:00
|
|
|
/*
|
|
|
|
* ssh.c: SSH service detection plugin
|
|
|
|
*
|
|
|
|
* Copyright (c) 2014, Přemysl Janouch <p.janouch@gmail.com>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
|
|
|
|
* SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
|
|
|
|
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
|
|
|
|
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "../utils.c"
|
|
|
|
#include "../plugin-api.h"
|
|
|
|
|
|
|
|
// --- Service detection -------------------------------------------------------
|
|
|
|
|
|
|
|
static struct plugin_data
|
|
|
|
{
|
|
|
|
void *ctx; ///< Application context
|
|
|
|
struct plugin_api *api; ///< Plugin API vtable
|
|
|
|
}
|
|
|
|
g_data;
|
|
|
|
|
2014-09-18 23:41:07 +02:00
|
|
|
struct scan_data
|
|
|
|
{
|
|
|
|
struct str input; ///< Input buffer
|
|
|
|
};
|
|
|
|
|
2014-09-14 22:08:03 +02:00
|
|
|
static void *
|
|
|
|
scan_init (struct unit *u)
|
|
|
|
{
|
2014-09-18 23:41:07 +02:00
|
|
|
(void) u;
|
|
|
|
|
|
|
|
struct scan_data *scan = xcalloc (1, sizeof *scan);
|
|
|
|
str_init (&scan->input);
|
|
|
|
return scan;
|
2014-09-14 22:08:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
scan_free (void *handle)
|
|
|
|
{
|
2014-09-18 23:41:07 +02:00
|
|
|
struct scan_data *scan = handle;
|
|
|
|
str_free (&scan->input);
|
|
|
|
free (scan);
|
2014-09-14 22:08:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
on_data (void *handle, struct unit *u, struct str *data)
|
|
|
|
{
|
2014-09-18 23:41:07 +02:00
|
|
|
// TODO: don't let the input buffer grow too much
|
|
|
|
struct scan_data *scan = handle;
|
|
|
|
str_append_str (&scan->input, data);
|
2014-09-14 22:08:03 +02:00
|
|
|
|
2014-09-18 23:41:07 +02:00
|
|
|
char *input = scan->input.str;
|
|
|
|
char *nl = strstr (input, "\r\n");
|
|
|
|
if (!nl)
|
|
|
|
return;
|
2014-09-14 22:08:03 +02:00
|
|
|
|
2014-09-18 23:41:07 +02:00
|
|
|
// TODO: parse the reply, make sure that it's actually SSH,
|
|
|
|
// don't put just any garbage in the output info
|
|
|
|
*nl = '\0';
|
|
|
|
g_data.api->unit_add_info (u, input);
|
|
|
|
g_data.api->unit_set_success (u, true);
|
|
|
|
g_data.api->unit_abort (u);
|
2014-09-14 22:08:03 +02:00
|
|
|
}
|
|
|
|
|
2014-09-18 23:41:07 +02:00
|
|
|
static struct service g_ssh_service =
|
2014-09-14 22:08:03 +02:00
|
|
|
{
|
|
|
|
.name = "SSH",
|
|
|
|
.flags = 0,
|
|
|
|
|
|
|
|
.scan_init = scan_init,
|
|
|
|
.scan_free = scan_free,
|
|
|
|
.on_data = on_data,
|
2014-09-18 23:41:07 +02:00
|
|
|
.on_eof = NULL,
|
|
|
|
.on_error = NULL,
|
|
|
|
.on_aborted = NULL
|
2014-09-14 22:08:03 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
static bool
|
|
|
|
initialize (void *ctx, struct plugin_api *api)
|
|
|
|
{
|
|
|
|
g_data = (struct plugin_data) { .ctx = ctx, .api = api };
|
2014-09-18 23:41:07 +02:00
|
|
|
api->register_service (ctx, &g_ssh_service);
|
2014-09-14 22:08:03 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct plugin_info ponymap_plugin_info =
|
|
|
|
{
|
|
|
|
.api_version = API_VERSION,
|
|
|
|
.initialize = initialize
|
|
|
|
};
|