/* * Copyright (C) 2006-2009 Martin Willi * Hochschule fuer Technik Rapperswil * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation; either version 2 of the License, or (at your * option) any later version. See . * * This program 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 General Public License * for more details. */ /** * @defgroup bus bus * @{ @ingroup libcharon */ #ifndef BUS_H_ #define BUS_H_ typedef enum alert_t alert_t; typedef enum narrow_hook_t narrow_hook_t; typedef struct bus_t bus_t; #include #include #include #include #include #include /* undefine the definitions from libstrongswan */ #undef DBG0 #undef DBG1 #undef DBG2 #undef DBG3 #undef DBG4 #ifndef DEBUG_LEVEL # define DEBUG_LEVEL 4 #endif /* DEBUG_LEVEL */ #if DEBUG_LEVEL >= 0 #define DBG0(group, format, ...) charon->bus->log(charon->bus, group, 0, format, ##__VA_ARGS__) #endif /* DEBUG_LEVEL >= 0 */ #if DEBUG_LEVEL >= 1 #define DBG1(group, format, ...) charon->bus->log(charon->bus, group, 1, format, ##__VA_ARGS__) #endif /* DEBUG_LEVEL >= 1 */ #if DEBUG_LEVEL >= 2 #define DBG2(group, format, ...) charon->bus->log(charon->bus, group, 2, format, ##__VA_ARGS__) #endif /* DEBUG_LEVEL >= 2 */ #if DEBUG_LEVEL >= 3 #define DBG3(group, format, ...) charon->bus->log(charon->bus, group, 3, format, ##__VA_ARGS__) #endif /* DEBUG_LEVEL >= 3 */ #if DEBUG_LEVEL >= 4 #define DBG4(group, format, ...) charon->bus->log(charon->bus, group, 4, format, ##__VA_ARGS__) #endif /* DEBUG_LEVEL >= 4 */ #ifndef DBG0 # define DBG0(...) {} #endif /* DBG0 */ #ifndef DBG1 # define DBG1(...) {} #endif /* DBG1 */ #ifndef DBG2 # define DBG2(...) {} #endif /* DBG2 */ #ifndef DBG3 # define DBG3(...) {} #endif /* DBG3 */ #ifndef DBG4 # define DBG4(...) {} #endif /* DBG4 */ /** * Kind of alerts to raise. */ enum alert_t { /** a RADIUS server did not respond, no additional arguments */ ALERT_RADIUS_NOT_RESPONDING, /** a shutdown signal has been received, argument is the signal (int) */ ALERT_SHUTDOWN_SIGNAL, /** responder authentication failed, no arguments */ ALERT_RESPONDER_AUTH_FAILED, }; /** * Kind of narrow hook. * * There is a non-authenticated (IKE_AUTH) and a authenticated * (CREATE_CHILD_SA) narrowing hook for the initiator. Only one of these * hooks is invoked before the exchange. * To verify the traffic selectors negotiated, each PRE hook has a POST * counterpart that follows. POST hooks are invoked with an authenticated peer. * It is usually not a good idea to narrow in the POST hooks, * as the resulting traffic selector is not negotiated and results * in non-matching policies. */ enum narrow_hook_t { /** invoked as initiator before exchange, peer is not yet authenticated */ NARROW_INITIATOR_PRE_NOAUTH, /** invoked as initiator before exchange, peer is authenticated */ NARROW_INITIATOR_PRE_AUTH, /** invoked as responder during exchange, peer is authenticated */ NARROW_RESPONDER, /** invoked as initiator after exchange, follows a INITIATOR_PRE_NOAUTH */ NARROW_INITIATOR_POST_NOAUTH, /** invoked as initiator after exchange, follows a INITIATOR_PRE_AUTH */ NARROW_INITIATOR_POST_AUTH, }; /** * The bus receives events and sends them to all registered listeners. * * Any events sent to are delivered to all registered listeners. Threads * may wait actively to events using the blocking listen() call. */ struct bus_t { /** * Register a listener to the bus. * * A registered listener receives all events which are sent to the bus. * The listener is passive; the thread which emitted the event * processes the listener routine. * * @param listener listener to register. */ void (*add_listener) (bus_t *this, listener_t *listener); /** * Unregister a listener from the bus. * * @param listener listener to unregister. */ void (*remove_listener) (bus_t *this, listener_t *listener); /** * Register a listener and block the calling thread. * * This call registers a listener and blocks the calling thread until * its listeners function returns FALSE. This allows to wait for certain * events. The associated job is executed after the listener has been * registered: This allows to listen on events we initiate with the job, * without missing any events to job may fire. * * @param listener listener to register * @param job job to execute asynchronously when registered, or NULL */ void (*listen)(bus_t *this, listener_t *listener, job_t *job); /** * Set the IKE_SA the calling thread is using. * * To associate an received log message to an IKE_SA without passing it as * parameter each time, the thread registers the currenlty used IKE_SA * during check-out. Before check-in, the thread unregisters the IKE_SA. * This IKE_SA is stored per-thread, so each thread has its own IKE_SA * registered. * * @param ike_sa ike_sa to register, or NULL to unregister */ void (*set_sa) (bus_t *this, ike_sa_t *ike_sa); /** * Get the IKE_SA the calling thread is currently using. * * If a thread currently does not know what IKE_SA it is processing, * it can call get_sa() to look up the SA set during checkout via set_sa(). * * @return registered ike_sa, NULL if none registered */ ike_sa_t* (*get_sa)(bus_t *this); /** * Send a log message to the bus. * * The signal specifies the type of the event occurred. The format string * specifies an additional informational or error message with a * printf() like variable argument list. * Use the DBG() macros. * * @param group debugging group * @param level verbosity level of the signal * @param format printf() style format string * @param ... printf() style argument list */ void (*log)(bus_t *this, debug_t group, level_t level, char* format, ...); /** * Send a log message to the bus using va_list arguments. * * Same as bus_t.signal(), but uses va_list argument list. * * @param group kind of the signal (up, down, rekeyed, ...) * @param level verbosity level of the signal * @param format printf() style format string * @param args va_list arguments */ void (*vlog)(bus_t *this, debug_t group, level_t level, char* format, va_list args); /** * Raise an alert over the bus. * * @param alert kind of alert * @param ... alert specific attributes */ void (*alert)(bus_t *this, alert_t alert, ...); /** * Send a IKE_SA state change event to the bus. * * @param ike_sa IKE_SA which changes its state * @param state new state IKE_SA changes to */ void (*ike_state_change)(bus_t *this, ike_sa_t *ike_sa, ike_sa_state_t state); /** * Send a CHILD_SA state change event to the bus. * * @param child_sa CHILD_SA which changes its state * @param state new state CHILD_SA changes to */ void (*child_state_change)(bus_t *this, child_sa_t *child_sa, child_sa_state_t state); /** * Message send/receive hook. * * @param message message to send/receive * @param incoming TRUE for incoming messages, FALSE for outgoing */ void (*message)(bus_t *this, message_t *message, bool incoming); /** * IKE_SA authorization hook. * * @param final TRUE if this is the final invocation * @return TRUE to establish IKE_SA, FALSE to send AUTH_FAILED */ bool (*authorize)(bus_t *this, bool final); /** * CHILD_SA traffic selector narrowing hook. * * @param child_sa CHILD_SA set up with these traffic selectors * @param type type of hook getting invoked * @param local list of local traffic selectors to narrow * @param remote list of remote traffic selectors to narrow */ void (*narrow)(bus_t *this, child_sa_t *child_sa, narrow_hook_t type, linked_list_t *local, linked_list_t *remote); /** * IKE_SA keymat hook. * * @param ike_sa IKE_SA this keymat belongs to * @param dh diffie hellman shared secret * @param nonce_i initiators nonce * @param nonce_r responders nonce * @param rekey IKE_SA we are rekeying, if any */ void (*ike_keys)(bus_t *this, ike_sa_t *ike_sa, diffie_hellman_t *dh, chunk_t nonce_i, chunk_t nonce_r, ike_sa_t *rekey); /** * CHILD_SA keymat hook. * * @param child_sa CHILD_SA this keymat is used for * @param initiator initiator of the CREATE_CHILD_SA exchange * @param dh diffie hellman shared secret * @param nonce_i initiators nonce * @param nonce_r responders nonce */ void (*child_keys)(bus_t *this, child_sa_t *child_sa, bool initiator, diffie_hellman_t *dh, chunk_t nonce_i, chunk_t nonce_r); /** * IKE_SA up/down hook. * * @param ike_sa IKE_SA coming up/going down * @param up TRUE for an up event, FALSE for a down event */ void (*ike_updown)(bus_t *this, ike_sa_t *ike_sa, bool up); /** * IKE_SA rekeying hook. * * @param old rekeyed and obsolete IKE_SA * @param new new IKE_SA replacing old */ void (*ike_rekey)(bus_t *this, ike_sa_t *old, ike_sa_t *new); /** * CHILD_SA up/down hook. * * @param child_sa CHILD_SA coming up/going down * @param up TRUE for an up event, FALSE for a down event */ void (*child_updown)(bus_t *this, child_sa_t *child_sa, bool up); /** * CHILD_SA rekeying hook. * * @param old rekeyed and obsolete CHILD_SA * @param new new CHILD_SA replacing old */ void (*child_rekey)(bus_t *this, child_sa_t *old, child_sa_t *new); /** * Destroy the event bus. */ void (*destroy) (bus_t *this); }; /** * Create the event bus which forwards events to its listeners. * * @return event bus instance */ bus_t *bus_create(); #endif /** BUS_H_ @}*/