curly wars / auto-indentation
[oweals/gnunet.git] / src / transport / transport_api_address_iterate.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009, 2010 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      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      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file transport/transport_api_address_iterate.c
23  * @brief api for asking transport service to iterate over all
24  *        known addresses
25  *
26  * This api provides a single function call to ask the transport
27  * service to list all peers and their known addresses, as pretty
28  * printed by the appropriate plugin.  Reports whether or not the
29  * address is connected as well.
30  */
31
32 #include "platform.h"
33 #include "gnunet_client_lib.h"
34 #include "gnunet_arm_service.h"
35 #include "gnunet_hello_lib.h"
36 #include "gnunet_protocols.h"
37 #include "gnunet_server_lib.h"
38 #include "gnunet_time_lib.h"
39 #include "gnunet_transport_service.h"
40 #include "transport.h"
41
42 /**
43  * Context for the address lookup.
44  */
45 struct AddressLookupCtx
46 {
47   /**
48    * Function to call with the human-readable address.
49    */
50   GNUNET_TRANSPORT_AddressLookUpBinaryCallback cb;
51
52   /**
53    * Closure for cb.
54    */
55   void *cb_cls;
56
57   /**
58    * Connection to the service.
59    */
60   struct GNUNET_CLIENT_Connection *client;
61
62   /**
63    * When should this operation time out?
64    */
65   struct GNUNET_TIME_Absolute timeout;
66 };
67
68
69 /**
70  * Function called with responses from the service.
71  *
72  * @param cls our 'struct AddressLookupCtx*'
73  * @param msg NULL on timeout or error, otherwise presumably a
74  *        message with the human-readable peer and address
75  */
76 static void
77 peer_address_response_processor (void *cls,
78                                  const struct GNUNET_MessageHeader *msg)
79 {
80   struct AddressLookupCtx *alucb = cls;
81   struct AddressIterateResponseMessage *address;
82   uint16_t size;
83   char *transport;
84
85   //size_t transport_len;
86   //void * addr;
87   size_t addrlen;
88
89   if (msg == NULL)
90   {
91     alucb->cb (alucb->cb_cls, NULL, NULL, NULL, 0);
92     GNUNET_CLIENT_disconnect (alucb->client, GNUNET_NO);
93     GNUNET_free (alucb);
94     return;
95   }
96
97   GNUNET_break (ntohs (msg->type) ==
98                 GNUNET_MESSAGE_TYPE_TRANSPORT_ADDRESS_REPLY);
99   size = ntohs (msg->size);
100   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received message type %u size %u\n",
101               ntohs (msg->type), size);
102   if (size == sizeof (struct GNUNET_MessageHeader))
103   {
104     /* done! */
105     alucb->cb (alucb->cb_cls, NULL, NULL, NULL, 0);
106     GNUNET_CLIENT_disconnect (alucb->client, GNUNET_NO);
107     GNUNET_free (alucb);
108     return;
109   }
110   if (size < sizeof (struct AddressIterateResponseMessage))
111   {
112     /* invalid reply */
113     GNUNET_break (0);
114     alucb->cb (alucb->cb_cls, NULL, NULL, NULL, 0);
115     GNUNET_CLIENT_disconnect (alucb->client, GNUNET_NO);
116     GNUNET_free (alucb);
117     return;
118   }
119
120   address = (struct AddressIterateResponseMessage *) &msg[1];
121
122   transport = (char *) &address[0];
123   //transport_len = ntohs(address->pluginlen);
124   addrlen = ntohs (address->addrlen);
125
126   /* expect more replies */
127   GNUNET_CLIENT_receive (alucb->client, &peer_address_response_processor, alucb,
128                          GNUNET_TIME_absolute_get_remaining (alucb->timeout));
129   alucb->cb (alucb->cb_cls, &address->peer, transport, NULL, addrlen);
130 }
131
132
133 /**
134  * Return all the known addresses for a peer.
135  *
136  * @param cfg configuration to use
137  * @param timeout how long is the lookup allowed to take at most
138  * @param peer_address_callback function to call with the results
139  * @param peer_address_callback_cls closure for peer_address_callback
140  */
141 void
142 GNUNET_TRANSPORT_address_iterate (const struct GNUNET_CONFIGURATION_Handle *cfg,
143                                   struct GNUNET_TIME_Relative timeout,
144                                   GNUNET_TRANSPORT_AddressLookUpBinaryCallback
145                                   peer_address_callback,
146                                   void *peer_address_callback_cls)
147 {
148   struct AddressIterateMessage msg;
149   struct GNUNET_TIME_Absolute abs_timeout;
150   struct AddressLookupCtx *peer_address_lookup_cb;
151   struct GNUNET_CLIENT_Connection *client;
152
153   client = GNUNET_CLIENT_connect ("transport", cfg);
154   if (client == NULL)
155   {
156     peer_address_callback (peer_address_callback_cls, NULL, NULL, NULL, 0);
157     return;
158   }
159   abs_timeout = GNUNET_TIME_relative_to_absolute (timeout);
160
161   msg.header.size = htons (sizeof (struct AddressIterateMessage));
162   msg.header.type = htons (GNUNET_MESSAGE_TYPE_TRANSPORT_ADDRESS_ITERATE);
163   msg.timeout = GNUNET_TIME_absolute_hton (abs_timeout);
164   peer_address_lookup_cb = GNUNET_malloc (sizeof (struct AddressLookupCtx));
165   peer_address_lookup_cb->cb = peer_address_callback;
166   peer_address_lookup_cb->cb_cls = peer_address_callback_cls;
167   peer_address_lookup_cb->timeout = abs_timeout;
168   peer_address_lookup_cb->client = client;
169   GNUNET_assert (GNUNET_OK ==
170                  GNUNET_CLIENT_transmit_and_get_response (client, &msg.header,
171                                                           timeout, GNUNET_YES,
172                                                           &peer_address_response_processor,
173                                                           peer_address_lookup_cb));
174 }
175
176 /* end of transport_api_address_iterate.c */