GNUnet 0.21.1
gnunet-service-namestore.c
Go to the documentation of this file.
1/*
2 This file is part of GNUnet.
3 Copyright (C) 2012, 2013, 2014, 2018 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 */
20
27#include "gnunet_error_codes.h"
29#include "gnunet_protocols.h"
30#include "gnunet_util_lib.h"
33#include "namestore.h"
34
35#define LOG_STRERROR_FILE(kind, syscall, filename) \
36 GNUNET_log_from_strerror_file (kind, "util", syscall, filename)
37
41#define MONITOR_STALL_WARN_DELAY GNUNET_TIME_UNIT_MINUTES
42
46#define NC_SIZE 16
47
51struct NamestoreClient;
52
53
58{
63
68
73
78
83
88
96 uint64_t seq;
97
101 uint32_t request_id;
102
110 uint32_t offset;
111
118};
119
124{
129
134
139
144
150
156};
157
158
163{
168
173
178
183
188
193
198
203
211 uint64_t seq;
212
217 uint64_t limit;
218
226
231
236
244};
245
246
252{
257
262
267
271 uint32_t rid;
272
276 uint16_t rd_set_pos;
277
281 uint16_t rd_set_count;
282
287
292 const struct RecordSet *rs;
293
298
299};
300
301
306{
311
316
321};
322
327
331static const struct GNUNET_CRYPTO_PrivateKey zero;
332
337
342
346static char *db_lib_name;
347
352
353
358
363
367static struct StoreActivity *sa_head;
368
372static struct StoreActivity *sa_tail;
373
378
383
389static void
390cleanup_task (void *cls)
391{
392 (void) cls;
393 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Stopping namestore service\n");
394 if (NULL != monitor_nc)
395 {
397 monitor_nc = NULL;
398 }
399 if (NULL != statistics)
400 {
402 statistics = NULL;
403 }
406 db_lib_name = NULL;
407}
408
409
415static void
417{
419 GNUNET_free (sa);
420}
421
422
435static void
436lookup_nick_it (void *cls,
437 uint64_t seq,
438 const char *editor_hint,
439 const struct GNUNET_CRYPTO_PrivateKey *private_key,
440 const char *label,
441 unsigned int rd_count,
442 const struct GNUNET_GNSRECORD_Data *rd)
443{
444 struct GNUNET_GNSRECORD_Data **res = cls;
445
446 (void) private_key;
447 GNUNET_assert (0 != seq);
448 if (0 != strcmp (label, GNUNET_GNS_EMPTY_LABEL_AT))
449 {
450 GNUNET_break (0);
451 return;
452 }
453 for (unsigned int c = 0; c < rd_count; c++)
454 {
456 {
457 (*res) =
458 GNUNET_malloc (rd[c].data_size + sizeof(struct GNUNET_GNSRECORD_Data));
459 (*res)->data = &(*res)[1];
460 GNUNET_memcpy ((void *) (*res)->data, rd[c].data, rd[c].data_size);
461 (*res)->data_size = rd[c].data_size;
462 (*res)->expiration_time = rd[c].expiration_time;
463 (*res)->flags = rd[c].flags;
464 (*res)->record_type = GNUNET_GNSRECORD_TYPE_NICK;
465 return;
466 }
467 }
468 (*res) = NULL;
469}
470
471
478static void
480 const struct GNUNET_GNSRECORD_Data *nick)
481{
482 struct NickCache *oldest;
483
484 oldest = NULL;
485 for (unsigned int i = 0; i < NC_SIZE; i++)
486 {
487 struct NickCache *pos = &nick_cache[i];
488
489 if ((NULL == oldest) ||
491 oldest = pos;
492 if (0 == GNUNET_memcmp (zone, &pos->zone))
493 {
494 oldest = pos;
495 break;
496 }
497 }
498 GNUNET_free (oldest->rd);
499 oldest->zone = *zone;
500 if (NULL != nick)
501 {
502 oldest->rd = GNUNET_malloc (sizeof(*nick) + nick->data_size);
503 *oldest->rd = *nick;
504 oldest->rd->data = &oldest->rd[1];
505 memcpy (&oldest->rd[1], nick->data, nick->data_size);
506 }
507 else
508 {
509 oldest->rd = NULL;
510 }
512}
513
514
522static struct GNUNET_GNSRECORD_Data *
524{
526 struct GNUNET_GNSRECORD_Data *nick;
527 int res;
528
529 /* check cache first */
530 for (unsigned int i = 0; i < NC_SIZE; i++)
531 {
532 struct NickCache *pos = &nick_cache[i];
533 if ((NULL != pos->rd) && (0 == GNUNET_memcmp (zone, &pos->zone)))
534 {
535 if (NULL == pos->rd)
536 return NULL;
537 nick = GNUNET_malloc (sizeof(*nick) + pos->rd->data_size);
538 *nick = *pos->rd;
539 nick->data = &nick[1];
540 memcpy (&nick[1], pos->rd->data, pos->rd->data_size);
542 return nick;
543 }
544 }
545
546 nick = NULL;
548 zone,
551 &nick);
552 if ((GNUNET_OK != res) || (NULL == nick))
553 {
554#if ! defined(GNUNET_CULL_LOGGING)
555 static int do_log = GNUNET_LOG_CALL_STATUS;
556
557 if (0 == do_log)
559 "namestore",
560 __FILE__,
561 __FUNCTION__,
562 __LINE__);
563 if (1 == do_log)
564 {
567 "No nick name set for zone `%s'\n",
569 }
570#endif
571 /* update cache */
572 cache_nick (zone, NULL);
573 return NULL;
574 }
575
576 /* update cache */
577 cache_nick (zone, nick);
578 return nick;
579}
580
581
597static void
599 unsigned int rd2_length,
600 const struct GNUNET_GNSRECORD_Data *rd2,
601 unsigned int *rdc_res,
602 struct GNUNET_GNSRECORD_Data **rd_res)
603{
604 uint64_t latest_expiration;
605 size_t req;
606 char *data;
607 size_t data_offset;
608 struct GNUNET_GNSRECORD_Data *target;
609
610 (*rdc_res) = 1 + rd2_length;
611 if (0 == 1 + rd2_length)
612 {
613 GNUNET_break (0);
614 (*rd_res) = NULL;
615 return;
616 }
617 req = sizeof(struct GNUNET_GNSRECORD_Data) + nick_rd->data_size;
618 for (unsigned int i = 0; i < rd2_length; i++)
619 {
620 const struct GNUNET_GNSRECORD_Data *orig = &rd2[i];
621
622 if (req + sizeof(struct GNUNET_GNSRECORD_Data) + orig->data_size < req)
623 {
624 GNUNET_break (0);
625 (*rd_res) = NULL;
626 return;
627 }
628 req += sizeof(struct GNUNET_GNSRECORD_Data) + orig->data_size;
629 }
630 target = GNUNET_malloc (req);
631 (*rd_res) = target;
632 data = (char *) &target[1 + rd2_length];
633 data_offset = 0;
634 latest_expiration = 0;
635 for (unsigned int i = 0; i < rd2_length; i++)
636 {
637 const struct GNUNET_GNSRECORD_Data *orig = &rd2[i];
638
640 {
641 if ((GNUNET_TIME_absolute_get ().abs_value_us + orig->expiration_time) >
642 latest_expiration)
643 latest_expiration = orig->expiration_time;
644 }
645 else if (orig->expiration_time > latest_expiration)
646 latest_expiration = orig->expiration_time;
647 target[i] = *orig;
648 target[i].data = (void *) &data[data_offset];
649 GNUNET_memcpy (&data[data_offset], orig->data, orig->data_size);
650 data_offset += orig->data_size;
651 }
652 /* append nick */
653 target[rd2_length] = *nick_rd;
654 /* Mark as supplemental */
655 target[rd2_length].flags = nick_rd->flags | GNUNET_GNSRECORD_RF_SUPPLEMENTAL;
656 target[rd2_length].expiration_time = latest_expiration;
657 target[rd2_length].data = (void *) &data[data_offset];
658 GNUNET_memcpy (&data[data_offset], nick_rd->data, nick_rd->data_size);
659 data_offset += nick_rd->data_size;
660 GNUNET_assert (req == (sizeof(struct GNUNET_GNSRECORD_Data)) * (*rdc_res)
661 + data_offset);
662}
663
664
677static int
679 uint32_t request_id,
680 const struct
681 GNUNET_CRYPTO_PrivateKey *zone_key,
682 const char *name,
683 unsigned int rd_count,
684 const struct GNUNET_GNSRECORD_Data *rd,
686{
687 struct GNUNET_MQ_Envelope *env;
688 struct RecordResultMessage *zir_msg;
689 struct GNUNET_GNSRECORD_Data *nick;
691 struct GNUNET_GNSRECORD_Data rd_nf[rd_count];
693 unsigned int res_count;
694 unsigned int rd_nf_count;
695 size_t name_len;
696 size_t key_len;
697 ssize_t rd_ser_len;
698 char *name_tmp;
699 char *rd_ser;
700 char *emsg;
701
702 nick = get_nick_record (zone_key);
704
706 rd,
707 rd_count,
708 rd_nf,
709 &rd_nf_count,
710 &block_exp,
711 filter,
712 &emsg))
713 {
714 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "%s\n", emsg);
715 GNUNET_free (emsg);
716 GNUNET_assert (0);
717 }
718
723 if ((NULL != nick) && (0 != strcmp (name, GNUNET_GNS_EMPTY_LABEL_AT)))
724 {
725 nick->flags =
727 merge_with_nick_records (nick, rd_nf_count, rd_nf, &res_count, &res);
728 }
729 else
730 {
731 res_count = rd_nf_count;
732 res = (struct GNUNET_GNSRECORD_Data *) rd_nf;
733 }
734 if (NULL != nick)
735 GNUNET_free (nick);
736
737 if (0 == res_count)
738 {
739 if (rd_nf != res)
741 return 0;
742 }
744
745
746 name_len = strlen (name) + 1;
747 rd_ser_len = GNUNET_GNSRECORD_records_get_size (res_count, res);
748 if (rd_ser_len < 0)
749 {
750 if (rd_nf != res)
752 GNUNET_break (0);
754 return 0;
755 }
756 if (((size_t) rd_ser_len) >= UINT16_MAX - name_len - sizeof(*zir_msg))
757 {
758 if (rd_nf != res)
760 GNUNET_break (0);
762 return 0;
763 }
764 key_len = GNUNET_CRYPTO_private_key_get_length (zone_key);
765 env = GNUNET_MQ_msg_extra (zir_msg,
766 name_len + rd_ser_len + key_len,
768 zir_msg->gns_header.r_id = htonl (request_id);
769 zir_msg->name_len = htons (name_len);
770 zir_msg->rd_count = htons (res_count);
771 zir_msg->rd_len = htons ((uint16_t) rd_ser_len);
772 zir_msg->key_len = htons (key_len);
774 &zir_msg[1],
775 key_len);
776 zir_msg->expire = GNUNET_TIME_absolute_hton (block_exp);
777 name_tmp = (char *) &zir_msg[1] + key_len;
778 GNUNET_memcpy (name_tmp, name, name_len);
779 rd_ser = &name_tmp[name_len];
781 rd_ser_len ==
782 GNUNET_GNSRECORD_records_serialize (res_count, res, rd_ser_len, rd_ser));
784 "Sending RECORD_RESULT message with %u records\n",
785 res_count);
787 "Record sets sent to clients",
788 1,
789 GNUNET_NO);
790 GNUNET_MQ_send (nc->mq, env);
791 if (rd_nf != res)
793 return res_count;
794}
795
796
804static void
806 enum GNUNET_ErrorCode ec,
807 uint32_t rid)
808{
809 struct GNUNET_MQ_Envelope *env;
810 struct NamestoreResponseMessage *rcr_msg;
811
812 GNUNET_assert (NULL != nc);
814 "Sending GENERIC_RESPONSE message\n");
816 "Store requests completed",
817 1,
818 GNUNET_NO);
819 env = GNUNET_MQ_msg (rcr_msg,
821 rcr_msg->gns_header.r_id = htonl (rid);
822 rcr_msg->ec = htonl (ec);
823 GNUNET_MQ_send (nc->mq, env);
824}
825
826
833static void
835{
836 struct GNUNET_MQ_Envelope *env;
837 struct GNUNET_NAMESTORE_Header *em;
838
840 if (! zi->send_end)
841 return;
842 /* send empty response to indicate end of list */
844 em->r_id = htonl (zi->request_id);
845 GNUNET_MQ_send (zi->nc->mq, env);
846
848 GNUNET_free (zi);
849}
850
851
857static void
859{
860 struct ZoneMonitor *zm = cls;
861
863 "No response from monitor since %s\n",
864 GNUNET_STRINGS_absolute_time_to_string (zm->sa_waiting_start));
867 zm);
868}
869
870
876static int
878 int call_continue)
879{
880 const struct RecordSet *rd_set = sa->rs;
881 unsigned int rd_count;
882 size_t name_len;
883 size_t rd_ser_len;
884 const char *name_tmp;
885 const char *rd_ser;
886 const char *buf;
887 char *conv_name;
888
889 buf = (const char *) &sa[1];
890 for (int i = sa->rd_set_pos; i < sa->rd_set_count; i++)
891 {
892 rd_set = (struct RecordSet *) buf;
893 name_len = ntohs (rd_set->name_len);
894 rd_count = ntohs (rd_set->rd_count);
895 rd_ser_len = ntohs (rd_set->rd_len);
896 name_tmp = (const char *) &rd_set[1];
897 rd_ser = &name_tmp[name_len];
898 conv_name = GNUNET_GNSRECORD_string_normalize (name_tmp);
899 GNUNET_assert (NULL != conv_name);
900 {
902
903 /* We did this before, must succeed again */
905 GNUNET_OK ==
907 rd));
908
910 "Checking monitors watching for `%s'\n",
911 conv_name);
912 for (struct ZoneMonitor *zm = sa->zm_pos; NULL != zm; zm = sa->zm_pos)
913 {
914 if ((0 != GNUNET_memcmp (&sa->private_key, &zm->zone)) &&
915 (0 != GNUNET_memcmp (&zm->zone, &zero)))
916 {
917 sa->zm_pos = zm->next; /* not interesting to this monitor */
918 continue;
919 }
920 if (zm->limit == zm->iteration_cnt)
921 {
922 zm->sa_waiting = GNUNET_YES;
923 zm->sa_waiting_start = GNUNET_TIME_absolute_get ();
924 if (NULL != zm->sa_wait_warning)
925 GNUNET_SCHEDULER_cancel (zm->sa_wait_warning);
926 zm->sa_wait_warning =
929 zm);
931 "Monitor is blocking client for `%s'\n",
932 conv_name);
933 GNUNET_free (conv_name);
934 return GNUNET_NO; /* blocked on zone monitor */
935 }
937 "Notifying monitor about changes under label `%s'\n",
938 conv_name);
940 0,
941 &sa->private_key,
942 conv_name,
943 rd_count,
944 rd,
945 zm->filter))
946 zm->limit--;
947 sa->zm_pos = zm->next;
948 }
949 sa->rd_set_pos++;
950 GNUNET_free (conv_name);
951 }
952 }
953 if (GNUNET_YES == call_continue)
957 return GNUNET_OK;
958}
959
960
969static void
971 struct GNUNET_SERVICE_Client *client,
972 void *app_ctx)
973{
974 struct NamestoreClient *nc = app_ctx;
975 struct ZoneIteration *no;
976 struct StoreActivity *sa = sa_head;
977 struct StoreActivity *sn;
978
979 (void) cls;
980 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Client %p disconnected\n", client);
981 for (struct ZoneMonitor *zm = monitor_head; NULL != zm; zm = zm->next)
982 {
983 if (nc != zm->nc)
984 continue;
986 if (NULL != zm->task)
987 {
989 zm->task = NULL;
990 }
991 if (NULL != zm->sa_wait_warning)
992 {
993 GNUNET_SCHEDULER_cancel (zm->sa_wait_warning);
994 zm->sa_wait_warning = NULL;
995 }
996 for (sa = sa_head; NULL != sa; sa = sn)
997 {
998 sn = sa->next;
999 if (zm == sa->zm_pos)
1000 {
1001 sa->zm_pos = zm->next;
1002 /* this may free sa */
1004 }
1005 }
1006 GNUNET_free (zm);
1007 break;
1008 }
1009 sa = sa_head;
1010 while (NULL != sa)
1011 {
1012 if (nc != sa->nc)
1013 {
1014 sa = sa->next;
1015 continue;
1016 }
1017 sn = sa->next;
1019 sa = sn;
1020 }
1021 while (NULL != (no = nc->op_head))
1022 {
1023 GNUNET_CONTAINER_DLL_remove (nc->op_head, nc->op_tail, no);
1024 GNUNET_free (no);
1025 }
1026 GNUNET_break (NULL == GNUNET_PLUGIN_unload (nc->db_lib_name,
1027 nc->GSN_database));
1028 GNUNET_free (nc->db_lib_name);
1029 GNUNET_free (nc);
1030}
1031
1032
1041static void *
1043 struct GNUNET_SERVICE_Client *client,
1044 struct GNUNET_MQ_Handle *mq)
1045{
1046 struct NamestoreClient *nc;
1047 char *database;
1048
1049 (void) cls;
1050 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Client %p connected\n", client);
1051 nc = GNUNET_new (struct NamestoreClient);
1052 nc->client = client;
1053 nc->mq = mq;
1054 /* Loading database plugin */
1056 "namestore",
1057 "database",
1058 &database))
1059 {
1060 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "No database backend configured\n");
1061 GNUNET_free (nc);
1062 return NULL;
1063 }
1065 nc->GSN_database = GNUNET_PLUGIN_load (db_lib_name, (void *) GSN_cfg);
1066 GNUNET_free (database);
1067 if (NULL == nc->GSN_database)
1068 {
1070 "Could not load database backend `%s'\n",
1071 db_lib_name);
1072 GNUNET_free (nc);
1073 return NULL;
1074 }
1075 nc->db_lib_name = GNUNET_strdup (db_lib_name);
1077 return nc;
1078}
1079
1080
1085{
1089 const char *label;
1090
1094 const char *editor_hint;
1095
1099 char *res_rd;
1100
1105
1110
1115
1119 unsigned int res_rd_count;
1120
1124 ssize_t rd_ser_len;
1125};
1126
1127
1140static void
1141lookup_it (void *cls,
1142 uint64_t seq,
1143 const char *editor_hint,
1144 const struct GNUNET_CRYPTO_PrivateKey *private_key,
1145 const char *label,
1146 unsigned int rd_count_nf,
1147 const struct GNUNET_GNSRECORD_Data *rd_nf)
1148{
1149 struct RecordLookupContext *rlc = cls;
1150 struct GNUNET_GNSRECORD_Data rd[rd_count_nf];
1151 struct GNUNET_TIME_Absolute block_exp;
1152 unsigned int rd_count = 0;
1153 char *emsg;
1154
1155 (void) private_key;
1156 GNUNET_assert (0 != seq);
1157 if (0 != strcmp (label, rlc->label))
1158 return;
1159 rlc->found = GNUNET_YES;
1160 rlc->editor_hint = editor_hint;
1162 rd_nf,
1163 rd_count_nf,
1164 rd,
1165 &rd_count,
1166 &block_exp,
1167 rlc->filter,
1168 &emsg))
1169 {
1170 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "%s\n", emsg);
1171 GNUNET_free (emsg);
1172 GNUNET_assert (0);
1173 }
1174
1175 if (0 == rd_count)
1176 {
1177 rlc->rd_ser_len = 0;
1178 rlc->res_rd_count = 0;
1179 rlc->res_rd = NULL;
1180 return;
1181 }
1182 if ((NULL != rlc->nick) && (0 != strcmp (label, GNUNET_GNS_EMPTY_LABEL_AT)))
1183 {
1184 /* Merge */
1185 struct GNUNET_GNSRECORD_Data *rd_res;
1186 unsigned int rdc_res;
1187
1188 rd_res = NULL;
1189 rdc_res = 0;
1192 merge_with_nick_records (rlc->nick, rd_count, rd, &rdc_res, &rd_res);
1193 rlc->rd_ser_len = GNUNET_GNSRECORD_records_get_size (rdc_res, rd_res);
1194 if (rlc->rd_ser_len < 0)
1195 {
1196 GNUNET_break (0);
1197 GNUNET_free (rd_res);
1198 rlc->found = GNUNET_NO;
1199 rlc->rd_ser_len = 0;
1200 return;
1201 }
1202 rlc->res_rd_count = rdc_res;
1203 rlc->res_rd = GNUNET_malloc (rlc->rd_ser_len);
1205 rd_res,
1206 rlc->rd_ser_len,
1207 rlc->res_rd))
1208 {
1209 GNUNET_break (0);
1210 GNUNET_free (rlc->res_rd);
1211 rlc->res_rd = NULL;
1212 rlc->res_rd_count = 0;
1213 rlc->rd_ser_len = 0;
1214 GNUNET_free (rd_res);
1215 rlc->found = GNUNET_NO;
1216 return;
1217 }
1218 GNUNET_free (rd_res);
1219 GNUNET_free (rlc->nick);
1220 rlc->nick = NULL;
1221 }
1222 else
1223 {
1225 if (rlc->rd_ser_len < 0)
1226 {
1227 GNUNET_break (0);
1228 rlc->found = GNUNET_NO;
1229 rlc->rd_ser_len = 0;
1230 return;
1231 }
1232 rlc->res_rd_count = rd_count;
1233 rlc->res_rd = GNUNET_malloc (rlc->rd_ser_len);
1235 rd,
1236 rlc->rd_ser_len,
1237 rlc->res_rd))
1238 {
1239 GNUNET_break (0);
1240 GNUNET_free (rlc->res_rd);
1241 rlc->res_rd = NULL;
1242 rlc->res_rd_count = 0;
1243 rlc->rd_ser_len = 0;
1244 rlc->found = GNUNET_NO;
1245 return;
1246 }
1247 }
1248}
1249
1250
1258static int
1259check_edit_record_set (void *cls, const struct EditRecordSetMessage *er_msg)
1260{
1261 uint16_t name_len;
1262 uint16_t editor_hint_len;
1263 size_t src_size;
1264 size_t key_len;
1265
1266 (void) cls;
1267 name_len = ntohs (er_msg->label_len);
1268 editor_hint_len = ntohs (er_msg->editor_hint_len);
1269 key_len = ntohs (er_msg->key_len);
1270 src_size = ntohs (er_msg->gns_header.header.size);
1271 if (name_len + editor_hint_len + key_len != src_size - sizeof(struct
1273 {
1274 GNUNET_break (0);
1275 return GNUNET_SYSERR;
1276 }
1277 return GNUNET_OK;
1278}
1279
1280
1287static void
1288handle_edit_record_set (void *cls, const struct EditRecordSetMessage *er_msg)
1289{
1290 struct GNUNET_CRYPTO_PrivateKey zone;
1291 struct NamestoreClient *nc = cls;
1292 struct GNUNET_MQ_Envelope *env;
1293 struct EditRecordSetResponseMessage *rer_msg;
1294 struct RecordLookupContext rlc;
1295 const char *name_tmp;
1296 const char *editor_hint;
1297 char *conv_name;
1298 uint16_t name_len;
1299 uint16_t old_editor_hint_len;
1300 int res;
1301 size_t key_len;
1302 size_t kb_read;
1303
1304 key_len = ntohs (er_msg->key_len);
1305 name_len = ntohs (er_msg->label_len);
1306 if ((GNUNET_SYSERR ==
1308 key_len,
1309 &zone,
1310 &kb_read)) ||
1311 (kb_read != key_len))
1312 {
1314 "Error reading private key\n");
1316 return;
1317 }
1318 name_tmp = (const char *) &er_msg[1] + key_len;
1319 editor_hint = (const char *) name_tmp + name_len;
1322 "Received NAMESTORE_RECORD_SET_EDIT message for name `%s'\n",
1323 name_tmp);
1324
1325 conv_name = GNUNET_GNSRECORD_string_normalize (name_tmp);
1326 if (NULL == conv_name)
1327 {
1329 "Error converting name `%s'\n",
1330 name_tmp);
1332 return;
1333 }
1334 name_len = strlen (conv_name) + 1;
1335 rlc.label = conv_name;
1337 "Looking up without filter\n");
1339 rlc.found = GNUNET_NO;
1340 rlc.res_rd_count = 0;
1341 rlc.res_rd = NULL;
1342 rlc.rd_ser_len = 0;
1343 rlc.nick = get_nick_record (&zone);
1344 res = nc->GSN_database->edit_records (nc->GSN_database->cls,
1346 &zone,
1347 conv_name,
1348 &lookup_it,
1349 &rlc);
1350
1351 old_editor_hint_len = 0;
1352 if (NULL != rlc.editor_hint)
1353 old_editor_hint_len = strlen (rlc.editor_hint) + 1;
1354 env =
1355 GNUNET_MQ_msg_extra (rer_msg,
1356 rlc.rd_ser_len + old_editor_hint_len,
1358 ;
1359 rer_msg->editor_hint_len = htons (old_editor_hint_len);
1360 rer_msg->gns_header.r_id = er_msg->gns_header.r_id;
1361 rer_msg->rd_count = htons (rlc.res_rd_count);
1362 rer_msg->rd_len = htons (rlc.rd_ser_len);
1363 if (GNUNET_YES == rlc.found)
1364 rer_msg->ec = htons (GNUNET_EC_NONE);
1365 else if (GNUNET_SYSERR == res)
1366 rer_msg->ec = htons (GNUNET_EC_NAMESTORE_UNKNOWN);
1367 else
1368 rer_msg->ec = htons (GNUNET_EC_NAMESTORE_NO_RESULTS);
1369 GNUNET_memcpy (&rer_msg[1], rlc.editor_hint, old_editor_hint_len);
1370 GNUNET_memcpy ((char*) &rer_msg[1] + old_editor_hint_len, rlc.res_rd,
1371 rlc.rd_ser_len);
1372 GNUNET_MQ_send (nc->mq, env);
1373 GNUNET_free (rlc.res_rd);
1374 GNUNET_free (conv_name);
1375}
1376
1377
1385static int
1386check_edit_record_set_cancel (void *cls, const struct
1388{
1389 uint16_t name_len;
1390 uint16_t editor_hint_len;
1391 uint16_t editor_hint_repl_len;
1392 size_t src_size;
1393 size_t key_len;
1394
1395 (void) cls;
1396 name_len = ntohs (er_msg->label_len);
1397 editor_hint_len = ntohs (er_msg->editor_hint_len);
1398 editor_hint_repl_len = ntohs (er_msg->editor_hint_len);
1399 key_len = ntohs (er_msg->key_len);
1400 src_size = ntohs (er_msg->gns_header.header.size);
1401 if (name_len + editor_hint_len + editor_hint_repl_len + key_len != src_size
1402 - sizeof(struct
1404 {
1405 GNUNET_break (0);
1406 return GNUNET_SYSERR;
1407 }
1408 return GNUNET_OK;
1409}
1410
1411
1418static void
1419handle_edit_record_set_cancel (void *cls, const struct
1421{
1422 struct GNUNET_CRYPTO_PrivateKey zone;
1423 struct NamestoreClient *nc = cls;
1424 struct GNUNET_MQ_Envelope *env;
1425 struct NamestoreResponseMessage *rer_msg;
1426 const char *name_tmp;
1427 const char *editor_hint;
1428 const char *editor_hint_repl;
1429 char *conv_name;
1430 uint16_t name_len;
1431 uint16_t editor_hint_len;
1432 int res;
1433 size_t key_len;
1434 size_t kb_read;
1435
1436 key_len = ntohs (er_msg->key_len);
1437 name_len = ntohs (er_msg->label_len);
1438 editor_hint_len = ntohs (er_msg->editor_hint_len);
1439 if ((GNUNET_SYSERR ==
1441 key_len,
1442 &zone,
1443 &kb_read)) ||
1444 (kb_read != key_len))
1445 {
1447 "Error reading private key\n");
1449 return;
1450 }
1451 name_tmp = (const char *) &er_msg[1] + key_len;
1452 editor_hint = (const char *) name_tmp + name_len;
1453 editor_hint_repl = (const char *) name_tmp + name_len + editor_hint_len;
1456 "Received NAMESTORE_RECORD_SET_EDIT message for name `%s'\n",
1457 name_tmp);
1458
1459 conv_name = GNUNET_GNSRECORD_string_normalize (name_tmp);
1460 if (NULL == conv_name)
1461 {
1463 "Error converting name `%s'\n",
1464 name_tmp);
1466 return;
1467 }
1468 name_len = strlen (conv_name) + 1;
1470 "Clearing editor hint\n");
1471 res = nc->GSN_database->clear_editor_hint (nc->GSN_database->cls,
1472 editor_hint,
1473 editor_hint_repl,
1474 &zone,
1475 conv_name);
1477 "Clearing editor hint %s\n", (GNUNET_SYSERR == res) ? "failed." :
1478 "successful.");
1479
1480 env =
1481 GNUNET_MQ_msg (rer_msg,
1483 rer_msg->gns_header.r_id = er_msg->gns_header.r_id;
1484 rer_msg->ec = htons ((GNUNET_OK == res) ? GNUNET_EC_NONE :
1486 GNUNET_MQ_send (nc->mq, env);
1487 GNUNET_free (conv_name);
1488}
1489
1490
1498static int
1499check_record_lookup (void *cls, const struct LabelLookupMessage *ll_msg)
1500{
1501 uint32_t name_len;
1502 size_t src_size;
1503 size_t key_len;
1504
1505 (void) cls;
1506 name_len = ntohs (ll_msg->label_len);
1507 key_len = ntohs (ll_msg->key_len);
1508 src_size = ntohs (ll_msg->gns_header.header.size);
1509 if (name_len + key_len != src_size - sizeof(struct LabelLookupMessage))
1510 {
1511 GNUNET_break (0);
1512 return GNUNET_SYSERR;
1513 }
1514 return GNUNET_OK;
1515}
1516
1517
1524static void
1525handle_record_lookup (void *cls, const struct LabelLookupMessage *ll_msg)
1526{
1527 struct GNUNET_CRYPTO_PrivateKey zone;
1528 struct NamestoreClient *nc = cls;
1529 struct GNUNET_MQ_Envelope *env;
1530 struct LabelLookupResponseMessage *llr_msg;
1531 struct RecordLookupContext rlc;
1532 const char *name_tmp;
1533 char *res_name;
1534 char *conv_name;
1535 uint32_t name_len;
1536 int res;
1537 size_t key_len;
1538 size_t kb_read;
1539
1540 key_len = ntohs (ll_msg->key_len);
1541 if ((GNUNET_SYSERR ==
1543 key_len,
1544 &zone,
1545 &kb_read)) ||
1546 (kb_read != key_len))
1547 {
1549 "Error reading private key\n");
1551 return;
1552 }
1553 name_tmp = (const char *) &ll_msg[1] + key_len;
1556 "Received NAMESTORE_RECORD_LOOKUP message for name `%s'\n",
1557 name_tmp);
1558
1559 conv_name = GNUNET_GNSRECORD_string_normalize (name_tmp);
1560 if (NULL == conv_name)
1561 {
1563 "Error converting name `%s'\n",
1564 name_tmp);
1566 return;
1567 }
1568 name_len = strlen (conv_name) + 1;
1569 rlc.label = conv_name;
1571 "Looking up with filter %u\n", ntohs (ll_msg->filter));
1572 rlc.filter = ntohs (ll_msg->filter);
1573 rlc.found = GNUNET_NO;
1574 rlc.res_rd_count = 0;
1575 rlc.res_rd = NULL;
1576 rlc.rd_ser_len = 0;
1577 rlc.nick = get_nick_record (&zone);
1578 res = nc->GSN_database->lookup_records (nc->GSN_database->cls,
1579 &zone,
1580 conv_name,
1581 &lookup_it,
1582 &rlc);
1583 env =
1584 GNUNET_MQ_msg_extra (llr_msg,
1585 key_len + name_len + rlc.rd_ser_len,
1587 llr_msg->gns_header.r_id = ll_msg->gns_header.r_id;
1588 GNUNET_memcpy (&llr_msg[1], &ll_msg[1], key_len);
1589 llr_msg->key_len = ll_msg->key_len;
1590 llr_msg->name_len = htons (name_len);
1591 llr_msg->rd_count = htons (rlc.res_rd_count);
1592 llr_msg->rd_len = htons (rlc.rd_ser_len);
1593 llr_msg->reserved = htons (0);
1594 res_name = ((char *) &llr_msg[1]) + key_len;
1595 if (GNUNET_YES == rlc.found)
1596 llr_msg->found = htons (GNUNET_YES);
1597 else if (GNUNET_SYSERR == res)
1598 llr_msg->found = htons (GNUNET_SYSERR);
1599 else
1600 llr_msg->found = htons (GNUNET_NO);
1601 GNUNET_memcpy (res_name, conv_name, name_len);
1602 GNUNET_memcpy (&res_name[name_len], rlc.res_rd, rlc.rd_ser_len);
1603 GNUNET_MQ_send (nc->mq, env);
1604 GNUNET_free (rlc.res_rd);
1605 GNUNET_free (conv_name);
1606}
1607
1608
1616static int
1617check_record_store (void *cls, const struct RecordStoreMessage *rp_msg)
1618{
1619 size_t msg_size;
1620 size_t min_size_exp;
1621 size_t rd_set_count;
1622 size_t key_len;
1623
1624 (void) cls;
1625 msg_size = ntohs (rp_msg->gns_header.header.size);
1626 rd_set_count = ntohs (rp_msg->rd_set_count);
1627 key_len = ntohs (rp_msg->key_len);
1628
1629 min_size_exp = sizeof(*rp_msg) + key_len + sizeof (struct RecordSet)
1630 * rd_set_count;
1631 if (msg_size < min_size_exp)
1632 {
1633 GNUNET_break (0);
1634 return GNUNET_SYSERR;
1635 }
1636 return GNUNET_OK;
1637}
1638
1639
1641{
1642
1647
1653
1654};
1655
1656
1667static void
1669 uint64_t seq,
1670 const char *editor_hint,
1671 const struct
1672 GNUNET_CRYPTO_PrivateKey *private_key,
1673 const char *label,
1674 unsigned int rd_count,
1675 const struct GNUNET_GNSRECORD_Data *rd)
1676{
1677 struct LookupExistingRecordsContext *lctx = cls;
1678 struct GNUNET_GNSRECORD_Data rd_pub[rd_count];
1679 unsigned int rd_pub_count;
1680 char *emsg;
1681
1682 if ((1 == rd_count) &&
1684 {
1685 /* This record set contains only a tombstone! */
1686 lctx->only_tombstone = GNUNET_YES;
1687 }
1688 if (GNUNET_OK !=
1690 rd,
1691 rd_count,
1692 rd_pub,
1693 &rd_pub_count,
1694 &lctx->exp,
1696 &emsg))
1697 {
1699 "%s\n", emsg);
1700 GNUNET_free (emsg);
1701 }
1702}
1703
1704
1705static enum GNUNET_ErrorCode
1707 const struct GNUNET_CRYPTO_PrivateKey *private_key,
1708 const struct RecordSet *rd_set,
1709 ssize_t *len)
1710{
1711 size_t name_len;
1712 size_t rd_ser_len;
1713 const char *name_tmp;
1714 const char *rd_ser;
1715 char *conv_name;
1716 char *emsg;
1717 unsigned int rd_count;
1718 int res;
1719 enum GNUNET_ErrorCode ec;
1720 struct GNUNET_TIME_Absolute new_block_exp;
1721 struct LookupExistingRecordsContext lctx;
1722 *len = sizeof (struct RecordSet);
1723
1724 ec = GNUNET_EC_NONE;
1727 new_block_exp = GNUNET_TIME_UNIT_ZERO_ABS;
1728 name_len = ntohs (rd_set->name_len);
1729 *len += name_len;
1730 rd_count = ntohs (rd_set->rd_count);
1731 rd_ser_len = ntohs (rd_set->rd_len);
1732 *len += rd_ser_len;
1733 name_tmp = (const char *) &rd_set[1];
1734 rd_ser = &name_tmp[name_len];
1735 {
1737
1738 /* Extracting and converting private key */
1739 conv_name = GNUNET_GNSRECORD_string_normalize (name_tmp);
1740 if (NULL == conv_name)
1741 {
1743 "Error normalizing name `%s'\n",
1744 name_tmp);
1746 }
1747
1748 /* Check name for validity */
1749 if (GNUNET_OK != GNUNET_GNSRECORD_label_check (conv_name, &emsg))
1750 {
1752 "Label invalid: `%s'\n",
1753 emsg);
1754 GNUNET_free (emsg);
1755 GNUNET_free (conv_name);
1757 }
1758
1759 if (GNUNET_OK !=
1761 rd))
1762 {
1763 GNUNET_free (conv_name);
1765 }
1766
1768 "Well-formed store requests received",
1769 1,
1770 GNUNET_NO);
1772 "Creating %u records for name `%s'\n",
1773 (unsigned int) rd_count,
1774 conv_name);
1775 if ((GNUNET_NO == nc->GSN_database->lookup_records (nc->GSN_database->cls,
1776 private_key,
1777 conv_name,
1779 &lctx))
1780 &&
1781 (rd_count == 0))
1782 {
1783 /* This name does not exist, so cannot be removed */
1785 "Name `%s' does not exist, no deletion required\n",
1786 conv_name);
1787 res = GNUNET_NO;
1789 }
1790 else
1791 {
1792 /* remove "NICK" records, unless this is for the
1793 #GNUNET_GNS_EMPTY_LABEL_AT label
1794 We may need one additional record later for tombstone.
1795 FIXME: Since we must normalize the record set (check for
1796 consistency etc) we have to iterate the set twice.
1797 May be inefficient.
1798 We cannot really move the nick caching into GNSRECORD.
1799 */
1800 struct GNUNET_GNSRECORD_Data rd_clean[GNUNET_NZL (rd_count)];
1801 struct GNUNET_GNSRECORD_Data rd_nf[GNUNET_NZL (rd_count) + 1];
1802 unsigned int rd_clean_off;
1803 unsigned int rd_nf_count;
1804 int have_nick;
1805
1806 rd_clean_off = 0;
1807 have_nick = GNUNET_NO;
1808 for (unsigned int i = 0; i < rd_count; i++)
1809 {
1810 rd_clean[rd_clean_off] = rd[i];
1811
1812 if ((0 == strcmp (GNUNET_GNS_EMPTY_LABEL_AT, conv_name)) ||
1814 rd_clean_off++;
1815
1816 if ((0 == strcmp (GNUNET_GNS_EMPTY_LABEL_AT, conv_name)) &&
1818 {
1819 cache_nick (private_key, &rd[i]);
1820 have_nick = GNUNET_YES;
1821 }
1822 }
1823 if (GNUNET_OK !=
1825 rd_clean,
1826 rd_clean_off,
1827 rd_nf,
1828 &rd_nf_count,
1829 &new_block_exp,
1831 &emsg))
1832 {
1833 GNUNET_free (conv_name);
1835 "Error normalizing record set: `%s'\n",
1836 emsg);
1837 GNUNET_free (emsg);
1839 }
1841 "%u/%u records before tombstone\n", rd_nf_count,
1842 rd_clean_off);
1843 /*
1844 * If existing_block_exp is 0, then there was no record set
1845 * and no tombstone.
1846 * Otherwise, if the existing block expiration is after the
1847 * new block expiration would be, we need to add a tombstone
1848 * or update it.
1849 */
1850 if (GNUNET_TIME_absolute_cmp (new_block_exp, <=, lctx.exp))
1851 {
1852 rd_nf[rd_nf_count].record_type = GNUNET_GNSRECORD_TYPE_TOMBSTONE;
1853 rd_nf[rd_nf_count].expiration_time =
1854 lctx.exp.abs_value_us;
1855 rd_nf[rd_nf_count].data = NULL;
1856 rd_nf[rd_nf_count].data_size = 0;
1857 rd_nf[rd_nf_count].flags = GNUNET_GNSRECORD_RF_PRIVATE
1859 rd_nf_count++;
1860 }
1861 if ((0 == strcmp (GNUNET_GNS_EMPTY_LABEL_AT, conv_name)) &&
1862 (GNUNET_NO == have_nick))
1863 {
1864 cache_nick (private_key, NULL);
1865 }
1866 res = nc->GSN_database->store_records (nc->GSN_database->cls,
1867 private_key,
1868 conv_name,
1869 rd_nf_count,
1870 rd_nf);
1871 /* If after a store there is only a TOMBSTONE left, and
1872 * there was >1 record under this label found (the tombstone; indicated
1873 * through res != GNUNET_NO) then we should return "NOT FOUND" == GNUNET_NO
1874 */
1875 if ((GNUNET_SYSERR != res) &&
1876 (0 == rd_count) &&
1877 (1 == rd_nf_count) &&
1879 (GNUNET_YES == lctx.only_tombstone))
1880 {
1882 "Client tried to remove non-existant record\n");
1884 }
1885 }
1886
1887 if (GNUNET_SYSERR == res)
1888 {
1889 /* store not successful, no need to tell monitors */
1890 GNUNET_free (conv_name);
1892 }
1893 }
1894 GNUNET_free (conv_name);
1895 return ec;
1896}
1897
1898
1905static void
1906handle_record_store (void *cls, const struct RecordStoreMessage *rp_msg)
1907{
1908 struct GNUNET_CRYPTO_PrivateKey zone;
1909 struct NamestoreClient *nc = cls;
1910 uint32_t rid;
1911 uint16_t rd_set_count;
1912 const char *buf;
1913 ssize_t read;
1914 size_t key_len;
1915 size_t kb_read;
1916 size_t rp_msg_len;
1917 size_t rs_len;
1918 size_t rs_off;
1919 struct StoreActivity *sa;
1920 struct RecordSet *rs;
1921 enum GNUNET_ErrorCode res;
1922
1923 key_len = ntohs (rp_msg->key_len);
1924 rp_msg_len = ntohs (rp_msg->gns_header.header.size);
1925 rs_off = sizeof (*rp_msg) + key_len;
1926 rs_len = rp_msg_len - rs_off;
1927 if ((GNUNET_SYSERR ==
1929 key_len,
1930 &zone,
1931 &kb_read)) ||
1932 (kb_read != key_len))
1933 {
1935 "Error reading private key\n");
1937 return;
1938 }
1940 "Received NAMESTORE_RECORD_STORE message\n");
1941 rid = ntohl (rp_msg->gns_header.r_id);
1942 rd_set_count = ntohs (rp_msg->rd_set_count);
1943 buf = (const char *) rp_msg + rs_off;
1944 for (int i = 0; i < rd_set_count; i++)
1945 {
1946 rs = (struct RecordSet *) buf;
1947 res = store_record_set (nc, &zone,
1948 rs, &read);
1949 if (GNUNET_EC_NONE != res)
1950 {
1951 send_store_response (nc, res, rid);
1953 return;
1954 }
1955 buf += read;
1956 }
1957 sa = GNUNET_malloc (sizeof(struct StoreActivity) + rs_len);
1959 sa->nc = nc;
1960 sa->rs = (struct RecordSet *) &sa[1];
1961 sa->rd_set_count = rd_set_count;
1962 GNUNET_memcpy (&sa[1], (char *) rp_msg + rs_off, rs_len);
1963 sa->rid = rid;
1964 sa->rd_set_pos = 0;
1965 sa->private_key = zone;
1966 sa->zm_pos = monitor_head;
1968}
1969
1970
1976{
1981
1985 uint32_t rid;
1986
1993};
1994
1995
2006static void
2008 uint64_t seq,
2009 const char *editor_hint,
2010 const struct GNUNET_CRYPTO_PrivateKey *zone_key,
2011 const char *name,
2012 unsigned int rd_count,
2013 const struct GNUNET_GNSRECORD_Data *rd)
2014{
2015 struct ZoneToNameCtx *ztn_ctx = cls;
2016 struct GNUNET_MQ_Envelope *env;
2017 struct ZoneToNameResponseMessage *ztnr_msg;
2018 size_t name_len;
2019 size_t key_len;
2020 ssize_t rd_ser_len;
2021 size_t msg_size;
2022 char *name_tmp;
2023 char *rd_tmp;
2024
2025 GNUNET_assert (0 != seq);
2027 "Found result for zone-to-name lookup: `%s'\n",
2028 name);
2029 ztn_ctx->ec = GNUNET_EC_NONE;
2030 name_len = (NULL == name) ? 0 : strlen (name) + 1;
2032 if (rd_ser_len < 0)
2033 {
2034 GNUNET_break (0);
2035 ztn_ctx->ec = htonl (GNUNET_EC_NAMESTORE_UNKNOWN);
2036 return;
2037 }
2039 msg_size = sizeof(struct ZoneToNameResponseMessage)
2040 + name_len + rd_ser_len + key_len;
2041 if (msg_size >= GNUNET_MAX_MESSAGE_SIZE)
2042 {
2043 GNUNET_break (0);
2045 return;
2046 }
2047 env =
2048 GNUNET_MQ_msg_extra (ztnr_msg,
2049 key_len + name_len + rd_ser_len,
2051 ztnr_msg->gns_header.header.size = htons (msg_size);
2052 ztnr_msg->gns_header.r_id = htonl (ztn_ctx->rid);
2053 ztnr_msg->ec = htonl (ztn_ctx->ec);
2054 ztnr_msg->rd_len = htons (rd_ser_len);
2055 ztnr_msg->rd_count = htons (rd_count);
2056 ztnr_msg->name_len = htons (name_len);
2057 ztnr_msg->key_len = htons (key_len);
2059 &ztnr_msg[1],
2060 key_len);
2061 name_tmp = (char *) &ztnr_msg[1] + key_len;
2062 GNUNET_memcpy (name_tmp, name, name_len);
2063 rd_tmp = &name_tmp[name_len];
2065 rd_ser_len ==
2066 GNUNET_GNSRECORD_records_serialize (rd_count, rd, rd_ser_len, rd_tmp));
2067 ztn_ctx->ec = GNUNET_EC_NONE;
2068 GNUNET_MQ_send (ztn_ctx->nc->mq, env);
2069}
2070
2071
2072static enum GNUNET_GenericReturnValue
2074 const struct ZoneToNameMessage *zis_msg)
2075{
2076 return GNUNET_OK;
2077}
2078
2079
2086static void
2087handle_zone_to_name (void *cls, const struct ZoneToNameMessage *ztn_msg)
2088{
2089 struct GNUNET_CRYPTO_PrivateKey zone;
2090 struct GNUNET_CRYPTO_PublicKey value_zone;
2091 struct NamestoreClient *nc = cls;
2092 struct ZoneToNameCtx ztn_ctx;
2093 struct GNUNET_MQ_Envelope *env;
2094 struct ZoneToNameResponseMessage *ztnr_msg;
2095 size_t key_len;
2096 size_t pkey_len;
2097 size_t kb_read;
2098
2099 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received ZONE_TO_NAME message\n");
2100 ztn_ctx.rid = ntohl (ztn_msg->gns_header.r_id);
2101 ztn_ctx.nc = nc;
2103 key_len = ntohs (ztn_msg->key_len);
2104 if ((GNUNET_SYSERR ==
2106 key_len,
2107 &zone,
2108 &kb_read)) ||
2109 (kb_read != key_len))
2110 {
2112 "Error parsing private key.\n");
2114 GNUNET_break (0);
2115 return;
2116 }
2117 pkey_len = ntohs (ztn_msg->pkey_len);
2118 if ((GNUNET_SYSERR ==
2120 + key_len,
2121 pkey_len,
2122 &value_zone,
2123 &kb_read)) ||
2124 (kb_read != pkey_len))
2125 {
2127 "Error parsing public key.\n");
2129 GNUNET_break (0);
2130 return;
2131 }
2132 if (GNUNET_SYSERR == nc->GSN_database->zone_to_name (nc->GSN_database->cls,
2133 &zone,
2134 &value_zone,
2136 &ztn_ctx))
2137 {
2138 /* internal error, hang up instead of signalling something
2139 that might be wrong */
2140 GNUNET_break (0);
2142 return;
2143 }
2145 {
2146 /* no result found, send empty response */
2148 "Found no result for zone-to-name lookup.\n");
2149 env = GNUNET_MQ_msg (ztnr_msg,
2151 ztnr_msg->gns_header.r_id = ztn_msg->gns_header.r_id;
2152 ztnr_msg->ec = htonl (GNUNET_EC_NAMESTORE_ZONE_NOT_FOUND);
2153 GNUNET_MQ_send (nc->mq, env);
2154 }
2156}
2157
2158
2164{
2169
2173 uint64_t limit;
2174
2179};
2180
2181
2192static void
2194 uint64_t seq,
2195 const char *editor_hint,
2196 const struct GNUNET_CRYPTO_PrivateKey *zone_key,
2197 const char *name,
2198 unsigned int rd_count,
2199 const struct GNUNET_GNSRECORD_Data *rd)
2200{
2201 struct ZoneIterationProcResult *proc = cls;
2202
2203 GNUNET_assert (0 != seq);
2204 if ((NULL == zone_key) && (NULL == name))
2205 {
2206 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Iteration done\n");
2207 return;
2208 }
2209 if ((NULL == zone_key) || (NULL == name))
2210 {
2211 /* what is this!? should never happen */
2212 GNUNET_break (0);
2213 return;
2214 }
2215 if (0 == proc->limit)
2216 {
2217 /* what is this!? should never happen */
2218 GNUNET_break (0);
2219 return;
2220 }
2221 proc->zi->seq = seq;
2222 if (0 < send_lookup_response_with_filter (proc->zi->nc,
2223 proc->zi->request_id,
2224 zone_key,
2225 name,
2226 rd_count,
2227 rd,
2228 proc->zi->filter))
2229 proc->limit--;
2230 else
2231 proc->run_again = GNUNET_YES;
2232}
2233
2234
2241static void
2243{
2244 struct ZoneIterationProcResult proc;
2247 struct NamestoreClient *nc = zi->nc;
2248
2249 memset (&proc, 0, sizeof(proc));
2251 "Asked to return up to %llu records at position %llu\n",
2252 (unsigned long long) limit,
2253 (unsigned long long) zi->seq);
2254 proc.zi = zi;
2255 proc.limit = limit;
2256 proc.run_again = GNUNET_YES;
2258 while (GNUNET_YES == proc.run_again)
2259 {
2260 proc.run_again = GNUNET_NO;
2262 nc->GSN_database->iterate_records (nc->GSN_database->cls,
2263 (GNUNET_YES ==
2265 &zi->zone))
2266 ? NULL
2267 : &zi->zone,
2268 zi->seq,
2269 proc.limit,
2271 &proc));
2272 }
2276 "NAMESTORE iteration delay (μs/record)",
2278 GNUNET_NO);
2279 if (0 == proc.limit)
2281 "Returned %llu results, more results available\n",
2282 (unsigned long long) limit);
2283 zi->send_end = (0 != proc.limit);
2285}
2286
2287
2288static enum GNUNET_GenericReturnValue
2290 const struct ZoneIterationStartMessage *zis_msg)
2291{
2292 uint16_t size;
2293 size_t key_len;
2294
2295 size = ntohs (zis_msg->gns_header.header.size);
2296 key_len = ntohs (zis_msg->key_len);
2297
2298 if (size < key_len + sizeof(*zis_msg))
2299 {
2300 GNUNET_break (0);
2301 return GNUNET_SYSERR;
2302 }
2303 return GNUNET_OK;
2304}
2305
2306
2313static void
2315 const struct ZoneIterationStartMessage *zis_msg)
2316{
2317 struct GNUNET_CRYPTO_PrivateKey zone;
2318 struct NamestoreClient *nc = cls;
2319 struct ZoneIteration *zi;
2320 size_t key_len;
2321 size_t kb_read;
2322
2324 "Received ZONE_ITERATION_START message\n");
2325 key_len = ntohs (zis_msg->key_len);
2326 zi = GNUNET_new (struct ZoneIteration);
2327 if (0 < key_len)
2328 {
2329 if ((GNUNET_SYSERR ==
2331 key_len,
2332 &zone,
2333 &kb_read)) ||
2334 (kb_read != key_len))
2335 {
2337 GNUNET_free (zi);
2338 return;
2339 }
2340 zi->zone = zone;
2341 }
2342 zi->request_id = ntohl (zis_msg->gns_header.r_id);
2343 zi->filter = ntohs (zis_msg->filter);
2344 zi->offset = 0;
2345 zi->nc = nc;
2346 GNUNET_CONTAINER_DLL_insert (nc->op_head, nc->op_tail, zi);
2348}
2349
2350
2357static void
2359 const struct ZoneIterationStopMessage *zis_msg)
2360{
2361 struct NamestoreClient *nc = cls;
2362 struct ZoneIteration *zi;
2363 uint32_t rid;
2364
2366 "Received ZONE_ITERATION_STOP message\n");
2367 rid = ntohl (zis_msg->gns_header.r_id);
2368 for (zi = nc->op_head; NULL != zi; zi = zi->next)
2369 if (zi->request_id == rid)
2370 break;
2371 if (NULL == zi)
2372 {
2373 GNUNET_break (0);
2375 return;
2376 }
2377 GNUNET_CONTAINER_DLL_remove (nc->op_head, nc->op_tail, zi);
2378 GNUNET_free (zi);
2380}
2381
2382
2389static void
2391 const struct ZoneIterationNextMessage *zis_msg)
2392{
2393 struct NamestoreClient *nc = cls;
2394 struct ZoneIteration *zi;
2395 uint32_t rid;
2396 uint64_t limit;
2397
2399 "Received ZONE_ITERATION_NEXT message\n");
2401 "Iteration NEXT messages received",
2402 1,
2403 GNUNET_NO);
2404 rid = ntohl (zis_msg->gns_header.r_id);
2405 limit = GNUNET_ntohll (zis_msg->limit);
2406 for (zi = nc->op_head; NULL != zi; zi = zi->next)
2407 if (zi->request_id == rid)
2408 break;
2409 if (NULL == zi)
2410 {
2411 GNUNET_break (0);
2413 return;
2414 }
2415 run_zone_iteration_round (zi, limit);
2416}
2417
2418
2424static void
2426{
2427 struct StoreActivity *sa = sa_head;
2428
2430 "Unblocking zone monitor %p\n", zm);
2431 while ((NULL != sa) && (zm->limit > zm->iteration_cnt))
2432 {
2433 struct StoreActivity *sn = sa->next;
2434
2435 if (sa->zm_pos == zm)
2437 sa = sn;
2438 }
2439 if (zm->limit > zm->iteration_cnt)
2440 {
2441 zm->sa_waiting = GNUNET_NO;
2442 if (NULL != zm->sa_wait_warning)
2443 {
2444 GNUNET_SCHEDULER_cancel (zm->sa_wait_warning);
2445 zm->sa_wait_warning = NULL;
2446 }
2447 }
2448 else if (GNUNET_YES == zm->sa_waiting)
2449 {
2450 zm->sa_waiting_start = GNUNET_TIME_absolute_get ();
2451 if (NULL != zm->sa_wait_warning)
2452 GNUNET_SCHEDULER_cancel (zm->sa_wait_warning);
2453 zm->sa_wait_warning =
2456 zm);
2457 }
2458}
2459
2460
2466static void
2468{
2469 struct GNUNET_MQ_Envelope *env;
2470 struct GNUNET_MessageHeader *sync;
2472 "Synching zone monitor %p\n", zm);
2473
2475 GNUNET_MQ_send (zm->nc->mq, env);
2476 /* mark iteration done */
2477 zm->in_first_iteration = GNUNET_NO;
2478 zm->iteration_cnt = 0;
2479 if ((zm->limit > 0) && (zm->sa_waiting))
2481}
2482
2483
2489static void
2490monitor_iteration_next (void *cls);
2491
2492
2503static void
2505 uint64_t seq,
2506 const char *editor_hint,
2507 const struct GNUNET_CRYPTO_PrivateKey *zone_key,
2508 const char *name,
2509 unsigned int rd_count,
2510 const struct GNUNET_GNSRECORD_Data *rd)
2511{
2512 struct ZoneMonitor *zm = cls;
2513
2514 GNUNET_assert (0 != seq);
2515 zm->seq = seq;
2516 GNUNET_assert (NULL != name);
2518 "Monitor notifications sent",
2519 1,
2520 GNUNET_NO);
2521 if (0 < send_lookup_response_with_filter (zm->nc, 0, zone_key, name,
2522 rd_count, rd, zm->filter))
2523 {
2525 "Sent records.\n");
2526 zm->limit--;
2527 zm->iteration_cnt--;
2528 }
2529 else
2530 zm->run_again = GNUNET_YES;
2531 if ((0 == zm->iteration_cnt) && (0 != zm->limit))
2532 {
2533 /* We are done with the current iteration batch, AND the
2534 client would right now accept more, so go again! */
2535 GNUNET_assert (NULL == zm->task);
2537 }
2538}
2539
2540
2541static enum GNUNET_GenericReturnValue
2543 const struct ZoneMonitorStartMessage *zis_msg)
2544{
2545 uint16_t size;
2546 size_t key_len;
2547
2548 size = ntohs (zis_msg->header.size);
2549 key_len = ntohs (zis_msg->key_len);
2550
2551 if (size < key_len + sizeof(*zis_msg))
2552 {
2553 GNUNET_break (0);
2554 return GNUNET_SYSERR;
2555 }
2556 return GNUNET_OK;
2557}
2558
2559
2566static void
2567handle_monitor_start (void *cls, const struct
2568 ZoneMonitorStartMessage *zis_msg)
2569{
2570 struct GNUNET_CRYPTO_PrivateKey zone;
2571 struct NamestoreClient *nc = cls;
2572 struct ZoneMonitor *zm;
2573 size_t key_len;
2574 size_t kb_read;
2575
2577 "Received ZONE_MONITOR_START message\n");
2578 zm = GNUNET_new (struct ZoneMonitor);
2579 zm->nc = nc;
2580 key_len = ntohs (zis_msg->key_len);
2581 if (0 < key_len)
2582 {
2583 if ((GNUNET_SYSERR ==
2585 key_len,
2586 &zone,
2587 &kb_read)) ||
2588 (kb_read != key_len))
2589 {
2591 "Error reading private key\n");
2593 GNUNET_free (zm);
2594 return;
2595 }
2596 zm->zone = zone;
2597 }
2598 zm->limit = 1;
2599 zm->filter = ntohs (zis_msg->filter);
2600 zm->in_first_iteration = (GNUNET_YES == ntohl (zis_msg->iterate_first));
2605 if (zm->in_first_iteration)
2607 else
2608 monitor_sync (zm);
2609}
2610
2611
2617static void
2619{
2620 struct ZoneMonitor *zm = cls;
2621 struct NamestoreClient *nc = zm->nc;
2622 int ret;
2623
2624 zm->task = NULL;
2625 GNUNET_assert (0 == zm->iteration_cnt);
2626 if (zm->limit > 16)
2627 zm->iteration_cnt = zm->limit / 2; /* leave half for monitor events */
2628 else
2629 zm->iteration_cnt = zm->limit; /* use it all */
2630 zm->run_again = GNUNET_YES;
2631 while (GNUNET_YES == zm->run_again)
2632 {
2634 "Running iteration\n");
2635 zm->run_again = GNUNET_NO;
2636 ret = nc->GSN_database->iterate_records (nc->GSN_database->cls,
2638 &zm->zone)) ? NULL : &zm->zone,
2639 zm->seq,
2640 zm->iteration_cnt,
2642 zm);
2643 }
2644 if (GNUNET_SYSERR == ret)
2645 {
2646 GNUNET_SERVICE_client_drop (zm->nc->client);
2647 return;
2648 }
2649 if (GNUNET_NO == ret)
2650 {
2652 "Zone empty... syncing\n");
2653 /* empty zone */
2654 monitor_sync (zm);
2655 return;
2656 }
2657}
2658
2659
2666static void
2667handle_monitor_next (void *cls, const struct ZoneMonitorNextMessage *nm)
2668{
2669 struct NamestoreClient *nc = cls;
2670 struct ZoneMonitor *zm;
2671 uint64_t inc;
2672
2673 inc = GNUNET_ntohll (nm->limit);
2675 "Received ZONE_MONITOR_NEXT message with limit %llu\n",
2676 (unsigned long long) inc);
2677 for (zm = monitor_head; NULL != zm; zm = zm->next)
2678 if (zm->nc == nc)
2679 break;
2680 if (NULL == zm)
2681 {
2682 GNUNET_break (0);
2684 return;
2685 }
2687 if (zm->limit + inc < zm->limit)
2688 {
2689 GNUNET_break (0);
2691 return;
2692 }
2693 zm->limit += inc;
2694 if ((zm->in_first_iteration) && (zm->limit == inc))
2695 {
2696 /* We are still iterating, and the previous iteration must
2697 have stopped due to the client's limit, so continue it! */
2698 GNUNET_assert (NULL == zm->task);
2700 }
2701 GNUNET_assert (zm->iteration_cnt <= zm->limit);
2702 if ((zm->limit > zm->iteration_cnt) && (zm->sa_waiting))
2703 {
2705 }
2706 else if (GNUNET_YES == zm->sa_waiting)
2707 {
2708 if (NULL != zm->sa_wait_warning)
2709 GNUNET_SCHEDULER_cancel (zm->sa_wait_warning);
2710 zm->sa_waiting_start = GNUNET_TIME_absolute_get ();
2711 zm->sa_wait_warning =
2714 zm);
2715 }
2716}
2717
2718
2726static void
2727run (void *cls,
2728 const struct GNUNET_CONFIGURATION_Handle *cfg,
2730{
2731 char *database;
2732 (void) cls;
2733 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Starting namestore service\n");
2735 "namestore",
2736 "RETURN_ORPHANED");
2737 GSN_cfg = cfg;
2739 statistics = GNUNET_STATISTICS_create ("namestore", cfg);
2740 /* Loading database plugin */
2742 "namestore",
2743 "database",
2744 &database))
2745 {
2746 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "No database backend configured\n");
2748 return;
2749 }
2750 GNUNET_asprintf (&db_lib_name, "libgnunet_plugin_namestore_%s", database);
2753 GNUNET_free (database);
2754 if (NULL == GSN_database)
2755 {
2757 "Could not load database backend `%s'\n",
2758 db_lib_name);
2761 return;
2762 }
2764}
2765
2766
2771 "namestore",
2773 &run,
2776 NULL,
2777 GNUNET_MQ_hd_var_size (record_store,
2779 struct RecordStoreMessage,
2780 NULL),
2781 GNUNET_MQ_hd_var_size (edit_record_set,
2783 struct EditRecordSetMessage,
2784 NULL),
2785 GNUNET_MQ_hd_var_size (edit_record_set_cancel,
2788 NULL),
2789 GNUNET_MQ_hd_var_size (record_lookup,
2791 struct LabelLookupMessage,
2792 NULL),
2795 struct ZoneToNameMessage,
2796 NULL),
2797 GNUNET_MQ_hd_var_size (iteration_start,
2800 NULL),
2801 GNUNET_MQ_hd_fixed_size (iteration_next,
2804 NULL),
2805 GNUNET_MQ_hd_fixed_size (iteration_stop,
2808 NULL),
2809 GNUNET_MQ_hd_var_size (monitor_start,
2812 NULL),
2813 GNUNET_MQ_hd_fixed_size (monitor_next,
2816 NULL),
2818
2819
2820/* end of gnunet-service-namestore.c */
struct GNUNET_MQ_Handle * mq
Definition: 003.c:5
struct GNUNET_MQ_Envelope * env
Definition: 005.c:1
static int start
Set if we are to start default services (including ARM).
Definition: gnunet-arm.c:39
static int ret
Final status code.
Definition: gnunet-arm.c:94
static struct GNUNET_CONFIGURATION_Handle * cfg
Our configuration.
Definition: gnunet-arm.c:109
static char * data
The data to insert into the dht.
static char * name
Name (label) of the records to list.
static unsigned int rd_count
Number of records for currently parsed set.
static char * res
Currently read line or NULL on EOF.
static struct GNUNET_GNSRECORD_Data rd[50]
The record data under a single label.
static struct GNUNET_NAMESTORE_ZoneMonitor * zm
Monitor handle.
static size_t data_size
Number of bytes in data.
static struct GNUNET_CRYPTO_EddsaPublicKey pub
Definition: gnunet-scrypt.c:47
static struct GNUNET_SERVICE_Handle * service
Handle to our service instance.
static struct GNUNET_NotificationContext * nc
Notification context for broadcasting to monitors.
static struct GNUNET_CONTAINER_BloomFilter * filter
Bloomfilter to quickly tell if we don't have the content.
static struct GNUNET_GNSRECORD_Data * get_nick_record(const struct GNUNET_CRYPTO_PrivateKey *zone)
Return the NICK record for the zone (if it exists).
static int check_edit_record_set(void *cls, const struct EditRecordSetMessage *er_msg)
Handles a GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_SET_EDIT message.
static enum GNUNET_GenericReturnValue check_iteration_start(void *cls, const struct ZoneIterationStartMessage *zis_msg)
static int return_orphaned
Returned orphaned records?
static void handle_iteration_start(void *cls, const struct ZoneIterationStartMessage *zis_msg)
Handles a GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_ITERATION_START message.
static struct StoreActivity * sa_tail
Tail of DLL of monitor-blocked store activities.
static void handle_iteration_stop(void *cls, const struct ZoneIterationStopMessage *zis_msg)
Handles a GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_ITERATION_STOP message.
static void monitor_iterate_cb(void *cls, uint64_t seq, const char *editor_hint, const struct GNUNET_CRYPTO_PrivateKey *zone_key, const char *name, unsigned int rd_count, const struct GNUNET_GNSRECORD_Data *rd)
A GNUNET_NAMESTORE_RecordIterator for monitors.
static void run_zone_iteration_round(struct ZoneIteration *zi, uint64_t limit)
Perform the next round of the zone iteration.
static void monitor_unblock(struct ZoneMonitor *zm)
Function called when the monitor is ready for more data, and we should thus unblock PUT operations th...
static void handle_record_store(void *cls, const struct RecordStoreMessage *rp_msg)
Handles a GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_STORE message.
static const struct GNUNET_CRYPTO_PrivateKey zero
Public key of all zeros.
static void monitor_sync(struct ZoneMonitor *zm)
Send 'sync' message to zone monitor, we're now in sync.
static void handle_zone_to_name_it(void *cls, uint64_t seq, const char *editor_hint, const struct GNUNET_CRYPTO_PrivateKey *zone_key, const char *name, unsigned int rd_count, const struct GNUNET_GNSRECORD_Data *rd)
Zone to name iterator.
static void handle_monitor_next(void *cls, const struct ZoneMonitorNextMessage *nm)
Handles a GNUNET_MESSAGE_TYPE_NAMESTORE_MONITOR_NEXT message.
static struct GNUNET_NotificationContext * monitor_nc
Notification context shared by all monitors.
struct GNUNET_NAMESTORE_PluginFunctions * GSN_database
Database handle for service.
static void cleanup_task(void *cls)
Task run during shutdown.
static char * db_lib_name
Name of the database plugin.
static int check_record_store(void *cls, const struct RecordStoreMessage *rp_msg)
Checks a GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_STORE message.
static struct GNUNET_STATISTICS_Handle * statistics
Handle to the statistics service.
static void * client_connect_cb(void *cls, struct GNUNET_SERVICE_Client *client, struct GNUNET_MQ_Handle *mq)
Add a client to our list of active clients.
static void merge_with_nick_records(const struct GNUNET_GNSRECORD_Data *nick_rd, unsigned int rd2_length, const struct GNUNET_GNSRECORD_Data *rd2, unsigned int *rdc_res, struct GNUNET_GNSRECORD_Data **rd_res)
Merge the nick record nick_rd with the rest of the record set given in rd2.
static struct StoreActivity * sa_head
Head of DLL of monitor-blocked store activities.
static void handle_record_lookup(void *cls, const struct LabelLookupMessage *ll_msg)
Handles a GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_LOOKUP message.
static void free_store_activity(struct StoreActivity *sa)
Release memory used by sa.
static void handle_zone_to_name(void *cls, const struct ZoneToNameMessage *ztn_msg)
Handles a GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_TO_NAME message.
static int continue_store_activity(struct StoreActivity *sa, int call_continue)
Continue processing the sa.
static struct ZoneMonitor * monitor_head
First active zone monitor.
static int check_record_lookup(void *cls, const struct LabelLookupMessage *ll_msg)
Handles a GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_LOOKUP message.
static void zone_iterate_proc(void *cls, uint64_t seq, const char *editor_hint, const struct GNUNET_CRYPTO_PrivateKey *zone_key, const char *name, unsigned int rd_count, const struct GNUNET_GNSRECORD_Data *rd)
Process results for zone iteration from database.
static void zone_iteration_done_client_continue(struct ZoneIteration *zi)
Function called once we are done with the zone iteration and allow the zone iteration client to send ...
#define MONITOR_STALL_WARN_DELAY
If a monitor takes more than 1 minute to process an event, print a warning.
static enum GNUNET_GenericReturnValue check_zone_to_name(void *cls, const struct ZoneToNameMessage *zis_msg)
static enum GNUNET_ErrorCode store_record_set(struct NamestoreClient *nc, const struct GNUNET_CRYPTO_PrivateKey *private_key, const struct RecordSet *rd_set, ssize_t *len)
static void monitor_iteration_next(void *cls)
Obtain the next datum during the zone monitor's zone initial iteration.
static void handle_edit_record_set_cancel(void *cls, const struct EditRecordSetCancelMessage *er_msg)
Handles a GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_SET_EDIT_CANCEL message.
static const struct GNUNET_CONFIGURATION_Handle * GSN_cfg
Configuration handle.
static void cache_nick(const struct GNUNET_CRYPTO_PrivateKey *zone, const struct GNUNET_GNSRECORD_Data *nick)
Add entry to the cache for zone and nick.
static void send_store_response(struct NamestoreClient *nc, enum GNUNET_ErrorCode ec, uint32_t rid)
Send response to the store request to the client.
static void handle_monitor_start(void *cls, const struct ZoneMonitorStartMessage *zis_msg)
Handles a GNUNET_MESSAGE_TYPE_NAMESTORE_MONITOR_START message.
#define NC_SIZE
Size of the cache used by get_nick_record()
static struct ZoneMonitor * monitor_tail
Last active zone monitor.
static void client_disconnect_cb(void *cls, struct GNUNET_SERVICE_Client *client, void *app_ctx)
Called whenever a client is disconnected.
static struct NickCache nick_cache[16]
We cache nick records to reduce DB load.
static void handle_iteration_next(void *cls, const struct ZoneIterationNextMessage *zis_msg)
Handles a GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_ITERATION_NEXT message.
static void handle_edit_record_set(void *cls, const struct EditRecordSetMessage *er_msg)
Handles a GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_SET_EDIT message.
static void warn_monitor_slow(void *cls)
Print a warning that one of our monitors is no longer reacting.
static void get_existing_rd_exp(void *cls, uint64_t seq, const char *editor_hint, const struct GNUNET_CRYPTO_PrivateKey *private_key, const char *label, unsigned int rd_count, const struct GNUNET_GNSRECORD_Data *rd)
Check if set contains a tombstone, store if necessary.
static int check_edit_record_set_cancel(void *cls, const struct EditRecordSetCancelMessage *er_msg)
Handles a GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_SET_EDIT_CANCEL message.
static int send_lookup_response_with_filter(struct NamestoreClient *nc, uint32_t request_id, const struct GNUNET_CRYPTO_PrivateKey *zone_key, const char *name, unsigned int rd_count, const struct GNUNET_GNSRECORD_Data *rd, enum GNUNET_GNSRECORD_Filter filter)
Generate a struct LookupNameResponseMessage and send it to the given client using the given notificat...
static enum GNUNET_GenericReturnValue check_monitor_start(void *cls, const struct ZoneMonitorStartMessage *zis_msg)
static void lookup_nick_it(void *cls, uint64_t seq, const char *editor_hint, const struct GNUNET_CRYPTO_PrivateKey *private_key, const char *label, unsigned int rd_count, const struct GNUNET_GNSRECORD_Data *rd)
Function called with the records for the GNUNET_GNS_EMPTY_LABEL_AT label in the zone.
GNUNET_SERVICE_MAIN("namestore", GNUNET_SERVICE_OPTION_NONE, &run, &client_connect_cb, &client_disconnect_cb, NULL, GNUNET_MQ_hd_var_size(record_store, GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_STORE, struct RecordStoreMessage, NULL), GNUNET_MQ_hd_var_size(edit_record_set, GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_SET_EDIT, struct EditRecordSetMessage, NULL), GNUNET_MQ_hd_var_size(edit_record_set_cancel, GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_SET_EDIT_CANCEL, struct EditRecordSetCancelMessage, NULL), GNUNET_MQ_hd_var_size(record_lookup, GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_LOOKUP, struct LabelLookupMessage, NULL), GNUNET_MQ_hd_var_size(zone_to_name, GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_TO_NAME, struct ZoneToNameMessage, NULL), GNUNET_MQ_hd_var_size(iteration_start, GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_ITERATION_START, struct ZoneIterationStartMessage, NULL), GNUNET_MQ_hd_fixed_size(iteration_next, GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_ITERATION_NEXT, struct ZoneIterationNextMessage, NULL), GNUNET_MQ_hd_fixed_size(iteration_stop, GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_ITERATION_STOP, struct ZoneIterationStopMessage, NULL), GNUNET_MQ_hd_var_size(monitor_start, GNUNET_MESSAGE_TYPE_NAMESTORE_MONITOR_START, struct ZoneMonitorStartMessage, NULL), GNUNET_MQ_hd_fixed_size(monitor_next, GNUNET_MESSAGE_TYPE_NAMESTORE_MONITOR_NEXT, struct ZoneMonitorNextMessage, NULL), GNUNET_MQ_handler_end())
Define "main" method using service macro.
static void run(void *cls, const struct GNUNET_CONFIGURATION_Handle *cfg, struct GNUNET_SERVICE_Handle *service)
Process namestore requests.
static void lookup_it(void *cls, uint64_t seq, const char *editor_hint, const struct GNUNET_CRYPTO_PrivateKey *private_key, const char *label, unsigned int rd_count_nf, const struct GNUNET_GNSRECORD_Data *rd_nf)
Function called by the namestore plugin when we are trying to lookup a record as part of handle_recor...
static struct GNUNET_TIME_Relative duration
Option '-d': duration of the mapping.
Definition: gnunet-vpn.c:90
API that can be used to manipulate GNS record data.
Plugin API for the namestore database backend.
Constants for network protocols.
API to create, modify and access statistics.
#define GNUNET_MAX_MESSAGE_SIZE
Largest supported message (to be precise, one byte more than the largest possible message,...
enum GNUNET_GenericReturnValue GNUNET_CONFIGURATION_get_value_yesno(const struct GNUNET_CONFIGURATION_Handle *cfg, const char *section, const char *option)
Get a configuration value that should be in a set of "YES" or "NO".
enum GNUNET_GenericReturnValue GNUNET_CONFIGURATION_get_value_string(const struct GNUNET_CONFIGURATION_Handle *cfg, const char *section, const char *option, char **value)
Get a configuration value that should be a string.
#define GNUNET_CONTAINER_DLL_remove(head, tail, element)
Remove an element from a DLL.
#define GNUNET_CONTAINER_DLL_insert(head, tail, element)
Insert an element at the head of a DLL.
enum GNUNET_GenericReturnValue GNUNET_GNSRECORD_label_check(const char *label, char **emsg)
Check label for invalid characters.
const char * GNUNET_GNSRECORD_z2s(const struct GNUNET_CRYPTO_PublicKey *z)
Convert a zone to a string (for printing debug messages).
int GNUNET_GNSRECORD_records_deserialize(size_t len, const char *src, unsigned int rd_count, struct GNUNET_GNSRECORD_Data *dest)
Deserialize the given records to the given destination.
ssize_t GNUNET_GNSRECORD_records_serialize(unsigned int rd_count, const struct GNUNET_GNSRECORD_Data *rd, size_t dest_size, char *dest)
Serialize the given records to the given destination buffer.
ssize_t GNUNET_GNSRECORD_records_get_size(unsigned int rd_count, const struct GNUNET_GNSRECORD_Data *rd)
Calculate how many bytes we will need to serialize the given records.
#define GNUNET_GNS_EMPTY_LABEL_AT
String we use to indicate an empty label (top-level entry in the zone).
char * GNUNET_GNSRECORD_string_normalize(const char *src)
Normalize a UTF-8 string to a GNS name.
GNUNET_GNSRECORD_Filter
Filter for GNUNET_GNSRECORD_normalize_record_set().
enum GNUNET_GenericReturnValue GNUNET_GNSRECORD_normalize_record_set(const char *label, const struct GNUNET_GNSRECORD_Data *rd, unsigned int rd_count, struct GNUNET_GNSRECORD_Data *rd_public, unsigned int *rd_count_public, struct GNUNET_TIME_Absolute *min_expiry, enum GNUNET_GNSRECORD_Filter filter, char **emsg)
Normalize namestore records: Check for consistency and expirations.
@ GNUNET_GNSRECORD_RF_RELATIVE_EXPIRATION
This expiration time of the record is a relative time (not an absolute time).
@ GNUNET_GNSRECORD_RF_SUPPLEMENTAL
This is a supplemental record.
@ GNUNET_GNSRECORD_RF_MAINTENANCE
Maintenance records.
@ GNUNET_GNSRECORD_RF_PRIVATE
This is a private record of this peer and it should thus not be published.
@ GNUNET_GNSRECORD_FILTER_NONE
No filter flags set.
@ GNUNET_GNSRECORD_FILTER_INCLUDE_MAINTENANCE
Include maintenance records (TOMBSTONE etc).
@ GNUNET_GNSRECORD_FILTER_OMIT_PRIVATE
Filter private records.
#define GNUNET_is_zero(a)
Check that memory in a is all zeros.
#define GNUNET_log(kind,...)
#define GNUNET_NZL(l)
Macro used to avoid using 0 for the length of a variable-size array (Non-Zero-Length).
#define GNUNET_LOG_CALL_STATUS
enum GNUNET_GenericReturnValue GNUNET_CRYPTO_key_get_public(const struct GNUNET_CRYPTO_PrivateKey *privkey, struct GNUNET_CRYPTO_PublicKey *key)
Retrieves the public key representation of a private key.
Definition: crypto_pkey.c:602
uint64_t GNUNET_ntohll(uint64_t n)
Convert unsigned 64-bit integer to host byte order.
Definition: common_endian.c:54
int GNUNET_get_log_call_status(int caller_level, const char *comp, const char *file, const char *function, int line)
Decides whether a particular logging call should or should not be allowed to be made.
ssize_t GNUNET_CRYPTO_private_key_get_length(const struct GNUNET_CRYPTO_PrivateKey *key)
Get the compacted length of a GNUNET_CRYPTO_PrivateKey.
Definition: crypto_pkey.c:47
#define GNUNET_memcmp(a, b)
Compare memory in a and b, where both must be of the same pointer type.
ssize_t GNUNET_CRYPTO_write_private_key_to_buffer(const struct GNUNET_CRYPTO_PrivateKey *key, void *buffer, size_t len)
Writes a GNUNET_CRYPTO_PrivateKey to a compact buffer.
Definition: crypto_pkey.c:171
#define GNUNET_memcpy(dst, src, n)
Call memcpy() but check for n being 0 first.
enum GNUNET_GenericReturnValue GNUNET_CRYPTO_read_public_key_from_buffer(const void *buffer, size_t len, struct GNUNET_CRYPTO_PublicKey *key, size_t *read)
Reads a GNUNET_CRYPTO_PublicKey from a compact buffer.
Definition: crypto_pkey.c:103
GNUNET_GenericReturnValue
Named constants for return values.
enum GNUNET_GenericReturnValue GNUNET_CRYPTO_read_private_key_from_buffer(const void *buffer, size_t len, struct GNUNET_CRYPTO_PrivateKey *key, size_t *read)
Reads a GNUNET_CRYPTO_PrivateKey from a compact buffer.
Definition: crypto_pkey.c:146
@ GNUNET_OK
@ GNUNET_YES
@ GNUNET_NO
@ GNUNET_SYSERR
#define GNUNET_assert(cond)
Use this for fatal errors that cannot be handled.
#define GNUNET_break(cond)
Use this for internal assertion violations that are not fatal (can be handled) but should not occur.
@ GNUNET_ERROR_TYPE_WARNING
@ GNUNET_ERROR_TYPE_ERROR
@ GNUNET_ERROR_TYPE_BULK
@ GNUNET_ERROR_TYPE_DEBUG
int int GNUNET_asprintf(char **buf, const char *format,...) __attribute__((format(printf
Like asprintf, just portable.
#define GNUNET_strdup(a)
Wrapper around GNUNET_xstrdup_.
#define GNUNET_new(type)
Allocate a struct or union of the given type.
#define GNUNET_malloc(size)
Wrapper around malloc.
#define GNUNET_free(ptr)
Wrapper around free.
void GNUNET_notification_context_destroy(struct GNUNET_NotificationContext *nc)
Destroy the context, force disconnect for all subscribers.
Definition: nc.c:138
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_extra(mvar, esize, type)
Allocate an envelope, with extra space allocated after the space needed by the message struct.
Definition: gnunet_mq_lib.h:63
struct GNUNET_NotificationContext * GNUNET_notification_context_create(unsigned int queue_length)
Create a new notification context.
Definition: nc.c:122
#define GNUNET_MQ_msg(mvar, type)
Allocate a GNUNET_MQ_Envelope.
Definition: gnunet_mq_lib.h:78
#define GNUNET_MQ_hd_var_size(name, code, str, ctx)
#define GNUNET_MQ_hd_fixed_size(name, code, str, ctx)
void GNUNET_notification_context_add(struct GNUNET_NotificationContext *nc, struct GNUNET_MQ_Handle *mq)
Add a subscriber to the notification context.
Definition: nc.c:161
void * GNUNET_PLUGIN_load(const char *library_name, void *arg)
Setup plugin (runs the "init" callback and returns whatever "init" returned).
Definition: plugin.c:198
void * GNUNET_PLUGIN_unload(const char *library_name, void *arg)
Unload plugin (runs the "done" callback and returns whatever "done" returned).
Definition: plugin.c:242
#define GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_RESULT_END
Service to client: end of list of results.
#define GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_RESULT
Service to client: here is a (plaintext) record you requested.
#define GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_SET_EDIT
Message type for start of record edit with advisory lock.
#define GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_TO_NAME_RESPONSE
Service to client: result of zone-to-name lookup.
#define GNUNET_MESSAGE_TYPE_NAMESTORE_GENERIC_RESPONSE
Service to client: result of store operation.
#define GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_SET_EDIT_CANCEL
Message type for cancellation/reset of editor hint/advisory lock.
#define GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_ITERATION_NEXT
Client to service: next record(s) in iteration please.
#define GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_ITERATION_START
Client to service: please start iteration; receives "GNUNET_MESSAGE_TYPE_NAMESTORE_LOOKUP_NAME_RESPON...
#define GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_ITERATION_STOP
Client to service: stop iterating.
#define GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_LOOKUP_RESPONSE
Service to client: lookup label.
#define GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_SET_EDIT_RESPONSE
Return record set to edit with previous editor hint/advisory lock.
#define GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_STORE
Client to service: store records (as authority)
#define GNUNET_MESSAGE_TYPE_NAMESTORE_MONITOR_NEXT
Client to service: I am now ready for the next (set of) monitor events.
#define GNUNET_MESSAGE_TYPE_NAMESTORE_MONITOR_START
Client to service: start monitoring (yields sequence of "ZONE_ITERATION_RESPONSES" — forever).
#define GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_TO_NAME
Client to service: "reverse" lookup for zone name based on zone key.
#define GNUNET_MESSAGE_TYPE_NAMESTORE_MONITOR_SYNC
Service to client: you're now in sync.
#define GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_LOOKUP
Client to service: lookup label.
struct GNUNET_SCHEDULER_Task * GNUNET_SCHEDULER_add_shutdown(GNUNET_SCHEDULER_TaskCallback task, void *task_cls)
Schedule a new task to be run on shutdown, that is when a CTRL-C signal is received,...
Definition: scheduler.c:1340
void * GNUNET_SCHEDULER_cancel(struct GNUNET_SCHEDULER_Task *task)
Cancel the task with the specified identifier.
Definition: scheduler.c:981
struct GNUNET_SCHEDULER_Task * GNUNET_SCHEDULER_add_now(GNUNET_SCHEDULER_TaskCallback task, void *task_cls)
Schedule a new task to be run as soon as possible.
Definition: scheduler.c:1305
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:1278
void GNUNET_SERVICE_client_mark_monitor(struct GNUNET_SERVICE_Client *c)
Set the 'monitor' flag on this client.
Definition: service.c:2572
void GNUNET_SERVICE_client_drop(struct GNUNET_SERVICE_Client *c)
Ask the server to disconnect from the given client.
Definition: service.c:2489
void GNUNET_SERVICE_client_continue(struct GNUNET_SERVICE_Client *c)
Continue receiving further messages from the given client.
Definition: service.c:2408
@ GNUNET_SERVICE_OPTION_NONE
Use defaults.
struct GNUNET_STATISTICS_Handle * GNUNET_STATISTICS_create(const char *subsystem, const struct GNUNET_CONFIGURATION_Handle *cfg)
Get handle for the statistics service.
void GNUNET_STATISTICS_set(struct GNUNET_STATISTICS_Handle *handle, const char *name, uint64_t value, int make_persistent)
Set statistic value for the peer.
void GNUNET_STATISTICS_update(struct GNUNET_STATISTICS_Handle *handle, const char *name, int64_t delta, int make_persistent)
Set statistic value for the peer.
void GNUNET_STATISTICS_destroy(struct GNUNET_STATISTICS_Handle *h, int sync_first)
Destroy a handle (free all state associated with it).
struct GNUNET_TIME_Relative GNUNET_TIME_absolute_get_duration(struct GNUNET_TIME_Absolute whence)
Get the duration of an operation as the difference of the current time and the given start time "henc...
Definition: time.c:436
struct GNUNET_TIME_Absolute GNUNET_TIME_absolute_get(void)
Get the current time.
Definition: time.c:111
#define GNUNET_TIME_absolute_cmp(t1, op, t2)
Compare two absolute times.
#define GNUNET_TIME_UNIT_ZERO_ABS
Absolute time zero.
struct GNUNET_TIME_Relative GNUNET_TIME_relative_divide(struct GNUNET_TIME_Relative rel, unsigned long long factor)
Divide relative time by a given factor.
Definition: time.c:550
struct GNUNET_TIME_AbsoluteNBO GNUNET_TIME_absolute_hton(struct GNUNET_TIME_Absolute a)
Convert absolute time to network byte order.
Definition: time.c:638
const char * GNUNET_STRINGS_absolute_time_to_string(struct GNUNET_TIME_Absolute t)
Like asctime, except for GNUnet time.
Definition: strings.c:617
common internal definitions for namestore service
static unsigned int size
Size of the "table".
Definition: peer.c:68
static int zone_to_name(void *cls, const struct GNUNET_HashCode *key, void *value)
#define GNUNET_GNSRECORD_TYPE_NICK
GNS zone nickname.
#define GNUNET_GNSRECORD_TYPE_TOMBSTONE
Record type to indicate a previously delete record (PRIVATE only)
GNUNET_ErrorCode
Taler error codes.
@ GNUNET_EC_NAMESTORE_NO_RESULTS
No results given.
@ GNUNET_EC_NAMESTORE_LABEL_INVALID
Label invalid or malformed.
@ GNUNET_EC_NAMESTORE_BACKEND_FAILED
There was an error in the database backend.
@ GNUNET_EC_NAMESTORE_RECORD_TOO_BIG
Record size exceeds maximum limit.
@ GNUNET_EC_NAMESTORE_STORE_FAILED
Failed to store the given records.
@ GNUNET_EC_NAMESTORE_RECORD_DATA_INVALID
Record data invalid.
@ GNUNET_EC_NAMESTORE_ZONE_NOT_FOUND
Zone not found.
@ GNUNET_EC_NONE
No error (success).
@ GNUNET_EC_NAMESTORE_UNKNOWN
Unknown namestore error.
@ GNUNET_EC_NAMESTORE_RECORD_NOT_FOUND
Record not found.
Edit a record set and set editor hint/advisory lock.
Definition: namestore.h:242
struct GNUNET_NAMESTORE_Header gns_header
Type will be #GNUNET_MESSAGE_TYPE_NAMESTORE_EDIT_RECORD_SET_CANCEL.
Definition: namestore.h:246
uint16_t editor_hint_len
Unused.
Definition: namestore.h:256
uint16_t label_len
Length of the name.
Definition: namestore.h:251
uint16_t key_len
Length of the zone key.
Definition: namestore.h:266
Edit a record set and set editor hint/advisory lock.
Definition: namestore.h:204
struct GNUNET_NAMESTORE_Header gns_header
Type will be #GNUNET_MESSAGE_TYPE_NAMESTORE_EDIT_RECORD_SET.
Definition: namestore.h:208
uint16_t editor_hint_len
Unused.
Definition: namestore.h:218
uint16_t label_len
Length of the name.
Definition: namestore.h:213
uint16_t key_len
Length of the zone key.
Definition: namestore.h:228
Response to RecordSetEditMessage.
Definition: namestore.h:131
struct GNUNET_NAMESTORE_Header gns_header
Type will be GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_SET_EDIT_RESPONSE.
Definition: namestore.h:135
uint16_t editor_hint_len
Length of the editor hint.
Definition: namestore.h:140
uint16_t rd_count
Number of records contained.
Definition: namestore.h:155
uint16_t ec
Reserved.
Definition: namestore.h:145
uint16_t rd_len
Length of serialized record data.
Definition: namestore.h:150
A private key for an identity as per LSD0001.
An identity key as per LSD0001.
uint32_t record_type
Type of the GNS/DNS record.
const void * data
Binary value stored in the DNS record.
size_t data_size
Number of bytes in data.
enum GNUNET_GNSRECORD_Flags flags
Flags for the record.
uint64_t expiration_time
Expiration time for the DNS record.
Handle to a message queue.
Definition: mq.c:87
Header for all communications.
uint16_t size
The length of the struct (in bytes, including the length field itself), in big-endian format.
Generic namestore message with op id.
Definition: namestore.h:41
uint32_t r_id
Request ID in NBO.
Definition: namestore.h:51
struct GNUNET_MessageHeader header
header.type will be GNUNET_MESSAGE_TYPE_NAMESTORE_* header.size will be message size
Definition: namestore.h:46
struct returned by the initialization function of the plugin
enum GNUNET_GenericReturnValue(* lookup_records)(void *cls, const struct GNUNET_CRYPTO_PrivateKey *zone, const char *label, GNUNET_NAMESTORE_RecordIterator iter, void *iter_cls)
Lookup records in the datastore for which we are the authority.
void * cls
Closure to pass to all plugin functions.
struct GNUNET_MQ_Handle * mq
Handle to namestore service.
enum GNUNET_GNSRECORD_Filter filter
Record set filter for this monitor.
struct GNUNET_CRYPTO_PrivateKey zone
Monitored zone.
The notification context is the key datastructure for a convenience API used for transmission of noti...
Definition: nc.c:77
Entry in list of pending tasks.
Definition: scheduler.c:136
Handle to a client that is connected to a service.
Definition: service.c:252
Handle to a service.
Definition: service.c:118
Handle for the service.
Time for absolute times used by GNUnet, in microseconds.
uint64_t abs_value_us
The actual value.
Time for relative time used by GNUnet, in microseconds.
uint64_t rel_value_us
The actual value.
Lookup a label.
Definition: namestore.h:168
struct GNUNET_NAMESTORE_Header gns_header
Type will be GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_LOOKUP.
Definition: namestore.h:172
uint16_t key_len
Length of the zone key.
Definition: namestore.h:192
uint16_t filter
The record filter.
Definition: namestore.h:187
uint16_t label_len
Length of the name.
Definition: namestore.h:177
uint16_t rd_len
Length of serialized record data.
Definition: namestore.h:295
struct GNUNET_NAMESTORE_Header gns_header
Type will be GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_LOOKUP_RESPONSE.
Definition: namestore.h:285
uint16_t reserved
Reserved (alignment)
Definition: namestore.h:311
uint16_t key_len
Length of the zone key.
Definition: namestore.h:316
uint16_t rd_count
Number of records contained.
Definition: namestore.h:300
uint16_t name_len
Name length.
Definition: namestore.h:290
int16_t found
Was the label found in the database?? GNUNET_YES or GNUNET_NO.
Definition: namestore.h:306
struct GNUNET_TIME_Absolute exp
The expiration of the existing records or tombstone.
int only_tombstone
Whether the existing record set consists only of a tombstone (e.g.
A namestore client.
struct ZoneIteration * op_head
Head of the DLL of Zone iteration operations in progress initiated by this client.
struct GNUNET_NAMESTORE_PluginFunctions * GSN_database
Database handle for client.
char * db_lib_name
Name of loaded plugin (neeed for cleanup)
struct GNUNET_MQ_Handle * mq
Message queue for transmission to client.
struct GNUNET_SERVICE_Client * client
The client.
struct ZoneIteration * op_tail
Tail of the DLL of Zone iteration operations in progress initiated by this client.
Response to a record storage request.
Definition: namestore.h:114
struct GNUNET_NAMESTORE_Header gns_header
Type will be GNUNET_MESSAGE_TYPE_NAMESTORE_GENERIC_RESPONSE.
Definition: namestore.h:118
uint32_t ec
GNUNET_ErrorCode.
Definition: namestore.h:123
Entry in list of cached nick resolutions.
struct GNUNET_GNSRECORD_Data * rd
Cached record data.
struct GNUNET_TIME_Absolute last_used
Timestamp when this cache entry was used last.
struct GNUNET_CRYPTO_PrivateKey zone
Zone the cache entry is for.
Closure for lookup_it().
const char * editor_hint
The editor hint for set.
struct GNUNET_GNSRECORD_Data * nick
The nick for the zone.
char * res_rd
The record result.
const char * label
The label to look up.
int found
If a record set was found or not.
unsigned int res_rd_count
The number of found records.
ssize_t rd_ser_len
The length of the serialized records.
enum GNUNET_GNSRECORD_Filter filter
The record filter.
Record is returned from the namestore (as authority).
Definition: namestore.h:404
uint16_t rd_len
Length of serialized record data.
Definition: namestore.h:424
uint16_t name_len
Name length.
Definition: namestore.h:419
uint16_t rd_count
Number of records contained.
Definition: namestore.h:429
struct GNUNET_TIME_AbsoluteNBO expire
Expiration time if the record result (if any).
Definition: namestore.h:414
struct GNUNET_NAMESTORE_Header gns_header
Type will be GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_RESULT.
Definition: namestore.h:408
uint16_t key_len
Length of the zone key.
Definition: namestore.h:434
uint16_t rd_len
Length of serialized record data.
Definition: namestore.h:64
uint16_t rd_count
Number of records contained.
Definition: namestore.h:69
uint16_t name_len
Name length.
Definition: namestore.h:59
Store a record to the namestore (as authority).
Definition: namestore.h:87
struct GNUNET_NAMESTORE_Header gns_header
Type will be GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_STORE.
Definition: namestore.h:91
uint16_t rd_set_count
Number of record sets.
Definition: namestore.h:96
uint16_t key_len
Length of the zone key.
Definition: namestore.h:101
Information for an ongoing handle_record_store() operation.
struct StoreActivity * next
Kept in a DLL.
uint32_t rid
The request ID.
const struct RecordSet * rs
Copy of the original record set (as data fields in rd will point into it!).
uint16_t rd_set_count
The number of records in this activity.
struct NamestoreClient * nc
Which client triggered the store activity?
uint16_t rd_set_pos
The currently processed record.
struct StoreActivity * prev
Kept in a DLL.
struct ZoneMonitor * zm_pos
Next zone monitor that still needs to be notified about this PUT.
struct GNUNET_CRYPTO_PrivateKey private_key
The zone private key.
Ask for next result of zone iteration for the given operation.
Definition: namestore.h:572
struct GNUNET_NAMESTORE_Header gns_header
Type will be GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_ITERATION_NEXT.
Definition: namestore.h:576
uint64_t limit
Number of records to return to the iterator in one shot (before GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_IT...
Definition: namestore.h:583
Context for record remove operations passed from run_zone_iteration_round to zone_iterate_proc as clo...
struct ZoneIteration * zi
The zone iteration handle.
int run_again
Skip a result and run again unless GNUNET_NO.
uint64_t limit
Number of results left to be returned in this iteration.
Start a zone iteration for the given zone.
Definition: namestore.h:545
uint16_t key_len
Length of the zone key.
Definition: namestore.h:560
uint16_t filter
Record set filter control flags.
Definition: namestore.h:555
struct GNUNET_NAMESTORE_Header gns_header
Type will be GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_ITERATION_START.
Definition: namestore.h:549
Stop zone iteration for the given operation.
Definition: namestore.h:591
struct GNUNET_NAMESTORE_Header gns_header
Type will be GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_ITERATION_STOP.
Definition: namestore.h:595
A namestore iteration operation.
struct NamestoreClient * nc
Namestore client which intiated this zone iteration.
uint64_t seq
Last sequence number in the zone iteration used to address next result of the zone iteration in the s...
struct GNUNET_GNSRECORD_Data * nick
The nick to add to the records.
enum GNUNET_GNSRECORD_Filter filter
The record set filter.
struct GNUNET_CRYPTO_PrivateKey zone
Key of the zone we are iterating over.
int send_end
Set to GNUNET_YES if the last iteration exhausted the limit set by the client and we should send the ...
uint32_t request_id
The operation id for the zone iteration in the response for the client.
struct ZoneIteration * prev
Previous element in the DLL.
uint32_t offset
Offset of the zone iteration used to address next result of the zone iteration in the store.
struct ZoneIteration * next
Next element in the DLL.
Ask for next result of zone iteration for the given operation.
Definition: namestore.h:521
uint64_t limit
Number of records to return to the iterator in one shot (before #GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_M...
Definition: namestore.h:537
Start monitoring a zone.
Definition: namestore.h:488
uint32_t iterate_first
GNUNET_YES to first iterate over all records, GNUNET_NO to only monitor changes.o
Definition: namestore.h:498
uint16_t filter
Record set filter control flags.
Definition: namestore.h:504
uint16_t key_len
Length of the zone key.
Definition: namestore.h:509
struct GNUNET_MessageHeader header
Type will be GNUNET_MESSAGE_TYPE_NAMESTORE_MONITOR_START.
Definition: namestore.h:492
A namestore monitor.
struct GNUNET_SCHEDULER_Task * sa_wait_warning
Task to warn about slow monitors.
struct GNUNET_TIME_Absolute sa_waiting_start
Since when are we blocked on this monitor?
int in_first_iteration
Are we (still) in the initial iteration pass?
enum GNUNET_GNSRECORD_Filter filter
The record set filter.
struct ZoneMonitor * prev
Previous element in the DLL.
int sa_waiting
Is there a store activity waiting for this monitor? We only raise the flag when it happens and search...
uint64_t iteration_cnt
How many more requests may we receive from the iterator before it is at the limit we gave it?...
uint64_t limit
Current limit of how many more messages we are allowed to queue to this monitor.
uint64_t seq
Last sequence number in the zone iteration used to address next result of the zone iteration in the s...
struct GNUNET_CRYPTO_PrivateKey zone
Private key of the zone.
struct GNUNET_SCHEDULER_Task * task
Task active during initial iteration.
struct NamestoreClient * nc
Namestore client which intiated this zone monitor.
int run_again
Run again because we skipped an orphan.
struct ZoneMonitor * next
Next element in the DLL.
Context for record remove operations passed from handle_zone_to_name to handle_zone_to_name_it as clo...
struct NamestoreClient * nc
Namestore client.
uint32_t rid
Request id (to be used in the response to the client).
enum GNUNET_ErrorCode ec
Set to GNUNET_OK on success, GNUNET_SYSERR on error.
Lookup a name for a zone hash.
Definition: namestore.h:330
uint16_t pkey_len
Length of the public value zone key.
Definition: namestore.h:344
uint16_t key_len
Length of the zone key.
Definition: namestore.h:339
struct GNUNET_NAMESTORE_Header gns_header
Type will be GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_TO_NAME.
Definition: namestore.h:334
Respone for zone to name lookup.
Definition: namestore.h:358
uint16_t name_len
Length of the name.
Definition: namestore.h:375
int32_t ec
result in NBO: GNUNET_EC_NONE on success, GNUNET_EC_NAMESTORE_NO_RESULTS if there were no results.
Definition: namestore.h:370
uint16_t key_len
Length of the zone key.
Definition: namestore.h:390
struct GNUNET_NAMESTORE_Header gns_header
Type will be GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_TO_NAME_RESPONSE.
Definition: namestore.h:362
uint16_t rd_count
Number of records contained.
Definition: namestore.h:385
uint16_t rd_len
Length of serialized record data.
Definition: namestore.h:380