GNUnet 0.21.1
gnunet-service-namestore.c File Reference

namestore for the GNUnet naming system More...

#include "gnunet_error_codes.h"
#include "gnunet_gnsrecord_lib.h"
#include "gnunet_protocols.h"
#include "gnunet_util_lib.h"
#include "gnunet_namestore_plugin.h"
#include "gnunet_statistics_service.h"
#include "namestore.h"
Include dependency graph for gnunet-service-namestore.c:

Go to the source code of this file.

Data Structures

struct  ZoneIteration
 A namestore iteration operation. More...
 
struct  NamestoreClient
 A namestore client. More...
 
struct  ZoneMonitor
 A namestore monitor. More...
 
struct  StoreActivity
 Information for an ongoing handle_record_store() operation. More...
 
struct  NickCache
 Entry in list of cached nick resolutions. More...
 
struct  RecordLookupContext
 Closure for lookup_it(). More...
 
struct  LookupExistingRecordsContext
 
struct  ZoneToNameCtx
 Context for record remove operations passed from handle_zone_to_name to handle_zone_to_name_it as closure. More...
 
struct  ZoneIterationProcResult
 Context for record remove operations passed from run_zone_iteration_round to zone_iterate_proc as closure. More...
 

Macros

#define LOG_STRERROR_FILE(kind, syscall, filename)    GNUNET_log_from_strerror_file (kind, "util", syscall, filename)
 
#define MONITOR_STALL_WARN_DELAY   GNUNET_TIME_UNIT_MINUTES
 If a monitor takes more than 1 minute to process an event, print a warning. More...
 
#define NC_SIZE   16
 Size of the cache used by get_nick_record() More...
 

Functions

static void cleanup_task (void *cls)
 Task run during shutdown. More...
 
static void free_store_activity (struct StoreActivity *sa)
 Release memory used by sa. More...
 
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. More...
 
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. More...
 
static struct GNUNET_GNSRECORD_Dataget_nick_record (const struct GNUNET_CRYPTO_PrivateKey *zone)
 Return the NICK record for the zone (if it exists). More...
 
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. More...
 
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 notification context. More...
 
static void send_store_response (struct NamestoreClient *nc, enum GNUNET_ErrorCode ec, uint32_t rid)
 Send response to the store request to the client. More...
 
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 us more messages. More...
 
static void warn_monitor_slow (void *cls)
 Print a warning that one of our monitors is no longer reacting. More...
 
static int continue_store_activity (struct StoreActivity *sa, int call_continue)
 Continue processing the sa. More...
 
static void client_disconnect_cb (void *cls, struct GNUNET_SERVICE_Client *client, void *app_ctx)
 Called whenever a client is disconnected. More...
 
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. More...
 
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_record_lookup(). More...
 
static int check_edit_record_set (void *cls, const struct EditRecordSetMessage *er_msg)
 Handles a GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_SET_EDIT message. More...
 
static void handle_edit_record_set (void *cls, const struct EditRecordSetMessage *er_msg)
 Handles a GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_SET_EDIT message. More...
 
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. More...
 
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. More...
 
static int check_record_lookup (void *cls, const struct LabelLookupMessage *ll_msg)
 Handles a GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_LOOKUP message. More...
 
static void handle_record_lookup (void *cls, const struct LabelLookupMessage *ll_msg)
 Handles a GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_LOOKUP message. More...
 
static int check_record_store (void *cls, const struct RecordStoreMessage *rp_msg)
 Checks a GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_STORE message. More...
 
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. More...
 
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 handle_record_store (void *cls, const struct RecordStoreMessage *rp_msg)
 Handles a GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_STORE message. More...
 
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. More...
 
static enum GNUNET_GenericReturnValue check_zone_to_name (void *cls, const struct ZoneToNameMessage *zis_msg)
 
static void handle_zone_to_name (void *cls, const struct ZoneToNameMessage *ztn_msg)
 Handles a GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_TO_NAME message. More...
 
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. More...
 
static void run_zone_iteration_round (struct ZoneIteration *zi, uint64_t limit)
 Perform the next round of the zone iteration. More...
 
static enum GNUNET_GenericReturnValue check_iteration_start (void *cls, const struct ZoneIterationStartMessage *zis_msg)
 
static void handle_iteration_start (void *cls, const struct ZoneIterationStartMessage *zis_msg)
 Handles a GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_ITERATION_START message. More...
 
static void handle_iteration_stop (void *cls, const struct ZoneIterationStopMessage *zis_msg)
 Handles a GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_ITERATION_STOP message. More...
 
static void handle_iteration_next (void *cls, const struct ZoneIterationNextMessage *zis_msg)
 Handles a GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_ITERATION_NEXT message. More...
 
static void monitor_unblock (struct ZoneMonitor *zm)
 Function called when the monitor is ready for more data, and we should thus unblock PUT operations that were blocked on the monitor not being ready. More...
 
static void monitor_sync (struct ZoneMonitor *zm)
 Send 'sync' message to zone monitor, we're now in sync. More...
 
static void monitor_iteration_next (void *cls)
 Obtain the next datum during the zone monitor's zone initial iteration. More...
 
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. More...
 
static enum GNUNET_GenericReturnValue check_monitor_start (void *cls, const struct ZoneMonitorStartMessage *zis_msg)
 
static void handle_monitor_start (void *cls, const struct ZoneMonitorStartMessage *zis_msg)
 Handles a GNUNET_MESSAGE_TYPE_NAMESTORE_MONITOR_START message. More...
 
static void handle_monitor_next (void *cls, const struct ZoneMonitorNextMessage *nm)
 Handles a GNUNET_MESSAGE_TYPE_NAMESTORE_MONITOR_NEXT message. More...
 
static void run (void *cls, const struct GNUNET_CONFIGURATION_Handle *cfg, struct GNUNET_SERVICE_Handle *service)
 Process namestore requests. More...
 
 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. More...
 

Variables

static struct NickCache nick_cache [16]
 We cache nick records to reduce DB load. More...
 
static const struct GNUNET_CRYPTO_PrivateKey zero
 Public key of all zeros. More...
 
static const struct GNUNET_CONFIGURATION_HandleGSN_cfg
 Configuration handle. More...
 
static struct GNUNET_STATISTICS_Handlestatistics
 Handle to the statistics service. More...
 
static char * db_lib_name
 Name of the database plugin. More...
 
struct GNUNET_NAMESTORE_PluginFunctionsGSN_database
 Database handle for service. More...
 
static struct ZoneMonitormonitor_head
 First active zone monitor. More...
 
static struct ZoneMonitormonitor_tail
 Last active zone monitor. More...
 
static struct StoreActivitysa_head
 Head of DLL of monitor-blocked store activities. More...
 
static struct StoreActivitysa_tail
 Tail of DLL of monitor-blocked store activities. More...
 
static struct GNUNET_NotificationContextmonitor_nc
 Notification context shared by all monitors. More...
 
static int return_orphaned
 Returned orphaned records? More...
 

Detailed Description

namestore for the GNUnet naming system

Author
Matthias Wachs
Christian Grothoff

Definition in file gnunet-service-namestore.c.

Macro Definition Documentation

◆ LOG_STRERROR_FILE

#define LOG_STRERROR_FILE (   kind,
  syscall,
  filename 
)     GNUNET_log_from_strerror_file (kind, "util", syscall, filename)

Definition at line 35 of file gnunet-service-namestore.c.

◆ MONITOR_STALL_WARN_DELAY

#define MONITOR_STALL_WARN_DELAY   GNUNET_TIME_UNIT_MINUTES

If a monitor takes more than 1 minute to process an event, print a warning.

Definition at line 41 of file gnunet-service-namestore.c.

◆ NC_SIZE

#define NC_SIZE   16

Size of the cache used by get_nick_record()

Definition at line 46 of file gnunet-service-namestore.c.

Function Documentation

◆ cleanup_task()

static void cleanup_task ( void *  cls)
static

Task run during shutdown.

Parameters
clsunused

Definition at line 390 of file gnunet-service-namestore.c.

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}
static struct GNUNET_NotificationContext * monitor_nc
Notification context shared by all monitors.
struct GNUNET_NAMESTORE_PluginFunctions * GSN_database
Database handle for service.
static char * db_lib_name
Name of the database plugin.
static struct GNUNET_STATISTICS_Handle * statistics
Handle to the statistics service.
#define GNUNET_log(kind,...)
@ GNUNET_NO
#define GNUNET_break(cond)
Use this for internal assertion violations that are not fatal (can be handled) but should not occur.
@ GNUNET_ERROR_TYPE_DEBUG
#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_PLUGIN_unload(const char *library_name, void *arg)
Unload plugin (runs the "done" callback and returns whatever "done" returned).
Definition: plugin.c:242
void GNUNET_STATISTICS_destroy(struct GNUNET_STATISTICS_Handle *h, int sync_first)
Destroy a handle (free all state associated with it).

References db_lib_name, GNUNET_break, GNUNET_ERROR_TYPE_DEBUG, GNUNET_free, GNUNET_log, GNUNET_NO, GNUNET_notification_context_destroy(), GNUNET_PLUGIN_unload(), GNUNET_STATISTICS_destroy(), GSN_database, monitor_nc, and statistics.

Referenced by run().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ free_store_activity()

static void free_store_activity ( struct StoreActivity sa)
static

Release memory used by sa.

Parameters
saactivity to free

Definition at line 416 of file gnunet-service-namestore.c.

417{
419 GNUNET_free (sa);
420}
static struct StoreActivity * sa_tail
Tail of DLL of monitor-blocked store activities.
static struct StoreActivity * sa_head
Head of DLL of monitor-blocked store activities.
#define GNUNET_CONTAINER_DLL_remove(head, tail, element)
Remove an element from a DLL.

References GNUNET_CONTAINER_DLL_remove, GNUNET_free, sa_head, and sa_tail.

Referenced by client_disconnect_cb(), and continue_store_activity().

Here is the caller graph for this function:

◆ lookup_nick_it()

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 
)
static

Function called with the records for the GNUNET_GNS_EMPTY_LABEL_AT label in the zone.

Used to locate the GNUNET_GNSRECORD_TYPE_NICK record, which (if found) is then copied to cls for future use.

Parameters
clsa struct GNUNET_GNSRECORD_Data ** for storing the nick (if found)
seqsequence number of the record, MUST NOT BE ZERO
private_keythe private key of the zone (unused)
labelshould be GNUNET_GNS_EMPTY_LABEL_AT
rd_countnumber of records in rd
rdrecords stored under label in the zone

Definition at line 436 of file gnunet-service-namestore.c.

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}
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 size_t data_size
Number of bytes in data.
#define GNUNET_GNS_EMPTY_LABEL_AT
String we use to indicate an empty label (top-level entry in the zone).
#define GNUNET_memcpy(dst, src, n)
Call memcpy() but check for n being 0 first.
#define GNUNET_assert(cond)
Use this for fatal errors that cannot be handled.
#define GNUNET_malloc(size)
Wrapper around malloc.
#define GNUNET_GNSRECORD_TYPE_NICK
GNS zone nickname.
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.

References GNUNET_GNSRECORD_Data::data, data_size, GNUNET_GNSRECORD_Data::data_size, GNUNET_GNSRECORD_Data::expiration_time, GNUNET_GNSRECORD_Data::flags, GNUNET_assert, GNUNET_break, GNUNET_GNS_EMPTY_LABEL_AT, GNUNET_GNSRECORD_TYPE_NICK, GNUNET_malloc, GNUNET_memcpy, rd, rd_count, GNUNET_GNSRECORD_Data::record_type, and res.

Referenced by get_nick_record().

Here is the caller graph for this function:

◆ cache_nick()

static void cache_nick ( const struct GNUNET_CRYPTO_PrivateKey zone,
const struct GNUNET_GNSRECORD_Data nick 
)
static

Add entry to the cache for zone and nick.

Parameters
zonezone key to cache under
nicknick entry to cache

Definition at line 479 of file gnunet-service-namestore.c.

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}
#define NC_SIZE
Size of the cache used by get_nick_record()
static struct NickCache nick_cache[16]
We cache nick records to reduce DB load.
#define GNUNET_memcmp(a, b)
Compare memory in a and b, where both must be of the same pointer type.
struct GNUNET_TIME_Absolute GNUNET_TIME_absolute_get(void)
Get the current time.
Definition: time.c:111
uint64_t abs_value_us
The actual value.
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.

References GNUNET_TIME_Absolute::abs_value_us, GNUNET_GNSRECORD_Data::data, GNUNET_GNSRECORD_Data::data_size, GNUNET_free, GNUNET_malloc, GNUNET_memcmp, GNUNET_TIME_absolute_get(), NickCache::last_used, NC_SIZE, nick_cache, NickCache::rd, and NickCache::zone.

Referenced by get_nick_record(), and store_record_set().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ get_nick_record()

static struct GNUNET_GNSRECORD_Data * get_nick_record ( const struct GNUNET_CRYPTO_PrivateKey zone)
static

Return the NICK record for the zone (if it exists).

Parameters
ncthe namestore client
zoneprivate key for the zone to look for nick
Returns
NULL if no NICK record was found

Definition at line 523 of file gnunet-service-namestore.c.

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}
static struct GNUNET_CRYPTO_EddsaPublicKey pub
Definition: gnunet-scrypt.c:47
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 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.
const char * GNUNET_GNSRECORD_z2s(const struct GNUNET_CRYPTO_PublicKey *z)
Convert a zone to a string (for printing debug messages).
#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
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.
@ GNUNET_OK
@ GNUNET_ERROR_TYPE_BULK
An identity key as per LSD0001.
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.

References cache_nick(), GNUNET_NAMESTORE_PluginFunctions::cls, GNUNET_GNSRECORD_Data::data, GNUNET_GNSRECORD_Data::data_size, GNUNET_CRYPTO_key_get_public(), GNUNET_ERROR_TYPE_BULK, GNUNET_ERROR_TYPE_DEBUG, GNUNET_get_log_call_status(), GNUNET_GNS_EMPTY_LABEL_AT, GNUNET_GNSRECORD_z2s(), GNUNET_log, GNUNET_LOG_CALL_STATUS, GNUNET_malloc, GNUNET_memcmp, GNUNET_OK, GNUNET_TIME_absolute_get(), GSN_database, NickCache::last_used, lookup_nick_it(), GNUNET_NAMESTORE_PluginFunctions::lookup_records, NC_SIZE, nick_cache, pub, NickCache::rd, res, and NickCache::zone.

Referenced by handle_edit_record_set(), handle_record_lookup(), and send_lookup_response_with_filter().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ merge_with_nick_records()

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 
)
static

Merge the nick record nick_rd with the rest of the record set given in rd2.

Store the result in rdc_res and rd_res. The nick_rd's expiration time is set to the maximum expiration time of all of the records in rd2.

Parameters
nick_rdthe nick record to integrate
rd2_lengthlength of the rd2 array
rd2array of records
[out]rdc_reslength of the resulting rd_res array
[out]rd_resset to an array of records, including nick_rd and rd2; all of the variable-size 'data' fields in rd2 are allocated in the same chunk of memory!

Definition at line 598 of file gnunet-service-namestore.c.

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}
static char * data
The data to insert into the dht.
@ 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.

References data, GNUNET_GNSRECORD_Data::data, data_size, GNUNET_GNSRECORD_Data::data_size, GNUNET_GNSRECORD_Data::expiration_time, GNUNET_GNSRECORD_Data::flags, GNUNET_assert, GNUNET_break, GNUNET_GNSRECORD_RF_RELATIVE_EXPIRATION, GNUNET_GNSRECORD_RF_SUPPLEMENTAL, GNUNET_malloc, GNUNET_memcpy, and GNUNET_TIME_absolute_get().

Referenced by lookup_it(), and send_lookup_response_with_filter().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ send_lookup_response_with_filter()

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 
)
static

Generate a struct LookupNameResponseMessage and send it to the given client using the given notification context.

Parameters
ncclient to unicast to
request_idrequest ID to use
zone_keyzone key of the zone
namename
rd_countnumber of records in rd
rdarray of records
filterrecord set filter

FIXME if we ever support GNUNET_NAMESTORE_OMIT_PUBLIC, we need to omit adding this public record here

Definition at line 678 of file gnunet-service-namestore.c.

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}
struct GNUNET_MQ_Envelope * env
Definition: 005.c:1
static char * name
Name (label) of the records to list.
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 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.
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.
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_PRIVATE
This is a private record of this peer and it should thus not be published.
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
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
@ GNUNET_ERROR_TYPE_ERROR
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_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
#define GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_RESULT
Service to client: here is a (plaintext) record you requested.
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_STATISTICS_update(struct GNUNET_STATISTICS_Handle *handle, const char *name, int64_t delta, int make_persistent)
Set statistic value for the peer.
#define GNUNET_TIME_UNIT_ZERO_ABS
Absolute time zero.
struct GNUNET_TIME_AbsoluteNBO GNUNET_TIME_absolute_hton(struct GNUNET_TIME_Absolute a)
Convert absolute time to network byte order.
Definition: time.c:638
uint32_t r_id
Request ID in NBO.
Definition: namestore.h:51
Time for absolute times used by GNUnet, in microseconds.
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

References env, RecordResultMessage::expire, filter, GNUNET_GNSRECORD_Data::flags, get_nick_record(), RecordResultMessage::gns_header, GNUNET_assert, GNUNET_break, GNUNET_CRYPTO_private_key_get_length(), GNUNET_CRYPTO_write_private_key_to_buffer(), GNUNET_ERROR_TYPE_DEBUG, GNUNET_ERROR_TYPE_ERROR, GNUNET_free, GNUNET_GNS_EMPTY_LABEL_AT, GNUNET_GNSRECORD_normalize_record_set(), GNUNET_GNSRECORD_records_get_size(), GNUNET_GNSRECORD_records_serialize(), GNUNET_GNSRECORD_RF_PRIVATE, GNUNET_log, GNUNET_memcpy, GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_RESULT, GNUNET_MQ_msg_extra, GNUNET_MQ_send(), GNUNET_NO, GNUNET_OK, GNUNET_SERVICE_client_drop(), GNUNET_STATISTICS_update(), GNUNET_TIME_absolute_hton(), GNUNET_TIME_UNIT_ZERO_ABS, RecordResultMessage::key_len, merge_with_nick_records(), name, RecordResultMessage::name_len, nc, GNUNET_NAMESTORE_Header::r_id, rd, rd_count, RecordResultMessage::rd_count, RecordResultMessage::rd_len, res, and statistics.

Referenced by continue_store_activity(), monitor_iterate_cb(), and zone_iterate_proc().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ send_store_response()

static void send_store_response ( struct NamestoreClient nc,
enum GNUNET_ErrorCode  ec,
uint32_t  rid 
)
static

Send response to the store request to the client.

Parameters
ncclient to talk to
ecstatus of the operation
ridclient's request ID

Definition at line 805 of file gnunet-service-namestore.c.

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}
#define GNUNET_MQ_msg(mvar, type)
Allocate a GNUNET_MQ_Envelope.
Definition: gnunet_mq_lib.h:78
#define GNUNET_MESSAGE_TYPE_NAMESTORE_GENERIC_RESPONSE
Service to client: result of store operation.
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

References NamestoreResponseMessage::ec, env, NamestoreResponseMessage::gns_header, GNUNET_assert, GNUNET_ERROR_TYPE_DEBUG, GNUNET_log, GNUNET_MESSAGE_TYPE_NAMESTORE_GENERIC_RESPONSE, GNUNET_MQ_msg, GNUNET_MQ_send(), GNUNET_NO, GNUNET_STATISTICS_update(), nc, GNUNET_NAMESTORE_Header::r_id, and statistics.

Referenced by continue_store_activity(), and handle_record_store().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ zone_iteration_done_client_continue()

static void zone_iteration_done_client_continue ( struct ZoneIteration zi)
static

Function called once we are done with the zone iteration and allow the zone iteration client to send us more messages.

Parameters
zizone iteration we are processing

Definition at line 834 of file gnunet-service-namestore.c.

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}
#define GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_RESULT_END
Service to client: end of list of results.
void GNUNET_SERVICE_client_continue(struct GNUNET_SERVICE_Client *c)
Continue receiving further messages from the given client.
Definition: service.c:2408
Generic namestore message with op id.
Definition: namestore.h:41
struct ZoneIteration * op_head
Head of the DLL of Zone iteration operations in progress initiated by this client.
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.
struct NamestoreClient * nc
Namestore client which intiated this zone iteration.
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.

References NamestoreClient::client, env, GNUNET_CONTAINER_DLL_remove, GNUNET_free, GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_RESULT_END, GNUNET_MQ_msg, GNUNET_MQ_send(), GNUNET_SERVICE_client_continue(), NamestoreClient::mq, ZoneIteration::nc, NamestoreClient::op_head, NamestoreClient::op_tail, GNUNET_NAMESTORE_Header::r_id, ZoneIteration::request_id, and ZoneIteration::send_end.

Referenced by run_zone_iteration_round().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ warn_monitor_slow()

static void warn_monitor_slow ( void *  cls)
static

Print a warning that one of our monitors is no longer reacting.

Parameters
clsa struct ZoneMonitor to warn about

Definition at line 858 of file gnunet-service-namestore.c.

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}
static struct GNUNET_NAMESTORE_ZoneMonitor * zm
Monitor handle.
#define MONITOR_STALL_WARN_DELAY
If a monitor takes more than 1 minute to process an event, print a warning.
static void warn_monitor_slow(void *cls)
Print a warning that one of our monitors is no longer reacting.
@ GNUNET_ERROR_TYPE_WARNING
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
const char * GNUNET_STRINGS_absolute_time_to_string(struct GNUNET_TIME_Absolute t)
Like asctime, except for GNUnet time.
Definition: strings.c:617
A namestore monitor.

References GNUNET_ERROR_TYPE_WARNING, GNUNET_log, GNUNET_SCHEDULER_add_delayed(), GNUNET_STRINGS_absolute_time_to_string(), MONITOR_STALL_WARN_DELAY, warn_monitor_slow(), and zm.

Referenced by continue_store_activity(), handle_monitor_next(), monitor_unblock(), and warn_monitor_slow().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ continue_store_activity()

static int continue_store_activity ( struct StoreActivity sa,
int  call_continue 
)
static

Continue processing the sa.

Parameters
sastore activity to process

Definition at line 877 of file gnunet-service-namestore.c.

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}
static const struct GNUNET_CRYPTO_PrivateKey zero
Public key of all zeros.
static void free_store_activity(struct StoreActivity *sa)
Release memory used by sa.
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 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...
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.
char * GNUNET_GNSRECORD_string_normalize(const char *src)
Normalize a UTF-8 string to a GNS name.
#define GNUNET_NZL(l)
Macro used to avoid using 0 for the length of a variable-size array (Non-Zero-Length).
@ GNUNET_YES
void * GNUNET_SCHEDULER_cancel(struct GNUNET_SCHEDULER_Task *task)
Cancel the task with the specified identifier.
Definition: scheduler.c:981
@ GNUNET_EC_NONE
No error (success).
enum GNUNET_GNSRECORD_Filter filter
Record set filter for this monitor.
struct GNUNET_CRYPTO_PrivateKey zone
Monitored zone.
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
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!).
struct NamestoreClient * nc
Which client triggered the store activity?
uint16_t rd_set_pos
The currently processed record.
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.

References NamestoreClient::client, GNUNET_NAMESTORE_ZoneMonitor::filter, free_store_activity(), GNUNET_assert, GNUNET_EC_NONE, GNUNET_ERROR_TYPE_DEBUG, GNUNET_free, GNUNET_GNSRECORD_records_deserialize(), GNUNET_GNSRECORD_string_normalize(), GNUNET_log, GNUNET_memcmp, GNUNET_NO, GNUNET_NZL, GNUNET_OK, GNUNET_SCHEDULER_add_delayed(), GNUNET_SCHEDULER_cancel(), GNUNET_SERVICE_client_continue(), GNUNET_TIME_absolute_get(), GNUNET_YES, MONITOR_STALL_WARN_DELAY, RecordSet::name_len, StoreActivity::nc, StoreActivity::private_key, rd, rd_count, RecordSet::rd_count, RecordSet::rd_len, StoreActivity::rd_set_pos, StoreActivity::rid, StoreActivity::rs, send_lookup_response_with_filter(), send_store_response(), warn_monitor_slow(), zero, zm, StoreActivity::zm_pos, and GNUNET_NAMESTORE_ZoneMonitor::zone.

Referenced by client_disconnect_cb(), handle_record_store(), and monitor_unblock().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ client_disconnect_cb()

static void client_disconnect_cb ( void *  cls,
struct GNUNET_SERVICE_Client client,
void *  app_ctx 
)
static

Called whenever a client is disconnected.

Frees our resources associated with that client.

Parameters
clsclosure
clientidentification of the client
app_ctxthe struct NamestoreClient of client

Definition at line 970 of file gnunet-service-namestore.c.

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}
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 struct ZoneMonitor * monitor_tail
Last active zone monitor.
A namestore client.
Information for an ongoing handle_record_store() operation.
struct StoreActivity * next
Kept in a DLL.
A namestore iteration operation.

References continue_store_activity(), free_store_activity(), GNUNET_break, GNUNET_CONTAINER_DLL_remove, GNUNET_ERROR_TYPE_DEBUG, GNUNET_free, GNUNET_log, GNUNET_PLUGIN_unload(), GNUNET_SCHEDULER_cancel(), GNUNET_YES, monitor_head, monitor_tail, nc, StoreActivity::nc, StoreActivity::next, sa_head, zm, and StoreActivity::zm_pos.

Here is the call graph for this function:

◆ client_connect_cb()

static void * client_connect_cb ( void *  cls,
struct GNUNET_SERVICE_Client client,
struct GNUNET_MQ_Handle mq 
)
static

Add a client to our list of active clients.

Parameters
clsNULL
clientclient to add
mqmessage queue for client
Returns
internal namestore client structure for this client

Definition at line 1042 of file gnunet-service-namestore.c.

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}
struct GNUNET_MQ_Handle * mq
Definition: 003.c:5
static const struct GNUNET_CONFIGURATION_Handle * GSN_cfg
Configuration handle.
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_strdup(a)
Wrapper around GNUNET_xstrdup_.
#define GNUNET_new(type)
Allocate a struct or union of the given type.
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

References NamestoreClient::client, db_lib_name, GNUNET_CONFIGURATION_get_value_string(), GNUNET_ERROR_TYPE_DEBUG, GNUNET_ERROR_TYPE_ERROR, GNUNET_free, GNUNET_log, GNUNET_new, GNUNET_OK, GNUNET_PLUGIN_load(), GNUNET_strdup, GSN_cfg, mq, and nc.

Here is the call graph for this function:

◆ lookup_it()

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 
)
static

Function called by the namestore plugin when we are trying to lookup a record as part of handle_record_lookup().

Merges all results into the context.

Parameters
clsclosure with a struct RecordLookupContext
sequnique serial number of the record, MUST NOT BE ZERO
private_keyprivate key of the zone
labelname that is being mapped (at most 255 characters long)
rd_countnumber of entries in rd array
rdarray of records with data to store

Definition at line 1141 of file gnunet-service-namestore.c.

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}
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.

References RecordLookupContext::editor_hint, RecordLookupContext::filter, GNUNET_GNSRECORD_Data::flags, RecordLookupContext::found, GNUNET_assert, GNUNET_break, GNUNET_ERROR_TYPE_ERROR, GNUNET_free, GNUNET_GNS_EMPTY_LABEL_AT, GNUNET_GNSRECORD_normalize_record_set(), GNUNET_GNSRECORD_records_get_size(), GNUNET_GNSRECORD_records_serialize(), GNUNET_GNSRECORD_RF_PRIVATE, GNUNET_log, GNUNET_malloc, GNUNET_NO, GNUNET_OK, GNUNET_YES, RecordLookupContext::label, merge_with_nick_records(), RecordLookupContext::nick, rd, rd_count, RecordLookupContext::rd_ser_len, RecordLookupContext::res_rd, and RecordLookupContext::res_rd_count.

Referenced by handle_edit_record_set(), and handle_record_lookup().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ check_edit_record_set()

static int check_edit_record_set ( void *  cls,
const struct EditRecordSetMessage er_msg 
)
static

Handles a GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_SET_EDIT message.

Parameters
clsclient sending the message
er_msgmessage of type struct EditRecordSetMessage
Returns
GNUNET_OK if er_msg is well-formed

Definition at line 1259 of file gnunet-service-namestore.c.

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}
@ GNUNET_SYSERR
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
uint16_t size
The length of the struct (in bytes, including the length field itself), in big-endian format.
struct GNUNET_MessageHeader header
header.type will be GNUNET_MESSAGE_TYPE_NAMESTORE_* header.size will be message size
Definition: namestore.h:46

References EditRecordSetMessage::editor_hint_len, EditRecordSetMessage::gns_header, GNUNET_break, GNUNET_OK, GNUNET_SYSERR, GNUNET_NAMESTORE_Header::header, EditRecordSetMessage::key_len, EditRecordSetMessage::label_len, and GNUNET_MessageHeader::size.

◆ handle_edit_record_set()

static void handle_edit_record_set ( void *  cls,
const struct EditRecordSetMessage er_msg 
)
static

Handles a GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_SET_EDIT message.

Parameters
clsclient sending the message
ll_msgmessage of type struct EditRecordSetMessage

Definition at line 1288 of file gnunet-service-namestore.c.

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");
1338 rlc.filter = GNUNET_GNSRECORD_FILTER_NONE;
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}
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...
@ GNUNET_GNSRECORD_FILTER_NONE
No filter flags set.
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
#define GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_SET_EDIT_RESPONSE
Return record set to edit with previous editor hint/advisory lock.
@ GNUNET_EC_NAMESTORE_NO_RESULTS
No results given.
@ GNUNET_EC_NAMESTORE_UNKNOWN
Unknown namestore error.
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.

References EditRecordSetResponseMessage::ec, RecordLookupContext::editor_hint, EditRecordSetResponseMessage::editor_hint_len, env, RecordLookupContext::filter, RecordLookupContext::found, get_nick_record(), EditRecordSetResponseMessage::gns_header, EditRecordSetMessage::gns_header, GNUNET_CRYPTO_read_private_key_from_buffer(), GNUNET_EC_NAMESTORE_NO_RESULTS, GNUNET_EC_NAMESTORE_UNKNOWN, GNUNET_EC_NONE, GNUNET_ERROR_TYPE_DEBUG, GNUNET_ERROR_TYPE_ERROR, GNUNET_free, GNUNET_GNSRECORD_FILTER_NONE, GNUNET_GNSRECORD_string_normalize(), GNUNET_log, GNUNET_memcpy, GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_SET_EDIT_RESPONSE, GNUNET_MQ_msg_extra, GNUNET_MQ_send(), GNUNET_NO, GNUNET_SERVICE_client_continue(), GNUNET_SERVICE_client_drop(), GNUNET_SYSERR, GNUNET_YES, EditRecordSetMessage::key_len, RecordLookupContext::label, EditRecordSetMessage::label_len, lookup_it(), nc, RecordLookupContext::nick, GNUNET_NAMESTORE_Header::r_id, EditRecordSetResponseMessage::rd_count, EditRecordSetResponseMessage::rd_len, RecordLookupContext::rd_ser_len, res, RecordLookupContext::res_rd, and RecordLookupContext::res_rd_count.

Here is the call graph for this function:

◆ check_edit_record_set_cancel()

static int check_edit_record_set_cancel ( void *  cls,
const struct EditRecordSetCancelMessage er_msg 
)
static

Handles a GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_SET_EDIT_CANCEL message.

Parameters
clsclient sending the message
er_msgmessage of type struct EditRecordSetMessage
Returns
GNUNET_OK if er_msg is well-formed

Definition at line 1386 of file gnunet-service-namestore.c.

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}
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

References EditRecordSetCancelMessage::editor_hint_len, EditRecordSetCancelMessage::gns_header, GNUNET_break, GNUNET_OK, GNUNET_SYSERR, GNUNET_NAMESTORE_Header::header, EditRecordSetCancelMessage::key_len, EditRecordSetCancelMessage::label_len, and GNUNET_MessageHeader::size.

◆ handle_edit_record_set_cancel()

static void handle_edit_record_set_cancel ( void *  cls,
const struct EditRecordSetCancelMessage er_msg 
)
static

Handles a GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_SET_EDIT_CANCEL message.

Parameters
clsclient sending the message
ll_msgmessage of type struct EditRecordSetCancelMessage

Definition at line 1419 of file gnunet-service-namestore.c.

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}
@ GNUNET_EC_NAMESTORE_BACKEND_FAILED
There was an error in the database backend.

References NamestoreResponseMessage::ec, EditRecordSetCancelMessage::editor_hint_len, env, NamestoreResponseMessage::gns_header, EditRecordSetCancelMessage::gns_header, GNUNET_CRYPTO_read_private_key_from_buffer(), GNUNET_EC_NAMESTORE_BACKEND_FAILED, GNUNET_EC_NONE, GNUNET_ERROR_TYPE_DEBUG, GNUNET_ERROR_TYPE_ERROR, GNUNET_free, GNUNET_GNSRECORD_string_normalize(), GNUNET_log, GNUNET_MESSAGE_TYPE_NAMESTORE_GENERIC_RESPONSE, GNUNET_MQ_msg, GNUNET_MQ_send(), GNUNET_OK, GNUNET_SERVICE_client_continue(), GNUNET_SERVICE_client_drop(), GNUNET_SYSERR, EditRecordSetCancelMessage::key_len, EditRecordSetCancelMessage::label_len, nc, GNUNET_NAMESTORE_Header::r_id, and res.

Here is the call graph for this function:

◆ check_record_lookup()

static int check_record_lookup ( void *  cls,
const struct LabelLookupMessage ll_msg 
)
static

Handles a GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_LOOKUP message.

Parameters
clsclient sending the message
ll_msgmessage of type struct LabelLookupMessage
Returns
GNUNET_OK if ll_msg is well-formed

Definition at line 1499 of file gnunet-service-namestore.c.

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}
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 label_len
Length of the name.
Definition: namestore.h:177

References LabelLookupMessage::gns_header, GNUNET_break, GNUNET_OK, GNUNET_SYSERR, GNUNET_NAMESTORE_Header::header, LabelLookupMessage::key_len, LabelLookupMessage::label_len, and GNUNET_MessageHeader::size.

◆ handle_record_lookup()

static void handle_record_lookup ( void *  cls,
const struct LabelLookupMessage ll_msg 
)
static

Handles a GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_LOOKUP message.

Parameters
clsclient sending the message
ll_msgmessage of type struct LabelLookupMessage

Definition at line 1525 of file gnunet-service-namestore.c.

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}
#define GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_LOOKUP_RESPONSE
Service to client: lookup label.
uint16_t filter
The record filter.
Definition: namestore.h:187
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

References env, RecordLookupContext::filter, LabelLookupMessage::filter, RecordLookupContext::found, LabelLookupResponseMessage::found, get_nick_record(), LabelLookupMessage::gns_header, LabelLookupResponseMessage::gns_header, GNUNET_CRYPTO_read_private_key_from_buffer(), GNUNET_ERROR_TYPE_DEBUG, GNUNET_ERROR_TYPE_ERROR, GNUNET_free, GNUNET_GNSRECORD_string_normalize(), GNUNET_log, GNUNET_memcpy, GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_LOOKUP_RESPONSE, GNUNET_MQ_msg_extra, GNUNET_MQ_send(), GNUNET_NO, GNUNET_SERVICE_client_continue(), GNUNET_SERVICE_client_drop(), GNUNET_SYSERR, GNUNET_YES, LabelLookupMessage::key_len, LabelLookupResponseMessage::key_len, RecordLookupContext::label, lookup_it(), LabelLookupResponseMessage::name_len, nc, RecordLookupContext::nick, GNUNET_NAMESTORE_Header::r_id, LabelLookupResponseMessage::rd_count, LabelLookupResponseMessage::rd_len, RecordLookupContext::rd_ser_len, res, RecordLookupContext::res_rd, RecordLookupContext::res_rd_count, and LabelLookupResponseMessage::reserved.

Here is the call graph for this function:

◆ check_record_store()

static int check_record_store ( void *  cls,
const struct RecordStoreMessage rp_msg 
)
static

Checks a GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_STORE message.

Parameters
clsclient sending the message
rp_msgmessage of type struct RecordStoreMessage
Returns
GNUNET_OK if rp_msg is well-formed

Definition at line 1617 of file gnunet-service-namestore.c.

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}
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

References RecordStoreMessage::gns_header, GNUNET_break, GNUNET_OK, GNUNET_SYSERR, GNUNET_NAMESTORE_Header::header, RecordStoreMessage::key_len, RecordStoreMessage::rd_set_count, and GNUNET_MessageHeader::size.

◆ get_existing_rd_exp()

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 
)
static

Check if set contains a tombstone, store if necessary.

Parameters
clsa struct GNUNET_GNSRECORD_Data ** for storing the nick (if found)
seqsequence number of the record, MUST NOT BE ZERO
private_keythe private key of the zone (unused)
labelshould be GNUNET_GNS_EMPTY_LABEL_AT
rd_countnumber of records in rd
rdrecords stored under label in the zone

Definition at line 1668 of file gnunet-service-namestore.c.

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}
@ GNUNET_GNSRECORD_FILTER_OMIT_PRIVATE
Filter private records.
#define GNUNET_GNSRECORD_TYPE_TOMBSTONE
Record type to indicate a previously delete record (PRIVATE only)
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.

References LookupExistingRecordsContext::exp, GNUNET_ERROR_TYPE_ERROR, GNUNET_free, GNUNET_GNSRECORD_FILTER_OMIT_PRIVATE, GNUNET_GNSRECORD_normalize_record_set(), GNUNET_GNSRECORD_TYPE_TOMBSTONE, GNUNET_log, GNUNET_OK, GNUNET_YES, LookupExistingRecordsContext::only_tombstone, rd, rd_count, and GNUNET_GNSRECORD_Data::record_type.

Referenced by store_record_set().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ store_record_set()

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

Definition at line 1706 of file gnunet-service-namestore.c.

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;
1725 lctx.only_tombstone = GNUNET_NO;
1726 lctx.exp = GNUNET_TIME_UNIT_ZERO_ABS;
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}
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.
enum GNUNET_GenericReturnValue GNUNET_GNSRECORD_label_check(const char *label, char **emsg)
Check label for invalid characters.
@ GNUNET_GNSRECORD_RF_MAINTENANCE
Maintenance records.
@ GNUNET_GNSRECORD_FILTER_INCLUDE_MAINTENANCE
Include maintenance records (TOMBSTONE etc).
#define GNUNET_TIME_absolute_cmp(t1, op, t2)
Compare two absolute times.
GNUNET_ErrorCode
Taler error codes.
@ GNUNET_EC_NAMESTORE_LABEL_INVALID
Label invalid or malformed.
@ GNUNET_EC_NAMESTORE_STORE_FAILED
Failed to store the given records.
@ GNUNET_EC_NAMESTORE_RECORD_DATA_INVALID
Record data invalid.
@ GNUNET_EC_NAMESTORE_RECORD_NOT_FOUND
Record not found.

References GNUNET_TIME_Absolute::abs_value_us, cache_nick(), GNUNET_GNSRECORD_Data::data, GNUNET_GNSRECORD_Data::data_size, LookupExistingRecordsContext::exp, GNUNET_GNSRECORD_Data::expiration_time, GNUNET_GNSRECORD_Data::flags, get_existing_rd_exp(), GNUNET_EC_NAMESTORE_LABEL_INVALID, GNUNET_EC_NAMESTORE_RECORD_DATA_INVALID, GNUNET_EC_NAMESTORE_RECORD_NOT_FOUND, GNUNET_EC_NAMESTORE_STORE_FAILED, GNUNET_EC_NONE, GNUNET_ERROR_TYPE_DEBUG, GNUNET_ERROR_TYPE_ERROR, GNUNET_free, GNUNET_GNS_EMPTY_LABEL_AT, GNUNET_GNSRECORD_FILTER_INCLUDE_MAINTENANCE, GNUNET_GNSRECORD_label_check(), GNUNET_GNSRECORD_normalize_record_set(), GNUNET_GNSRECORD_records_deserialize(), GNUNET_GNSRECORD_RF_MAINTENANCE, GNUNET_GNSRECORD_RF_PRIVATE, GNUNET_GNSRECORD_string_normalize(), GNUNET_GNSRECORD_TYPE_NICK, GNUNET_GNSRECORD_TYPE_TOMBSTONE, GNUNET_log, GNUNET_NO, GNUNET_NZL, GNUNET_OK, GNUNET_STATISTICS_update(), GNUNET_SYSERR, GNUNET_TIME_absolute_cmp, GNUNET_TIME_UNIT_ZERO_ABS, GNUNET_YES, RecordSet::name_len, nc, LookupExistingRecordsContext::only_tombstone, rd, rd_count, RecordSet::rd_count, RecordSet::rd_len, GNUNET_GNSRECORD_Data::record_type, res, and statistics.

Referenced by handle_record_store().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ handle_record_store()

static void handle_record_store ( void *  cls,
const struct RecordStoreMessage rp_msg 
)
static

Handles a GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_STORE message.

Parameters
clsclient sending the message
rp_msgmessage of type struct RecordStoreMessage

Definition at line 1906 of file gnunet-service-namestore.c.

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}
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)
#define GNUNET_CONTAINER_DLL_insert(head, tail, element)
Insert an element at the head of a DLL.
uint16_t rd_set_count
The number of records in this activity.

References continue_store_activity(), RecordStoreMessage::gns_header, GNUNET_CONTAINER_DLL_insert, GNUNET_CRYPTO_read_private_key_from_buffer(), GNUNET_EC_NONE, GNUNET_ERROR_TYPE_DEBUG, GNUNET_ERROR_TYPE_ERROR, GNUNET_log, GNUNET_malloc, GNUNET_memcpy, GNUNET_SERVICE_client_continue(), GNUNET_SERVICE_client_drop(), GNUNET_SYSERR, GNUNET_YES, GNUNET_NAMESTORE_Header::header, RecordStoreMessage::key_len, monitor_head, nc, StoreActivity::nc, StoreActivity::private_key, GNUNET_NAMESTORE_Header::r_id, StoreActivity::rd_set_count, RecordStoreMessage::rd_set_count, StoreActivity::rd_set_pos, res, StoreActivity::rid, StoreActivity::rs, sa_head, sa_tail, send_store_response(), GNUNET_MessageHeader::size, store_record_set(), and StoreActivity::zm_pos.

Here is the call graph for this function:

◆ handle_zone_to_name_it()

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 
)
static

Zone to name iterator.

Parameters
clsstruct ZoneToNameCtx *
seqsequence number of the record, MUST NOT BE ZERO
zone_keythe zone key
namename
rd_countnumber of records in rd
rdrecord data

Definition at line 2007 of file gnunet-service-namestore.c.

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}
#define GNUNET_MAX_MESSAGE_SIZE
Largest supported message (to be precise, one byte more than the largest possible message,...
#define GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_TO_NAME_RESPONSE
Service to client: result of zone-to-name lookup.
@ GNUNET_EC_NAMESTORE_RECORD_TOO_BIG
Record size exceeds maximum limit.
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.
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

References ZoneToNameCtx::ec, ZoneToNameResponseMessage::ec, env, ZoneToNameResponseMessage::gns_header, GNUNET_assert, GNUNET_break, GNUNET_CRYPTO_private_key_get_length(), GNUNET_CRYPTO_write_private_key_to_buffer(), GNUNET_EC_NAMESTORE_RECORD_TOO_BIG, GNUNET_EC_NAMESTORE_UNKNOWN, GNUNET_EC_NONE, GNUNET_ERROR_TYPE_DEBUG, GNUNET_GNSRECORD_records_get_size(), GNUNET_GNSRECORD_records_serialize(), GNUNET_log, GNUNET_MAX_MESSAGE_SIZE, GNUNET_memcpy, GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_TO_NAME_RESPONSE, GNUNET_MQ_msg_extra, GNUNET_MQ_send(), GNUNET_NAMESTORE_Header::header, ZoneToNameResponseMessage::key_len, NamestoreClient::mq, name, ZoneToNameResponseMessage::name_len, ZoneToNameCtx::nc, GNUNET_NAMESTORE_Header::r_id, rd, rd_count, ZoneToNameResponseMessage::rd_count, ZoneToNameResponseMessage::rd_len, ZoneToNameCtx::rid, and GNUNET_MessageHeader::size.

Referenced by handle_zone_to_name().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ check_zone_to_name()

static enum GNUNET_GenericReturnValue check_zone_to_name ( void *  cls,
const struct ZoneToNameMessage zis_msg 
)
static

Definition at line 2073 of file gnunet-service-namestore.c.

2075{
2076 return GNUNET_OK;
2077}

References GNUNET_OK.

◆ handle_zone_to_name()

static void handle_zone_to_name ( void *  cls,
const struct ZoneToNameMessage ztn_msg 
)
static

Handles a GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_TO_NAME message.

Parameters
clsclient client sending the message
ztn_msgmessage of type 'struct ZoneToNameMessage'

Definition at line 2087 of file gnunet-service-namestore.c.

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 }
2144 if (GNUNET_EC_NAMESTORE_ZONE_NOT_FOUND == ztn_ctx.ec)
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}
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.
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_EC_NAMESTORE_ZONE_NOT_FOUND
Zone not found.
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

References ZoneToNameCtx::ec, ZoneToNameResponseMessage::ec, env, ZoneToNameMessage::gns_header, ZoneToNameResponseMessage::gns_header, GNUNET_break, GNUNET_CRYPTO_read_private_key_from_buffer(), GNUNET_CRYPTO_read_public_key_from_buffer(), GNUNET_EC_NAMESTORE_ZONE_NOT_FOUND, GNUNET_ERROR_TYPE_DEBUG, GNUNET_log, GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_TO_NAME_RESPONSE, GNUNET_MQ_msg, GNUNET_MQ_send(), GNUNET_SERVICE_client_continue(), GNUNET_SERVICE_client_drop(), GNUNET_SYSERR, handle_zone_to_name_it(), ZoneToNameMessage::key_len, ZoneToNameResponseMessage::key_len, nc, ZoneToNameCtx::nc, ZoneToNameMessage::pkey_len, GNUNET_NAMESTORE_Header::r_id, and ZoneToNameCtx::rid.

Here is the call graph for this function:

◆ zone_iterate_proc()

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 
)
static

Process results for zone iteration from database.

Parameters
clsstruct ZoneIterationProcResult
seqsequence number of the record, MUST NOT BE ZERO
zone_keythe zone key
namename
rd_countnumber of records for this name
rdrecord data

Definition at line 2193 of file gnunet-service-namestore.c.

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}
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.
uint64_t seq
Last sequence number in the zone iteration used to address next result of the zone iteration in the s...
enum GNUNET_GNSRECORD_Filter filter
The record set filter.

References ZoneIteration::filter, GNUNET_assert, GNUNET_break, GNUNET_ERROR_TYPE_DEBUG, GNUNET_log, GNUNET_YES, ZoneIterationProcResult::limit, name, ZoneIteration::nc, rd, rd_count, ZoneIteration::request_id, ZoneIterationProcResult::run_again, send_lookup_response_with_filter(), ZoneIteration::seq, and ZoneIterationProcResult::zi.

Referenced by run_zone_iteration_round().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ run_zone_iteration_round()

static void run_zone_iteration_round ( struct ZoneIteration zi,
uint64_t  limit 
)
static

Perform the next round of the zone iteration.

Parameters
zizone iterator to process
limitnumber of results to return in one pass

Definition at line 2242 of file gnunet-service-namestore.c.

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 }
2274 duration = GNUNET_TIME_relative_divide (duration, limit - proc.limit);
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}
static int start
Set if we are to start default services (including ARM).
Definition: gnunet-arm.c:39
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 ...
static struct GNUNET_TIME_Relative duration
Option '-d': duration of the mapping.
Definition: gnunet-vpn.c:90
#define GNUNET_is_zero(a)
Check that memory in a is all zeros.
void GNUNET_STATISTICS_set(struct GNUNET_STATISTICS_Handle *handle, const char *name, uint64_t value, int make_persistent)
Set statistic value for the peer.
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_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
Time for relative time used by GNUnet, in microseconds.
uint64_t rel_value_us
The actual value.
struct GNUNET_CRYPTO_PrivateKey zone
Key of the zone we are iterating over.

References duration, GNUNET_break, GNUNET_ERROR_TYPE_DEBUG, GNUNET_is_zero, GNUNET_log, GNUNET_NO, GNUNET_STATISTICS_set(), GNUNET_SYSERR, GNUNET_TIME_absolute_get(), GNUNET_TIME_absolute_get_duration(), GNUNET_TIME_relative_divide(), GNUNET_YES, ZoneIterationProcResult::limit, nc, ZoneIteration::nc, GNUNET_TIME_Relative::rel_value_us, ZoneIterationProcResult::run_again, ZoneIteration::send_end, ZoneIteration::seq, start, statistics, ZoneIterationProcResult::zi, ZoneIteration::zone, zone_iterate_proc(), and zone_iteration_done_client_continue().

Referenced by handle_iteration_next(), and handle_iteration_start().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ check_iteration_start()

static enum GNUNET_GenericReturnValue check_iteration_start ( void *  cls,
const struct ZoneIterationStartMessage zis_msg 
)
static

Definition at line 2289 of file gnunet-service-namestore.c.

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}
static unsigned int size
Size of the "table".
Definition: peer.c:68
uint16_t key_len
Length of the zone key.
Definition: namestore.h:560
struct GNUNET_NAMESTORE_Header gns_header
Type will be GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_ITERATION_START.
Definition: namestore.h:549

References ZoneIterationStartMessage::gns_header, GNUNET_break, GNUNET_OK, GNUNET_SYSERR, GNUNET_NAMESTORE_Header::header, ZoneIterationStartMessage::key_len, GNUNET_MessageHeader::size, and size.

◆ handle_iteration_start()

static void handle_iteration_start ( void *  cls,
const struct ZoneIterationStartMessage zis_msg 
)
static

Handles a GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_ITERATION_START message.

Parameters
clsthe client sending the message
zis_msgmessage from the client

Definition at line 2314 of file gnunet-service-namestore.c.

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}
static void run_zone_iteration_round(struct ZoneIteration *zi, uint64_t limit)
Perform the next round of the zone iteration.
uint16_t filter
Record set filter control flags.
Definition: namestore.h:555
uint32_t offset
Offset of the zone iteration used to address next result of the zone iteration in the store.

References ZoneIteration::filter, ZoneIterationStartMessage::filter, ZoneIterationStartMessage::gns_header, GNUNET_CONTAINER_DLL_insert, GNUNET_CRYPTO_read_private_key_from_buffer(), GNUNET_ERROR_TYPE_DEBUG, GNUNET_free, GNUNET_log, GNUNET_new, GNUNET_SERVICE_client_drop(), GNUNET_SYSERR, ZoneIterationStartMessage::key_len, nc, ZoneIteration::nc, ZoneIteration::offset, GNUNET_NAMESTORE_Header::r_id, ZoneIteration::request_id, run_zone_iteration_round(), and ZoneIteration::zone.

Here is the call graph for this function:

◆ handle_iteration_stop()

static void handle_iteration_stop ( void *  cls,
const struct ZoneIterationStopMessage zis_msg 
)
static

Handles a GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_ITERATION_STOP message.

Parameters
clsthe client sending the message
zis_msgmessage from the client

Definition at line 2358 of file gnunet-service-namestore.c.

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}
struct GNUNET_NAMESTORE_Header gns_header
Type will be GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_ITERATION_STOP.
Definition: namestore.h:595
struct ZoneIteration * next
Next element in the DLL.

References ZoneIterationStopMessage::gns_header, GNUNET_break, GNUNET_CONTAINER_DLL_remove, GNUNET_ERROR_TYPE_DEBUG, GNUNET_free, GNUNET_log, GNUNET_SERVICE_client_continue(), GNUNET_SERVICE_client_drop(), nc, ZoneIteration::next, GNUNET_NAMESTORE_Header::r_id, and ZoneIteration::request_id.

Here is the call graph for this function:

◆ handle_iteration_next()

static void handle_iteration_next ( void *  cls,
const struct ZoneIterationNextMessage zis_msg 
)
static

Handles a GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_ITERATION_NEXT message.

Parameters
clsthe client sending the message
zis_msgmessage from the client

Definition at line 2390 of file gnunet-service-namestore.c.

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}
uint64_t GNUNET_ntohll(uint64_t n)
Convert unsigned 64-bit integer to host byte order.
Definition: common_endian.c:54
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

References ZoneIterationNextMessage::gns_header, GNUNET_break, GNUNET_ERROR_TYPE_DEBUG, GNUNET_log, GNUNET_NO, GNUNET_ntohll(), GNUNET_SERVICE_client_drop(), GNUNET_STATISTICS_update(), ZoneIterationNextMessage::limit, nc, ZoneIteration::next, GNUNET_NAMESTORE_Header::r_id, ZoneIteration::request_id, run_zone_iteration_round(), and statistics.

Here is the call graph for this function:

◆ monitor_unblock()

static void monitor_unblock ( struct ZoneMonitor zm)
static

Function called when the monitor is ready for more data, and we should thus unblock PUT operations that were blocked on the monitor not being ready.

Definition at line 2425 of file gnunet-service-namestore.c.

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}

References continue_store_activity(), GNUNET_ERROR_TYPE_DEBUG, GNUNET_log, GNUNET_NO, GNUNET_SCHEDULER_add_delayed(), GNUNET_SCHEDULER_cancel(), GNUNET_TIME_absolute_get(), GNUNET_YES, MONITOR_STALL_WARN_DELAY, StoreActivity::next, sa_head, warn_monitor_slow(), zm, and StoreActivity::zm_pos.

Referenced by handle_monitor_next(), and monitor_sync().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ monitor_sync()

static void monitor_sync ( struct ZoneMonitor zm)
static

Send 'sync' message to zone monitor, we're now in sync.

Parameters
zmmonitor that is now in sync

Definition at line 2467 of file gnunet-service-namestore.c.

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}
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...
#define GNUNET_MESSAGE_TYPE_NAMESTORE_MONITOR_SYNC
Service to client: you're now in sync.
Header for all communications.
struct GNUNET_MQ_Handle * mq
Handle to namestore service.

References env, GNUNET_ERROR_TYPE_DEBUG, GNUNET_log, GNUNET_MESSAGE_TYPE_NAMESTORE_MONITOR_SYNC, GNUNET_MQ_msg, GNUNET_MQ_send(), GNUNET_NO, monitor_unblock(), GNUNET_NAMESTORE_ZoneMonitor::mq, and zm.

Referenced by handle_monitor_start(), and monitor_iteration_next().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ monitor_iteration_next()

static void monitor_iteration_next ( void *  cls)
static

Obtain the next datum during the zone monitor's zone initial iteration.

Parameters
clszone monitor that does its initial iteration

Definition at line 2618 of file gnunet-service-namestore.c.

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}
static int ret
Final status code.
Definition: gnunet-arm.c:94
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 monitor_sync(struct ZoneMonitor *zm)
Send 'sync' message to zone monitor, we're now in sync.

References GNUNET_assert, GNUNET_ERROR_TYPE_DEBUG, GNUNET_is_zero, GNUNET_log, GNUNET_NO, GNUNET_SERVICE_client_drop(), GNUNET_SYSERR, GNUNET_YES, monitor_iterate_cb(), monitor_sync(), nc, ret, zm, and GNUNET_NAMESTORE_ZoneMonitor::zone.

Referenced by handle_monitor_next(), handle_monitor_start(), and monitor_iterate_cb().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ monitor_iterate_cb()

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 
)
static

A GNUNET_NAMESTORE_RecordIterator for monitors.

Parameters
clsa 'struct ZoneMonitor *' with information about the monitor
seqsequence number of the record, MUST NOT BE ZERO
zone_keyzone key of the zone
namename
rd_countnumber of records in rd
rdarray of records

Definition at line 2504 of file gnunet-service-namestore.c.

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}
static void monitor_iteration_next(void *cls)
Obtain the next datum during the zone monitor's zone initial iteration.
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
uint64_t seq
Last sequence number in the zone iteration used to address next result of the zone iteration in the s...

References GNUNET_NAMESTORE_ZoneMonitor::filter, GNUNET_assert, GNUNET_ERROR_TYPE_DEBUG, GNUNET_log, GNUNET_NO, GNUNET_SCHEDULER_add_now(), GNUNET_STATISTICS_update(), GNUNET_YES, monitor_iteration_next(), name, rd, rd_count, send_lookup_response_with_filter(), ZoneMonitor::seq, statistics, and zm.

Referenced by monitor_iteration_next().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ check_monitor_start()

static enum GNUNET_GenericReturnValue check_monitor_start ( void *  cls,
const struct ZoneMonitorStartMessage zis_msg 
)
static

Definition at line 2542 of file gnunet-service-namestore.c.

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}
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

References GNUNET_break, GNUNET_OK, GNUNET_SYSERR, ZoneMonitorStartMessage::header, ZoneMonitorStartMessage::key_len, GNUNET_MessageHeader::size, and size.

◆ handle_monitor_start()

static void handle_monitor_start ( void *  cls,
const struct ZoneMonitorStartMessage zis_msg 
)
static

Handles a GNUNET_MESSAGE_TYPE_NAMESTORE_MONITOR_START message.

Parameters
clsthe client sending the message
zis_msgmessage from the client

Definition at line 2567 of file gnunet-service-namestore.c.

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}
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_SERVICE_client_mark_monitor(struct GNUNET_SERVICE_Client *c)
Set the 'monitor' flag on this client.
Definition: service.c:2572
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
struct GNUNET_CRYPTO_PrivateKey zone
Private key of the zone.

References ZoneMonitorStartMessage::filter, GNUNET_NAMESTORE_ZoneMonitor::filter, GNUNET_CONTAINER_DLL_insert, GNUNET_CRYPTO_read_private_key_from_buffer(), GNUNET_ERROR_TYPE_DEBUG, GNUNET_ERROR_TYPE_ERROR, GNUNET_free, GNUNET_log, GNUNET_new, GNUNET_notification_context_add(), GNUNET_SCHEDULER_add_now(), GNUNET_SERVICE_client_continue(), GNUNET_SERVICE_client_drop(), GNUNET_SERVICE_client_mark_monitor(), GNUNET_SYSERR, GNUNET_YES, ZoneMonitorStartMessage::iterate_first, ZoneMonitorStartMessage::key_len, monitor_head, monitor_iteration_next(), monitor_nc, monitor_sync(), monitor_tail, nc, zm, ZoneMonitor::zone, and GNUNET_NAMESTORE_ZoneMonitor::zone.

Here is the call graph for this function:

◆ handle_monitor_next()

static void handle_monitor_next ( void *  cls,
const struct ZoneMonitorNextMessage nm 
)
static

Handles a GNUNET_MESSAGE_TYPE_NAMESTORE_MONITOR_NEXT message.

Parameters
clsthe client sending the message
nmmessage from the client

Definition at line 2667 of file gnunet-service-namestore.c.

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}
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
uint64_t limit
Current limit of how many more messages we are allowed to queue to this monitor.

References GNUNET_assert, GNUNET_break, GNUNET_ERROR_TYPE_DEBUG, GNUNET_log, GNUNET_ntohll(), GNUNET_SCHEDULER_add_delayed(), GNUNET_SCHEDULER_add_now(), GNUNET_SCHEDULER_cancel(), GNUNET_SERVICE_client_continue(), GNUNET_SERVICE_client_drop(), GNUNET_TIME_absolute_get(), GNUNET_YES, ZoneMonitor::limit, ZoneMonitorNextMessage::limit, monitor_head, monitor_iteration_next(), MONITOR_STALL_WARN_DELAY, monitor_unblock(), nc, warn_monitor_slow(), and zm.

Here is the call graph for this function:

◆ run()

static void run ( void *  cls,
const struct GNUNET_CONFIGURATION_Handle cfg,
struct GNUNET_SERVICE_Handle service 
)
static

Process namestore requests.

Parameters
clsclosure
cfgconfiguration to use
servicethe initialized service

Definition at line 2727 of file gnunet-service-namestore.c.

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}
static struct GNUNET_CONFIGURATION_Handle * cfg
Our configuration.
Definition: gnunet-arm.c:109
static int return_orphaned
Returned orphaned records?
static void cleanup_task(void *cls)
Task run during shutdown.
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".
int int GNUNET_asprintf(char **buf, const char *format,...) __attribute__((format(printf
Like asprintf, just portable.
struct GNUNET_NotificationContext * GNUNET_notification_context_create(unsigned int queue_length)
Create a new notification context.
Definition: nc.c:122
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
struct GNUNET_STATISTICS_Handle * GNUNET_STATISTICS_create(const char *subsystem, const struct GNUNET_CONFIGURATION_Handle *cfg)
Get handle for the statistics service.

References cfg, cleanup_task(), db_lib_name, GNUNET_asprintf(), GNUNET_CONFIGURATION_get_value_string(), GNUNET_CONFIGURATION_get_value_yesno(), GNUNET_ERROR_TYPE_DEBUG, GNUNET_ERROR_TYPE_ERROR, GNUNET_free, GNUNET_log, GNUNET_notification_context_create(), GNUNET_OK, GNUNET_PLUGIN_load(), GNUNET_SCHEDULER_add_now(), GNUNET_SCHEDULER_add_shutdown(), GNUNET_STATISTICS_create(), GSN_cfg, GSN_database, monitor_nc, return_orphaned, and statistics.

Here is the call graph for this function:

◆ GNUNET_SERVICE_MAIN()

Variable Documentation

◆ nick_cache

struct NickCache nick_cache[16]
static

We cache nick records to reduce DB load.

Definition at line 326 of file gnunet-service-namestore.c.

Referenced by cache_nick(), and get_nick_record().

◆ zero

◆ GSN_cfg

const struct GNUNET_CONFIGURATION_Handle* GSN_cfg
static

Configuration handle.

Definition at line 336 of file gnunet-service-namestore.c.

Referenced by client_connect_cb(), and run().

◆ statistics

◆ db_lib_name

char* db_lib_name
static

Name of the database plugin.

Definition at line 346 of file gnunet-service-namestore.c.

Referenced by cleanup_task(), client_connect_cb(), and run().

◆ GSN_database

struct GNUNET_NAMESTORE_PluginFunctions* GSN_database

Database handle for service.

Definition at line 351 of file gnunet-service-namestore.c.

Referenced by cleanup_task(), get_nick_record(), and run().

◆ monitor_head

struct ZoneMonitor* monitor_head
static

First active zone monitor.

Definition at line 357 of file gnunet-service-namestore.c.

Referenced by client_disconnect_cb(), handle_monitor_next(), handle_monitor_start(), and handle_record_store().

◆ monitor_tail

struct ZoneMonitor* monitor_tail
static

Last active zone monitor.

Definition at line 362 of file gnunet-service-namestore.c.

Referenced by client_disconnect_cb(), and handle_monitor_start().

◆ sa_head

struct StoreActivity* sa_head
static

Head of DLL of monitor-blocked store activities.

Definition at line 367 of file gnunet-service-namestore.c.

Referenced by client_disconnect_cb(), free_store_activity(), handle_record_store(), and monitor_unblock().

◆ sa_tail

struct StoreActivity* sa_tail
static

Tail of DLL of monitor-blocked store activities.

Definition at line 372 of file gnunet-service-namestore.c.

Referenced by free_store_activity(), and handle_record_store().

◆ monitor_nc

struct GNUNET_NotificationContext* monitor_nc
static

Notification context shared by all monitors.

Definition at line 377 of file gnunet-service-namestore.c.

Referenced by cleanup_task(), handle_monitor_start(), and run().

◆ return_orphaned

int return_orphaned
static

Returned orphaned records?

Definition at line 382 of file gnunet-service-namestore.c.

Referenced by run().