aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_namestore_plugin.h
blob: b27867f896d37795b7a7188c28de9cc3caacd04d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
/*
     This file is part of GNUnet
     (C) 2012 Christian Grothoff (and other contributing authors)

     GNUnet is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published
     by the Free Software Foundation; either version 2, or (at your
     option) any later version.

     GNUnet is distributed in the hope that it will be useful, but
     WITHOUT ANY WARRANTY; without even the implied warranty of
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     General Public License for more details.

     You should have received a copy of the GNU General Public License
     along with GNUnet; see the file COPYING.  If not, write to the
     Free Software Foundation, Inc., 59 Temple Place - Suite 330,
     Boston, MA 02111-1307, USA.
*/

/**
 * @file include/gnunet_namestore_plugin.h
 * @brief plugin API for the namestore database backend
 * @author Christian Grothoff
 */
#ifndef GNUNET_NAMESTORE_PLUGIN_H
#define GNUNET_NAMESTORE_PLUGIN_H

#include "gnunet_common.h"
#include "gnunet_util_lib.h"
#include "gnunet_namestore_service.h"

#ifdef __cplusplus
extern "C"
{
#if 0                           /* keep Emacsens' auto-indent happy */
}
#endif
#endif


/**
 * Function called by for each matching record.
 *
 * @param cls closure
 * @param zone_key public key of the zone
 * @param expire when does the corresponding block in the DHT expire (until
 *               when should we never do a DHT lookup for the same name again)?
 * @param name name that is being mapped (at most 255 characters long)
 * @param rd_count number of entries in 'rd' array
 * @param rd array of records with data to store
 * @param signature signature of the record block, NULL if signature is unavailable (i.e. 
 *        because the user queried for a particular record type only)
 */
typedef void (*GNUNET_NAMESTORE_RecordIterator) (void *cls,
						 const struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded *zone_key,
						 struct GNUNET_TIME_Absolute expire,
						 const char *name,
						 unsigned int rd_len,
						 const struct GNUNET_NAMESTORE_RecordData *rd,
						 const struct GNUNET_CRYPTO_RsaSignature *signature);


/**
 * @brief struct returned by the initialization function of the plugin
 */
struct GNUNET_NAMESTORE_PluginFunctions
{

  /**
   * Closure to pass to all plugin functions.
   */
  void *cls;

  /**
   * Store a record in the datastore.  Removes any existing record in the
   * same zone with the same name.
   *
   * @param cls closure (internal context for the plugin)
   * @param zone_key public key of the zone
   * @param expire when does the corresponding block in the DHT expire (until
   *               when should we never do a DHT lookup for the same name again)?
   * @param name name that is being mapped (at most 255 characters long)
   * @param rd_count number of entries in 'rd' array
   * @param rd array of records with data to store
   * @param signature signature of the record block, NULL if signature is unavailable (i.e. 
   *        because the user queried for a particular record type only)
   * @return GNUNET_OK on success, else GNUNET_SYSERR
   */
  int (*put_records) (void *cls, 
		      const struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded *zone_key,
		      struct GNUNET_TIME_Absolute expire,
		      const char *name,
		      unsigned int rd_len,
		      const struct GNUNET_NAMESTORE_RecordData *rd,
		      const struct GNUNET_CRYPTO_RsaSignature *signature);


  /**
   * Removes any existing record in the given zone with the same name.
   *
   * @param cls closure (internal context for the plugin)
   * @param zone hash of the public key of the zone
   * @param name name to remove (at most 255 characters long)
   * @return GNUNET_OK on success
   */
  int (*remove_records) (void *cls, 
			 const struct GNUNET_CRYPTO_ShortHashCode *zone,
			 const char *name);


  /**
   * Iterate over the results for a particular key and zone in the
   * datastore.  Will return at most one result to the iterator.
   *
   * @param cls closure (internal context for the plugin)
   * @param zone hash of public key of the zone, NULL to iterate over all zones
   * @param name name as '\0' terminated string, NULL to iterate over all records of the zone
   * @param offset offset in the list of all matching records
   * @param iter function to call with the result
   * @param iter_cls closure for iter
   * @return GNUNET_OK on success, GNUNET_NO if there were no results, GNUNET_SYSERR on error
   */
  int (*iterate_records) (void *cls, 
			  const struct GNUNET_CRYPTO_ShortHashCode *zone,
			  const char *name,
			  uint64_t offset,
			  GNUNET_NAMESTORE_RecordIterator iter, void *iter_cls);


  /**
   * Look for an existing PKEY delegation record for a given public key.
   * Returns at most one result to the iterator.
   *
   * @param cls closure (internal context for the plugin)
   * @param zone hash of public key of the zone to look up in, never NULL
   * @param value_zone hash of the public key of the target zone (value), never NULL
   * @param iter function to call with the result
   * @param iter_cls closure for iter
   * @return GNUNET_OK on success, GNUNET_NO if there were no results, GNUNET_SYSERR on error
   */
  int (*zone_to_name) (void *cls, 
		       const struct GNUNET_CRYPTO_ShortHashCode *zone,
		       const struct GNUNET_CRYPTO_ShortHashCode *value_zone,
		       GNUNET_NAMESTORE_RecordIterator iter, void *iter_cls);


  /**
   * Delete an entire zone (all records).  Not used in normal operation.
   *
   * @param cls closure (internal context for the plugin)
   * @param zone zone to delete
   */
  void (*delete_zone) (void *cls,
		       const struct GNUNET_CRYPTO_ShortHashCode *zone);


};


#if 0                           /* keep Emacsens' auto-indent happy */
{
#endif
#ifdef __cplusplus
}
#endif

/* end of gnunet_namestore_plugin.h */
#endif