1
mirror of https://github.com/rapid7/metasploit-payloads synced 2025-03-30 22:19:17 +02:00
OJ 4ffe127f04
Begin removing the delay-load dependency
The 'common' library has been removed. The only project that actually
used it was metsrv, so the code that metsrv required from common is now
directly compiled in as part of that project.

The common folder now contains files that are importanta cross all of
the projects, with a primary focus on the new "API" style function. What
this means is that MetSrv has an API that it exposes through a function
pointer that is passed to the extension when it's initialised. This
pointer references a structure with all the API functions wired in. This
means that:

* Extensions don't need to know anything about metsrv at compile time.
* The delay loading code can be removed, which was one of the last
  instances of "metsrv.dll" as a string.
* Metsrv.dll no longer exports any functions.

More to come.
2020-04-22 13:06:40 +10:00

80 lines
1.7 KiB
C

/*!
* @file remote.c
* @brief Definitions of functions and types that interact with a remote endpoint.
*/
#include "metsrv.h"
#include "packet_encryption.h"
/*!
* @brief Instantiate a remote context from a file descriptor.
* @details This function takes a file descriptor and wraps it in \c Remote
* context which makes it easier to interact with the endpoint.
* @returns Pointer to the created \c Remote instance.
* @retval NULL Indicates a memory allocation failure or a lock creation failure.
* @retval Non-NULL Successful creation of the context.
*/
Remote* remote_allocate()
{
Remote* remote = (Remote*)calloc(1, sizeof(Remote));
LOCK* lock = lock_create();
do
{
if (remote == NULL || lock == NULL)
{
break;
}
remote->lock = lock;
remote->enc_ctx = NULL;
remote->pivot_sessions = pivot_tree_create();
remote->pivot_listeners = pivot_tree_create();
dprintf("[REMOTE] remote created %p", remote);
return remote;
} while (0);
if (lock)
{
lock_destroy(lock);
}
if (remote->pivot_sessions)
{
pivot_tree_destroy(remote->pivot_sessions);
}
if (remote->pivot_listeners)
{
pivot_tree_destroy(remote->pivot_listeners);
}
free(remote);
vdprintf("[REMOTE] here 3");
return NULL;
}
/*!
* @brief Deallocate a remote context.
* @param remote Pointer to the \c Remote instance to deallocate.
*/
VOID remote_deallocate(Remote * remote)
{
free_encryption_context(remote);
pivot_tree_destroy(remote->pivot_sessions);
pivot_tree_destroy(remote->pivot_listeners);
if (remote->lock)
{
lock_destroy(remote->lock);
}
free(remote->orig_config);
// Wipe our structure from memory
memset(remote, 0, sizeof(Remote));
free(remote);
}