2 This file is part of GNUnet.
3 Copyright (C) 2013, 2016 GNUnet e.V.
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.
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.
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., 51 Franklin Street, Fifth Floor,
18 Boston, MA 02110-1301, USA.
22 * @file namestore/namestore_api_monitor.c
23 * @brief API to monitor changes in the NAMESTORE
24 * @author Christian Grothoff
28 #include "gnunet_util_lib.h"
29 #include "gnunet_crypto_lib.h"
30 #include "gnunet_constants.h"
31 #include "gnunet_dnsparser_lib.h"
32 #include "gnunet_arm_service.h"
33 #include "gnunet_signatures.h"
34 #include "gnunet_namestore_service.h"
35 #include "namestore.h"
39 * Handle for a monitoring activity.
41 struct GNUNET_NAMESTORE_ZoneMonitor
44 * Configuration (to reconnect).
46 const struct GNUNET_CONFIGURATION_Handle *cfg;
49 * Handle to namestore service.
51 struct GNUNET_MQ_Handle *mq;
54 * Function to call on events.
56 GNUNET_NAMESTORE_RecordMonitor monitor;
59 * Function called when we've synchronized.
61 GNUNET_NAMESTORE_RecordsSynchronizedCallback sync_cb;
64 * Closure for @e monitor and @e sync_cb.
71 struct GNUNET_CRYPTO_EcdsaPrivateKey zone;
74 * Do we first iterate over all existing records?
82 * Reconnect to the namestore service.
84 * @param zm monitor to reconnect
87 reconnect (struct GNUNET_NAMESTORE_ZoneMonitor *zm);
91 * Handle SYNC message from the namestore service.
93 * @param cls the monitor
94 * @param msg the sync message
97 handle_sync (void *cls,
98 const struct GNUNET_MessageHeader *msg)
100 struct GNUNET_NAMESTORE_ZoneMonitor *zm = cls;
102 if (NULL != zm->sync_cb)
103 zm->sync_cb (zm->cls);
108 * We've received a notification about a change to our zone.
109 * Check that it is well-formed.
111 * @param cls the zone monitor handle
112 * @param lrm the message from the service.
115 check_result (void *cls,
116 const struct RecordResultMessage *lrm)
123 const char *name_tmp;
124 const char *rd_ser_tmp;
126 lrm_len = ntohs (lrm->gns_header.header.size);
127 rd_len = ntohs (lrm->rd_len);
128 rd_count = ntohs (lrm->rd_count);
129 name_len = ntohs (lrm->name_len);
130 exp_lrm_len = sizeof (struct RecordResultMessage) + name_len + rd_len;
131 if (lrm_len != exp_lrm_len)
134 return GNUNET_SYSERR;
139 return GNUNET_SYSERR;
141 name_tmp = (const char *) &lrm[1];
142 if ((name_tmp[name_len -1] != '\0') || (name_len > MAX_NAME_LEN))
145 return GNUNET_SYSERR;
147 rd_ser_tmp = (const char *) &name_tmp[name_len];
149 struct GNUNET_GNSRECORD_Data rd[rd_count];
152 GNUNET_GNSRECORD_records_deserialize (rd_len,
158 return GNUNET_SYSERR;
166 * We've received a notification about a change to our zone.
167 * Forward to monitor callback.
169 * @param cls the zone monitor handle
170 * @param lrm the message from the service.
173 handle_result (void *cls,
174 const struct RecordResultMessage *lrm)
176 struct GNUNET_NAMESTORE_ZoneMonitor *zm = cls;
180 const char *name_tmp;
181 const char *rd_ser_tmp;
183 rd_len = ntohs (lrm->rd_len);
184 rd_count = ntohs (lrm->rd_count);
185 name_len = ntohs (lrm->name_len);
186 name_tmp = (const char *) &lrm[1];
187 rd_ser_tmp = (const char *) &name_tmp[name_len];
189 struct GNUNET_GNSRECORD_Data rd[rd_count];
191 GNUNET_assert (GNUNET_OK ==
192 GNUNET_GNSRECORD_records_deserialize (rd_len,
196 zm->monitor (zm->cls,
206 * Generic error handler, called with the appropriate error code and
207 * the same closure specified at the creation of the message queue.
208 * Not every message queue implementation supports an error handler.
210 * @param cls closure with the `struct GNUNET_NAMESTORE_ZoneMonitor *`
211 * @param error error code
214 mq_error_handler (void *cls,
215 enum GNUNET_MQ_Error error)
217 struct GNUNET_NAMESTORE_ZoneMonitor *zm = cls;
224 * Reconnect to the namestore service.
226 * @param zm monitor to reconnect
229 reconnect (struct GNUNET_NAMESTORE_ZoneMonitor *zm)
231 GNUNET_MQ_hd_fixed_size (sync,
232 GNUNET_MESSAGE_TYPE_NAMESTORE_MONITOR_SYNC,
233 struct GNUNET_MessageHeader);
234 GNUNET_MQ_hd_var_size (result,
235 GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_RESULT,
236 struct RecordResultMessage);
237 struct GNUNET_MQ_MessageHandler handlers[] = {
238 make_sync_handler (zm),
239 make_result_handler (zm),
240 GNUNET_MQ_handler_end ()
242 struct GNUNET_MQ_Envelope *env;
243 struct ZoneMonitorStartMessage *sm;
247 GNUNET_MQ_destroy (zm->mq);
248 zm->monitor (zm->cls,
254 zm->mq = GNUNET_CLIENT_connecT (zm->cfg,
261 env = GNUNET_MQ_msg (sm,
262 GNUNET_MESSAGE_TYPE_NAMESTORE_MONITOR_START);
263 sm->iterate_first = htonl (zm->iterate_first);
265 GNUNET_MQ_send (zm->mq,
272 * Begin monitoring a zone for changes. If @a iterate_first is set,
273 * we Will first call the @a monitor function on all existing records
274 * in the selected zone(s). In any case, we will call @a sync and
275 * afterwards call @a monitor whenever a record changes.
277 * @param cfg configuration to use to connect to namestore
278 * @param zone zone to monitor
279 * @param iterate_first #GNUNET_YES to first iterate over all existing records,
280 * #GNUNET_NO to only return changes that happen from now on
281 * @param monitor function to call on zone changes
282 * @param sync_cb function called when we're in sync with the namestore
283 * @param cls closure for @a monitor and @a sync_cb
284 * @return handle to stop monitoring
286 struct GNUNET_NAMESTORE_ZoneMonitor *
287 GNUNET_NAMESTORE_zone_monitor_start (const struct GNUNET_CONFIGURATION_Handle *cfg,
288 const struct GNUNET_CRYPTO_EcdsaPrivateKey *zone,
290 GNUNET_NAMESTORE_RecordMonitor monitor,
291 GNUNET_NAMESTORE_RecordsSynchronizedCallback sync_cb,
294 struct GNUNET_NAMESTORE_ZoneMonitor *zm;
296 zm = GNUNET_new (struct GNUNET_NAMESTORE_ZoneMonitor);
299 zm->iterate_first = iterate_first;
300 zm->monitor = monitor;
301 zm->sync_cb = sync_cb;
315 * Stop monitoring a zone for changes.
317 * @param zm handle to the monitor activity to stop
320 GNUNET_NAMESTORE_zone_monitor_stop (struct GNUNET_NAMESTORE_ZoneMonitor *zm)
324 GNUNET_MQ_destroy (zm->mq);
330 /* end of namestore_api_monitor.c */