GNUnet  0.20.0
cadet_api_list_tunnels.c
Go to the documentation of this file.
1 /*
2  This file is part of GNUnet.
3  Copyright (C) 2011, 2017, 2019 GNUnet e.V.
4 
5  GNUnet is free software: you can redistribute it and/or modify it
6  under the terms of the GNU Affero General Public License as published
7  by the Free Software Foundation, either version 3 of the License,
8  or (at your option) any later version.
9 
10  GNUnet is distributed in the hope that it will be useful, but
11  WITHOUT ANY WARRANTY; without even the implied warranty of
12  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13  Affero General Public License for more details.
14 
15  You should have received a copy of the GNU Affero General Public License
16  along with this program. If not, see <http://www.gnu.org/licenses/>.
17 
18  SPDX-License-Identifier: AGPL3.0-or-later
19  */
26 #include "platform.h"
27 #include "gnunet_util_lib.h"
28 #include "gnunet_constants.h"
29 #include "gnunet_cadet_service.h"
30 #include "cadet.h"
31 #include "cadet_protocol.h"
32 
33 
38 {
43 
48 
53 
58 
63 
68 };
69 
70 
77 static void
78 handle_get_tunnels (void *cls,
79  const struct GNUNET_CADET_LocalInfoTunnel *info)
80 {
81  struct GNUNET_CADET_ListTunnels *lt = cls;
83 
84  td.peer = info->destination;
85  td.channels = ntohl (info->channels);
86  td.connections = ntohl (info->connections);
87  td.estate = ntohs (info->estate);
88  td.cstate = ntohs (info->cstate);
89  lt->tunnels_cb (lt->tunnels_cb_cls,
90  &td);
91 }
92 
93 
100 static void
102  const struct GNUNET_MessageHeader *msg)
103 {
104  struct GNUNET_CADET_ListTunnels *lt = cls;
105 
106  (void) msg;
107 
108  lt->tunnels_cb (lt->tunnels_cb_cls,
109  NULL);
111 }
112 
113 
119 static void
120 reconnect (void *cls);
121 
122 
129 static void
130 error_handler (void *cls,
131  enum GNUNET_MQ_Error error)
132 {
133  struct GNUNET_CADET_ListTunnels *lt = cls;
134 
135  GNUNET_MQ_destroy (lt->mq);
136  lt->mq = NULL;
140  &reconnect,
141  lt);
142 }
143 
144 
150 static void
151 reconnect (void *cls)
152 {
153  struct GNUNET_CADET_ListTunnels *lt = cls;
158  lt),
159  GNUNET_MQ_hd_fixed_size (get_tunnels_end,
161  struct GNUNET_MessageHeader,
162  lt),
164  };
165  struct GNUNET_MessageHeader *msg;
166  struct GNUNET_MQ_Envelope *env;
167 
168  lt->reconnect_task = NULL;
169  lt->mq = GNUNET_CLIENT_connect (lt->cfg,
170  "cadet",
171  handlers,
172  &error_handler,
173  lt);
174  if (NULL == lt->mq)
175  return;
176  env = GNUNET_MQ_msg (msg,
178  GNUNET_MQ_send (lt->mq,
179  env);
180 }
181 
182 
195  GNUNET_CADET_TunnelsCB callback,
196  void *callback_cls)
197 {
198  struct GNUNET_CADET_ListTunnels *lt;
199 
200  if (NULL == callback)
201  {
202  GNUNET_break (0);
203  return NULL;
204  }
205  lt = GNUNET_new (struct GNUNET_CADET_ListTunnels);
206  lt->tunnels_cb = callback;
207  lt->tunnels_cb_cls = callback_cls;
208  lt->cfg = cfg;
209  reconnect (lt);
210  if (NULL == lt->mq)
211  {
212  GNUNET_free (lt);
213  return NULL;
214  }
215  return lt;
216 }
217 
218 
225 void *
227 {
228  void *ret = lt->tunnels_cb_cls;
229 
230  if (NULL != lt->mq)
231  GNUNET_MQ_destroy (lt->mq);
232  if (NULL != lt->reconnect_task)
234  GNUNET_free (lt);
235  return ret;
236 }
237 
238 
239 /* end of cadet_api_list_tunnels.c */
struct GNUNET_MessageHeader * msg
Definition: 005.c:2
struct GNUNET_MQ_Envelope * env
Definition: 005.c:1
static void error_handler(void *cls, enum GNUNET_MQ_Error error)
Function called on connection trouble.
static void handle_get_tunnels(void *cls, const struct GNUNET_CADET_LocalInfoTunnel *info)
Process a local reply about info on all tunnels, pass info to the user.
static void reconnect(void *cls)
Reconnect to the service and try again.
static void handle_get_tunnels_end(void *cls, const struct GNUNET_MessageHeader *msg)
Process a local reply about info on all tunnels, pass info to the user.
P2P messages used by CADET.
static const struct GNUNET_CONFIGURATION_Handle * cfg
Configuration we are using.
Definition: gnunet-abd.c:36
static int ret
Return value of the commandline.
Definition: gnunet-abd.c:81
static struct GNUNET_CADET_MessageHandler handlers[]
Handlers, for diverse services.
static void get_tunnels(void *cls)
Call CADET's meta API, get all tunnels known to a peer.
Definition: gnunet-cadet.c:620
#define info
CADET service; establish channels to distant peers.
void * GNUNET_CADET_list_tunnels_cancel(struct GNUNET_CADET_ListTunnels *lt)
Cancel a monitor request.
void(* GNUNET_CADET_TunnelsCB)(void *cls, const struct GNUNET_CADET_TunnelDetails *td)
Method called to retrieve information about all tunnels in CADET, called once per tunnel.
struct GNUNET_CADET_ListTunnels * GNUNET_CADET_list_tunnels(const struct GNUNET_CONFIGURATION_Handle *cfg, GNUNET_CADET_TunnelsCB callback, void *callback_cls)
Request information about tunnels of the running cadet peer.
struct GNUNET_MQ_Handle * GNUNET_CLIENT_connect(const struct GNUNET_CONFIGURATION_Handle *cfg, const char *service_name, const struct GNUNET_MQ_MessageHandler *handlers, GNUNET_MQ_ErrorHandler error_handler, void *error_handler_cls)
Create a message queue to connect to a GNUnet service.
Definition: client.c:1057
#define GNUNET_break(cond)
Use this for internal assertion violations that are not fatal (can be handled) but should not occur.
#define GNUNET_new(type)
Allocate a struct or union of the given type.
#define GNUNET_free(ptr)
Wrapper around free.
GNUNET_MQ_Error
Error codes for the queue.
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_handler_end()
End-marker for the handlers array.
#define GNUNET_MQ_msg(mvar, type)
Allocate a GNUNET_MQ_Envelope.
Definition: gnunet_mq_lib.h:78
#define GNUNET_MQ_hd_fixed_size(name, code, str, ctx)
void GNUNET_MQ_destroy(struct GNUNET_MQ_Handle *mq)
Destroy the message queue.
Definition: mq.c:683
#define GNUNET_MESSAGE_TYPE_CADET_LOCAL_INFO_TUNNELS
Local information about all tunnels of service.
#define GNUNET_MESSAGE_TYPE_CADET_LOCAL_INFO_TUNNELS_END
End of local information about all tunnels of service.
#define GNUNET_MESSAGE_TYPE_CADET_LOCAL_REQUEST_INFO_TUNNELS
Request local information about all tunnels of service.
void * GNUNET_SCHEDULER_cancel(struct GNUNET_SCHEDULER_Task *task)
Cancel the task with the specified identifier.
Definition: scheduler.c:975
struct GNUNET_SCHEDULER_Task * GNUNET_SCHEDULER_add_delayed(struct GNUNET_TIME_Relative delay, GNUNET_SCHEDULER_TaskCallback task, void *task_cls)
Schedule a new task to be run with a specified delay.
Definition: scheduler.c:1272
struct GNUNET_TIME_Relative GNUNET_TIME_randomized_backoff(struct GNUNET_TIME_Relative rt, struct GNUNET_TIME_Relative threshold)
Randomized exponential back-off, starting at 1 ms and going up by a factor of 2+r,...
Definition: time.c:830
#define GNUNET_TIME_UNIT_MINUTES
One minute.
struct GNUNET_MQ_Handle * mq
Message queue to talk to CADET service.
const struct GNUNET_CONFIGURATION_Handle * cfg
Configuration we use.
void * tunnels_cb_cls
Info callback closure for tunnels_cb.
GNUNET_CADET_TunnelsCB tunnels_cb
Monitor callback.
struct GNUNET_TIME_Relative backoff
Backoff for reconnect attempts.
struct GNUNET_SCHEDULER_Task * reconnect_task
Task to reconnect.
Message to inform the client about one of the tunnels in the service.
Definition: cadet.h:458
Details about a tunnel managed by CADET.
uint16_t cstate
What is our connectivity state?
uint32_t channels
How many channels use the tunnel.
uint16_t estate
What is our encryption state?
struct GNUNET_PeerIdentity peer
Target of the tunnel.
uint32_t connections
How many connections support the tunnel.
Handle to a message queue.
Definition: mq.c:87
Message handler for a specific message type.
Header for all communications.
Entry in list of pending tasks.
Definition: scheduler.c:136
Time for relative time used by GNUnet, in microseconds.