2 This file is part of GNUnet.
3 Copyright (C) 2009, 2010, 2011 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 dht/gnunet-service-dht_clients.c
23 * @brief GNUnet DHT service's client management code
24 * @author Christian Grothoff
25 * @author Nathan Evans
29 #include "gnunet_constants.h"
30 #include "gnunet_protocols.h"
31 #include "gnunet_statistics_service.h"
32 #include "gnunet-service-xdht.h"
33 #include "gnunet-service-xdht_clients.h"
34 #include "gnunet-service-xdht_datacache.h"
35 #include "gnunet-service-xdht_neighbours.h"
40 * Should routing details be logged to stderr (for debugging)?
42 #define LOG_TRAFFIC(kind,...) GNUNET_log_from (kind, "dht-traffic",__VA_ARGS__)
44 #define LOG(kind,...) GNUNET_log_from (kind, "dht-clients",__VA_ARGS__)
47 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, __VA_ARGS__)
50 * Linked list of messages to send to clients.
55 * Pointer to next item in the list
57 struct PendingMessage *next;
60 * Pointer to previous item in the list
62 struct PendingMessage *prev;
65 * Actual message to be sent, allocated at the end of the struct:
66 * // msg = (cast) &pm[1];
67 * // GNUNET_memcpy (&pm[1], data, len);
69 const struct GNUNET_MessageHeader *msg;
75 * Struct containing information about a client,
76 * handle to connect to it, and any pending messages
77 * that need to be sent to it.
82 * Linked list of active clients
84 struct ClientList *next;
87 * Linked list of active clients
89 struct ClientList *prev;
92 * The handle to this client
94 struct GNUNET_SERVER_Client *client_handle;
97 * Handle to the current transmission request, NULL
100 struct GNUNET_SERVER_TransmitHandle *transmit_handle;
103 * Linked list of pending messages for this client
105 struct PendingMessage *pending_head;
108 * Tail of linked list of pending messages for this client
110 struct PendingMessage *pending_tail;
116 * Entry in the local forwarding map for a client's GET request.
118 struct ClientQueryRecord
122 * The key this request was about
124 struct GNUNET_HashCode key;
127 * Client responsible for the request.
129 struct ClientList *client;
132 * Extended query (see gnunet_block_lib.h), allocated at the end of this struct.
137 * Replies we have already seen for this request.
139 struct GNUNET_HashCode *seen_replies;
142 * Pointer to this nodes heap location in the retry-heap (for fast removal)
144 struct GNUNET_CONTAINER_HeapNode *hnode;
147 * What's the delay between re-try operations that we currently use for this
150 struct GNUNET_TIME_Relative retry_frequency;
153 * What's the next time we should re-try this request?
155 struct GNUNET_TIME_Absolute retry_time;
158 * The unique identifier of this request
163 * Number of bytes in xquery.
168 * Number of entries in 'seen_replies'.
170 unsigned int seen_replies_count;
173 * Desired replication level
175 uint32_t replication;
178 * Any message options for this request
180 uint32_t msg_options;
183 * The type for the data for the GET request.
185 enum GNUNET_BLOCK_Type type;
191 * Struct containing paremeters of monitoring requests.
193 struct ClientMonitorRecord
197 * Next element in DLL.
199 struct ClientMonitorRecord *next;
202 * Previous element in DLL.
204 struct ClientMonitorRecord *prev;
207 * Type of blocks that are of interest
209 enum GNUNET_BLOCK_Type type;
212 * Key of data of interest, NULL for all.
214 struct GNUNET_HashCode *key;
217 * Flag whether to notify about GET messages.
222 * Flag whether to notify about GET_REPONSE messages.
227 * Flag whether to notify about PUT messages.
232 * Client to notify of these requests.
234 struct ClientList *client;
239 * List of active clients.
241 static struct ClientList *client_head;
244 * List of active clients.
246 static struct ClientList *client_tail;
249 * List of active monitoring requests.
251 static struct ClientMonitorRecord *monitor_head;
254 * List of active monitoring requests.
256 static struct ClientMonitorRecord *monitor_tail;
259 * Hashmap for fast key based lookup, maps keys to `struct ClientQueryRecord` entries.
261 static struct GNUNET_CONTAINER_MultiHashMap *forward_map;
264 * Heap with all of our client's request, sorted by retry time (earliest on top).
266 static struct GNUNET_CONTAINER_Heap *retry_heap;
269 * Task that re-transmits requests (using retry_heap).
271 static struct GNUNET_SCHEDULER_Task * retry_task;
275 * Task run to check for messages that need to be sent to a client.
277 * @param client a ClientList, containing the client and any messages to be sent to it
280 process_pending_messages (struct ClientList *client);
284 * Callback called as a result of issuing a GNUNET_SERVER_notify_transmit_ready
285 * request. A ClientList is passed as closure, take the head of the list
286 * and copy it into buf, which has the result of sending the message to the
289 * @param cls closure to this call
290 * @param size maximum number of bytes available to send
291 * @param buf where to copy the actual message to
293 * @return the number of bytes actually copied, 0 indicates failure
296 send_reply_to_client (void *cls, size_t size, void *buf)
298 struct ClientList *client = cls;
300 struct PendingMessage *reply;
304 client->transmit_handle = NULL;
307 /* client disconnected */
308 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
309 "Client %p disconnected, pending messages will be discarded\n",
310 client->client_handle);
314 while ((NULL != (reply = client->pending_head)) &&
315 (size >= off + (msize = ntohs (reply->msg->size))))
317 GNUNET_CONTAINER_DLL_remove (client->pending_head, client->pending_tail,
319 GNUNET_memcpy (&cbuf[off], reply->msg, msize);
321 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
322 "Transmitting %u bytes to client %p\n",
323 (unsigned int) msize,
324 client->client_handle);
327 process_pending_messages (client);
328 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
329 "Transmitted %u/%u bytes to client %p\n",
332 client->client_handle);
338 * Task run to check for messages that need to be sent to a client.
340 * @param client a ClientList, containing the client and any messages to be sent to it
343 process_pending_messages (struct ClientList *client)
345 if ((client->pending_head == NULL) || (client->transmit_handle != NULL))
347 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
348 "Not asking for transmission to %p now: %s\n",
349 client->client_handle,
350 client->pending_head ==
351 NULL ? "no more messages" : "request already pending");
354 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
355 "Asking for transmission of %u bytes to client %p\n",
356 ntohs (client->pending_head->msg->size), client->client_handle);
357 client->transmit_handle =
358 GNUNET_SERVER_notify_transmit_ready (client->client_handle,
359 ntohs (client->pending_head->
361 GNUNET_TIME_UNIT_FOREVER_REL,
362 &send_reply_to_client, client);
367 * Add a PendingMessage to the clients list of messages to be sent
369 * @param client the active client to send the message to
370 * @param pending_message the actual message to send
373 add_pending_message (struct ClientList *client,
374 struct PendingMessage *pending_message)
376 GNUNET_CONTAINER_DLL_insert_tail (client->pending_head, client->pending_tail,
378 process_pending_messages (client);
383 * Closure for 'forward_reply'
385 struct ForwardReplyContext
389 * Actual message to send to matching clients.
391 struct PendingMessage *pm;
401 enum GNUNET_BLOCK_Type type;
404 * Number of bytes in data.
409 * Do we need to copy 'pm' because it was already used?
417 * Find a client if it exists, add it otherwise.
419 * @param client the server handle to the client
421 * @return the client if found, a new client otherwise
423 static struct ClientList *
424 find_active_client (struct GNUNET_SERVER_Client *client)
426 struct ClientList *pos = client_head;
427 struct ClientList *ret;
431 if (pos->client_handle == client)
435 ret = GNUNET_new (struct ClientList);
436 ret->client_handle = client;
437 GNUNET_CONTAINER_DLL_insert (client_head, client_tail, ret);
443 * Iterator over hash map entries that frees all entries
444 * associated with the given client.
446 * @param cls client to search for in source routes
447 * @param key current key code (ignored)
448 * @param value value in the hash map, a ClientQueryRecord
449 * @return #GNUNET_YES (we should continue to iterate)
452 remove_client_records (void *cls, const struct GNUNET_HashCode * key, void *value)
454 struct ClientList *client = cls;
455 struct ClientQueryRecord *record = value;
457 if (record->client != client)
459 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
460 "Removing client %p's record for key %s\n", client,
462 GNUNET_assert (GNUNET_YES ==
463 GNUNET_CONTAINER_multihashmap_remove (forward_map, key,
465 if (NULL != record->hnode)
466 GNUNET_CONTAINER_heap_remove_node (record->hnode);
467 GNUNET_array_grow (record->seen_replies, record->seen_replies_count, 0);
468 GNUNET_free (record);
474 * Iterator over hash map entries that send a given reply to
475 * each of the matching clients. With some tricky recycling
478 * @param cls the 'struct ForwardReplyContext'
479 * @param key current key
480 * @param value value in the hash map, a ClientQueryRecord
481 * @return GNUNET_YES (we should continue to iterate),
482 * if the result is mal-formed, GNUNET_NO
485 forward_reply (void *cls, const struct GNUNET_HashCode * key, void *value)
487 struct ForwardReplyContext *frc = cls;
488 struct ClientQueryRecord *record = value;
489 struct PendingMessage *pm;
490 struct GNUNET_DHT_ClientResultMessage *reply;
491 enum GNUNET_BLOCK_EvaluationResult eval;
493 struct GNUNET_HashCode ch;
496 LOG_TRAFFIC (GNUNET_ERROR_TYPE_DEBUG,
497 "XVINE CLIENT-RESULT %s\n",
498 GNUNET_h2s_full (key));
500 if ((record->type != GNUNET_BLOCK_TYPE_ANY) && (record->type != frc->type))
502 LOG (GNUNET_ERROR_TYPE_DEBUG,
503 "Record type missmatch, not passing request for key %s to local client\n",
506 GNUNET_STATISTICS_update (GDS_stats,
508 ("# Key match, type mismatches in REPLY to CLIENT"),
510 return GNUNET_YES; /* type mismatch */
513 GNUNET_CRYPTO_hash (frc->data, frc->data_size, &ch);
514 for (i = 0; i < record->seen_replies_count; i++)
515 if (0 == memcmp (&record->seen_replies[i], &ch, sizeof (struct GNUNET_HashCode)))
517 LOG (GNUNET_ERROR_TYPE_DEBUG,
518 "Duplicate reply, not passing request for key %s to local client\n",
520 GNUNET_STATISTICS_update (GDS_stats,
522 ("# Duplicate REPLIES to CLIENT request dropped"),
524 return GNUNET_YES; /* duplicate */
527 GNUNET_BLOCK_evaluate (GDS_block_context,
529 GNUNET_BLOCK_EO_NONE,
535 LOG (GNUNET_ERROR_TYPE_DEBUG,
536 "Evaluation result is %d for key %s for local client's query\n",
537 (int) eval, GNUNET_h2s (key));
540 case GNUNET_BLOCK_EVALUATION_OK_LAST:
541 do_free = GNUNET_YES;
543 case GNUNET_BLOCK_EVALUATION_OK_MORE:
544 GNUNET_array_append (record->seen_replies, record->seen_replies_count, ch);
547 case GNUNET_BLOCK_EVALUATION_OK_DUPLICATE:
548 /* should be impossible to encounter here */
551 case GNUNET_BLOCK_EVALUATION_RESULT_INVALID:
554 case GNUNET_BLOCK_EVALUATION_REQUEST_VALID:
557 case GNUNET_BLOCK_EVALUATION_REQUEST_INVALID:
560 case GNUNET_BLOCK_EVALUATION_RESULT_IRRELEVANT:
562 case GNUNET_BLOCK_EVALUATION_TYPE_NOT_SUPPORTED:
563 GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
564 _("Unsupported block type (%u) in request!\n"), record->type);
570 if (GNUNET_NO == frc->do_copy)
572 /* first time, we can use the original data */
574 frc->do_copy = GNUNET_YES;
578 /* two clients waiting for same reply, must copy for queueing */
579 pm = GNUNET_malloc (sizeof (struct PendingMessage) +
580 ntohs (frc->pm->msg->size));
581 GNUNET_memcpy (pm, frc->pm,
582 sizeof (struct PendingMessage) + ntohs (frc->pm->msg->size));
583 pm->next = pm->prev = NULL;
584 pm->msg = (struct GNUNET_MessageHeader *) &pm[1];
586 GNUNET_STATISTICS_update (GDS_stats,
587 gettext_noop ("# RESULTS queued for clients"), 1,
589 reply = (struct GNUNET_DHT_ClientResultMessage *) &pm[1];
590 reply->unique_id = record->unique_id;
591 LOG (GNUNET_ERROR_TYPE_DEBUG,
592 "Queueing reply to query %s for client %p\n",
594 record->client->client_handle);
595 add_pending_message (record->client, pm);
596 if (GNUNET_YES == do_free)
597 remove_client_records (record->client, key, record);
603 * Handle a reply we've received from another peer. If the reply
604 * matches any of our pending queries, forward it to the respective
607 * @param expiration when will the reply expire
608 * @param key the query this reply is for
609 * @param get_path_length number of peers in @a get_path
610 * @param get_path path the reply took on get
611 * @param put_path_length number of peers in @a put_path
612 * @param put_path path the reply took on put
613 * @param type type of the reply
614 * @param data_size number of bytes in @a data
615 * @param data application payload data
618 GDS_CLIENTS_handle_reply (struct GNUNET_TIME_Absolute expiration,
619 const struct GNUNET_HashCode *key,
620 unsigned int get_path_length,
621 const struct GNUNET_PeerIdentity *get_path,
622 unsigned int put_path_length,
623 const struct GNUNET_PeerIdentity *put_path,
624 enum GNUNET_BLOCK_Type type, size_t data_size,
627 struct ForwardReplyContext frc;
628 struct PendingMessage *pm;
629 struct GNUNET_DHT_ClientResultMessage *reply;
630 struct GNUNET_PeerIdentity *paths;
633 LOG (GNUNET_ERROR_TYPE_DEBUG,
634 "reply for key %s\n",
637 if (NULL == GNUNET_CONTAINER_multihashmap_get (forward_map, key))
639 GNUNET_STATISTICS_update (GDS_stats,
641 ("# REPLIES ignored for CLIENTS (no match)"), 1,
643 return; /* no matching request, fast exit! */
646 sizeof (struct GNUNET_DHT_ClientResultMessage) + data_size +
647 (get_path_length + put_path_length) * sizeof (struct GNUNET_PeerIdentity);
648 if (msize >= GNUNET_SERVER_MAX_MESSAGE_SIZE)
650 GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
651 _("Could not pass reply to client, message too big!\n"));
654 DEBUG("reply FOR DATA_SIZE = %lu\n",msize);
655 pm = GNUNET_malloc (msize + sizeof (struct PendingMessage));
656 reply = (struct GNUNET_DHT_ClientResultMessage *) &pm[1];
657 pm->msg = &reply->header;
658 reply->header.size = htons ((uint16_t) msize);
659 reply->header.type = htons (GNUNET_MESSAGE_TYPE_DHT_CLIENT_RESULT);
660 reply->type = htonl (type);
661 reply->get_path_length = htonl (get_path_length);
662 reply->put_path_length = htonl (put_path_length);
663 reply->unique_id = 0; /* filled in later */
664 reply->expiration = GNUNET_TIME_absolute_hton (expiration);
666 paths = (struct GNUNET_PeerIdentity *) &reply[1];
667 GNUNET_memcpy (paths, put_path,
668 sizeof (struct GNUNET_PeerIdentity) * put_path_length);
669 GNUNET_memcpy (&paths[put_path_length], get_path,
670 sizeof (struct GNUNET_PeerIdentity) * get_path_length);
671 GNUNET_memcpy (&paths[get_path_length + put_path_length], data, data_size);
672 frc.do_copy = GNUNET_NO;
675 frc.data_size = data_size;
677 GNUNET_CONTAINER_multihashmap_get_multiple (forward_map, key, &forward_reply,
679 if (GNUNET_NO == frc.do_copy)
681 /* did not match any of the requests, free! */
682 GNUNET_STATISTICS_update (GDS_stats,
684 ("# REPLIES ignored for CLIENTS (no match)"), 1,
691 * Check if some client is monitoring GET messages and notify
694 * @param options Options, for instance RecordRoute, DemultiplexEverywhere.
695 * @param type The type of data in the request.
696 * @param hop_count Hop count so far.
697 * @param path_length number of entries in path (or 0 if not recorded).
698 * @param path peers on the GET path (or NULL if not recorded).
699 * @param desired_replication_level Desired replication level.
700 * @param key Key of the requested data.
703 GDS_CLIENTS_process_get (uint32_t options,
704 enum GNUNET_BLOCK_Type type,
706 uint32_t desired_replication_level,
707 unsigned int path_length,
708 const struct GNUNET_PeerIdentity *path,
709 const struct GNUNET_HashCode * key)
711 struct ClientMonitorRecord *m;
712 struct ClientList **cl;
713 unsigned int cl_size;
717 for (m = monitor_head; NULL != m; m = m->next)
719 if ((GNUNET_BLOCK_TYPE_ANY == m->type || m->type == type) &&
721 memcmp (key, m->key, sizeof(struct GNUNET_HashCode)) == 0))
723 struct PendingMessage *pm;
724 struct GNUNET_DHT_MonitorGetMessage *mmsg;
725 struct GNUNET_PeerIdentity *msg_path;
729 /* Don't send duplicates */
730 for (i = 0; i < cl_size; i++)
731 if (cl[i] == m->client)
735 GNUNET_array_append (cl, cl_size, m->client);
737 msize = path_length * sizeof (struct GNUNET_PeerIdentity);
738 msize += sizeof (struct GNUNET_DHT_MonitorGetMessage);
739 msize += sizeof (struct PendingMessage);
740 pm = GNUNET_malloc (msize);
741 mmsg = (struct GNUNET_DHT_MonitorGetMessage *) &pm[1];
742 pm->msg = &mmsg->header;
743 mmsg->header.size = htons (msize - sizeof (struct PendingMessage));
744 mmsg->header.type = htons (GNUNET_MESSAGE_TYPE_DHT_MONITOR_GET);
745 mmsg->options = htonl(options);
746 mmsg->type = htonl(type);
747 mmsg->hop_count = htonl(hop_count);
748 mmsg->desired_replication_level = htonl(desired_replication_level);
749 mmsg->get_path_length = htonl(path_length);
750 GNUNET_memcpy (&mmsg->key, key, sizeof (struct GNUNET_HashCode));
751 msg_path = (struct GNUNET_PeerIdentity *) &mmsg[1];
753 GNUNET_memcpy (msg_path, path,
754 path_length * sizeof (struct GNUNET_PeerIdentity));
755 add_pending_message (m->client, pm);
758 GNUNET_free_non_null (cl);
763 * Check if some client is monitoring PUT messages and notify
766 * @param options Options, for instance RecordRoute, DemultiplexEverywhere.
767 * @param type The type of data in the request.
768 * @param hop_count Hop count so far.
769 * @param path_length number of entries in path (or 0 if not recorded).
770 * @param path peers on the PUT path (or NULL if not recorded).
771 * @param desired_replication_level Desired replication level.
772 * @param exp Expiration time of the data.
773 * @param key Key under which data is to be stored.
774 * @param data Pointer to the data carried.
775 * @param size Number of bytes in data.
778 GDS_CLIENTS_process_put (uint32_t options,
779 enum GNUNET_BLOCK_Type type,
781 uint32_t desired_replication_level,
782 unsigned int path_length,
783 const struct GNUNET_PeerIdentity *path,
784 struct GNUNET_TIME_Absolute exp,
785 const struct GNUNET_HashCode * key,
789 struct ClientMonitorRecord *m;
790 struct ClientList **cl;
791 unsigned int cl_size;
795 for (m = monitor_head; NULL != m; m = m->next)
797 if ((GNUNET_BLOCK_TYPE_ANY == m->type || m->type == type) &&
799 memcmp (key, m->key, sizeof(struct GNUNET_HashCode)) == 0))
801 struct PendingMessage *pm;
802 struct GNUNET_DHT_MonitorPutMessage *mmsg;
803 struct GNUNET_PeerIdentity *msg_path;
807 /* Don't send duplicates */
808 for (i = 0; i < cl_size; i++)
809 if (cl[i] == m->client)
813 GNUNET_array_append (cl, cl_size, m->client);
816 msize += path_length * sizeof (struct GNUNET_PeerIdentity);
817 msize += sizeof (struct GNUNET_DHT_MonitorPutMessage);
818 msize += sizeof (struct PendingMessage);
819 pm = GNUNET_malloc (msize);
820 mmsg = (struct GNUNET_DHT_MonitorPutMessage *) &pm[1];
821 pm->msg = (struct GNUNET_MessageHeader *) mmsg;
822 mmsg->header.size = htons (msize - sizeof (struct PendingMessage));
823 mmsg->header.type = htons (GNUNET_MESSAGE_TYPE_DHT_MONITOR_PUT);
824 mmsg->options = htonl(options);
825 mmsg->type = htonl(type);
826 mmsg->hop_count = htonl(hop_count);
827 mmsg->desired_replication_level = htonl(desired_replication_level);
828 mmsg->put_path_length = htonl(path_length);
829 msg_path = (struct GNUNET_PeerIdentity *) &mmsg[1];
832 GNUNET_memcpy (msg_path, path,
833 path_length * sizeof (struct GNUNET_PeerIdentity));
835 mmsg->expiration_time = GNUNET_TIME_absolute_hton(exp);
836 GNUNET_memcpy (&mmsg->key, key, sizeof (struct GNUNET_HashCode));
838 GNUNET_memcpy (&msg_path[path_length], data, size);
839 add_pending_message (m->client, pm);
842 GNUNET_free_non_null (cl);
847 * Route the given request via the DHT.
850 transmit_request (struct ClientQueryRecord *cqr)
852 GNUNET_STATISTICS_update (GDS_stats,
854 ("# GET requests from clients injected"), 1,
857 LOG (GNUNET_ERROR_TYPE_DEBUG,
858 "Initiating GET for %s, replication %u, already have %u replies\n",
859 GNUNET_h2s (&cqr->key),
861 cqr->seen_replies_count);
863 GDS_NEIGHBOURS_handle_get (&cqr->key, cqr->type, cqr->msg_options,
866 /* exponential back-off for retries.
867 * max GNUNET_TIME_STD_EXPONENTIAL_BACKOFF_THRESHOLD (15 min) */
868 cqr->retry_frequency = GNUNET_TIME_STD_BACKOFF (cqr->retry_frequency);
869 cqr->retry_time = GNUNET_TIME_relative_to_absolute (cqr->retry_frequency);
874 * Task that looks at the 'retry_heap' and transmits all of the requests
875 * on the heap that are ready for transmission. Then re-schedules
876 * itself (unless the heap is empty).
881 transmit_next_request_task (void *cls)
883 struct ClientQueryRecord *cqr;
884 struct GNUNET_TIME_Relative delay;
887 while (NULL != (cqr = GNUNET_CONTAINER_heap_remove_root (retry_heap)))
890 delay = GNUNET_TIME_absolute_get_remaining (cqr->retry_time);
891 if (delay.rel_value_us > 0)
894 GNUNET_CONTAINER_heap_insert (retry_heap, cqr,
895 cqr->retry_time.abs_value_us);
897 GNUNET_SCHEDULER_add_delayed (delay, &transmit_next_request_task,
901 transmit_request (cqr);
903 GNUNET_CONTAINER_heap_insert (retry_heap, cqr,
904 cqr->retry_time.abs_value_us);
910 * Handler for PUT messages.
912 * @param cls closure for the service
913 * @param client the client we received this message from
914 * @param message the actual message received
917 handle_dht_local_put (void *cls, struct GNUNET_SERVER_Client *client,
918 const struct GNUNET_MessageHeader *message)
920 const struct GNUNET_DHT_ClientPutMessage *put_msg;
921 struct PendingMessage *pm;
922 struct GNUNET_DHT_ClientPutConfirmationMessage *conf;
925 size = ntohs (message->size);
926 if (size < sizeof (struct GNUNET_DHT_ClientPutMessage))
929 GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
932 GNUNET_STATISTICS_update (GDS_stats,
934 ("# PUT requests received from clients"), 1,
936 put_msg = (const struct GNUNET_DHT_ClientPutMessage *) message;
937 LOG_TRAFFIC (GNUNET_ERROR_TYPE_DEBUG, "X-VINE DHT CLIENT-PUT %s\n",
938 GNUNET_h2s_full (&put_msg->key));
939 /* give to local clients */
940 LOG (GNUNET_ERROR_TYPE_DEBUG,
941 "Handling local PUT of %u-bytes for query %s\n",
942 size - sizeof (struct GNUNET_DHT_ClientPutMessage),
943 GNUNET_h2s (&put_msg->key));
944 DEBUG("PUT doing put i = %s\n",GNUNET_h2s(&(put_msg->key)));
945 GDS_CLIENTS_handle_reply (GNUNET_TIME_absolute_ntoh (put_msg->expiration),
946 &put_msg->key, 0, NULL, 0, NULL,
947 ntohl (put_msg->type),
948 size - sizeof (struct GNUNET_DHT_ClientPutMessage),
951 GDS_NEIGHBOURS_handle_put (&put_msg->key,
952 ntohl (put_msg->type), ntohl (put_msg->options),
953 ntohl (put_msg->desired_replication_level),
954 GNUNET_TIME_absolute_ntoh (put_msg->expiration),
956 size - sizeof (struct GNUNET_DHT_ClientPutMessage));
957 pm = GNUNET_malloc (sizeof (struct PendingMessage) +
958 sizeof (struct GNUNET_DHT_ClientPutConfirmationMessage));
959 conf = (struct GNUNET_DHT_ClientPutConfirmationMessage *) &pm[1];
960 conf->header.size = htons (sizeof (struct GNUNET_DHT_ClientPutConfirmationMessage));
961 conf->header.type = htons (GNUNET_MESSAGE_TYPE_DHT_CLIENT_PUT_OK);
962 conf->reserved = htonl (0);
963 conf->unique_id = put_msg->unique_id;
964 pm->msg = &conf->header;
965 add_pending_message (find_active_client (client), pm);
966 GNUNET_SERVER_receive_done (client, GNUNET_OK);
971 * Handler for DHT GET messages from the client.
973 * @param cls closure for the service
974 * @param client the client we received this message from
975 * @param message the actual message received
978 handle_dht_local_get (void *cls, struct GNUNET_SERVER_Client *client,
979 const struct GNUNET_MessageHeader *message)
981 const struct GNUNET_DHT_ClientGetMessage *get;
982 struct ClientQueryRecord *cqr;
987 size = ntohs (message->size);
988 if (size < sizeof (struct GNUNET_DHT_ClientGetMessage))
991 GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
994 xquery_size = size - sizeof (struct GNUNET_DHT_ClientGetMessage);
995 get = (const struct GNUNET_DHT_ClientGetMessage *) message;
996 xquery = (const char *) &get[1];
997 GNUNET_STATISTICS_update (GDS_stats,
999 ("# GET requests received from clients"), 1,
1001 LOG (GNUNET_ERROR_TYPE_DEBUG,
1002 "Received GET request for %s from local client %p, xq: %.*s\n",
1003 GNUNET_h2s (&get->key), client, xquery_size, xquery);
1005 LOG_TRAFFIC (GNUNET_ERROR_TYPE_DEBUG, "X-VINE CLIENT-GET %s\n",
1006 GNUNET_h2s_full (&get->key));
1009 cqr = GNUNET_malloc (sizeof (struct ClientQueryRecord) + xquery_size);
1010 cqr->key = get->key;
1011 cqr->client = find_active_client (client);
1012 cqr->xquery = (void *) &cqr[1];
1013 GNUNET_memcpy (&cqr[1], xquery, xquery_size);
1014 cqr->hnode = GNUNET_CONTAINER_heap_insert (retry_heap, cqr, 0);
1015 cqr->retry_frequency = GNUNET_TIME_UNIT_SECONDS;
1016 cqr->retry_time = GNUNET_TIME_absolute_get ();
1017 cqr->unique_id = get->unique_id;
1018 cqr->xquery_size = xquery_size;
1019 cqr->replication = ntohl (get->desired_replication_level);
1020 cqr->msg_options = ntohl (get->options);
1021 cqr->type = ntohl (get->type);
1023 // FIXME use cqr->key, set multihashmap create to GNUNET_YES
1024 GNUNET_CONTAINER_multihashmap_put (forward_map, &get->key, cqr,
1025 GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
1027 struct GNUNET_PeerIdentity my_identity;
1028 my_identity = GDS_NEIGHBOURS_get_my_id();
1029 GDS_CLIENTS_process_get (ntohl (get->options),
1032 ntohl (get->desired_replication_level),
1036 /* start remote requests */
1037 if (NULL != retry_task)
1038 GNUNET_SCHEDULER_cancel (retry_task);
1039 retry_task = GNUNET_SCHEDULER_add_now (&transmit_next_request_task, NULL);
1040 GNUNET_SERVER_receive_done (client, GNUNET_OK);
1045 * Closure for 'find_by_unique_id'.
1047 struct FindByUniqueIdContext
1050 * Where to store the result, if found.
1052 struct ClientQueryRecord *cqr;
1059 * Function called for each existing DHT record for the given
1060 * query. Checks if it matches the UID given in the closure
1061 * and if so returns the entry as a result.
1063 * @param cls the search context
1064 * @param key query for the lookup (not used)
1065 * @param value the 'struct ClientQueryRecord'
1066 * @return GNUNET_YES to continue iteration (result not yet found)
1069 find_by_unique_id (void *cls,
1070 const struct GNUNET_HashCode *key,
1073 struct FindByUniqueIdContext *fui_ctx = cls;
1074 struct ClientQueryRecord *cqr = value;
1076 if (cqr->unique_id != fui_ctx->unique_id)
1084 * Handler for "GET result seen" messages from the client.
1086 * @param cls closure for the service
1087 * @param client the client we received this message from
1088 * @param message the actual message received
1091 handle_dht_local_get_result_seen (void *cls, struct GNUNET_SERVER_Client *client,
1092 const struct GNUNET_MessageHeader *message)
1094 const struct GNUNET_DHT_ClientGetResultSeenMessage *seen;
1096 unsigned int hash_count;
1097 unsigned int old_count;
1098 const struct GNUNET_HashCode *hc;
1099 struct FindByUniqueIdContext fui_ctx;
1100 struct ClientQueryRecord *cqr;
1102 size = ntohs (message->size);
1103 if (size < sizeof (struct GNUNET_DHT_ClientGetResultSeenMessage))
1106 GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1109 seen = (const struct GNUNET_DHT_ClientGetResultSeenMessage *) message;
1110 hash_count = (size - sizeof (struct GNUNET_DHT_ClientGetResultSeenMessage)) / sizeof (struct GNUNET_HashCode);
1111 if (size != sizeof (struct GNUNET_DHT_ClientGetResultSeenMessage) + hash_count * sizeof (struct GNUNET_HashCode))
1114 GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1117 hc = (const struct GNUNET_HashCode*) &seen[1];
1118 fui_ctx.unique_id = seen->unique_id;
1120 GNUNET_CONTAINER_multihashmap_get_multiple (forward_map,
1124 if (NULL == (cqr = fui_ctx.cqr))
1127 GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1130 /* finally, update 'seen' list */
1131 old_count = cqr->seen_replies_count;
1132 GNUNET_array_grow (cqr->seen_replies,
1133 cqr->seen_replies_count,
1134 cqr->seen_replies_count + hash_count);
1135 GNUNET_memcpy (&cqr->seen_replies[old_count],
1137 sizeof (struct GNUNET_HashCode) * hash_count);
1142 * Closure for 'remove_by_unique_id'.
1144 struct RemoveByUniqueIdContext
1147 * Client that issued the removal request.
1149 struct ClientList *client;
1152 * Unique ID of the request.
1159 * Iterator over hash map entries that frees all entries
1160 * that match the given client and unique ID.
1162 * @param cls unique ID and client to search for in source routes
1163 * @param key current key code
1164 * @param value value in the hash map, a ClientQueryRecord
1165 * @return GNUNET_YES (we should continue to iterate)
1168 remove_by_unique_id (void *cls, const struct GNUNET_HashCode * key, void *value)
1170 const struct RemoveByUniqueIdContext *ctx = cls;
1171 struct ClientQueryRecord *record = value;
1173 if (record->unique_id != ctx->unique_id)
1175 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1176 "Removing client %p's record for key %s (by unique id)\n",
1177 ctx->client->client_handle, GNUNET_h2s (key));
1178 return remove_client_records (ctx->client, key, record);
1183 * Handler for any generic DHT stop messages, calls the appropriate handler
1184 * depending on message type (if processed locally)
1186 * @param cls closure for the service
1187 * @param client the client we received this message from
1188 * @param message the actual message received
1192 handle_dht_local_get_stop (void *cls, struct GNUNET_SERVER_Client *client,
1193 const struct GNUNET_MessageHeader *message)
1195 const struct GNUNET_DHT_ClientGetStopMessage *dht_stop_msg =
1196 (const struct GNUNET_DHT_ClientGetStopMessage *) message;
1197 struct RemoveByUniqueIdContext ctx;
1199 GNUNET_STATISTICS_update (GDS_stats,
1201 ("# GET STOP requests received from clients"), 1,
1203 LOG (GNUNET_ERROR_TYPE_DEBUG,
1204 "Received GET STOP request for %s from local client %p\n",
1205 GNUNET_h2s (&dht_stop_msg->key),
1207 ctx.client = find_active_client (client);
1208 ctx.unique_id = dht_stop_msg->unique_id;
1209 GNUNET_CONTAINER_multihashmap_get_multiple (forward_map, &dht_stop_msg->key,
1210 &remove_by_unique_id, &ctx);
1211 GNUNET_SERVER_receive_done (client, GNUNET_OK);
1216 * Handler for monitor start messages
1218 * @param cls closure for the service
1219 * @param client the client we received this message from
1220 * @param message the actual message received
1224 handle_dht_local_monitor (void *cls, struct GNUNET_SERVER_Client *client,
1225 const struct GNUNET_MessageHeader *message)
1227 struct ClientMonitorRecord *r;
1228 const struct GNUNET_DHT_MonitorStartStopMessage *msg;
1230 msg = (struct GNUNET_DHT_MonitorStartStopMessage *) message;
1231 r = GNUNET_new (struct ClientMonitorRecord);
1233 r->client = find_active_client(client);
1234 r->type = ntohl(msg->type);
1235 r->get = ntohs(msg->get);
1236 r->get_resp = ntohs(msg->get_resp);
1237 r->put = ntohs(msg->put);
1238 if (0 == ntohs(msg->filter_key))
1242 r->key = GNUNET_new (struct GNUNET_HashCode);
1243 GNUNET_memcpy (r->key, &msg->key, sizeof (struct GNUNET_HashCode));
1245 GNUNET_CONTAINER_DLL_insert (monitor_head, monitor_tail, r);
1246 GNUNET_SERVER_receive_done (client, GNUNET_OK);
1251 * Handler for monitor stop messages
1253 * @param cls closure for the service
1254 * @param client the client we received this message from
1255 * @param message the actual message received
1259 handle_dht_local_monitor_stop (void *cls, struct GNUNET_SERVER_Client *client,
1260 const struct GNUNET_MessageHeader *message)
1262 struct ClientMonitorRecord *r;
1263 const struct GNUNET_DHT_MonitorStartStopMessage *msg;
1266 msg = (struct GNUNET_DHT_MonitorStartStopMessage *) message;
1272 keys_match = (0 == ntohs(msg->filter_key));
1275 keys_match = (0 != ntohs(msg->filter_key)
1276 && !memcmp(r->key, &msg->key, sizeof(struct GNUNET_HashCode)));
1278 if (find_active_client(client) == r->client
1279 && ntohl(msg->type) == r->type
1280 && r->get == msg->get
1281 && r->get_resp == msg->get_resp
1282 && r->put == msg->put
1286 GNUNET_CONTAINER_DLL_remove (monitor_head, monitor_tail, r);
1287 GNUNET_free_non_null (r->key);
1289 GNUNET_SERVER_receive_done (client, GNUNET_OK);
1290 return; /* Delete only ONE entry */
1295 GNUNET_SERVER_receive_done (client, GNUNET_OK);
1300 * Functions with this signature are called whenever a client
1301 * is disconnected on the network level.
1303 * @param cls closure (NULL for dht)
1304 * @param client identification of the client; NULL
1305 * for the last call when the server is destroyed
1308 handle_client_disconnect (void *cls,
1309 struct GNUNET_SERVER_Client *client)
1311 struct ClientList *pos;
1312 struct PendingMessage *reply;
1313 struct ClientMonitorRecord *monitor;
1315 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1316 "Local client %p disconnects\n",
1318 pos = find_active_client (client);
1319 GNUNET_CONTAINER_DLL_remove (client_head, client_tail, pos);
1320 if (pos->transmit_handle != NULL)
1321 GNUNET_SERVER_notify_transmit_ready_cancel (pos->transmit_handle);
1322 while (NULL != (reply = pos->pending_head))
1324 GNUNET_CONTAINER_DLL_remove (pos->pending_head, pos->pending_tail, reply);
1325 GNUNET_free (reply);
1327 monitor = monitor_head;
1328 while (NULL != monitor)
1330 if (monitor->client == pos)
1332 struct ClientMonitorRecord *next;
1334 GNUNET_free_non_null (monitor->key);
1335 next = monitor->next;
1336 GNUNET_CONTAINER_DLL_remove (monitor_head, monitor_tail, monitor);
1337 GNUNET_free (monitor);
1341 monitor = monitor->next;
1343 GNUNET_CONTAINER_multihashmap_iterate (forward_map, &remove_client_records,
1351 * Initialize client subsystem.
1353 * @param server the initialized server
1356 GDS_CLIENTS_init (struct GNUNET_SERVER_Handle *server)
1358 static struct GNUNET_SERVER_MessageHandler plugin_handlers[] = {
1359 {&handle_dht_local_put, NULL,
1360 GNUNET_MESSAGE_TYPE_DHT_CLIENT_PUT, 0},
1361 {&handle_dht_local_get, NULL,
1362 GNUNET_MESSAGE_TYPE_DHT_CLIENT_GET, 0},
1363 {&handle_dht_local_get_stop, NULL,
1364 GNUNET_MESSAGE_TYPE_DHT_CLIENT_GET_STOP,
1365 sizeof (struct GNUNET_DHT_ClientGetStopMessage)},
1366 {&handle_dht_local_monitor, NULL,
1367 GNUNET_MESSAGE_TYPE_DHT_MONITOR_START,
1368 sizeof (struct GNUNET_DHT_MonitorStartStopMessage)},
1369 {&handle_dht_local_monitor_stop, NULL,
1370 GNUNET_MESSAGE_TYPE_DHT_MONITOR_STOP,
1371 sizeof (struct GNUNET_DHT_MonitorStartStopMessage)},
1372 {&handle_dht_local_get_result_seen, NULL,
1373 GNUNET_MESSAGE_TYPE_DHT_CLIENT_GET_RESULTS_KNOWN, 0},
1376 forward_map = GNUNET_CONTAINER_multihashmap_create (1024, GNUNET_NO);
1377 retry_heap = GNUNET_CONTAINER_heap_create (GNUNET_CONTAINER_HEAP_ORDER_MIN);
1378 GNUNET_SERVER_add_handlers (server, plugin_handlers);
1379 GNUNET_SERVER_disconnect_notify (server, &handle_client_disconnect, NULL);
1384 * Shutdown client subsystem.
1389 GNUNET_assert (client_head == NULL);
1390 GNUNET_assert (client_tail == NULL);
1391 if (NULL != retry_task)
1393 GNUNET_SCHEDULER_cancel (retry_task);
1396 if (NULL != retry_heap)
1398 GNUNET_assert (0 == GNUNET_CONTAINER_heap_get_size (retry_heap));
1399 GNUNET_CONTAINER_heap_destroy (retry_heap);
1402 if (NULL != forward_map)
1404 GNUNET_assert (0 == GNUNET_CONTAINER_multihashmap_size (forward_map));
1405 GNUNET_CONTAINER_multihashmap_destroy (forward_map);
1410 /* end of gnunet-service-dht_clients.c */