GNUnet  0.19.4
testbed_api_peers.c File Reference

management of the knowledge about peers in this library (we know the peer ID, its host, pending operations, etc.) More...

#include "platform.h"
#include "testbed_api_peers.h"
#include "testbed_api.h"
#include "testbed.h"
#include "testbed_api_hosts.h"
#include "testbed_api_operations.h"
Include dependency graph for testbed_api_peers.c:

Go to the source code of this file.

Functions

void GNUNET_TESTBED_peer_register_ (struct GNUNET_TESTBED_Peer *peer)
 Adds a peer to the peer list. More...
 
void GNUNET_TESTBED_peer_deregister_ (struct GNUNET_TESTBED_Peer *peer)
 Removes a peer from the peer list. More...
 
void GNUNET_TESTBED_cleanup_peers_ (void)
 Frees all peers. More...
 
static void opstart_peer_create (void *cls)
 Function to call to start a peer_create type operation once all queues the operation is part of declare that the operation can be activated. More...
 
static void oprelease_peer_create (void *cls)
 Callback which will be called when peer_create type operation is released. More...
 
static void opstart_peer_destroy (void *cls)
 Function called when a peer destroy operation is ready. More...
 
static void oprelease_peer_destroy (void *cls)
 Callback which will be called when peer_create type operation is released. More...
 
static void opstart_peer_start (void *cls)
 Function called when a peer start operation is ready. More...
 
static void oprelease_peer_start (void *cls)
 Callback which will be called when peer start type operation is released. More...
 
static void opstart_peer_stop (void *cls)
 Function called when a peer stop operation is ready. More...
 
static void oprelease_peer_stop (void *cls)
 Callback which will be called when peer stop type operation is released. More...
 
struct GNUNET_TESTBED_PeerGetConfigurationMessageGNUNET_TESTBED_generate_peergetconfig_msg_ (uint32_t peer_id, uint64_t operation_id)
 Generate PeerGetConfigurationMessage. More...
 
static void opstart_peer_getinfo (void *cls)
 Function called when a peer get information operation is ready. More...
 
static void oprelease_peer_getinfo (void *cls)
 Callback which will be called when peer stop type operation is released. More...
 
static void opstart_overlay_connect (void *cls)
 Function called when a overlay connect operation is ready. More...
 
static void oprelease_overlay_connect (void *cls)
 Callback which will be called when overlay connect operation is released. More...
 
static void opstart_peer_reconfigure (void *cls)
 Function called when a peer reconfigure operation is ready. More...
 
static void oprelease_peer_reconfigure (void *cls)
 Callback which will be called when a peer reconfigure operation is released. More...
 
struct GNUNET_TESTBED_PeerGNUNET_TESTBED_peer_lookup_by_id_ (uint32_t id)
 Lookup a peer by ID. More...
 
struct GNUNET_TESTBED_OperationGNUNET_TESTBED_peer_create (struct GNUNET_TESTBED_Controller *controller, struct GNUNET_TESTBED_Host *host, const struct GNUNET_CONFIGURATION_Handle *cfg, GNUNET_TESTBED_PeerCreateCallback cb, void *cls)
 Create the given peer at the specified host using the given controller. More...
 
struct GNUNET_TESTBED_OperationGNUNET_TESTBED_peer_start (void *op_cls, struct GNUNET_TESTBED_Peer *peer, GNUNET_TESTBED_PeerChurnCallback pcc, void *pcc_cls)
 Start the given peer. More...
 
struct GNUNET_TESTBED_OperationGNUNET_TESTBED_peer_stop (void *op_cls, struct GNUNET_TESTBED_Peer *peer, GNUNET_TESTBED_PeerChurnCallback pcc, void *pcc_cls)
 Stop the given peer. More...
 
struct GNUNET_TESTBED_OperationGNUNET_TESTBED_peer_get_information (struct GNUNET_TESTBED_Peer *peer, enum GNUNET_TESTBED_PeerInformationType pit, GNUNET_TESTBED_PeerInfoCallback cb, void *cb_cls)
 Request information about a peer. More...
 
struct GNUNET_TESTBED_OperationGNUNET_TESTBED_peer_update_configuration (struct GNUNET_TESTBED_Peer *peer, const struct GNUNET_CONFIGURATION_Handle *cfg)
 Change peer configuration. More...
 
struct GNUNET_TESTBED_OperationGNUNET_TESTBED_peer_destroy (struct GNUNET_TESTBED_Peer *peer)
 Destroy the given peer; the peer should have been stopped first (if it was started). More...
 
struct GNUNET_TESTBED_OperationGNUNET_TESTBED_underlay_configure_link (void *op_cls, struct GNUNET_TESTBED_Peer *p1, struct GNUNET_TESTBED_Peer *p2, enum GNUNET_TESTBED_ConnectOption co,...)
 Manipulate the P2P underlay topology by configuring a link between two peers. More...
 
struct GNUNET_TESTBED_OperationGNUNET_TESTBED_overlay_connect (void *op_cls, GNUNET_TESTBED_OperationCompletionCallback cb, void *cb_cls, struct GNUNET_TESTBED_Peer *p1, struct GNUNET_TESTBED_Peer *p2)
 Both peers must have been started before calling this function. More...
 
static void opstart_manage_service (void *cls)
 Function called when a peer manage service operation is ready. More...
 
static void oprelease_manage_service (void *cls)
 Callback which will be called when peer manage server operation is released. More...
 
struct GNUNET_TESTBED_OperationGNUNET_TESTBED_peer_manage_service (void *op_cls, struct GNUNET_TESTBED_Peer *peer, const char *service_name, GNUNET_TESTBED_OperationCompletionCallback cb, void *cb_cls, unsigned int start)
 Start or stop given service at a peer. More...
 

Variables

static struct GNUNET_TESTBED_Peerpeer_list_head
 Peer list DLL head. More...
 
static struct GNUNET_TESTBED_Peerpeer_list_tail
 Peer list DLL tail. More...
 

Detailed Description

management of the knowledge about peers in this library (we know the peer ID, its host, pending operations, etc.)

Author
Christian Grothoff
Sree Harsha Totakura

Definition in file testbed_api_peers.c.

Function Documentation

◆ GNUNET_TESTBED_peer_register_()

void GNUNET_TESTBED_peer_register_ ( struct GNUNET_TESTBED_Peer peer)

Adds a peer to the peer list.

Parameters
peerthe peer to add to the peer list

Definition at line 54 of file testbed_api_peers.c.

55 {
57 }
#define GNUNET_CONTAINER_DLL_insert_tail(head, tail, element)
Insert an element at the tail of a DLL.
static struct GNUNET_TESTBED_Peer * peer_list_tail
Peer list DLL tail.
static struct GNUNET_TESTBED_Peer * peer_list_head
Peer list DLL head.
struct GNUNET_TESTBED_Peer * peer
The peer associated with this model.

References GNUNET_CONTAINER_DLL_insert_tail, peer, peer_list_head, and peer_list_tail.

Referenced by handle_peer_create_success().

Here is the caller graph for this function:

◆ GNUNET_TESTBED_peer_deregister_()

void GNUNET_TESTBED_peer_deregister_ ( struct GNUNET_TESTBED_Peer peer)

Removes a peer from the peer list.

Parameters
peerthe peer to remove

Definition at line 66 of file testbed_api_peers.c.

67 {
69 }
#define GNUNET_CONTAINER_DLL_remove(head, tail, element)
Remove an element from a DLL.

References GNUNET_CONTAINER_DLL_remove, peer, peer_list_head, and peer_list_tail.

Referenced by GNUNET_TESTBED_cleanup_peers_(), and handle_opsuccess().

Here is the caller graph for this function:

◆ GNUNET_TESTBED_cleanup_peers_()

void GNUNET_TESTBED_cleanup_peers_ ( void  )

Frees all peers.

Definition at line 76 of file testbed_api_peers.c.

77 {
78  struct GNUNET_TESTBED_Peer *peer;
79 
80  while (NULL != (peer = peer_list_head))
81  {
83  GNUNET_free (peer);
84  }
85 }
#define GNUNET_free(ptr)
Wrapper around free.
A peer controlled by the testing framework.
void GNUNET_TESTBED_peer_deregister_(struct GNUNET_TESTBED_Peer *peer)
Removes a peer from the peer list.

References GNUNET_free, GNUNET_TESTBED_peer_deregister_(), peer, and peer_list_head.

Referenced by handle_opsuccess().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ opstart_peer_create()

static void opstart_peer_create ( void *  cls)
static

Function to call to start a peer_create type operation once all queues the operation is part of declare that the operation can be activated.

Parameters
clsthe closure from GNUNET_TESTBED_operation_create_()

Definition at line 96 of file testbed_api_peers.c.

97 {
98  struct OperationContext *opc = cls;
99  struct PeerCreateData *data = opc->data;
101  struct GNUNET_MQ_Envelope *env;
102  char *config;
103  char *xconfig;
104  size_t c_size;
105  size_t xc_size;
106 
108  GNUNET_assert (NULL != data);
109  GNUNET_assert (NULL != data->peer);
110  opc->state = OPC_STATE_STARTED;
112  &c_size);
114  c_size,
115  &xconfig);
118  xc_size,
120  msg->operation_id = GNUNET_htonll (opc->id);
121  msg->host_id = htonl (GNUNET_TESTBED_host_get_id_ (data->peer->host));
122  msg->peer_id = htonl (data->peer->unique_id);
123  msg->config_size = htons ((uint16_t) c_size);
124  GNUNET_memcpy (&msg[1],
125  xconfig,
126  xc_size);
127  GNUNET_MQ_send (opc->c->mq,
128  env);
129  GNUNET_free (xconfig);
130  GNUNET_TESTBED_insert_opc_ (opc->c, opc);
131 }
struct GNUNET_MessageHeader * msg
Definition: 005.c:2
struct GNUNET_MQ_Envelope * env
Definition: 005.c:1
uint32_t data
The data value.
static const struct GNUNET_CONFIGURATION_Handle * config
char * GNUNET_CONFIGURATION_serialize(const struct GNUNET_CONFIGURATION_Handle *cfg, size_t *size)
Serializes the given configuration.
uint64_t GNUNET_htonll(uint64_t n)
Convert unsigned 64-bit integer to network byte order.
Definition: common_endian.c:37
#define GNUNET_memcpy(dst, src, n)
Call memcpy() but check for n being 0 first.
#define GNUNET_assert(cond)
Use this for fatal errors that cannot be handled.
void GNUNET_MQ_send(struct GNUNET_MQ_Handle *mq, struct GNUNET_MQ_Envelope *ev)
Send a message with the given message queue.
Definition: mq.c:304
#define GNUNET_MQ_msg_extra(mvar, esize, type)
Allocate an envelope, with extra space allocated after the space needed by the message struct.
Definition: gnunet_mq_lib.h:62
#define GNUNET_MESSAGE_TYPE_TESTBED_CREATE_PEER
Message to create a peer at a host.
struct GNUNET_MQ_Handle * mq
The message queue to the controller service.
Definition: testbed_api.h:218
Message sent from client to testing service to create (configure, but not start) a peer.
Definition: testbed.h:205
Context information for GNUNET_TESTBED_Operation.
Definition: testbed_api.h:137
enum OperationContextState state
The state of the operation.
Definition: testbed_api.h:171
enum OperationType type
The type of operation.
Definition: testbed_api.h:166
uint64_t id
The id of the operation.
Definition: testbed_api.h:161
struct GNUNET_TESTBED_Controller * c
The controller to which this operation context belongs to.
Definition: testbed_api.h:141
void * data
Data relevant to the operation.
Definition: testbed_api.h:156
Data for the OperationType OP_PEER_CREATE.
void GNUNET_TESTBED_insert_opc_(struct GNUNET_TESTBED_Controller *c, struct OperationContext *opc)
Inserts the given operation context into the operation context map of the given controller.
Definition: testbed_api.c:298
size_t GNUNET_TESTBED_compress_config_(const char *config, size_t size, char **xconfig)
Compresses given configuration using zlib compress.
Definition: testbed_api.c:1758
@ OP_PEER_CREATE
Peer create operation.
Definition: testbed_api.h:49
@ OPC_STATE_STARTED
The operation has been started.
Definition: testbed_api.h:123
uint32_t GNUNET_TESTBED_host_get_id_(const struct GNUNET_TESTBED_Host *host)
Obtain a host's unique global ID.

References OperationContext::c, config, OperationContext::data, data, env, GNUNET_assert, GNUNET_CONFIGURATION_serialize(), GNUNET_free, GNUNET_htonll(), GNUNET_memcpy, GNUNET_MESSAGE_TYPE_TESTBED_CREATE_PEER, GNUNET_MQ_msg_extra, GNUNET_MQ_send(), GNUNET_TESTBED_compress_config_(), GNUNET_TESTBED_host_get_id_(), GNUNET_TESTBED_insert_opc_(), OperationContext::id, GNUNET_TESTBED_Controller::mq, msg, OP_PEER_CREATE, OPC_STATE_STARTED, OperationContext::state, and OperationContext::type.

Referenced by GNUNET_TESTBED_peer_create().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ oprelease_peer_create()

static void oprelease_peer_create ( void *  cls)
static

Callback which will be called when peer_create type operation is released.

Parameters
clsthe closure from GNUNET_TESTBED_operation_create_()

Definition at line 140 of file testbed_api_peers.c.

141 {
142  struct OperationContext *opc = cls;
143 
144  switch (opc->state)
145  {
146  case OPC_STATE_STARTED:
147  GNUNET_TESTBED_remove_opc_ (opc->c, opc);
148 
149  /* No break we continue flow */
150  case OPC_STATE_INIT:
151  GNUNET_free (((struct PeerCreateData *) opc->data)->peer);
152  GNUNET_free (opc->data);
153  break;
154 
155  case OPC_STATE_FINISHED:
156  break;
157  }
158  GNUNET_free (opc);
159 }
void GNUNET_TESTBED_remove_opc_(const struct GNUNET_TESTBED_Controller *c, struct OperationContext *opc)
Removes the given operation context from the operation context map of the given controller.
Definition: testbed_api.c:319
@ OPC_STATE_INIT
The initial state where the associated operation has just been created and is waiting in the operatio...
Definition: testbed_api.h:117
@ OPC_STATE_FINISHED
The operation has finished.
Definition: testbed_api.h:129

References OperationContext::c, OperationContext::data, GNUNET_free, GNUNET_TESTBED_remove_opc_(), OPC_STATE_FINISHED, OPC_STATE_INIT, OPC_STATE_STARTED, and OperationContext::state.

Referenced by GNUNET_TESTBED_peer_create().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ opstart_peer_destroy()

static void opstart_peer_destroy ( void *  cls)
static

Function called when a peer destroy operation is ready.

Parameters
clsthe closure from GNUNET_TESTBED_operation_create_()

Definition at line 168 of file testbed_api_peers.c.

169 {
170  struct OperationContext *opc = cls;
171  struct GNUNET_TESTBED_Peer *peer = opc->data;
173  struct GNUNET_MQ_Envelope *env;
174 
176  GNUNET_assert (NULL != peer);
177  opc->state = OPC_STATE_STARTED;
178  env = GNUNET_MQ_msg (msg,
180  msg->peer_id = htonl (peer->unique_id);
181  msg->operation_id = GNUNET_htonll (opc->id);
182  GNUNET_TESTBED_insert_opc_ (opc->c, opc);
184  env);
185 }
#define GNUNET_MQ_msg(mvar, type)
Allocate a GNUNET_MQ_Envelope.
Definition: gnunet_mq_lib.h:77
#define GNUNET_MESSAGE_TYPE_TESTBED_DESTROY_PEER
Message to destroy a peer.
Message sent from client to testing service to destroy a (stopped) peer.
Definition: testbed.h:318
struct GNUNET_TESTBED_Controller * controller
Our controller context (not necessarily the controller that is responsible for starting/running the p...
uint32_t unique_id
Globally unique ID of the peer.
@ OP_PEER_DESTROY
Peer destroy operation.
Definition: testbed_api.h:64

References OperationContext::c, GNUNET_TESTBED_Peer::controller, OperationContext::data, env, GNUNET_assert, GNUNET_htonll(), GNUNET_MESSAGE_TYPE_TESTBED_DESTROY_PEER, GNUNET_MQ_msg, GNUNET_MQ_send(), GNUNET_TESTBED_insert_opc_(), OperationContext::id, GNUNET_TESTBED_Controller::mq, msg, OP_PEER_DESTROY, OPC_STATE_STARTED, peer, OperationContext::state, OperationContext::type, and GNUNET_TESTBED_Peer::unique_id.

Referenced by GNUNET_TESTBED_peer_destroy().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ oprelease_peer_destroy()

static void oprelease_peer_destroy ( void *  cls)
static

Callback which will be called when peer_create type operation is released.

Parameters
clsthe closure from GNUNET_TESTBED_operation_create_()

Definition at line 194 of file testbed_api_peers.c.

195 {
196  struct OperationContext *opc = cls;
197 
198  switch (opc->state)
199  {
200  case OPC_STATE_STARTED:
201  GNUNET_TESTBED_remove_opc_ (opc->c, opc);
202 
203  /* no break; continue */
204  case OPC_STATE_INIT:
205  break;
206 
207  case OPC_STATE_FINISHED:
208  break;
209  }
210  GNUNET_free (opc);
211 }

References OperationContext::c, GNUNET_free, GNUNET_TESTBED_remove_opc_(), OPC_STATE_FINISHED, OPC_STATE_INIT, OPC_STATE_STARTED, and OperationContext::state.

Referenced by GNUNET_TESTBED_peer_destroy().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ opstart_peer_start()

static void opstart_peer_start ( void *  cls)
static

Function called when a peer start operation is ready.

Parameters
clsthe closure from GNUNET_TESTBED_operation_create_()

Definition at line 220 of file testbed_api_peers.c.

221 {
222  struct OperationContext *opc = cls;
224  struct GNUNET_MQ_Envelope *env;
225  struct PeerEventData *data;
226  struct GNUNET_TESTBED_Peer *peer;
227 
228  GNUNET_assert (OP_PEER_START == opc->type);
229  GNUNET_assert (NULL != (data = opc->data));
230  GNUNET_assert (NULL != (peer = data->peer));
232  peer->state));
233  opc->state = OPC_STATE_STARTED;
234  env = GNUNET_MQ_msg (msg,
236  msg->peer_id = htonl (peer->unique_id);
237  msg->operation_id = GNUNET_htonll (opc->id);
238  GNUNET_TESTBED_insert_opc_ (opc->c, opc);
240  env);
241 }
#define GNUNET_MESSAGE_TYPE_TESTBED_START_PEER
Message to start a peer at a host.
Message sent from client to testing service to start a peer.
Definition: testbed.h:272
enum PeerState state
Peer's state.
Data for OperationType OP_PEER_START and OP_PEER_STOP.
@ OP_PEER_START
Peer start operation.
Definition: testbed_api.h:54
@ TESTBED_PS_STOPPED
The peer is stopped.
@ TESTBED_PS_CREATED
The peer has been created.

References OperationContext::c, GNUNET_TESTBED_Peer::controller, OperationContext::data, data, env, GNUNET_assert, GNUNET_htonll(), GNUNET_MESSAGE_TYPE_TESTBED_START_PEER, GNUNET_MQ_msg, GNUNET_MQ_send(), GNUNET_TESTBED_insert_opc_(), OperationContext::id, GNUNET_TESTBED_Controller::mq, msg, OP_PEER_START, OPC_STATE_STARTED, peer, OperationContext::state, GNUNET_TESTBED_Peer::state, TESTBED_PS_CREATED, TESTBED_PS_STOPPED, OperationContext::type, and GNUNET_TESTBED_Peer::unique_id.

Referenced by GNUNET_TESTBED_peer_start().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ oprelease_peer_start()

static void oprelease_peer_start ( void *  cls)
static

Callback which will be called when peer start type operation is released.

Parameters
clsthe closure from GNUNET_TESTBED_operation_create_()

Definition at line 250 of file testbed_api_peers.c.

251 {
252  struct OperationContext *opc = cls;
253 
254  switch (opc->state)
255  {
256  case OPC_STATE_STARTED:
257  GNUNET_TESTBED_remove_opc_ (opc->c, opc);
258 
259  /* no break; continue */
260  case OPC_STATE_INIT:
261  GNUNET_free (opc->data);
262  break;
263 
264  case OPC_STATE_FINISHED:
265  break;
266  }
267  GNUNET_free (opc);
268 }

References OperationContext::c, OperationContext::data, GNUNET_free, GNUNET_TESTBED_remove_opc_(), OPC_STATE_FINISHED, OPC_STATE_INIT, OPC_STATE_STARTED, and OperationContext::state.

Referenced by GNUNET_TESTBED_peer_start().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ opstart_peer_stop()

static void opstart_peer_stop ( void *  cls)
static

Function called when a peer stop operation is ready.

Parameters
clsthe closure from GNUNET_TESTBED_operation_create_()

Definition at line 277 of file testbed_api_peers.c.

278 {
279  struct OperationContext *opc = cls;
281  struct PeerEventData *data;
282  struct GNUNET_TESTBED_Peer *peer;
283  struct GNUNET_MQ_Envelope *env;
284 
285  GNUNET_assert (NULL != (data = opc->data));
286  GNUNET_assert (NULL != (peer = data->peer));
288  opc->state = OPC_STATE_STARTED;
289  env = GNUNET_MQ_msg (msg,
291  msg->peer_id = htonl (peer->unique_id);
292  msg->operation_id = GNUNET_htonll (opc->id);
293  GNUNET_TESTBED_insert_opc_ (opc->c, opc);
295  env);
296 }
#define GNUNET_MESSAGE_TYPE_TESTBED_STOP_PEER
Message to stop a peer at a host.
Message sent from client to testing service to stop a peer.
Definition: testbed.h:295
@ TESTBED_PS_STARTED
The peer is running.

References OperationContext::c, GNUNET_TESTBED_Peer::controller, OperationContext::data, data, env, GNUNET_assert, GNUNET_htonll(), GNUNET_MESSAGE_TYPE_TESTBED_STOP_PEER, GNUNET_MQ_msg, GNUNET_MQ_send(), GNUNET_TESTBED_insert_opc_(), OperationContext::id, GNUNET_TESTBED_Controller::mq, msg, OPC_STATE_STARTED, peer, OperationContext::state, GNUNET_TESTBED_Peer::state, TESTBED_PS_STARTED, and GNUNET_TESTBED_Peer::unique_id.

Referenced by GNUNET_TESTBED_peer_stop().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ oprelease_peer_stop()

static void oprelease_peer_stop ( void *  cls)
static

Callback which will be called when peer stop type operation is released.

Parameters
clsthe closure from GNUNET_TESTBED_operation_create_()

Definition at line 305 of file testbed_api_peers.c.

306 {
307  struct OperationContext *opc = cls;
308 
309  switch (opc->state)
310  {
311  case OPC_STATE_STARTED:
312  GNUNET_TESTBED_remove_opc_ (opc->c, opc);
313 
314  /* no break; continue */
315  case OPC_STATE_INIT:
316  GNUNET_free (opc->data);
317  break;
318 
319  case OPC_STATE_FINISHED:
320  break;
321  }
322  GNUNET_free (opc);
323 }

References OperationContext::c, OperationContext::data, GNUNET_free, GNUNET_TESTBED_remove_opc_(), OPC_STATE_FINISHED, OPC_STATE_INIT, OPC_STATE_STARTED, and OperationContext::state.

Referenced by GNUNET_TESTBED_peer_stop().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ GNUNET_TESTBED_generate_peergetconfig_msg_()

struct GNUNET_TESTBED_PeerGetConfigurationMessage* GNUNET_TESTBED_generate_peergetconfig_msg_ ( uint32_t  peer_id,
uint64_t  operation_id 
)

Generate PeerGetConfigurationMessage.

Parameters
peer_idthe id of the peer whose information we have to get
operation_idthe ip of the operation that should be represented in the message
Returns
the PeerGetConfigurationMessage

Definition at line 335 of file testbed_api_peers.c.

337 {
339 
340  msg =
341  GNUNET_malloc (sizeof
343  msg->header.size =
344  htons (sizeof(struct GNUNET_TESTBED_PeerGetConfigurationMessage));
346  msg->peer_id = htonl (peer_id);
347  msg->operation_id = GNUNET_htonll (operation_id);
348  return msg;
349 }
static char * peer_id
Option –peer.
Definition: gnunet-cadet.c:42
#define GNUNET_malloc(size)
Wrapper around malloc.
#define GNUNET_MESSAGE_TYPE_TESTBED_GET_PEER_INFORMATION
Message to get a peer's information.
uint16_t type
The type of the message (GNUNET_MESSAGE_TYPE_XXXX), in big-endian format.
uint16_t size
The length of the struct (in bytes, including the length field itself), in big-endian format.
Message sent from client to testing service to obtain the configuration of a peer.
Definition: testbed.h:582
uint64_t operation_id
Operation ID that is used to identify this operation.
Definition: testbed.h:596

References GNUNET_htonll(), GNUNET_malloc, GNUNET_MESSAGE_TYPE_TESTBED_GET_PEER_INFORMATION, msg, GNUNET_TESTBED_PeerGetConfigurationMessage::operation_id, peer_id, GNUNET_MessageHeader::size, and GNUNET_MessageHeader::type.

Referenced by opstart_peer_getinfo(), and opstart_service_connect().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ opstart_peer_getinfo()

static void opstart_peer_getinfo ( void *  cls)
static

Function called when a peer get information operation is ready.

Parameters
clsthe closure from GNUNET_TESTBED_operation_create_()

Definition at line 358 of file testbed_api_peers.c.

359 {
360  struct OperationContext *opc = cls;
361  struct PeerInfoData *data = opc->data;
363 
364  GNUNET_assert (NULL != data);
365  opc->state = OPC_STATE_STARTED;
366  msg =
368  opc->id);
369  GNUNET_TESTBED_insert_opc_ (opc->c, opc);
370  GNUNET_TESTBED_queue_message_ (opc->c, &msg->header);
371 }
Data for the OperationType OP_PEER_INFO.
void GNUNET_TESTBED_queue_message_(struct GNUNET_TESTBED_Controller *controller, struct GNUNET_MessageHeader *msg)
Queues a message in send queue for sending to the service.
Definition: testbed_api.c:1336
struct GNUNET_TESTBED_PeerGetConfigurationMessage * GNUNET_TESTBED_generate_peergetconfig_msg_(uint32_t peer_id, uint64_t operation_id)
Generate PeerGetConfigurationMessage.

References OperationContext::c, OperationContext::data, data, GNUNET_assert, GNUNET_TESTBED_generate_peergetconfig_msg_(), GNUNET_TESTBED_insert_opc_(), GNUNET_TESTBED_queue_message_(), OperationContext::id, msg, OPC_STATE_STARTED, and OperationContext::state.

Referenced by GNUNET_TESTBED_peer_get_information().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ oprelease_peer_getinfo()

static void oprelease_peer_getinfo ( void *  cls)
static

Callback which will be called when peer stop type operation is released.

Parameters
clsthe closure from GNUNET_TESTBED_operation_create_()

Definition at line 380 of file testbed_api_peers.c.

381 {
382  struct OperationContext *opc = cls;
384 
385  switch (opc->state)
386  {
387  case OPC_STATE_STARTED:
388  GNUNET_TESTBED_remove_opc_ (opc->c, opc);
389 
390  /* no break; continue */
391  case OPC_STATE_INIT:
392  GNUNET_free (opc->data);
393  break;
394 
395  case OPC_STATE_FINISHED:
396  data = opc->data;
397  GNUNET_assert (NULL != data);
398  switch (data->pit)
399  {
401  if (NULL != data->result.cfg)
402  GNUNET_CONFIGURATION_destroy (data->result.cfg);
403  break;
404 
406  GNUNET_free (data->result.id);
407  break;
408 
409  default:
410  GNUNET_assert (0); /* We should never reach here */
411  }
412  GNUNET_free (data);
413  break;
414  }
415  GNUNET_free (opc);
416 }
void GNUNET_CONFIGURATION_destroy(struct GNUNET_CONFIGURATION_Handle *cfg)
Destroy configuration object.
@ GNUNET_TESTBED_PIT_CONFIGURATION
What configuration is the peer using? Returns a 'const struct GNUNET_CONFIGURATION_Handle *'.
@ GNUNET_TESTBED_PIT_IDENTITY
What is the identity of the peer? Returns a 'const struct GNUNET_PeerIdentity *'.
Data returned from GNUNET_TESTBED_peer_get_information.

References OperationContext::c, OperationContext::data, data, GNUNET_assert, GNUNET_CONFIGURATION_destroy(), GNUNET_free, GNUNET_TESTBED_PIT_CONFIGURATION, GNUNET_TESTBED_PIT_IDENTITY, GNUNET_TESTBED_remove_opc_(), OPC_STATE_FINISHED, OPC_STATE_INIT, OPC_STATE_STARTED, and OperationContext::state.

Referenced by GNUNET_TESTBED_peer_get_information().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ opstart_overlay_connect()

static void opstart_overlay_connect ( void *  cls)
static

Function called when a overlay connect operation is ready.

Parameters
clsthe closure from GNUNET_TESTBED_operation_create_()

Definition at line 425 of file testbed_api_peers.c.

426 {
427  struct OperationContext *opc = cls;
428  struct GNUNET_MQ_Envelope *env;
430  struct OverlayConnectData *data;
431 
432  opc->state = OPC_STATE_STARTED;
433  data = opc->data;
434  GNUNET_assert (NULL != data);
435  env = GNUNET_MQ_msg (msg,
437  msg->peer1 = htonl (data->p1->unique_id);
438  msg->peer2 = htonl (data->p2->unique_id);
439  msg->operation_id = GNUNET_htonll (opc->id);
440  msg->peer2_host_id = htonl (GNUNET_TESTBED_host_get_id_ (data->p2->host));
442  opc);
443  GNUNET_MQ_send (opc->c->mq,
444  env);
445 }
#define GNUNET_MESSAGE_TYPE_TESTBED_OVERLAY_CONNECT
Message to connect peers in a overlay.
Message sent from client to testing service to connect two peers.
Definition: testbed.h:376
Data structure for OperationType OP_OVERLAY_CONNECT.

References OperationContext::c, OperationContext::data, data, env, GNUNET_assert, GNUNET_htonll(), GNUNET_MESSAGE_TYPE_TESTBED_OVERLAY_CONNECT, GNUNET_MQ_msg, GNUNET_MQ_send(), GNUNET_TESTBED_host_get_id_(), GNUNET_TESTBED_insert_opc_(), OperationContext::id, GNUNET_TESTBED_Controller::mq, msg, OPC_STATE_STARTED, and OperationContext::state.

Referenced by GNUNET_TESTBED_overlay_connect().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ oprelease_overlay_connect()

static void oprelease_overlay_connect ( void *  cls)
static

Callback which will be called when overlay connect operation is released.

Parameters
clsthe closure from GNUNET_TESTBED_operation_create_()

Definition at line 454 of file testbed_api_peers.c.

455 {
456  struct OperationContext *opc = cls;
457  struct OverlayConnectData *data;
458 
459  data = opc->data;
460  switch (opc->state)
461  {
462  case OPC_STATE_INIT:
463  break;
464 
465  case OPC_STATE_STARTED:
466  GNUNET_TESTBED_remove_opc_ (opc->c, opc);
467  break;
468 
469  case OPC_STATE_FINISHED:
470  break;
471  }
472  GNUNET_free (data);
473  GNUNET_free (opc);
474 }

References OperationContext::c, OperationContext::data, data, GNUNET_free, GNUNET_TESTBED_remove_opc_(), OPC_STATE_FINISHED, OPC_STATE_INIT, OPC_STATE_STARTED, and OperationContext::state.

Referenced by GNUNET_TESTBED_overlay_connect().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ opstart_peer_reconfigure()

static void opstart_peer_reconfigure ( void *  cls)
static

Function called when a peer reconfigure operation is ready.

Parameters
clsthe closure from GNUNET_TESTBED_operation_create_()

Definition at line 483 of file testbed_api_peers.c.

484 {
485  struct OperationContext *opc = cls;
486  struct PeerReconfigureData *data = opc->data;
487  struct GNUNET_MQ_Envelope *env;
489  char *xconfig;
490  size_t xc_size;
491 
492  opc->state = OPC_STATE_STARTED;
493  GNUNET_assert (NULL != data);
494  xc_size = GNUNET_TESTBED_compress_config_ (data->config,
495  data->cfg_size,
496  &xconfig);
497  GNUNET_free (data->config);
498  data->config = NULL;
499  GNUNET_assert (xc_size < UINT16_MAX - sizeof(*msg));
501  xc_size,
503  msg->peer_id = htonl (data->peer->unique_id);
504  msg->operation_id = GNUNET_htonll (opc->id);
505  msg->config_size = htons (data->cfg_size);
506  GNUNET_memcpy (&msg[1],
507  xconfig,
508  xc_size);
509  GNUNET_free (xconfig);
510  GNUNET_free (data);
511  opc->data = NULL;
512  GNUNET_TESTBED_insert_opc_ (opc->c, opc);
513  GNUNET_MQ_send (opc->c->mq,
514  env);
515 }
#define GNUNET_MESSAGE_TYPE_TESTBED_RECONFIGURE_PEER
Message to reconfigure a peer.
Message sent from client to testing service to reconfigure a (stopped) a peer.
Definition: testbed.h:241
Data for the operations of type OP_PEER_RECONFIGURE.

References OperationContext::c, OperationContext::data, data, env, GNUNET_assert, GNUNET_free, GNUNET_htonll(), GNUNET_memcpy, GNUNET_MESSAGE_TYPE_TESTBED_RECONFIGURE_PEER, GNUNET_MQ_msg_extra, GNUNET_MQ_send(), GNUNET_TESTBED_compress_config_(), GNUNET_TESTBED_insert_opc_(), OperationContext::id, GNUNET_TESTBED_Controller::mq, msg, OPC_STATE_STARTED, and OperationContext::state.

Referenced by GNUNET_TESTBED_peer_update_configuration().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ oprelease_peer_reconfigure()

static void oprelease_peer_reconfigure ( void *  cls)
static

Callback which will be called when a peer reconfigure operation is released.

Parameters
clsthe closure from GNUNET_TESTBED_operation_create_()

Definition at line 524 of file testbed_api_peers.c.

525 {
526  struct OperationContext *opc = cls;
527  struct PeerReconfigureData *data = opc->data;
528 
529  switch (opc->state)
530  {
531  case OPC_STATE_INIT:
532  GNUNET_free (data->config);
533  GNUNET_free (data);
534  break;
535 
536  case OPC_STATE_STARTED:
537  GNUNET_TESTBED_remove_opc_ (opc->c, opc);
538  break;
539 
540  case OPC_STATE_FINISHED:
541  break;
542  }
543  GNUNET_free (opc);
544 }

References OperationContext::c, OperationContext::data, data, GNUNET_free, GNUNET_TESTBED_remove_opc_(), OPC_STATE_FINISHED, OPC_STATE_INIT, OPC_STATE_STARTED, and OperationContext::state.

Referenced by GNUNET_TESTBED_peer_update_configuration().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ GNUNET_TESTBED_peer_lookup_by_id_()

struct GNUNET_TESTBED_Peer* GNUNET_TESTBED_peer_lookup_by_id_ ( uint32_t  id)

Lookup a peer by ID.

Parameters
idglobal peer ID assigned to the peer
Returns
handle to the host, NULL on error

Definition at line 554 of file testbed_api_peers.c.

555 {
556  GNUNET_break (0);
557  return NULL;
558 }
#define GNUNET_break(cond)
Use this for internal assertion violations that are not fatal (can be handled) but should not occur.

References GNUNET_break.

◆ opstart_manage_service()

static void opstart_manage_service ( void *  cls)
static

Function called when a peer manage service operation is ready.

Parameters
clsthe closure from GNUNET_TESTBED_operation_create_()

Definition at line 861 of file testbed_api_peers.c.

862 {
863  struct OperationContext *opc = cls;
864  struct ManageServiceData *data = opc->data;
865  struct GNUNET_MQ_Envelope *env;
867  size_t xlen;
868 
869  GNUNET_assert (NULL != data);
870  xlen = data->msize - sizeof(struct GNUNET_TESTBED_ManagePeerServiceMessage);
872  xlen,
874  msg->peer_id = htonl (data->peer->unique_id);
875  msg->operation_id = GNUNET_htonll (opc->id);
876  msg->start = (uint8_t) data->start;
877  GNUNET_memcpy (&msg[1],
878  data->service_name,
879  xlen);
880  GNUNET_free (data->service_name);
881  data->service_name = NULL;
882  opc->state = OPC_STATE_STARTED;
883  GNUNET_TESTBED_insert_opc_ (opc->c, opc);
884  GNUNET_MQ_send (opc->c->mq,
885  env);
886 }
#define GNUNET_MESSAGE_TYPE_TESTBED_MANAGE_PEER_SERVICE
Message to start/stop a service of a peer.
Message to start/stop services of a peer.
Definition: testbed.h:706

References OperationContext::c, OperationContext::data, data, env, GNUNET_assert, GNUNET_free, GNUNET_htonll(), GNUNET_memcpy, GNUNET_MESSAGE_TYPE_TESTBED_MANAGE_PEER_SERVICE, GNUNET_MQ_msg_extra, GNUNET_MQ_send(), GNUNET_TESTBED_insert_opc_(), OperationContext::id, GNUNET_TESTBED_Controller::mq, msg, OPC_STATE_STARTED, and OperationContext::state.

Referenced by GNUNET_TESTBED_peer_manage_service().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ oprelease_manage_service()

static void oprelease_manage_service ( void *  cls)
static

Callback which will be called when peer manage server operation is released.

Parameters
clsthe closure from GNUNET_TESTBED_operation_create_()

Definition at line 895 of file testbed_api_peers.c.

896 {
897  struct OperationContext *opc = cls;
898  struct ManageServiceData *data;
899 
900  data = opc->data;
901  switch (opc->state)
902  {
903  case OPC_STATE_STARTED:
904  GNUNET_TESTBED_remove_opc_ (opc->c, opc);
905  break;
906 
907  case OPC_STATE_INIT:
908  GNUNET_assert (NULL != data);
909  GNUNET_free (data->service_name);
910  break;
911 
912  case OPC_STATE_FINISHED:
913  break;
914  }
915  GNUNET_free (data);
916  GNUNET_free (opc);
917 }

References OperationContext::c, OperationContext::data, data, GNUNET_assert, GNUNET_free, GNUNET_TESTBED_remove_opc_(), OPC_STATE_FINISHED, OPC_STATE_INIT, OPC_STATE_STARTED, and OperationContext::state.

Referenced by GNUNET_TESTBED_peer_manage_service().

Here is the call graph for this function:
Here is the caller graph for this function:

Variable Documentation

◆ peer_list_head

struct GNUNET_TESTBED_Peer* peer_list_head
static

◆ peer_list_tail

struct GNUNET_TESTBED_Peer* peer_list_tail
static

Peer list DLL tail.

Definition at line 45 of file testbed_api_peers.c.

Referenced by GNUNET_TESTBED_peer_deregister_(), and GNUNET_TESTBED_peer_register_().