netevent.c File Reference

This file contains event notification functions. More...

#include "config.h"
#include "util/netevent.h"
#include "util/log.h"
#include "util/net_help.h"
#include "util/fptr_wlist.h"
#include <event.h>

Data Structures

struct  internal_event
 The internal event structure for keeping libevent info for the event. More...
struct  internal_base
 Internal base structure, so that every thread has its own events. More...
struct  internal_timer
 Internal timer structure, to store timer event in. More...
struct  internal_signal
 Internal signal structure, to store signal event in. More...

Defines

#define TCP_QUERY_TIMEOUT   120
 The TCP reading or writing query timeout in seconds.
#define NUM_UDP_PER_SELECT   100
 number of UDP reads to perform per read indication from select
#define CMSG_LEN(x)   (sizeof(struct cmsghdr)+(x))
 if no CMSG_LEN (Solaris 9) define something reasonable for one element

Functions

static struct comm_pointcomm_point_create_tcp_handler (struct comm_base *base, struct comm_point *parent, size_t bufsize, comm_point_callback_t *callback, void *callback_arg)
 create a tcp handler with a parent
static void comm_base_now (struct comm_base *b)
 fillup the time values in the event base
struct comm_basecomm_base_create (int sigs)
 Create a new comm base.
void comm_base_delete (struct comm_base *b)
 Destroy a comm base.
void comm_base_timept (struct comm_base *b, uint32_t **tt, struct timeval **tv)
 Obtain two pointers.
void comm_base_dispatch (struct comm_base *b)
 Dispatch the comm base events.
void comm_base_exit (struct comm_base *b)
 Exit from dispatch loop.
struct event_base * comm_base_internal (struct comm_base *b)
 Access internal data structure (for util/tube.c on windows).
int comm_point_send_udp_msg (struct comm_point *c, ldns_buffer *packet, struct sockaddr *addr, socklen_t addrlen)
 Send an udp message over a commpoint.
void p_ancil (const char *str, struct comm_reply *r)
 print debug ancillary info
int comm_point_send_udp_msg_if (struct comm_point *c, ldns_buffer *packet, struct sockaddr *addr, socklen_t addrlen, struct comm_reply *r)
 send a UDP reply over specified interface
void comm_point_udp_ancil_callback (int fd, short event, void *arg)
 This routine is published for checks and tests, and is only used internally.
void comm_point_udp_callback (int fd, short event, void *arg)
 This routine is published for checks and tests, and is only used internally.
static void setup_tcp_handler (struct comm_point *c, int fd)
 Use a new tcp handler for new query fd, set to read query.
int comm_point_perform_accept (struct comm_point *c, struct sockaddr_storage *addr, socklen_t *addrlen)
 perform accept(2) with error checking.
void comm_point_tcp_accept_callback (int fd, short event, void *arg)
 This routine is published for checks and tests, and is only used internally.
static void reclaim_tcp_handler (struct comm_point *c)
 Make tcp handler free for next assignment.
static void tcp_callback_writer (struct comm_point *c)
 do the callback when writing is done
static void tcp_callback_reader (struct comm_point *c)
 do the callback when reading is done
static int comm_point_tcp_handle_read (int fd, struct comm_point *c, int short_ok)
 Handle tcp reading callback.
static int comm_point_tcp_handle_write (int fd, struct comm_point *c)
 Handle tcp writing callback.
void comm_point_tcp_handle_callback (int fd, short event, void *arg)
 This routine is published for checks and tests, and is only used internally.
void comm_point_local_handle_callback (int fd, short event, void *arg)
 This routine is published for checks and tests, and is only used internally.
void comm_point_raw_handle_callback (int fd, short event, void *arg)
 This routine is published for checks and tests, and is only used internally.
struct comm_pointcomm_point_create_udp (struct comm_base *base, int fd, ldns_buffer *buffer, comm_point_callback_t *callback, void *callback_arg)
 Create an UDP comm point.
struct comm_pointcomm_point_create_udp_ancil (struct comm_base *base, int fd, ldns_buffer *buffer, comm_point_callback_t *callback, void *callback_arg)
 Create an UDP with ancillary data comm point.
struct comm_pointcomm_point_create_tcp (struct comm_base *base, int fd, int num, size_t bufsize, comm_point_callback_t *callback, void *callback_arg)
 Create a TCP listener comm point.
struct comm_pointcomm_point_create_tcp_out (struct comm_base *base, size_t bufsize, comm_point_callback_t *callback, void *callback_arg)
 Create an outgoing TCP commpoint.
struct comm_pointcomm_point_create_local (struct comm_base *base, int fd, size_t bufsize, comm_point_callback_t *callback, void *callback_arg)
 Create commpoint to listen to a local domain file descriptor.
struct comm_pointcomm_point_create_raw (struct comm_base *base, int fd, int writing, comm_point_callback_t *callback, void *callback_arg)
 Create commpoint to listen to a local domain pipe descriptor.
void comm_point_close (struct comm_point *c)
 Close a comm point fd.
void comm_point_delete (struct comm_point *c)
 Close and deallocate (free) the comm point.
void comm_point_set_cb_arg (struct comm_point *c, void *arg)
 Reset the callback argument for a comm point.
void comm_point_send_reply (struct comm_reply *repinfo)
 Send reply.
void comm_point_drop_reply (struct comm_reply *repinfo)
 Drop reply.
void comm_point_stop_listening (struct comm_point *c)
 Stop listening for input on the commpoint.
void comm_point_start_listening (struct comm_point *c, int newfd, int sec)
 Start listening again for input on the comm point.
void comm_point_listen_for_rw (struct comm_point *c, int rd, int wr)
 Stop listening and start listening again for reading or writing.
size_t comm_point_get_mem (struct comm_point *c)
 Get size of memory used by comm point.
struct comm_timercomm_timer_create (struct comm_base *base, void(*cb)(void *), void *cb_arg)
 create timer.
void comm_timer_disable (struct comm_timer *timer)
 disable timer.
void comm_timer_set (struct comm_timer *timer, struct timeval *tv)
 reset timevalue for timer.
void comm_timer_delete (struct comm_timer *timer)
 delete timer.
void comm_timer_callback (int fd, short event, void *arg)
 This routine is published for checks and tests, and is only used internally.
int comm_timer_is_set (struct comm_timer *timer)
 see if timeout has been set to a value.
size_t comm_timer_get_mem (struct comm_timer *timer)
 Get size of memory used by comm timer.
struct comm_signalcomm_signal_create (struct comm_base *base, void(*callback)(int, void *), void *cb_arg)
 Create a signal handler.
void comm_signal_callback (int sig, short event, void *arg)
 This routine is published for checks and tests, and is only used internally.
int comm_signal_bind (struct comm_signal *comsig, int sig)
 Bind signal struct to catch a signal.
void comm_signal_delete (struct comm_signal *comsig)
 Delete the signal communication point.

Detailed Description

This file contains event notification functions.


Function Documentation

struct comm_base* comm_base_create ( int  sigs  )  [read]

Create a new comm base.

Parameters:
sigs,: if true it attempts to create a default loop for signal handling.
Returns:
: the new comm base. NULL on error.

References internal_base::base, comm_base_now(), comm_base::eb, fatal_exit(), macro_store_create(), internal_base::now, replay_runtime::scenario, internal_base::secs, replay_runtime::vars, VERB_ALGO, and verbose().

void comm_base_delete ( struct comm_base b  ) 
void comm_base_timept ( struct comm_base b,
uint32_t **  tt,
struct timeval **  tv 
)

Obtain two pointers.

The pointers never change (until base_delete()). The pointers point to time values that are updated regularly.

Parameters:
b,: the communication base that will update the time values.
tt,: pointer to time in seconds is returned.
tv,: pointer to time in microseconds is returned.

References comm_base::eb, internal_base::now, replay_runtime::now_secs, replay_runtime::now_tv, and internal_base::secs.

void comm_base_dispatch ( struct comm_base b  ) 

Dispatch the comm base events.

Parameters:
b,: the communication to perform.

References internal_base::base, comm_base::eb, fatal_exit(), run_scenario(), replay_runtime::sig_cb, and replay_runtime::sig_cb_arg.

void comm_base_exit ( struct comm_base b  ) 

Exit from dispatch loop.

Parameters:
b,: the communication base that is in dispatch().

References internal_base::base, comm_base::eb, replay_runtime::exit_cleanly, fatal_exit(), and log_err().

struct event_base* comm_base_internal ( struct comm_base b  )  [read]

Access internal data structure (for util/tube.c on windows).

Parameters:
b,: comm base
Returns:
event_base. Could be libevent, or internal event handler.

References internal_base::base, and comm_base::eb.

int comm_point_send_udp_msg ( struct comm_point c,
ldns_buffer *  packet,
struct sockaddr *  addr,
socklen_t  addrlen 
)

Send an udp message over a commpoint.

Parameters:
c,: commpoint to send it from.
packet,: what to send.
addr,: where to send it to.
addrlen,: length of addr.
Returns:
: false on a failure.

References addr_is_ip4mapped(), comm_point::fd, log_addr(), log_assert, log_err(), VERB_ALGO, VERB_DETAIL, VERB_OPS, verbose(), and verbosity.

Referenced by comm_point_send_reply(), comm_point_udp_callback(), and randomize_and_send_udp().

void comm_point_udp_ancil_callback ( int  fd,
short  event,
void *  arg 
)

This routine is published for checks and tests, and is only used internally.

handle libevent callback for udp ancillary data comm point.

Parameters:
fd,: file descriptor.
event,: event bits from libevent: EV_READ, EV_WRITE, EV_SIGNAL, EV_TIMEOUT.
arg,: the comm_point structure.

References comm_reply::addr, comm_reply::addrlen, internal_event::base, comm_point::buffer, comm_reply::c, comm_point::callback, comm_point::cb_arg, comm_base_now(), comm_point_send_udp_msg_if(), comm_point::comm_udp, comm_point::ev, fatal_exit(), comm_point::fd, fptr_ok, fptr_whitelist_comm_point(), log_assert, log_err(), NETEVENT_NOERROR, NUM_UDP_PER_SELECT, p_ancil(), comm_reply::pktinfo, comm_reply::srctype, comm_point::type, VERB_ALGO, and verbosity.

void comm_point_udp_callback ( int  fd,
short  event,
void *  arg 
)

This routine is published for checks and tests, and is only used internally.

handle libevent callback for udp comm point.

Parameters:
fd,: file descriptor.
event,: event bits from libevent: EV_READ, EV_WRITE, EV_SIGNAL, EV_TIMEOUT.
arg,: the comm_point structure.

References comm_reply::addr, comm_reply::addrlen, internal_event::base, comm_point::buffer, comm_reply::c, comm_point::callback, comm_point::cb_arg, comm_base_now(), comm_point_send_udp_msg(), comm_point::comm_udp, comm_point::ev, comm_point::fd, fptr_ok, fptr_whitelist_comm_point(), log_assert, log_err(), NETEVENT_NOERROR, NUM_UDP_PER_SELECT, comm_reply::srctype, and comm_point::type.

int comm_point_perform_accept ( struct comm_point c,
struct sockaddr_storage *  addr,
socklen_t *  addrlen 
)

perform accept(2) with error checking.

Parameters:
c,: commpoint with accept fd.
addr,: remote end returned here.
addrlen,: length of remote end returned here.
Returns:
new fd, or -1 on error. if -1, error message has been printed if necessary, simply drop out of the reading handler.

References internal_event::ev, comm_point::ev, comm_point::fd, fd_set_nonblock(), log_addr(), and log_err().

Referenced by comm_point_tcp_accept_callback(), and remote_accept_callback().

void comm_point_tcp_accept_callback ( int  fd,
short  event,
void *  arg 
)

This routine is published for checks and tests, and is only used internally.

handle libevent callback for tcp accept comm point

Parameters:
fd,: file descriptor.
event,: event bits from libevent: EV_READ, EV_WRITE, EV_SIGNAL, EV_TIMEOUT.
arg,: the comm_point structure.

References comm_reply::addr, internal_event::base, comm_base_now(), comm_point_perform_accept(), comm_point_stop_listening(), comm_point::comm_tcp_accept, comm_point::ev, log_assert, log_info(), log_warn(), comm_point::repinfo, setup_tcp_handler(), comm_point::tcp_free, and comm_point::type.

static int comm_point_tcp_handle_read ( int  fd,
struct comm_point c,
int  short_ok 
) [static]

Handle tcp reading callback.

Parameters:
fd,: file descriptor of socket.
c,: comm point to read from into buffer.
short_ok,: if true, very short packets are OK (for comm_local).
Returns:
: 0 on error

References comm_reply::addr, comm_reply::addrlen, comm_point::buffer, comm_point::comm_local, comm_point::comm_tcp, internal_event::ev, comm_point::ev, log_addr(), log_assert, log_err(), comm_point::repinfo, comm_point::tcp_byte_count, tcp_callback_reader(), comm_point::tcp_is_reading, comm_point::type, VERB_ALGO, VERB_QUERY, verbose(), and verbosity.

Referenced by comm_point_local_handle_callback(), and comm_point_tcp_handle_callback().

static int comm_point_tcp_handle_write ( int  fd,
struct comm_point c 
) [static]
void comm_point_tcp_handle_callback ( int  fd,
short  event,
void *  arg 
)

This routine is published for checks and tests, and is only used internally.

handle libevent callback for tcp data comm point

Parameters:
fd,: file descriptor.
event,: event bits from libevent: EV_READ, EV_WRITE, EV_SIGNAL, EV_TIMEOUT.
arg,: the comm_point structure.

References internal_event::base, comm_point::callback, comm_point::cb_arg, comm_base_now(), comm_point_tcp_handle_read(), comm_point_tcp_handle_write(), comm_point::comm_tcp, comm_point::ev, fptr_ok, fptr_whitelist_comm_point(), log_assert, log_err(), NETEVENT_CLOSED, NETEVENT_TIMEOUT, reclaim_tcp_handler(), comm_point::tcp_do_close, comm_point::type, VERB_QUERY, and verbose().

void comm_point_local_handle_callback ( int  fd,
short  event,
void *  arg 
)

This routine is published for checks and tests, and is only used internally.

libevent callback for AF_UNIX fds

Parameters:
fd,: file descriptor.
event,: event bits from libevent: EV_READ, EV_WRITE, EV_SIGNAL, EV_TIMEOUT.
arg,: the comm_point structure.

References internal_event::base, comm_point::callback, comm_point::cb_arg, comm_base_now(), comm_point::comm_local, comm_point_tcp_handle_read(), comm_point::ev, fptr_ok, fptr_whitelist_comm_point(), log_assert, log_err(), NETEVENT_CLOSED, and comm_point::type.

void comm_point_raw_handle_callback ( int  fd,
short  event,
void *  arg 
)

This routine is published for checks and tests, and is only used internally.

libevent callback for raw fd access.

Parameters:
fd,: file descriptor.
event,: event bits from libevent: EV_READ, EV_WRITE, EV_SIGNAL, EV_TIMEOUT.
arg,: the comm_point structure.

References internal_event::base, comm_point::callback, comm_point::cb_arg, comm_base_now(), comm_point::comm_raw, comm_point::ev, fptr_ok, fptr_whitelist_comm_point_raw(), log_assert, NETEVENT_NOERROR, NETEVENT_TIMEOUT, and comm_point::type.

struct comm_point* comm_point_create_udp ( struct comm_base base,
int  fd,
ldns_buffer *  buffer,
comm_point_callback_t callback,
void *  callback_arg 
) [read]

Create an UDP comm point.

Calls malloc. setups the structure with the parameters you provide.

Parameters:
base,: in which base to alloc the commpoint.
fd : file descriptor of open UDP socket.
buffer,: shared buffer by UDP sockets from this thread.
callback,: callback function pointer.
callback_arg,: will be passed to your callback function.
Returns:
: returns the allocated communication point. NULL on error. Sets timeout to NULL. Turns off TCP options.

References internal_base::base, internal_event::base, comm_point::buffer, comm_point::callback, comm_point::cb_arg, comm_point_delete(), comm_point_udp_callback(), comm_point::do_not_close, comm_base::eb, internal_event::ev, comm_point::ev, comm_point::fd, comm_point::inuse, log_err(), comm_point::max_tcp_count, comm_point::tcp_byte_count, comm_point::tcp_check_nb_connect, comm_point::tcp_do_close, comm_point::tcp_do_toggle_rw, comm_point::tcp_free, comm_point::tcp_handlers, comm_point::tcp_is_reading, comm_point::tcp_parent, comm_point::timeout, and comm_point::type.

Referenced by listen_create(), and outside_network_create().

struct comm_point* comm_point_create_udp_ancil ( struct comm_base base,
int  fd,
ldns_buffer *  buffer,
comm_point_callback_t callback,
void *  callback_arg 
) [read]

Create an UDP with ancillary data comm point.

Calls malloc. Uses recvmsg instead of recv to get udp message. setups the structure with the parameters you provide.

Parameters:
base,: in which base to alloc the commpoint.
fd : file descriptor of open UDP socket.
buffer,: shared buffer by UDP sockets from this thread.
callback,: callback function pointer.
callback_arg,: will be passed to your callback function.
Returns:
: returns the allocated communication point. NULL on error. Sets timeout to NULL. Turns off TCP options.

References internal_base::base, internal_event::base, comm_point::buffer, comm_point::callback, comm_point::cb_arg, comm_point_delete(), comm_point_udp_ancil_callback(), comm_point::do_not_close, comm_base::eb, internal_event::ev, comm_point::ev, comm_point::fd, comm_point::inuse, log_err(), comm_point::max_tcp_count, comm_point::tcp_byte_count, comm_point::tcp_check_nb_connect, comm_point::tcp_do_close, comm_point::tcp_do_toggle_rw, comm_point::tcp_free, comm_point::tcp_handlers, comm_point::tcp_is_reading, comm_point::tcp_parent, comm_point::timeout, and comm_point::type.

Referenced by listen_create().

struct comm_point* comm_point_create_tcp ( struct comm_base base,
int  fd,
int  num,
size_t  bufsize,
comm_point_callback_t callback,
void *  callback_arg 
) [read]

Create a TCP listener comm point.

Calls malloc. Setups the structure with the parameters you provide. Also Creates TCP Handlers, pre allocated for you. Uses the parameters you provide.

Parameters:
base,: in which base to alloc the commpoint.
fd,: file descriptor of open TCP socket set to listen nonblocking.
num,: becomes max_tcp_count, the routine allocates that many tcp handler commpoints.
bufsize,: size of buffer to create for handlers.
callback,: callback function pointer for TCP handlers.
callback_arg,: will be passed to your callback function.
Returns:
: returns the TCP listener commpoint. You can find the TCP handlers in the array inside the listener commpoint. returns NULL on error. Inits timeout to NULL. All handlers are on the free list.

References internal_base::base, internal_event::base, comm_point::buffer, comm_point::callback, comm_point::cb_arg, comm_point_create_tcp_handler(), comm_point_delete(), comm_point_tcp_accept_callback(), comm_point::comm_tcp_accept, comm_point::do_not_close, comm_base::eb, internal_event::ev, comm_point::ev, comm_point::fd, log_err(), comm_point::max_tcp_count, comm_point::tcp_byte_count, comm_point::tcp_check_nb_connect, comm_point::tcp_do_close, comm_point::tcp_do_toggle_rw, comm_point::tcp_free, comm_point::tcp_handlers, comm_point::tcp_is_reading, comm_point::tcp_parent, comm_point::timeout, and comm_point::type.

Referenced by listen_create().

struct comm_point* comm_point_create_tcp_out ( struct comm_base base,
size_t  bufsize,
comm_point_callback_t callback,
void *  callback_arg 
) [read]

Create an outgoing TCP commpoint.

No file descriptor is opened, left at -1.

Parameters:
base,: in which base to alloc the commpoint.
bufsize,: size of buffer to create for handlers.
callback,: callback function pointer for the handler.
callback_arg,: will be passed to your callback function.
Returns:
: the commpoint or NULL on error.

References internal_base::base, internal_event::base, comm_point::buffer, comm_reply::c, comm_point::callback, comm_point::cb_arg, comm_point_tcp_handle_callback(), comm_point::do_not_close, comm_base::eb, internal_event::ev, comm_point::ev, comm_point::fd, log_err(), comm_point::max_tcp_count, comm_point::repinfo, comm_point::tcp_byte_count, comm_point::tcp_check_nb_connect, comm_point::tcp_do_close, comm_point::tcp_do_toggle_rw, comm_point::tcp_free, comm_point::tcp_handlers, comm_point::tcp_is_reading, comm_point::tcp_parent, comm_point::timeout, and comm_point::type.

Referenced by create_pending_tcp().

struct comm_point* comm_point_create_local ( struct comm_base base,
int  fd,
size_t  bufsize,
comm_point_callback_t callback,
void *  callback_arg 
) [read]

Create commpoint to listen to a local domain file descriptor.

Parameters:
base,: in which base to alloc the commpoint.
fd,: file descriptor of open AF_UNIX socket set to listen nonblocking.
bufsize,: size of buffer to create for handlers.
callback,: callback function pointer for the handler.
callback_arg,: will be passed to your callback function.
Returns:
: the commpoint or NULL on error.

References internal_base::base, internal_event::base, comm_point::buffer, comm_point::callback, comm_point::cb_arg, comm_point_local_handle_callback(), comm_point::do_not_close, comm_base::eb, internal_event::ev, comm_point::ev, comm_point::fd, log_err(), comm_point::max_tcp_count, comm_point::tcp_byte_count, comm_point::tcp_check_nb_connect, comm_point::tcp_do_close, comm_point::tcp_do_toggle_rw, comm_point::tcp_free, comm_point::tcp_handlers, comm_point::tcp_is_reading, comm_point::tcp_parent, comm_point::timeout, and comm_point::type.

struct comm_point* comm_point_create_raw ( struct comm_base base,
int  fd,
int  writing,
comm_point_callback_t callback,
void *  callback_arg 
) [read]

Create commpoint to listen to a local domain pipe descriptor.

Parameters:
base,: in which base to alloc the commpoint.
fd,: file descriptor.
writing,: true if you want to listen to writes, false for reads.
callback,: callback function pointer for the handler.
callback_arg,: will be passed to your callback function.
Returns:
: the commpoint or NULL on error.

References internal_base::base, internal_event::base, comm_point::buffer, comm_point::callback, comm_point::cb_arg, comm_point_raw_handle_callback(), comm_point::do_not_close, comm_base::eb, internal_event::ev, comm_point::ev, comm_point::fd, log_err(), comm_point::max_tcp_count, comm_point::tcp_byte_count, comm_point::tcp_check_nb_connect, comm_point::tcp_do_close, comm_point::tcp_do_toggle_rw, comm_point::tcp_free, comm_point::tcp_handlers, comm_point::tcp_is_reading, comm_point::tcp_parent, comm_point::timeout, and comm_point::type.

void comm_point_close ( struct comm_point c  ) 
void comm_point_delete ( struct comm_point c  ) 

Close and deallocate (free) the comm point.

If the comm point is a tcp-accept point, also its tcp-handler points are deleted.

Parameters:
c,: comm point to delete.

References comm_point::buffer, comm_point_close(), comm_point_delete(), comm_point::ev, comm_point::max_tcp_count, comm_point::tcp_handlers, comm_point::timeout, and comm_point::type.

void comm_point_set_cb_arg ( struct comm_point c,
void *  arg 
)

Reset the callback argument for a comm point.

Parameters:
c,: the comm point to change.
arg,: the new callback user argument.

References comm_point::cb_arg, and log_assert.

void comm_point_send_reply ( struct comm_reply repinfo  ) 
void comm_point_drop_reply ( struct comm_reply repinfo  ) 

Drop reply.

Cleans up.

Parameters:
repinfo,: The reply info copied from a commpoint callback call.

References comm_point::buffer, comm_reply::c, log_assert, log_info(), reclaim_tcp_handler(), and comm_point::type.

void comm_point_stop_listening ( struct comm_point c  ) 

Stop listening for input on the commpoint.

No callbacks will happen.

Parameters:
c,: commpoint to disable. The fd is not closed.

References internal_event::ev, comm_point::ev, comm_point::fd, log_err(), VERB_ALGO, and verbose().

void comm_point_start_listening ( struct comm_point c,
int  newfd,
int  sec 
)

Start listening again for input on the comm point.

Parameters:
c,: commpoint to enable again.
newfd,: new fd, or -1 to leave fd be.
sec,: timeout in seconds, or -1 for no (change to the) timeout.

References internal_event::ev, comm_point::ev, comm_point::fd, log_err(), comm_point::tcp_free, comm_point::tcp_is_reading, comm_point::timeout, comm_point::type, VERB_ALGO, and verbose().

void comm_point_listen_for_rw ( struct comm_point c,
int  rd,
int  wr 
)

Stop listening and start listening again for reading or writing.

Parameters:
c,: commpoint
rd,: if true, listens for reading.
wr,: if true, listens for writing.

References internal_event::ev, comm_point::ev, comm_point::fd, log_err(), comm_point::timeout, VERB_ALGO, and verbose().

Referenced by remote_control_callback().

size_t comm_point_get_mem ( struct comm_point c  ) 

Get size of memory used by comm point.

For TCP handlers this includes subhandlers. For UDP handlers, this does not include the (shared) UDP buffer.

Parameters:
c,: commpoint.
Returns:
size in bytes.

References comm_point::buffer, comm_point_get_mem(), comm_point::ev, comm_point::max_tcp_count, comm_point::tcp_handlers, comm_point::timeout, and comm_point::type.

struct comm_timer* comm_timer_create ( struct comm_base base,
void(*)(void *)  cb,
void *  cb_arg 
) [read]

create timer.

Not active upon creation.

Parameters:
base,: event handling base.
cb,: callback function: void myfunc(void* myarg);
cb_arg,: user callback argument.
Returns:
: the new timer or NULL on error.

References internal_base::base, internal_timer::base, comm_timer::callback, fake_timer::cb, comm_timer::cb_arg, fake_timer::cb_arg, comm_timer_callback(), comm_base::eb, internal_timer::ev, comm_timer::ev_timer, fptr_ok, fptr_whitelist_comm_timer(), log_err(), fake_timer::next, fake_timer::runtime, and replay_runtime::timer_list.

void comm_timer_disable ( struct comm_timer timer  ) 

disable timer.

Stops callbacks from happening.

Parameters:
timer,: to disable.

References internal_timer::enabled, fake_timer::enabled, internal_timer::ev, comm_timer::ev_timer, and log_info().

void comm_timer_set ( struct comm_timer timer,
struct timeval *  tv 
)
void comm_timer_delete ( struct comm_timer timer  ) 

delete timer.

Parameters:
timer,: to delete.

References comm_timer_disable(), comm_timer::ev_timer, fake_timer::next, fake_timer::runtime, and replay_runtime::timer_list.

void comm_timer_callback ( int  fd,
short  event,
void *  arg 
)

This routine is published for checks and tests, and is only used internally.

handle libevent callback for timer comm.

Parameters:
fd,: file descriptor (always -1).
event,: event bits from libevent: EV_READ, EV_WRITE, EV_SIGNAL, EV_TIMEOUT.
arg,: the comm_timer structure.

References internal_timer::base, comm_timer::callback, comm_timer::cb_arg, comm_base_now(), internal_timer::enabled, comm_timer::ev_timer, fptr_ok, fptr_whitelist_comm_timer(), and log_assert.

int comm_timer_is_set ( struct comm_timer timer  ) 

see if timeout has been set to a value.

Parameters:
timer,: the timer to examine.
Returns:
: false if disabled or not set.

References internal_timer::enabled, and comm_timer::ev_timer.

size_t comm_timer_get_mem ( struct comm_timer timer  ) 

Get size of memory used by comm timer.

Parameters:
timer,: the timer to examine.
Returns:
size in bytes.

Referenced by serviced_get_mem(), waiting_tcp_get_mem(), and waiting_udp_get_mem().

struct comm_signal* comm_signal_create ( struct comm_base base,
void(*)(int, void *)  callback,
void *  cb_arg 
) [read]

Create a signal handler.

Call signal_bind() later to bind to a signal.

Parameters:
base,: communication base to use.
callback,: called when signal is caught.
cb_arg,: user argument to callback
Returns:
: the signal struct or NULL on error.

References comm_signal::base, comm_signal::callback, comm_signal::cb_arg, comm_signal::ev_signal, log_err(), replay_runtime::sig_cb, and replay_runtime::sig_cb_arg.

void comm_signal_callback ( int  fd,
short  event,
void *  arg 
)

This routine is published for checks and tests, and is only used internally.

handle libevent callback for signal comm.

Parameters:
fd,: file descriptor (used for the signal number).
event,: event bits from libevent: EV_READ, EV_WRITE, EV_SIGNAL, EV_TIMEOUT.
arg,: the internal commsignal structure.

References comm_signal::base, comm_signal::callback, comm_signal::cb_arg, comm_base_now(), fptr_ok, fptr_whitelist_comm_signal(), and log_assert.

int comm_signal_bind ( struct comm_signal comsig,
int  sig 
)

Bind signal struct to catch a signal.

A signle comm_signal can be bound to multiple signals, calling comm_signal_bind multiple times.

Parameters:
comsig,: the communication point, with callback information.
sig,: signal number.
Returns:
: true on success. false on error.

References internal_base::base, comm_signal::base, comm_signal_callback(), comm_base::eb, internal_signal::ev, comm_signal::ev_signal, log_assert, log_err(), and internal_signal::next.

void comm_signal_delete ( struct comm_signal comsig  ) 

Delete the signal communication point.

Parameters:
comsig,: to delete.

References internal_signal::ev, comm_signal::ev_signal, and internal_signal::next.

Generated on Thu Apr 22 00:30:18 2010 for unbound by  doxygen 1.6.3