![]() |
![]() |
![]() |
Libdexter Reference Manual | ![]() |
---|---|---|---|---|
Top | Description |
#include <dexter.h> #define DEXTER_CHANNEL_ERROR enum DexterChannelError; DexterChannel; enum DexterChannelState; enum DexterChannelEvent; void (*DexterChannelEventCallback) (DexterChannel *channel
,gint event
); struct DexterChannelTLSSettings; void (*DexterChannelTLSStartCallback) (DexterChannel *channel
,const struct sockaddr *server_sa
,socklen_t server_salen
,DexterChannelTLSSettings *tls_settings
); enum DexterChannelSettingFlags; struct DexterChannelSettings; DexterChannel * dexter_channel_new (const DexterChannelSettings *settings
); gboolean dexter_channel_open (DexterChannel *channel
,GError **error
); gboolean dexter_channel_close (DexterChannel *channel
,GError **error
); gboolean dexter_channel_greet (DexterChannel *channel
,GError **error
); gboolean dexter_channel_noop (DexterChannel *channel
,GError **error
); gboolean dexter_channel_starttls (DexterChannel *channel
,GError **error
); gboolean dexter_channel_part (DexterChannel *channel
,GError **error
); void dexter_channel_free (DexterChannel *channel
); gint dexter_channel_get_state (DexterChannel *channel
);
Channels are Libdexter objects used to interact with hosts on the network
running Libdexter servers. To use a channel, you must first create it with
dexter_channel_new()
. Next, open the channel with dexter_channel_open()
to
establish a network connection with the server. You must then greet the server
with dexter_channel_greet()
to perform the protocol handshake that readies
the channel for actual use. You may secure your channel communications
anytime after the greeting is exchanged with dexter_channel_starttls()
.
Note that the server may require that you issue dexter_channel_starttls()
in order to perform any meaningful data operation. The server may also
require that the channel present valid X.509 certificate credentials.
Once the greeting is exchanged, you may then create remote Libdexter objects
on the server by specifying the channel when creating your objects, e.g. with
dexter_sampler_new()
. When you are done with the channel and have destroyed all
objects you created on it, issue dexter_channel_part()
to tell the server that
the channel will no longer be used. At that point, the server will disconnect,
you can then issue dexter_channel_close()
and, finally, dexter_channel_free()
to destroy the channel.
When using channels to create objects on other hosts, two objects are actually created: one on the remote host and one local to your application. The local object acts as a transparent proxy to the the remote object, issuing network messages to the remote object as you manipulate it. There are no api differences, however, from your application's point of view, i.e. working with a local object is identical to working with a remote object.
Each channel is implemented with a single tcp/ip connection to the specified host. You may create many Libdexter objects, e.g. samplers or timed samplers, over a single channel. There is no need to create a separate channel for each object (although you can). The Libdexter configuration file is used to set default channel settings, such as socket options, etc.
#define DEXTER_CHANNEL_ERROR dexter_channel_error_quark()
The error domain of the libdexter channel subsystem.
typedef enum { DEXTER_CHANNEL_ERROR_EADDRINUSE, DEXTER_CHANNEL_ERROR_EAGAIN, DEXTER_CHANNEL_ERROR_ECONNREFUSED, DEXTER_CHANNEL_ERROR_EINTR, DEXTER_CHANNEL_ERROR_ENETUNREACH, DEXTER_CHANNEL_ERROR_STATE, DEXTER_CHANNEL_ERROR_TIMEOUT, DEXTER_CHANNEL_ERROR_TLS_NOT_ENABLED, DEXTER_CHANNEL_ERROR_FAILED } DexterChannelError;
Error codes for DexterChannel operations.
local address in use. | |
no more free ports or insufficient routing cache entries. | |
no one listening on the remote address. | |
system call interrupted by signal that was caught. | |
network is unreachable. | |
operation not allowed in current channel state. | |
operation timed out. | |
TLS not enabled on this installation. | |
other failure. |
typedef enum { DEXTER_CHANNEL_STATE_OPEN, DEXTER_CHANNEL_STATE_ABORT, DEXTER_CHANNEL_STATE_NOCONN, DEXTER_CHANNEL_STATE_CLOSED, } DexterChannelState;
All possible channel states.
typedef enum { DEXTER_CHANNEL_EVENT_OPEN, DEXTER_CHANNEL_EVENT_ABORT, DEXTER_CHANNEL_EVENT_NOCONN, DEXTER_CHANNEL_EVENT_CLOSED } DexterChannelEvent;
All possible channel events.
void (*DexterChannelEventCallback) (DexterChannel *channel
,gint event
);
Signature of callback function used to receive channel event notifications.
|
DexterChannel firing the event. |
|
DexterChannelEvent fired. |
struct DexterChannelTLSSettings { gchar *cert_file; /* ChannelTLSCertFile */ gchar *key_file; /* ChannelTLSKeyFile */ gchar *trust_file; /* ChannelTLSTrustFile */ gchar *crl_file; /* ChannelTLSCrlFile */ gboolean verify_hostname; /* ChannelTLSVerifyHostname */ };
TLS settings that the channel will use when starting TLS. They are copied from the
DexterChannelSettings structure provided to dexter_channel_new()
.
When this structure is seen within the context of a DexterChannelTLSStartCallback,
you may change the elements as needed. For any non-NULL
gchar
elements that you want
to change, you must first g_free()
the element and then allocate a replacement string
using a GLib string allocation api, e.g. g_strdup_printf()
. The Library will free
everything for you when the callback exits.
gchar * |
full path to X.509 certificate file in PEM format. |
gchar * |
full path to X.509 certificate private key file in PEM format. |
gchar * |
full path to X.509 trust file in PEM format. |
gchar * |
full path to X.509 certificate revocation list file in PEM format. |
gboolean |
verify that the hostname of server matches its X.509 certificate. |
Since 0.2.0
void (*DexterChannelTLSStartCallback) (DexterChannel *channel
,const struct sockaddr *server_sa
,socklen_t server_salen
,DexterChannelTLSSettings *tls_settings
);
Signature of callback function used to adjust TLS settings, as needed for this server address, as TLS starts.
If specificed in dexter_channel_starttls()
, this callback allows you to inspect the server
socket address and adjust your channel TLS parameters as needed. In this manner you can decide
which certificate, trust and revocation files to use based on the server you are connected to.
|
DexterChannel on which TLS is starting. |
|
server socket address. |
|
length of server socket address. |
|
DexterChannelTLSSettings of TLS settings. |
Since 0.2.0
typedef enum { DEXTER_CHANNEL_SETTING_HOST = 1 << 0, DEXTER_CHANNEL_SETTING_SERVICE = 1 << 1, DEXTER_CHANNEL_SETTING_SOCKET_OPTIONS = 1 << 2, DEXTER_CHANNEL_SETTING_RECV_BUFFER_SIZE = 1 << 3, DEXTER_CHANNEL_SETTING_TIMEOUT_MSECS = 1 << 4, DEXTER_CHANNEL_SETTING_EVENT_CALLBACK = 1 << 5, DEXTER_CHANNEL_SETTING_TLS_START_CALLBACK = 1 << 6, DEXTER_CHANNEL_SETTING_TLS_CERT_FILE = 1 << 7, DEXTER_CHANNEL_SETTING_TLS_KEY_FILE = 1 << 8, DEXTER_CHANNEL_SETTING_TLS_TRUST_FILE = 1 << 9, DEXTER_CHANNEL_SETTING_TLS_CRL_FILE = 1 << 10, DEXTER_CHANNEL_SETTING_TLS_VERIFY_HOSTNAME = 1 << 11 } DexterChannelSettingFlags;
Flags to indicate which elements of DexterChannelSettings have data on them.
Since 0.2.0
flag for host element of DexterServerSettings. | |
flag for service element of DexterServerSettings. | |
flag for socket_options element of DexterServerSettings. | |
flag for recv_buffer_size element of DexterServerSettings. | |
flag for timeout_msecs element of DexterServerSettings. | |
flag for event_callback element of DexterServerSettings. | |
flag for tls_start_callback element of DexterServerSettings. | |
flag for tls_cert_file element of DexterServerSettings. | |
flag for tls_key_file element of DexterServerSettings. | |
flag for tls_trust_file element of DexterServerSettings. | |
flag for tls_cert_file element of DexterServerSettings. | |
flag for tls_verify_hostname element of DexterServerSettings. |
struct DexterChannelSettings { DexterChannelSettingFlags flags; gchar *host; /* ChannelHost */ gchar *service; /* ChannelService */ gchar *socket_options; /* ChannelSocketOptions */ gint recv_buffer_size; /* ChannelRecvBufferSize */ gint timeout_msecs; /* ChannelTimeoutMsecs */ DexterChannelEventCallback event_callback; /* -- */ DexterChannelTLSStartCallback tls_start_callback; /* -- */ gchar *tls_cert_file; /* ChannelTLSCertFile */ gchar *tls_key_file; /* ChannelTLSKeyFile */ gchar *tls_trust_file; /* ChannelTLSTrustFile */ gchar *tls_crl_file; /* ChannelTLSCrlFile */ gboolean tls_verify_hostname; /* ChannelTLSVerifyHostname */ };
Channel settings.
The flags
element indicates which elements have user-supplied data.
Elements for which no flag is set, i.e. have no user-supplied data, will be set to a default: either from the configuration file, if available, or an internal default will be used.
DexterChannelSettingFlags |
Bitwise OR of flags from DexterChannelSettingFlags. |
gchar * |
host name or host ip. |
gchar * |
service name or port number. |
gchar * |
tab or space-delimited list of socket options. |
gint |
size of channel socket receive buffer. |
gint |
milliseconds to wait for server response before timing out. |
DexterChannelEventCallback |
callback to receive channel event notifications. |
DexterChannelTLSStartCallback |
callback to override TLS settings as TLS starts. |
gchar * |
full path to X.509 certificate file in PEM format. |
gchar * |
full path to X.509 certificate private key file in PEM format. |
gchar * |
full path to X.509 trust file in PEM format. |
gchar * |
full path to X.509 certificate revocation list file in PEM format. |
gboolean |
whether or not client requires that the server's DNS hostname match its X.509 certificate. |
Since 0.2.0
DexterChannel * dexter_channel_new (const DexterChannelSettings *settings
);
Creates a channel using the supplied settings.
NULL
may be indicated for settings
, in which case the configuration file is used for all
channel settings. Internal defaults are used for items not found in the configuration file.
No network calls are performed until the channel is opened with dexter_channel_open()
.
The channel must be freed when done with dexter_channel_free()
.
|
address of DexterServerSettings or NULL . |
Returns : |
newly allocated DexterChannel if successful. NULL otherwise. |
gboolean dexter_channel_open (DexterChannel *channel
,GError **error
);
Opens the channel created with dexter_channel_new()
. A new tcp/ip
connection is established to the server for the channel. It remains
open until dexter_channel_close()
is called, the server disconnects,
or a network error occurs.
In the event an open channel is broken due to a network or server problem,
the channel will notify all objects running on channel and then the channel
will transition to DEXTER_CHANNEL_STATE_NOCONN
.
|
DexterChannel to open. |
|
return location for optional GError. |
Returns : |
gboolean indicating success or failure. |
gboolean dexter_channel_close (DexterChannel *channel
,GError **error
);
Closes a DexterChannel previously opened with dexter_channel_open()
.
If the channel is already closed, no error occurs and TRUE
is returned.
|
DexterChannel to close. |
|
return location for optional GError. |
Returns : |
gboolean indicating success or failure. |
gboolean dexter_channel_greet (DexterChannel *channel
,GError **error
);
Sends the protocol greeting on a DexterChannel previously opened with dexter_channel_open()
.
The greeting must be sent before using the channel, e.g. to create samplers.
|
DexterChannel to send greeting. |
|
return location for optional GError. |
Returns : |
gboolean indicating success or failure. |
gboolean dexter_channel_noop (DexterChannel *channel
,GError **error
);
Sends a "no operation" command over the DexterChannel to the connected server.
|
DexterChannel to send noop. |
|
return location for optional GError. |
Returns : |
gboolean indicating success or failure. |
Since 0.2.0
gboolean dexter_channel_starttls (DexterChannel *channel
,GError **error
);
Initializes TLS over the currently opened channel.
|
DexterChannel to send start tls request. |
|
return location for optional GError. |
Returns : |
gboolean indicating success or failure. |
Since 0.2.0
gboolean dexter_channel_part (DexterChannel *channel
,GError **error
);
Sends protocol parting message on a DexterChannel over which dexter_channel_greet()
has already been called. Should be called prior to dexter_channel_close()
.
|
DexterChannel to send parting message. |
|
return location for optional GError. |
Returns : |
gboolean indicating success or failure. |
void dexter_channel_free (DexterChannel *channel
);
Frees a DexterChannel created with dexter_channel_new()
. If the channel is not closed,
it will be closed for you, although it is better form to use dexter_channel_close()
before freeing the channel.
|
DexterChannel to free. |
gint dexter_channel_get_state (DexterChannel *channel
);
Returns the current state of the channel.
|
a DexterChannel. |
Returns : |
gint from DexterChannelState indicating current state of the channel. |