- Remove printf, use GNUNET_log INFO
[oweals/gnunet.git] / src / core / core_api_iterate_peers.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 core/core_api_iterate_peers.c
23  * @brief implementation of the peer_iterate function
24  * @author Christian Grothoff
25  * @author Nathan Evans
26  */
27 #include "platform.h"
28 #include "gnunet_core_service.h"
29 #include "core.h"
30
31
32 struct GNUNET_CORE_RequestContext
33 {
34   /**
35    * Our connection to the service.
36    */
37   struct GNUNET_CLIENT_Connection *client;
38
39   /**
40    * Handle for transmitting a request.
41    */
42   struct GNUNET_CLIENT_TransmitHandle *th;
43
44   /**
45    * Function called with the peer.
46    */
47   GNUNET_CORE_ConnectEventHandler peer_cb;
48
49   /**
50    * Peer to check for.
51    */
52   struct GNUNET_PeerIdentity *peer;
53
54   /**
55    * Closure for peer_cb.
56    */
57   void *cb_cls;
58
59 };
60
61
62 /**
63  * Receive reply from core service with information about a peer.
64  *
65  * @param cls our 'struct  GNUNET_CORE_RequestContext *'
66  * @param msg NULL on error or last entry
67  */
68 static void
69 receive_info (void *cls, const struct GNUNET_MessageHeader *msg)
70 {
71   struct GNUNET_CORE_RequestContext *request_context = cls;
72   const struct ConnectNotifyMessage *connect_message;
73   uint32_t ats_count;
74   uint16_t msize;
75
76   /* Handle last message or error case, disconnect and clean up */
77   if ((msg == NULL) ||
78       ((ntohs (msg->type) == GNUNET_MESSAGE_TYPE_CORE_ITERATE_PEERS_END) &&
79        (ntohs (msg->size) == sizeof (struct GNUNET_MessageHeader))))
80   {
81     if (request_context->peer_cb != NULL)
82       request_context->peer_cb (request_context->cb_cls, NULL, NULL, 0);
83     GNUNET_CLIENT_disconnect (request_context->client);
84     GNUNET_free (request_context);
85     return;
86   }
87
88   msize = ntohs (msg->size);
89   /* Handle incorrect message type or size, disconnect and clean up */
90   if ((ntohs (msg->type) != GNUNET_MESSAGE_TYPE_CORE_NOTIFY_CONNECT) ||
91       (msize < sizeof (struct ConnectNotifyMessage)))
92   {
93     GNUNET_break (0);
94     if (request_context->peer_cb != NULL)
95       request_context->peer_cb (request_context->cb_cls, NULL, NULL, 0);
96     GNUNET_CLIENT_disconnect (request_context->client);
97     GNUNET_free (request_context);
98     return;
99   }
100   connect_message = (const struct ConnectNotifyMessage *) msg;
101   ats_count = ntohl (connect_message->ats_count);
102   if (msize !=
103       sizeof (struct ConnectNotifyMessage) +
104       ats_count * sizeof (struct GNUNET_ATS_Information))
105   {
106     GNUNET_break (0);
107     if (request_context->peer_cb != NULL)
108       request_context->peer_cb (request_context->cb_cls, NULL, NULL, 0);
109     GNUNET_CLIENT_disconnect (request_context->client);
110     GNUNET_free (request_context);
111     return;
112   }
113   /* Normal case */
114   if (request_context->peer_cb != NULL)
115     request_context->peer_cb (request_context->cb_cls, &connect_message->peer,
116                               (const struct GNUNET_ATS_Information *)
117                               &connect_message[1], ats_count);
118   GNUNET_CLIENT_receive (request_context->client, &receive_info,
119                          request_context, GNUNET_TIME_UNIT_FOREVER_REL);
120 }
121
122
123 /**
124  * Function called to notify a client about the socket
125  * begin ready to queue more data.  "buf" will be
126  * NULL and "size" zero if the socket was closed for
127  * writing in the meantime.
128  *
129  * @param cls closure
130  * @param size number of bytes available in buf
131  * @param buf where the callee should write the message
132  * @return number of bytes written to buf
133  */
134 static size_t
135 transmit_request (void *cls, size_t size, void *buf)
136 {
137   struct GNUNET_MessageHeader *msg;
138   struct GNUNET_PeerIdentity *peer = cls;
139   int msize;
140
141   if (peer == NULL)
142     msize = sizeof (struct GNUNET_MessageHeader);
143   else
144     msize =
145         sizeof (struct GNUNET_MessageHeader) +
146         sizeof (struct GNUNET_PeerIdentity);
147   if ((size < msize) || (buf == NULL))
148     return 0;
149   msg = (struct GNUNET_MessageHeader *) buf;
150   msg->size = htons (msize);
151   if (peer != NULL)
152   {
153     msg->type = htons (GNUNET_MESSAGE_TYPE_CORE_PEER_CONNECTED);
154     memcpy (&msg[1], peer, sizeof (struct GNUNET_PeerIdentity));
155   }
156   else
157     msg->type = htons (GNUNET_MESSAGE_TYPE_CORE_ITERATE_PEERS);
158
159   return msize;
160 }
161
162
163
164 /**
165  * Iterate over all currently connected peers.
166  * Calls peer_cb with each connected peer, and then
167  * once with NULL to indicate that all peers have
168  * been handled.
169  *
170  * @param cfg configuration to use
171  * @param peer_cb function to call with the peer information
172  * @param cb_cls closure for peer_cb
173  *
174  * @return GNUNET_OK if iterating, GNUNET_SYSERR on error
175  */
176 int
177 GNUNET_CORE_iterate_peers (const struct GNUNET_CONFIGURATION_Handle *cfg,
178                            GNUNET_CORE_ConnectEventHandler peer_cb,
179                            void *cb_cls)
180 {
181   struct GNUNET_CORE_RequestContext *request_context;
182   struct GNUNET_CLIENT_Connection *client;
183
184   client = GNUNET_CLIENT_connect ("core", cfg);
185   if (client == NULL)
186     return GNUNET_SYSERR;
187   request_context = GNUNET_malloc (sizeof (struct GNUNET_CORE_RequestContext));
188   request_context->client = client;
189   request_context->peer_cb = peer_cb;
190   request_context->cb_cls = cb_cls;
191
192   request_context->th =
193       GNUNET_CLIENT_notify_transmit_ready (client,
194                                            sizeof (struct GNUNET_MessageHeader),
195                                            GNUNET_TIME_UNIT_FOREVER_REL,
196                                            GNUNET_YES, &transmit_request, NULL);
197
198   GNUNET_CLIENT_receive (client, &receive_info, request_context,
199                          GNUNET_TIME_UNIT_FOREVER_REL);
200   return GNUNET_OK;
201 }
202
203 /* end of core_api_iterate_peers.c */