aboutsummaryrefslogtreecommitdiff
path: root/src/namestore/gnunet-service-namestore.c
blob: 749552dcad5e4ca8e8741485105f4fe0e4b63706 (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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
/*
     This file is part of GNUnet.
     (C) 2012, 2013 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 3, 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 namestore/gnunet-service-namestore.c
 * @brief namestore for the GNUnet naming system
 * @author Matthias Wachs
 * @author Christian Grothoff
 */
#include "platform.h"
#include "gnunet_util_lib.h"
#include "gnunet_dnsparser_lib.h"
#include "gnunet_namestore_service.h"
#include "gnunet_namestore_plugin.h"
#include "gnunet_signatures.h"
#include "namestore.h"

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


/**
 * A namestore client
 */
struct NamestoreClient;


/**
 * A namestore iteration operation.
 */
struct ZoneIteration
{
  /**
   * Next element in the DLL
   */
  struct ZoneIteration *next;

  /**
   * Previous element in the DLL
   */
  struct ZoneIteration *prev;

  /**
   * Namestore client which intiated this zone iteration
   */
  struct NamestoreClient *client;

  /**
   * GNUNET_YES if we iterate over a specific zone
   * GNUNET_NO if we iterate over all zones
   */
  int has_zone;

  /**
   * Hash of the specific zone if 'has_zone' is GNUNET_YES,
   * othwerwise set to '\0'
   */
  struct GNUNET_CRYPTO_ShortHashCode zone;

  /**
   * The operation id fot the zone iteration in the response for the client
   */
  uint64_t request_id;

  /**
   * Offset of the zone iteration used to address next result of the zone
   * iteration in the store
   *
   * Initialy set to 0 in handle_iteration_start
   * Incremented with by every call to handle_iteration_next
   */
  uint32_t offset;

  /**
   * Which flags must be included
   */
  uint16_t must_have_flags;

  /**
   * Which flags must not be included
   */
  uint16_t must_not_have_flags;
};


/**
 * A namestore client
 */
struct NamestoreClient
{
  /**
   * Next element in the DLL
   */
  struct NamestoreClient *next;

  /**
   * Previous element in the DLL
   */
  struct NamestoreClient *prev;

  /**
   * The client
   */
  struct GNUNET_SERVER_Client *client;

  /**
   * Head of the DLL of
   * Zone iteration operations in progress initiated by this client
   */
  struct ZoneIteration *op_head;

  /**
   * Tail of the DLL of
   * Zone iteration operations in progress initiated by this client
   */
  struct ZoneIteration *op_tail;
};


/**
 * A container struct to store information belonging to a zone crypto key pair
 */
struct GNUNET_NAMESTORE_CryptoContainer
{
  /**
   * Filename where to store the container
   */
  char *filename;

  /**
   * Short hash of the zone's public key
   */
  struct GNUNET_CRYPTO_ShortHashCode zone;

  /**
   * Zone's private key
   */
  struct GNUNET_CRYPTO_EccPrivateKey *privkey;

};


/**
 * A namestore monitor.
 */
struct ZoneMonitor
{
  /**
   * Next element in the DLL
   */
  struct ZoneMonitor *next;

  /**
   * Previous element in the DLL
   */
  struct ZoneMonitor *prev;

  /**
   * Namestore client which intiated this zone monitor
   */
  struct GNUNET_SERVER_Client *client;

  /**
   * GNUNET_YES if we monitor over a specific zone
   * GNUNET_NO if we monitor all zones
   */
  int has_zone;

  /**
   * Hash of the specific zone if 'has_zone' is GNUNET_YES,
   * othwerwise set to '\0'
   */
  struct GNUNET_CRYPTO_ShortHashCode zone;

  /**
   * The operation id fot the zone iteration in the response for the client
   */
  uint64_t request_id;

  /**
   * Task active during initial iteration.
   */
  GNUNET_SCHEDULER_TaskIdentifier task;

  /**
   * Offset of the zone iteration used to address next result of the zone
   * iteration in the store
   *
   * Initialy set to 0 in handle_iteration_start
   * Incremented with by every call to handle_iteration_next
   */
  uint32_t offset;

};




/**
 * Configuration handle.
 */
static const struct GNUNET_CONFIGURATION_Handle *GSN_cfg;

/**
 * Database handle
 */
static struct GNUNET_NAMESTORE_PluginFunctions *GSN_database;

/**
 * Zonefile directory
 */
static char *zonefile_directory;

/**
 * Name of the database plugin
 */
static char *db_lib_name;

/**
 * Our notification context.
 */
static struct GNUNET_SERVER_NotificationContext *snc;

/**
 * Head of the Client DLL
 */
static struct NamestoreClient *client_head;

/**
 * Tail of the Client DLL
 */
static struct NamestoreClient *client_tail;

/**
 * Hashmap containing the zone keys this namestore has is authoritative for
 *
 * Keys are the GNUNET_CRYPTO_HashCode of the GNUNET_CRYPTO_ShortHashCode
 * The values are 'struct GNUNET_NAMESTORE_CryptoContainer *'
 */
static struct GNUNET_CONTAINER_MultiHashMap *zonekeys;

/**
 * First active zone monitor.
 */
static struct ZoneMonitor *monitor_head;

/**
 * Last active zone monitor.
 */
static struct ZoneMonitor *monitor_tail;

/**
 * Notification context shared by all monitors.
 */
static struct GNUNET_SERVER_NotificationContext *monitor_nc;


/**
 * Writes the encrypted private key of a zone in a file
 *
 * @param filename where to store the zone
 * @param c the crypto container containing private key of the zone
 * @return GNUNET_OK on success, GNUNET_SYSERR on failure
 */
static int
write_key_to_file (const char *filename, 
		   struct GNUNET_NAMESTORE_CryptoContainer *c)
{
  struct GNUNET_CRYPTO_EccPrivateKey *ret = c->privkey;
  struct GNUNET_DISK_FileHandle *fd;
  struct GNUNET_CRYPTO_ShortHashCode zone;
  struct GNUNET_CRYPTO_EccPublicKey pubkey;
  struct GNUNET_CRYPTO_EccPrivateKey *privkey;

  fd = GNUNET_DISK_file_open (filename, 
			      GNUNET_DISK_OPEN_WRITE | GNUNET_DISK_OPEN_CREATE | GNUNET_DISK_OPEN_FAILIFEXISTS, 
			      GNUNET_DISK_PERM_USER_READ | GNUNET_DISK_PERM_USER_WRITE);
  if ( (NULL == fd) && (EEXIST == errno) )
  {
    privkey = GNUNET_CRYPTO_ecc_key_create_from_file (filename);
    if (NULL == privkey)
    {
      GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
		  _("Failed to write zone key to file `%s': %s\n"),
		  filename,
		  _("file exists but reading key failed"));
      return GNUNET_SYSERR;
    }
    GNUNET_CRYPTO_ecc_key_get_public (privkey, &pubkey);
    GNUNET_CRYPTO_short_hash (&pubkey, 
			      sizeof (struct GNUNET_CRYPTO_EccPublicKey), 
			      &zone);
    GNUNET_CRYPTO_ecc_key_free (privkey);
    if (0 == memcmp (&zone, &c->zone, sizeof(zone)))
    {
      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
		  "File zone `%s' containing this key already exists\n", 
		  GNUNET_NAMESTORE_short_h2s (&zone));
      return GNUNET_OK;
    }
    GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
		_("Failed to write zone key to file `%s': %s\n"),
		filename,
		_("file exists with different key"));
    return GNUNET_OK;    
  }
  if (NULL == fd)
  {
    LOG_STRERROR_FILE (GNUNET_ERROR_TYPE_ERROR, "open", filename);
    return GNUNET_SYSERR;
  }
  if (GNUNET_YES != 
      GNUNET_DISK_file_lock (fd, 0, 
			     sizeof (struct GNUNET_CRYPTO_EccPrivateKey),
			     GNUNET_YES))
  {
    GNUNET_break (GNUNET_YES == GNUNET_DISK_file_close (fd));
    return GNUNET_SYSERR;
  }
  GNUNET_assert (sizeof (struct GNUNET_CRYPTO_EccPrivateKey) ==
		 GNUNET_DISK_file_write (fd, ret,
					 sizeof (struct GNUNET_CRYPTO_EccPrivateKey)));
  GNUNET_DISK_file_sync (fd);
  if (GNUNET_YES != 
      GNUNET_DISK_file_unlock (fd, 0, 
			       sizeof (struct GNUNET_CRYPTO_EccPrivateKey)))
    LOG_STRERROR_FILE (GNUNET_ERROR_TYPE_WARNING, "fcntl", filename);
  GNUNET_assert (GNUNET_YES == GNUNET_DISK_file_close (fd));
  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
	      "Stored zonekey for zone `%s' in file `%s'\n",
	      GNUNET_NAMESTORE_short_h2s(&c->zone), c->filename);
  return GNUNET_OK;
}


/**
 * Write allthe given zone key to disk and then removes the entry from the
 * 'zonekeys' hash map.
 *
 * @param cls unused
 * @param key zone key
 * @param value 'struct GNUNET_NAMESTORE_CryptoContainer' containing the private
 *        key
 * @return GNUNET_OK to continue iteration
 */
static int
zone_to_disk_it (void *cls,
                 const struct GNUNET_HashCode *key,
                 void *value)
{
  struct GNUNET_NAMESTORE_CryptoContainer *c = value;

  if (NULL == c->filename)
    GNUNET_asprintf(&c->filename, 
		    "%s/%s.zkey", 
		    zonefile_directory, 
		    GNUNET_NAMESTORE_short_h2s (&c->zone));
  (void) write_key_to_file(c->filename, c);
  GNUNET_assert (GNUNET_OK == GNUNET_CONTAINER_multihashmap_remove (zonekeys, key, value));
  GNUNET_CRYPTO_ecc_key_free (c->privkey);
  GNUNET_free (c->filename);
  GNUNET_free (c);
  return GNUNET_OK;
}


/**
 * Add the given private key to the set of private keys
 * this namestore can use to sign records when needed.
 *
 * @param pkey private key to add to our list (reference will
 *        be taken over or freed and should not be used afterwards)
 */
static void
learn_private_key (struct GNUNET_CRYPTO_EccPrivateKey *pkey)
{
  struct GNUNET_CRYPTO_EccPublicKey pub;
  struct GNUNET_HashCode long_hash;
  struct GNUNET_CRYPTO_ShortHashCode pubkey_hash;
  struct GNUNET_NAMESTORE_CryptoContainer *cc;

  GNUNET_CRYPTO_ecc_key_get_public (pkey, &pub);
  GNUNET_CRYPTO_short_hash (&pub,
			    sizeof (struct GNUNET_CRYPTO_EccPublicKey),
			    &pubkey_hash);
  GNUNET_CRYPTO_short_hash_double (&pubkey_hash, &long_hash);

  if (GNUNET_NO != GNUNET_CONTAINER_multihashmap_contains(zonekeys, &long_hash))
  {
    GNUNET_CRYPTO_ecc_key_free (pkey);
    return;
  }  
  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
	      "Received new private key for zone `%s'\n",
	      GNUNET_NAMESTORE_short_h2s(&pubkey_hash));
  cc = GNUNET_malloc (sizeof (struct GNUNET_NAMESTORE_CryptoContainer));
  cc->privkey = pkey;
  cc->zone = pubkey_hash;
  GNUNET_assert (GNUNET_YES ==
		 GNUNET_CONTAINER_multihashmap_put(zonekeys, &long_hash, cc, 
						   GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));  
}


/**
 * Returns the expiration time of the given block of records. The block
 * expiration time is the expiration time of the block with smallest
 * expiration time.
 *
 * @param rd_count number of records given in 'rd'
 * @param rd array of records
 * @return absolute expiration time
 */
static struct GNUNET_TIME_Absolute
get_block_expiration_time (unsigned int rd_count, const struct GNUNET_NAMESTORE_RecordData *rd)
{
  unsigned int c;
  struct GNUNET_TIME_Absolute expire;
  struct GNUNET_TIME_Absolute at;
  struct GNUNET_TIME_Relative rt;

  if (NULL == rd)
    return GNUNET_TIME_UNIT_ZERO_ABS;
  expire = GNUNET_TIME_UNIT_FOREVER_ABS;
  for (c = 0; c < rd_count; c++)  
  {
    if (0 != (rd[c].flags & GNUNET_NAMESTORE_RF_RELATIVE_EXPIRATION))
    {
      rt.rel_value_us = rd[c].expiration_time;
      at = GNUNET_TIME_relative_to_absolute (rt);
    }
    else
    {
      at.abs_value_us = rd[c].expiration_time;
    }
    expire = GNUNET_TIME_absolute_min (at, expire);  
  }
  return expire;
}


/**
 * Task run during shutdown.
 *
 * @param cls unused
 * @param tc unused
 */
static void
cleanup_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
{
  struct ZoneIteration *no;
  struct NamestoreClient *nc;

  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Stopping namestore service\n");
  if (NULL != snc)
  {
    GNUNET_SERVER_notification_context_destroy (snc);
    snc = NULL;
  }
  if (NULL != zonekeys)
  {
    GNUNET_CONTAINER_multihashmap_iterate (zonekeys, &zone_to_disk_it, NULL);
    GNUNET_CONTAINER_multihashmap_destroy (zonekeys);
    zonekeys = NULL;
  }
  while (NULL != (nc = client_head))
  {
    while (NULL != (no = nc->op_head))
    {
      GNUNET_CONTAINER_DLL_remove (nc->op_head, nc->op_tail, no);
      GNUNET_free (no);
    }
    GNUNET_CONTAINER_DLL_remove (client_head, client_tail, nc);
    GNUNET_free (nc);
  }
  GNUNET_break (NULL == GNUNET_PLUGIN_unload (db_lib_name, GSN_database));
  GNUNET_free (db_lib_name);
  db_lib_name = NULL;
  GNUNET_free_non_null (zonefile_directory);
  zonefile_directory = NULL;
  if (NULL != monitor_nc)
  {
    GNUNET_SERVER_notification_context_destroy (monitor_nc);
    monitor_nc = NULL;
  }
}


/**
 * Lookup our internal data structure for a given client.
 *
 * @param client server client handle to use for the lookup
 * @return our internal structure for the client, NULL if
 *         we do not have any yet
 */
static struct NamestoreClient *
client_lookup (struct GNUNET_SERVER_Client *client)
{
  struct NamestoreClient *nc;

  GNUNET_assert (NULL != client);
  for (nc = client_head; NULL != nc; nc = nc->next)  
    if (client == nc->client)
      return nc;  
  return NULL;
}


/**
 * Called whenever a client is disconnected.
 * Frees our resources associated with that client.
 *
 * @param cls closure
 * @param client identification of the client
 */
static void
client_disconnect_notification (void *cls, 
				struct GNUNET_SERVER_Client *client)
{
  struct ZoneIteration *no;
  struct NamestoreClient *nc;
  struct ZoneMonitor *zm;

  if (NULL == client)
    return;
  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
	      "Client %p disconnected\n", 
	      client);
  if (NULL == (nc = client_lookup (client)))
    return;
  while (NULL != (no = nc->op_head))
  {
    GNUNET_CONTAINER_DLL_remove (nc->op_head, nc->op_tail, no);
    GNUNET_free (no);
  }
  GNUNET_CONTAINER_DLL_remove (client_head, client_tail, nc);
  GNUNET_free (nc);
  for (zm = monitor_head; NULL != zm; zm = zm->next)
  {
    if (client == zm->client)
    {
      GNUNET_CONTAINER_DLL_remove (monitor_head,
				   monitor_tail,
				   zm);
      if (GNUNET_SCHEDULER_NO_TASK != zm->task)
      {
	GNUNET_SCHEDULER_cancel (zm->task);
	zm->task = GNUNET_SCHEDULER_NO_TASK;
      }
      GNUNET_free (zm);
      break;
    }
  }
}


/**
 * Handles a 'GNUNET_MESSAGE_TYPE_NAMESTORE_START' message
 *
 * @param cls unused
 * @param client GNUNET_SERVER_Client sending the message
 * @param message unused
 */
static void
handle_start (void *cls,
              struct GNUNET_SERVER_Client *client,
              const struct GNUNET_MessageHeader *message)
{
  struct NamestoreClient *nc;

  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
	      "Client %p connected\n", client);
  if (NULL != client_lookup (client))
  {
    GNUNET_break (0);
    GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
    return;
  }
  nc = GNUNET_malloc (sizeof (struct NamestoreClient));
  nc->client = client;
  GNUNET_SERVER_notification_context_add (snc, client);
  GNUNET_CONTAINER_DLL_insert (client_head, client_tail, nc);
  GNUNET_SERVER_receive_done (client, GNUNET_OK);
}


/**
 * Context for name lookups passed from 'handle_lookup_name' to
 * 'handle_lookup_name_it' as closure
 */
struct LookupNameContext
{
  /**
   * The client to send the response to
   */
  struct NamestoreClient *nc;

  /**
   * Requested zone
   */
  const struct GNUNET_CRYPTO_ShortHashCode *zone;

  /**
   * Requested name
   */
  const char *name;

  /**
   * Operation id for the name lookup
   */
  uint32_t request_id;

  /**
   * Requested specific record type
   */
  uint32_t record_type;
};


/**
 * A 'GNUNET_NAMESTORE_RecordIterator' for name lookups in handle_lookup_name
 *
 * @param cls a 'struct LookupNameContext *' with information about the request
 * @param zone_key zone key of the zone
 * @param expire expiration time
 * @param name name
 * @param rd_count number of records
 * @param rd array of records
 * @param signature signature
 */
static void
handle_lookup_name_it (void *cls,
		       const struct GNUNET_CRYPTO_EccPublicKey *zone_key,
		       struct GNUNET_TIME_Absolute expire,
		       const char *name,
		       unsigned int rd_count,
		       const struct GNUNET_NAMESTORE_RecordData *rd,
		       const struct GNUNET_CRYPTO_EccSignature *signature)
{
  struct LookupNameContext *lnc = cls;
  struct LookupNameResponseMessage *lnr_msg;
  struct GNUNET_NAMESTORE_RecordData *rd_selected;
  struct GNUNET_NAMESTORE_CryptoContainer *cc;
  struct GNUNET_CRYPTO_EccSignature *signature_new;
  struct GNUNET_TIME_Absolute e;
  struct GNUNET_TIME_Relative re;
  struct GNUNET_CRYPTO_ShortHashCode zone_key_hash;
  struct GNUNET_HashCode long_hash;
  char *rd_tmp;
  char *name_tmp;
  size_t rd_ser_len;
  size_t r_size;
  size_t name_len;
  int copied_elements;
  int contains_signature;
  int authoritative;
  int rd_modified;
  unsigned int c;

  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
	      "Found %u records under name `%s'\n",
	      rd_count,
	      name);
  authoritative = GNUNET_NO;
  signature_new = NULL;
  cc = NULL;
  if (NULL != zone_key) 
  {
    GNUNET_CRYPTO_short_hash (zone_key, 
			      sizeof (struct GNUNET_CRYPTO_EccPublicKey), 
			      &zone_key_hash);
    GNUNET_CRYPTO_short_hash_double (&zone_key_hash, &long_hash);
    if (NULL != (cc = GNUNET_CONTAINER_multihashmap_get (zonekeys, &long_hash)))   
    {
      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
		  "Am authoritative for zone `%s'\n",
		  GNUNET_NAMESTORE_short_h2s (&zone_key_hash));
      authoritative = GNUNET_YES;    
    }
  }

  copied_elements = 0;
  rd_modified = GNUNET_NO;
  rd_selected = NULL;
  /* count records to copy */
  for (c = 0; c < rd_count; c++)
  {
    if ( (GNUNET_YES == authoritative) &&
	 (GNUNET_YES ==
	  GNUNET_NAMESTORE_is_expired (&rd[c]) ) )
    {
      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
		  "Skipping expired record\n");
      continue; 
    }
    if ( (GNUNET_NAMESTORE_TYPE_ANY == lnc->record_type) || 
	 (rd[c].record_type == lnc->record_type) )
      copied_elements++; /* found matching record */
    else
    {
      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
		  "Skipping non-mtaching record\n");
      rd_modified = GNUNET_YES;
    }
  }
  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
	      "Found %u records with type %u for name `%s' in zone `%s'\n",
	      copied_elements, 
	      lnc->record_type, 
	      lnc->name, 
	      GNUNET_NAMESTORE_short_h2s(lnc->zone));
  if (copied_elements > 0)
  {
    rd_selected = GNUNET_malloc (copied_elements * sizeof (struct GNUNET_NAMESTORE_RecordData));
    copied_elements = 0;
    for (c = 0; c < rd_count; c++)
    {
      if ( (GNUNET_YES == authoritative) &&
	   (GNUNET_YES ==
	    GNUNET_NAMESTORE_is_expired (&rd[c])) )
	continue;
      if ( (GNUNET_NAMESTORE_TYPE_ANY == lnc->record_type) || 
	   (rd[c].record_type == lnc->record_type) )
      {
	if (0 != (rd[c].flags & GNUNET_NAMESTORE_RF_RELATIVE_EXPIRATION))
	{
	  GNUNET_break (GNUNET_YES == authoritative);
	  rd_modified = GNUNET_YES;
	  re.rel_value_us = rd[c].expiration_time;
	  e = GNUNET_TIME_relative_to_absolute (re);
	}
	else
	{
	  e.abs_value_us = rd[c].expiration_time;
	}
	/* found matching record, copy and convert flags to public format */
	rd_selected[copied_elements] = rd[c]; /* shallow copy! */
	rd_selected[copied_elements].expiration_time = e.abs_value_us;
	if (0 != (rd_selected[copied_elements].flags &
		  (GNUNET_NAMESTORE_RF_RELATIVE_EXPIRATION | GNUNET_NAMESTORE_RF_AUTHORITY)))
	{
	  rd_selected[copied_elements].flags &= ~ (GNUNET_NAMESTORE_RF_RELATIVE_EXPIRATION | 
				  GNUNET_NAMESTORE_RF_AUTHORITY);
	  rd_modified = GNUNET_YES;
	}
	copied_elements++;
      }
      else
      {
	rd_modified = GNUNET_YES;
      }
    }
  }
  else
    rd_selected = NULL;

  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
	      "Found %u matching records for name `%s' in zone `%s'\n",
	      copied_elements,
	      lnc->name, 
	      GNUNET_NAMESTORE_short_h2s (lnc->zone));
  contains_signature = GNUNET_NO;
  if (copied_elements > 0)
  {
    if (GNUNET_YES == authoritative)
    {
      GNUNET_assert (NULL != cc);
      e = get_block_expiration_time (rd_count, rd);
      signature_new = GNUNET_NAMESTORE_create_signature (cc->privkey, e, name, rd_selected, copied_elements);
      GNUNET_assert (NULL != signature_new);
      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
		  "Creating signature for name `%s' with %u records in zone `%s'\n",
		  name, 
		  copied_elements,
		  GNUNET_NAMESTORE_short_h2s(&zone_key_hash));
    }
    else
    {
      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
		  "Not authoritative, records modified is %d, have sig is %d\n",
		  rd_modified,
		  NULL != signature);
      if ((GNUNET_NO == rd_modified) && (NULL != signature))
	contains_signature = GNUNET_YES; /* returning all records, so include signature */
    }
  }

  rd_ser_len = GNUNET_NAMESTORE_records_get_size (copied_elements, rd_selected);
  name_len = (NULL == name) ? 0 : strlen(name) + 1;
  r_size = sizeof (struct LookupNameResponseMessage) +
           name_len +
           rd_ser_len;
  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
	      "Sending `%s' message\n", 
	      "NAMESTORE_LOOKUP_NAME_RESPONSE");
  lnr_msg = GNUNET_malloc (r_size);
  lnr_msg->gns_header.header.type = ntohs (GNUNET_MESSAGE_TYPE_NAMESTORE_LOOKUP_NAME_RESPONSE);
  lnr_msg->gns_header.header.size = ntohs (r_size);
  lnr_msg->gns_header.r_id = htonl (lnc->request_id);
  lnr_msg->rd_count = htons (copied_elements);
  lnr_msg->rd_len = htons (rd_ser_len);
  lnr_msg->name_len = htons (name_len);
  lnr_msg->expire = GNUNET_TIME_absolute_hton (get_block_expiration_time (copied_elements, 
									  rd_selected));
  name_tmp = (char *) &lnr_msg[1];
  memcpy (name_tmp, name, name_len);
  rd_tmp = &name_tmp[name_len];
  GNUNET_NAMESTORE_records_serialize (copied_elements, rd_selected, rd_ser_len, rd_tmp);
  if (rd_selected != rd)
    GNUNET_free_non_null (rd_selected);
  if (NULL != zone_key)
    lnr_msg->public_key = *zone_key;
  if ( (GNUNET_YES == authoritative) &&
       (copied_elements > 0) )
  {
    /* use new created signature */
    lnr_msg->contains_sig = htons (GNUNET_YES);
    GNUNET_assert (NULL != signature_new);
    lnr_msg->signature = *signature_new;
    GNUNET_free (signature_new);
  }
  else if (GNUNET_YES == contains_signature)
  {
    /* use existing signature */
    lnr_msg->contains_sig = htons (GNUNET_YES);
    GNUNET_assert (NULL != signature);
    lnr_msg->signature = *signature;
  }
  GNUNET_SERVER_notification_context_unicast (snc, lnc->nc->client, 
					      &lnr_msg->gns_header.header, 
					      GNUNET_NO);
  GNUNET_free (lnr_msg);
}


/**
 * Send an empty name response to indicate the end of the 
 * set of results to the client.
 *
 * @param nc notification context to use for sending
 * @param client destination of the empty response
 * @param request_id identification for the request
 */
static void
send_empty_response (struct GNUNET_SERVER_NotificationContext *nc,
		     struct GNUNET_SERVER_Client *client,
		     uint32_t request_id)
{
  struct LookupNameResponseMessage zir_end;

  memset (&zir_end, 0, sizeof (zir_end));
  zir_end.gns_header.header.type = htons (GNUNET_MESSAGE_TYPE_NAMESTORE_LOOKUP_NAME_RESPONSE);
  zir_end.gns_header.header.size = htons (sizeof (struct LookupNameResponseMessage));
  zir_end.gns_header.r_id = htonl(request_id);
  GNUNET_SERVER_notification_context_unicast (nc, 
					      client, 
					      &zir_end.gns_header.header, GNUNET_NO);
}


/**
 * Handles a 'GNUNET_MESSAGE_TYPE_NAMESTORE_LOOKUP_NAME' message
 *
 * @param cls unused
 * @param client GNUNET_SERVER_Client sending the message
 * @param message message of type 'struct LookupNameMessage'
 */
static void
handle_lookup_name (void *cls,
                    struct GNUNET_SERVER_Client *client,
                    const struct GNUNET_MessageHeader *message)
{
  const struct LookupNameMessage *ln_msg;
  struct LookupNameContext lnc;
  struct NamestoreClient *nc;
  size_t name_len;
  const char *name;
  uint32_t rid;
  uint32_t type;
  char *conv_name;
  int ret;

  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
	      "Received `%s' message\n", 
	      "NAMESTORE_LOOKUP_NAME");
  if (ntohs (message->size) < sizeof (struct LookupNameMessage))
  {
    GNUNET_break (0);
    GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
    return;
  }
  if (NULL == (nc = client_lookup(client)))
  {
    GNUNET_break (0);
    GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
    return;
  }
  ln_msg = (const struct LookupNameMessage *) message;
  rid = ntohl (ln_msg->gns_header.r_id);
  name_len = ntohl (ln_msg->name_len);
  type = ntohl (ln_msg->record_type);
  if ((0 == name_len) || (name_len > MAX_NAME_LEN))
  {
    GNUNET_break (0);
    GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
    return;
  }
  name = (const char *) &ln_msg[1];
  if ('\0' != name[name_len - 1])
  {
    GNUNET_break (0);
    GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
    return;
  }
  if (GNUNET_NAMESTORE_TYPE_ANY == type)
    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
		"Looking up all records for name `%s' in zone `%s'\n", 
		name, 
		GNUNET_NAMESTORE_short_h2s(&ln_msg->zone));
  else
    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
		"Looking up records with type %u for name `%s' in zone `%s'\n", 
		type, name, 
		GNUNET_NAMESTORE_short_h2s(&ln_msg->zone));

  conv_name = GNUNET_NAMESTORE_normalize_string (name);
  if (NULL == conv_name)
  {
    GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
		"Error converting name `%s'\n", name);
    return;
  }

  /* do the actual lookup */
  lnc.request_id = rid;
  lnc.nc = nc;
  lnc.record_type = type;
  lnc.name = conv_name;
  lnc.zone = &ln_msg->zone;
  if (GNUNET_SYSERR ==
      (ret = GSN_database->iterate_records (GSN_database->cls, 
					    &ln_msg->zone, conv_name, 0 /* offset */,
					    &handle_lookup_name_it, &lnc)))
  {
    /* internal error (in database plugin); might be best to just hang up on
       plugin rather than to signal that there are 'no' results, which 
       might also be false... */
    GNUNET_break (0); 
    GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
    GNUNET_free (conv_name);
    return;
  }  
  GNUNET_free (conv_name);
  if (0 == ret)
  {
    /* no records match at all, generate empty response */
    send_empty_response (snc, nc->client, rid);
  }
  GNUNET_SERVER_receive_done (client, GNUNET_OK);
}


/**
 * Generate a 'struct LookupNameResponseMessage' and send it to the
 * given client using the given notification context.
 *
 * @param nc notification context to use
 * @param client client to unicast to
 * @param request_id request ID to use
 * @param zone_key zone key of the zone
 * @param expire expiration time
 * @param name name
 * @param rd_count number of records
 * @param rd array of records
 * @param signature signature
 */
static void
send_lookup_response (struct GNUNET_SERVER_NotificationContext *nc,			
		      struct GNUNET_SERVER_Client *client,
		      uint32_t request_id,
		      const struct GNUNET_CRYPTO_EccPublicKey *zone_key,
		      struct GNUNET_TIME_Absolute expire,
		      const char *name,
		      unsigned int rd_count,
		      const struct GNUNET_NAMESTORE_RecordData *rd,
		      const struct GNUNET_CRYPTO_EccSignature *signature)
{
  struct LookupNameResponseMessage *zir_msg;
  size_t name_len;
  size_t rd_ser_len;
  size_t msg_size;
  char *name_tmp;
  char *rd_ser;

  name_len = strlen (name) + 1;
  rd_ser_len = GNUNET_NAMESTORE_records_get_size (rd_count, rd);  
  msg_size = sizeof (struct LookupNameResponseMessage) + name_len + rd_ser_len;

  zir_msg = GNUNET_malloc (msg_size);
  zir_msg->gns_header.header.type = htons (GNUNET_MESSAGE_TYPE_NAMESTORE_LOOKUP_NAME_RESPONSE);
  zir_msg->gns_header.header.size = htons (msg_size);
  zir_msg->gns_header.r_id = htonl (request_id);
  zir_msg->expire = GNUNET_TIME_absolute_hton (expire);
  zir_msg->contains_sig = htons ((NULL == signature) ? GNUNET_NO : GNUNET_YES);
  zir_msg->name_len = htons (name_len);
  zir_msg->rd_count = htons (rd_count);
  zir_msg->rd_len = htons (rd_ser_len);
  if (NULL != signature)
    zir_msg->signature = *signature;
  zir_msg->public_key = *zone_key;
  name_tmp = (char *) &zir_msg[1];
  memcpy (name_tmp, name, name_len);
  rd_ser = &name_tmp[name_len];
  GNUNET_NAMESTORE_records_serialize (rd_count, rd, rd_ser_len, rd_ser);
  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
	      "Sending `%s' message with size %u\n", 
	      "ZONE_ITERATION_RESPONSE",
	      msg_size);
  GNUNET_SERVER_notification_context_unicast (nc,
					      client, 
					      &zir_msg->gns_header.header,
					      GNUNET_NO);
  GNUNET_free (zir_msg);
}


/**
 * Handles a 'GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_PUT' message
 *
 * @param cls unused
 * @param client GNUNET_SERVER_Client sending the message
 * @param message message of type 'struct RecordPutMessage'
 */
static void
handle_record_put (void *cls,
                   struct GNUNET_SERVER_Client *client,
                   const struct GNUNET_MessageHeader *message)
{
  struct NamestoreClient *nc;
  const struct RecordPutMessage *rp_msg;
  struct GNUNET_TIME_Absolute expire;
  const struct GNUNET_CRYPTO_EccSignature *signature;
  struct RecordPutResponseMessage rpr_msg;
  struct GNUNET_CRYPTO_ShortHashCode zone_hash;
  size_t name_len;
  size_t msg_size;
  size_t msg_size_exp;
  const char *name;
  const char *rd_ser;
  char * conv_name;
  uint32_t rid;
  uint32_t rd_ser_len;
  uint32_t rd_count;
  int res;

  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
	      "Received `%s' message\n",
	      "NAMESTORE_RECORD_PUT");
  if (ntohs (message->size) < sizeof (struct RecordPutMessage))
  {
    GNUNET_break (0);
    GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
    return;
  }
  if (NULL == (nc = client_lookup (client)))
  {
    GNUNET_break (0);
    GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
    return;
  }
  rp_msg = (const struct RecordPutMessage *) message;
  rid = ntohl (rp_msg->gns_header.r_id);
  msg_size = ntohs (rp_msg->gns_header.header.size);
  name_len = ntohs (rp_msg->name_len);
  rd_count = ntohs (rp_msg->rd_count);
  rd_ser_len = ntohs (rp_msg->rd_len);
  if ((rd_count < 1) || (rd_ser_len < 1) || (name_len >= MAX_NAME_LEN) || (0 == name_len))
  {
    GNUNET_break (0);
    GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
    return;
  }
  msg_size_exp = sizeof (struct RecordPutMessage) + name_len + rd_ser_len;
  if (msg_size != msg_size_exp)
  {
    GNUNET_break (0);
    GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
    return;
  }
  name = (const char *) &rp_msg[1];
  if ('\0' != name[name_len -1])
  {
    GNUNET_break (0);
    GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
    return;
  }
  expire = GNUNET_TIME_absolute_ntoh (rp_msg->expire);
  signature = &rp_msg->signature;
  rd_ser = &name[name_len];
  struct GNUNET_NAMESTORE_RecordData rd[rd_count];

  if (GNUNET_OK !=
      GNUNET_NAMESTORE_records_deserialize (rd_ser_len, rd_ser, rd_count, rd))
  {
    GNUNET_break (0);
    GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
    return;
  }
  GNUNET_CRYPTO_short_hash (&rp_msg->public_key,
                            sizeof (rp_msg->public_key),
                            &zone_hash);

  conv_name = GNUNET_NAMESTORE_normalize_string (name);
  if (NULL == conv_name)
  {
      GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                  "Error converting name `%s'\n", name);
      return;
  }

  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
              "Putting %u records under name `%s' in zone `%s'\n",
              rd_count, conv_name,
              GNUNET_NAMESTORE_short_h2s (&zone_hash));
  res = GSN_database->put_records (GSN_database->cls,
				   &rp_msg->public_key,
				   expire,
				   conv_name,
				   rd_count, rd,
				   signature);
  if (GNUNET_OK == res)
  {
    struct ZoneMonitor *zm;

    for (zm = monitor_head; NULL != zm; zm = zm->next)    
      if ( (GNUNET_NO == zm->has_zone) ||
	   (0 == memcmp (&zone_hash, &zm->zone, sizeof (struct GNUNET_CRYPTO_ShortHashCode))) )      
	send_lookup_response (monitor_nc,
			      zm->client,
			      zm->request_id,
			      &rp_msg->public_key,
			      expire,
			      conv_name,
			      rd_count, rd,
			      signature);      
  }
  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
              "Putting record for name `%s': %s\n",
              conv_name,
              (GNUNET_OK == res) ? "OK" : "FAILED");
  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
	      "Sending `%s' message\n", 
	      "RECORD_PUT_RESPONSE");
  GNUNET_free (conv_name);
  rpr_msg.gns_header.header.type = htons (GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_PUT_RESPONSE);
  rpr_msg.gns_header.header.size = htons (sizeof (struct RecordPutResponseMessage));
  rpr_msg.gns_header.r_id = htonl (rid);
  rpr_msg.op_result = htonl (res);
  GNUNET_SERVER_notification_context_unicast (snc, 
					      nc->client, 
					      &rpr_msg.gns_header.header, 
					      GNUNET_NO);
  GNUNET_SERVER_receive_done (client, GNUNET_OK);
}


/**
 * Handles a 'GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_CREATE' message
 *
 * @param cls unused
 * @param client GNUNET_SERVER_Client sending the message
 * @param message message of type 'struct RecordCreateMessage'
 */
static void
handle_record_create (void *cls,
                      struct GNUNET_SERVER_Client *client,
                      const struct GNUNET_MessageHeader *message)
{
  static struct GNUNET_CRYPTO_EccSignature dummy_signature;
  struct NamestoreClient *nc;
  const struct RecordCreateMessage *rp_msg;
  struct GNUNET_CRYPTO_EccPrivateKey *pkey;
  struct RecordCreateResponseMessage rcr_msg;
  size_t name_len;
  size_t msg_size;
  size_t msg_size_exp;
  size_t rd_ser_len;
  uint32_t rid;
  const char *name_tmp;
  char *conv_name;
  const char *rd_ser;
  unsigned int rd_count;
  int res;
  struct GNUNET_CRYPTO_ShortHashCode pubkey_hash;
  struct GNUNET_CRYPTO_EccPublicKey pubkey;

  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
	      "Received `%s' message\n", "NAMESTORE_RECORD_CREATE");
  if (ntohs (message->size) < sizeof (struct RecordCreateMessage))
  {
    GNUNET_break (0);
    GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
    return;
  }
  if (NULL == (nc = client_lookup (client)))
  {
    GNUNET_break (0);
    GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
    return;
  }
  rp_msg = (const struct RecordCreateMessage *) message;
  rid = ntohl (rp_msg->gns_header.r_id);
  name_len = ntohs (rp_msg->name_len);
  msg_size = ntohs (message->size);
  rd_count = ntohs (rp_msg->rd_count);
  rd_ser_len = ntohs (rp_msg->rd_len);
  GNUNET_break (0 == ntohs (rp_msg->reserved));
  msg_size_exp = sizeof (struct RecordCreateMessage) + name_len + rd_ser_len;
  if (msg_size != msg_size_exp)
  {
    GNUNET_break (0);
    GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
    return;
  }
  if ((0 == name_len) || (name_len > MAX_NAME_LEN))
  {
    GNUNET_break (0);
    GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
    return;
  }
  name_tmp = (const char *) &rp_msg[1];
  rd_ser = &name_tmp[name_len];
  if ('\0' != name_tmp[name_len -1])
  {
    GNUNET_break (0);
    GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
    return;
  }
  pkey = GNUNET_new (struct GNUNET_CRYPTO_EccPrivateKey);
  memcpy (pkey, &rp_msg->private_key, sizeof (struct GNUNET_CRYPTO_EccPrivateKey));
  {
    struct GNUNET_NAMESTORE_RecordData rd[rd_count];

    if (GNUNET_OK !=
	GNUNET_NAMESTORE_records_deserialize (rd_ser_len, rd_ser, rd_count, rd))
    {
      GNUNET_break (0);
      GNUNET_CRYPTO_ecc_key_free (pkey);
      GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
      return;
    }

    /* Extracting and converting private key */
    GNUNET_CRYPTO_ecc_key_get_public (pkey, &pubkey);
    GNUNET_CRYPTO_short_hash (&pubkey,
			      sizeof (struct GNUNET_CRYPTO_EccPublicKey),
			      &pubkey_hash);
    learn_private_key (pkey);    
    conv_name = GNUNET_NAMESTORE_normalize_string (name_tmp);
    if (NULL == conv_name)
    {
      GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                  "Error converting name `%s'\n", name_tmp);
      GNUNET_CRYPTO_ecc_key_free (pkey);
      GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
      return;
    }
    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
		"Creating %u records for name `%s' in zone `%s'\n",
		(unsigned int) rd_count,
		conv_name,
		GNUNET_NAMESTORE_short_h2s (&pubkey_hash));
    if (0 == rd_count)
      res = GSN_database->remove_records (GSN_database->cls,
					  &pubkey_hash,
					  conv_name);
    else
      res = GSN_database->put_records (GSN_database->cls,
				       &pubkey,
				       GNUNET_TIME_absolute_ntoh (rp_msg->expire),
				       conv_name,
				       rd_count, rd,
				       &dummy_signature);
    if (GNUNET_OK == res)
    {
      struct ZoneMonitor *zm;
      
      for (zm = monitor_head; NULL != zm; zm = zm->next)    
	if ( (GNUNET_NO == zm->has_zone) ||
	     (0 == memcmp (&pubkey_hash, &zm->zone, sizeof (struct GNUNET_CRYPTO_ShortHashCode))) )      
	  send_lookup_response (monitor_nc,
				zm->client,
				zm->request_id,
				&pubkey,
				GNUNET_TIME_absolute_ntoh (rp_msg->expire),
				conv_name,
				rd_count, rd,
				&dummy_signature);      
    }    
    GNUNET_free (conv_name);
  }
  
  /* Send response */
  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
	      "Sending `%s' message\n", "RECORD_CREATE_RESPONSE");
  rcr_msg.gns_header.header.type = htons (GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_CREATE_RESPONSE);
  rcr_msg.gns_header.header.size = htons (sizeof (struct RecordCreateResponseMessage));
  rcr_msg.gns_header.r_id = htonl (rid);
  rcr_msg.op_result = htonl (res);
  GNUNET_SERVER_notification_context_unicast (snc, nc->client,
					      &rcr_msg.gns_header.header,
					      GNUNET_NO);
  GNUNET_SERVER_receive_done (client, GNUNET_OK);
}


/**
 * Context for record remove operations passed from 'handle_zone_to_name' to
 * 'handle_zone_to_name_it' as closure
 */
struct ZoneToNameCtx
{
  /**
   * Namestore client
   */
  struct NamestoreClient *nc;

  /**
   * Request id (to be used in the response to the client).
   */
  uint32_t rid;

  /**
   * Set to GNUNET_OK on success, GNUNET_SYSERR on error.  Note that
   * not finding a name for the zone still counts as a 'success' here,
   * as this field is about the success of executing the IPC protocol.
   */
  int success;
};


/**
 * Zone to name iterator
 *
 * @param cls struct ZoneToNameCtx *
 * @param zone_key the zone key
 * @param expire expiration date
 * @param name name
 * @param rd_count number of records
 * @param rd record data
 * @param signature signature
 */
static void
handle_zone_to_name_it (void *cls,
			const struct GNUNET_CRYPTO_EccPublicKey *zone_key,
			struct GNUNET_TIME_Absolute expire,
			const char *name,
			unsigned int rd_count,
			const struct GNUNET_NAMESTORE_RecordData *rd,
			const struct GNUNET_CRYPTO_EccSignature *signature)
{
  struct ZoneToNameCtx *ztn_ctx = cls;
  struct ZoneToNameResponseMessage *ztnr_msg;
  int16_t res;
  size_t name_len;
  size_t rd_ser_len;
  size_t msg_size;
  char *name_tmp;
  char *rd_tmp;
  char *sig_tmp;

  if ((NULL != zone_key) && (NULL != name))
  {
    /* found result */
    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
		"Found result: name `%s' has %u records\n", 
		name, rd_count);
    res = GNUNET_YES;
    name_len = strlen (name) + 1;
  }
  else
  {
    /* no result found */
    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
		"Found no results\n");
    res = GNUNET_NO;
    name_len = 0;
  }
  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
	      "Sending `%s' message\n", 
	      "ZONE_TO_NAME_RESPONSE");
  rd_ser_len = GNUNET_NAMESTORE_records_get_size (rd_count, rd);
  msg_size = sizeof (struct ZoneToNameResponseMessage) + name_len + rd_ser_len;
  if (NULL != signature)
    msg_size += sizeof (struct GNUNET_CRYPTO_EccSignature);
  if (msg_size >= GNUNET_SERVER_MAX_MESSAGE_SIZE)
  {
    GNUNET_break (0);
    ztn_ctx->success = GNUNET_SYSERR;
    return;
  }
  ztnr_msg = GNUNET_malloc (msg_size);
  ztnr_msg->gns_header.header.type = htons (GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_TO_NAME_RESPONSE);
  ztnr_msg->gns_header.header.size = htons (msg_size);
  ztnr_msg->gns_header.r_id = htonl (ztn_ctx->rid);
  ztnr_msg->res = htons (res);
  ztnr_msg->rd_len = htons (rd_ser_len);
  ztnr_msg->rd_count = htons (rd_count);
  ztnr_msg->name_len = htons (name_len);
  ztnr_msg->expire = GNUNET_TIME_absolute_hton (expire);
  if (NULL != zone_key)
    ztnr_msg->zone_key = *zone_key;
  name_tmp = (char *) &ztnr_msg[1];
  if (NULL != name)
    memcpy (name_tmp, name, name_len);
  rd_tmp = &name_tmp[name_len];
  GNUNET_NAMESTORE_records_serialize (rd_count, rd, rd_ser_len, rd_tmp);
  sig_tmp = &rd_tmp[rd_ser_len];
  if (NULL != signature)
    memcpy (sig_tmp, signature, sizeof (struct GNUNET_CRYPTO_EccSignature));
  ztn_ctx->success = GNUNET_OK;
  GNUNET_SERVER_notification_context_unicast (snc, ztn_ctx->nc->client,
					      &ztnr_msg->gns_header.header,
					      GNUNET_NO);
  GNUNET_free (ztnr_msg);
}


/**
 * Handles a 'GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_TO_NAME' message
 *
 * @param cls unused
 * @param client GNUNET_SERVER_Client sending the message
 * @param message message of type 'struct ZoneToNameMessage'
 */
static void
handle_zone_to_name (void *cls,
                     struct GNUNET_SERVER_Client *client,
                     const struct GNUNET_MessageHeader *message)
{
  struct NamestoreClient *nc;
  const struct ZoneToNameMessage *ztn_msg;
  struct ZoneToNameCtx ztn_ctx;

  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
	      "Received `%s' message\n",
	      "ZONE_TO_NAME");
  ztn_msg = (const struct ZoneToNameMessage *) message;
  if (NULL == (nc = client_lookup(client)))
  {
    GNUNET_break (0);
    GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
    return;
  }
  ztn_ctx.rid = ntohl (ztn_msg->gns_header.r_id);
  ztn_ctx.nc = nc;
  ztn_ctx.success = GNUNET_SYSERR;
  if (GNUNET_SYSERR ==
      GSN_database->zone_to_name (GSN_database->cls, 
				  &ztn_msg->zone,
				  &ztn_msg->value_zone,
				  &handle_zone_to_name_it, &ztn_ctx))
  {
    /* internal error, hang up instead of signalling something
       that might be wrong */
    GNUNET_break (0);
    GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
    return;    
  }
  GNUNET_SERVER_receive_done (client, ztn_ctx.success);
}


/**
 * Zone iteration processor result
 */
enum ZoneIterationResult
{
  /**
   * Found records, but all records were filtered
   * Continue to iterate
   */
  IT_ALL_RECORDS_FILTERED = -1,

  /**
   * Found records,
   * Continue to iterate with next iteration_next call
   */
  IT_SUCCESS_MORE_AVAILABLE = 0,

  /**
   * Iteration complete
   */
  IT_SUCCESS_NOT_MORE_RESULTS_AVAILABLE = 1
};


/**
 * Context for record remove operations passed from
 * 'run_zone_iteration_round' to 'zone_iteraterate_proc' as closure
 */
struct ZoneIterationProcResult
{
  /**
   * The zone iteration handle
   */
  struct ZoneIteration *zi;

  /**
   * Iteration result: iteration done?
   * IT_SUCCESS_MORE_AVAILABLE:  if there may be more results overall but
   * we got one for now and have sent it to the client
   * IT_SUCCESS_NOT_MORE_RESULTS_AVAILABLE: if there are no further results,
   * IT_ALL_RECORDS_FILTERED: if all results were filtered so far.
   */
  int res_iteration_finished;

};


/**
 * Process results for zone iteration from database
 *
 * @param cls struct ZoneIterationProcResult *proc
 * @param zone_key the zone key
 * @param expire expiration time
 * @param name name
 * @param rd_count number of records for this name
 * @param rd record data
 * @param signature block signature
 */
static void
zone_iteraterate_proc (void *cls,
                       const struct GNUNET_CRYPTO_EccPublicKey *zone_key,
                       struct GNUNET_TIME_Absolute expire,
                       const char *name,
                       unsigned int rd_count,
                       const struct GNUNET_NAMESTORE_RecordData *rd,
                       const struct GNUNET_CRYPTO_EccSignature *signature)
{
  struct ZoneIterationProcResult *proc = cls;
  struct GNUNET_NAMESTORE_RecordData rd_filtered[rd_count];
  struct GNUNET_CRYPTO_EccSignature *new_signature = NULL;
  struct GNUNET_NAMESTORE_CryptoContainer *cc;
  struct GNUNET_HashCode long_hash;
  struct GNUNET_CRYPTO_ShortHashCode zone_hash;
  struct GNUNET_TIME_Relative rt;
  unsigned int rd_count_filtered;
  unsigned int c;

  proc->res_iteration_finished = IT_SUCCESS_MORE_AVAILABLE;
  if ((NULL == zone_key) && (NULL == name))
  {
    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
		"Iteration done\n");
    proc->res_iteration_finished = IT_SUCCESS_NOT_MORE_RESULTS_AVAILABLE;
    return;
  }
  if ((NULL == zone_key) || (NULL == name)) 
  {
    /* what is this!? should never happen */
    GNUNET_break (0);
    return;    
  }
  rd_count_filtered  = 0;
  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
	      "Received result for zone iteration: `%s'\n", 
	      name);
  for (c = 0; c < rd_count; c++)
  {
    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
		"Record %u has flags: %x must have flags are %x, must not have flags are %x\n",
		c, rd[c].flags, 
		proc->zi->must_have_flags,
		proc->zi->must_not_have_flags);
    /* Checking must have flags, except 'relative-expiration' which is a special flag */
    if ((rd[c].flags & proc->zi->must_have_flags & (~GNUNET_NAMESTORE_RF_RELATIVE_EXPIRATION))
	!= (proc->zi->must_have_flags & (~ GNUNET_NAMESTORE_RF_RELATIVE_EXPIRATION)))
    {
      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Record %u lacks 'must-have' flags: Not included\n", c);
      continue;
    }
    /* Checking must-not-have flags */
    if (0 != (rd[c].flags & proc->zi->must_not_have_flags))
    {
      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
		  "Record %u has 'must-not-have' flags: Not included\n", c);
      continue;
    }
    rd_filtered[rd_count_filtered] = rd[c];
    /* convert relative to absolute expiration time unless explicitly requested otherwise */
    if ( (0 == (proc->zi->must_have_flags & GNUNET_NAMESTORE_RF_RELATIVE_EXPIRATION)) &&
	 (0 != (rd[c].flags & GNUNET_NAMESTORE_RF_RELATIVE_EXPIRATION)) )
    {
      /* should convert relative-to-absolute expiration time */
      rt.rel_value_us = rd[c].expiration_time;
      rd_filtered[c].expiration_time = GNUNET_TIME_relative_to_absolute (rt).abs_value_us;
      rd_filtered[c].flags &= ~ GNUNET_NAMESTORE_RF_RELATIVE_EXPIRATION;
    }
    /* we NEVER keep the 'authority' flag */
    rd_filtered[c].flags &= ~ GNUNET_NAMESTORE_RF_AUTHORITY;
    rd_count_filtered++;    
  }
  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
	      "Included %u of %u records\n", 
	      rd_count_filtered, rd_count);

  signature = NULL;    
  if ( (rd_count_filtered > 0) &&
       (0 == (proc->zi->must_have_flags & GNUNET_NAMESTORE_RF_RELATIVE_EXPIRATION)) )
  {
    /* compute / obtain signature, but only if we (a) have records and (b) expiration times were 
       converted to absolute expiration times */
    GNUNET_CRYPTO_short_hash (zone_key, 
			      sizeof (struct GNUNET_CRYPTO_EccPublicKey),
			      &zone_hash);
    GNUNET_CRYPTO_short_hash_double (&zone_hash, &long_hash);
    if (NULL != (cc = GNUNET_CONTAINER_multihashmap_get (zonekeys, &long_hash)))
    {
      expire = get_block_expiration_time (rd_count_filtered, rd_filtered);


      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
		  "Creating signature for `%s' in zone `%s' with %u records and expiration %s\n",
		  name, GNUNET_NAMESTORE_short_h2s(&zone_hash), 
		  rd_count_filtered,
		  GNUNET_STRINGS_absolute_time_to_string (expire));
      /* TODO 1) AB: New publishing
       * - Create HDKF(Q,i)
       * - Encrypt record block R with HKDF: HDKF(Q,i) == E(R)
       * - Create block |e,E(R)|
       * - Create d: h * x mod n == hash (name, zone)  * c->privkey mod n
       * - Create ECC signature S_d (e, E_HKDF(Q,i))
       *
       * Return: zone_key , expire, name, rd_count_filtered, new signature S_d
       *
       * Q: zone's public key
       * x: zone's private key
       * i: name
       * d: derived secret
       *
       * - how do I get n:
       * Extract from private key s_expression
       * Question
       * - how do I multiply h * x?
       */

      new_signature = GNUNET_NAMESTORE_create_signature (cc->privkey, expire, name, 
							 rd_filtered, rd_count_filtered);
      GNUNET_assert (NULL != new_signature);
      signature = new_signature;
    }
    else if (rd_count_filtered == rd_count)
    {
      if (NULL != signature)
	{
	  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
		      "Using provided signature for `%s' in zone `%s' with %u records and expiration %s\n",
		      name, GNUNET_NAMESTORE_short_h2s (&zone_hash), rd_count_filtered, 
		      GNUNET_STRINGS_absolute_time_to_string (expire));
	  return;
	}    
    }
  }
  if (0 == rd_count_filtered)
  {
    /* After filtering records there are no records left to return */
    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "No records to transmit\n");
    proc->res_iteration_finished = IT_ALL_RECORDS_FILTERED;
    return;
  }

  if (GNUNET_YES == proc->zi->has_zone)
    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
		"Sending name `%s' for iteration over zone `%s'\n",
		name, GNUNET_NAMESTORE_short_h2s(&proc->zi->zone));
  else
    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
		"Sending name `%s' for iteration over all zones\n",
		name);
  send_lookup_response (snc,
			proc->zi->client->client,
			proc->zi->request_id,
			zone_key,
			expire,
			name,
			rd_count_filtered,
			rd_filtered,
			signature);
  proc->res_iteration_finished = IT_SUCCESS_MORE_AVAILABLE;
  GNUNET_free_non_null (new_signature);
}


/**
 * Perform the next round of the zone iteration.
 *
 * @param zi zone iterator to process
 */
static void
run_zone_iteration_round (struct ZoneIteration *zi)
{
  struct ZoneIterationProcResult proc;
  struct GNUNET_CRYPTO_ShortHashCode *zone;
  int ret;

  memset (&proc, 0, sizeof (proc));
  proc.zi = zi;
  if (GNUNET_YES == zi->has_zone)
    zone = &zi->zone;
  else
    zone = NULL;
  proc.res_iteration_finished = IT_ALL_RECORDS_FILTERED;
  while (IT_ALL_RECORDS_FILTERED == proc.res_iteration_finished)
  {
    if (GNUNET_SYSERR ==
	(ret = GSN_database->iterate_records (GSN_database->cls, zone, NULL, 
					      zi->offset, 
					      &zone_iteraterate_proc, &proc)))
    {
      GNUNET_break (0);
      break;
    }
    if (GNUNET_NO == ret)
      proc.res_iteration_finished = IT_SUCCESS_NOT_MORE_RESULTS_AVAILABLE;
    zi->offset++;
  }
  if (IT_SUCCESS_MORE_AVAILABLE == proc.res_iteration_finished)
  {
    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                "More results available\n");
    return; /* more results later */
  }
  if (GNUNET_YES == zi->has_zone)
    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
		"No more results for zone `%s'\n", 
		GNUNET_NAMESTORE_short_h2s(&zi->zone));
  else
    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
		"No more results for all zones\n");
  send_empty_response (snc, zi->client->client, zi->request_id);
  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
	      "Removing zone iterator\n");
  GNUNET_CONTAINER_DLL_remove (zi->client->op_head, 
			       zi->client->op_tail,
			       zi);
  GNUNET_free (zi);
}


/**
 * Handles a 'GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_ITERATION_START' message
 *
 * @param cls unused
 * @param client GNUNET_SERVER_Client sending the message
 * @param message message of type 'struct ZoneIterationStartMessage'
 */
static void
handle_iteration_start (void *cls,
                        struct GNUNET_SERVER_Client *client,
                        const struct GNUNET_MessageHeader *message)
{
  static struct GNUNET_CRYPTO_ShortHashCode zeros;
  const struct ZoneIterationStartMessage *zis_msg;
  struct NamestoreClient *nc;
  struct ZoneIteration *zi;

  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received `%s' message\n", "ZONE_ITERATION_START");
  if (NULL == (nc = client_lookup (client)))
  {
    GNUNET_break (0);
    GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
    return;
  }
  zis_msg = (const struct ZoneIterationStartMessage *) message;
  zi = GNUNET_new (struct ZoneIteration);
  zi->request_id = ntohl (zis_msg->gns_header.r_id);
  zi->offset = 0;
  zi->client = nc;
  zi->must_have_flags = ntohs (zis_msg->must_have_flags);
  zi->must_not_have_flags = ntohs (zis_msg->must_not_have_flags);
  if (0 == memcmp (&zeros, &zis_msg->zone, sizeof (zeros)))
  {
    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Starting to iterate over all zones\n");
    zi->zone = zis_msg->zone;
    zi->has_zone = GNUNET_NO;
  }
  else
  {
    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
		"Starting to iterate over zone `%s'\n", GNUNET_NAMESTORE_short_h2s (&zis_msg->zone));
    zi->zone = zis_msg->zone;
    zi->has_zone = GNUNET_YES;
  }
  GNUNET_CONTAINER_DLL_insert (nc->op_head, nc->op_tail, zi);
  run_zone_iteration_round (zi);
  GNUNET_SERVER_receive_done (client, GNUNET_OK);
}


/**
 * Handles a 'GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_ITERATION_STOP' message
 *
 * @param cls unused
 * @param client GNUNET_SERVER_Client sending the message
 * @param message message of type 'struct ZoneIterationStopMessage'
 */
static void
handle_iteration_stop (void *cls,
                       struct GNUNET_SERVER_Client *client,
                       const struct GNUNET_MessageHeader *message)
{
  struct NamestoreClient *nc;
  struct ZoneIteration *zi;
  const struct ZoneIterationStopMessage *zis_msg;
  uint32_t rid;

  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
	      "Received `%s' message\n",
	      "ZONE_ITERATION_STOP");
  if (NULL == (nc = client_lookup(client)))
  {
    GNUNET_break (0);
    GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
    return;
  }
  zis_msg = (const struct ZoneIterationStopMessage *) message;
  rid = ntohl (zis_msg->gns_header.r_id);
  for (zi = nc->op_head; NULL != zi; zi = zi->next)
    if (zi->request_id == rid)
      break;
  if (NULL == zi)
  {
    GNUNET_break (0);
    GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
    return;
  }
  GNUNET_CONTAINER_DLL_remove (nc->op_head, nc->op_tail, zi);
  if (GNUNET_YES == zi->has_zone)
    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
		"Stopped zone iteration for zone `%s'\n",
		GNUNET_NAMESTORE_short_h2s (&zi->zone));
  else
    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
		"Stopped zone iteration over all zones\n");
  GNUNET_free (zi);
  GNUNET_SERVER_receive_done (client, GNUNET_OK);
}


/**
 * Handles a 'GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_ITERATION_NEXT' message
 *
 * @param cls unused
 * @param client GNUNET_SERVER_Client sending the message
 * @param message message of type 'struct ZoneIterationNextMessage'
 */
static void
handle_iteration_next (void *cls,
                       struct GNUNET_SERVER_Client *client,
                       const struct GNUNET_MessageHeader *message)
{
  struct NamestoreClient *nc;
  struct ZoneIteration *zi;
  const struct ZoneIterationNextMessage *zis_msg;
  uint32_t rid;

  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received `%s' message\n", "ZONE_ITERATION_NEXT");
  if (NULL == (nc = client_lookup(client)))
  {
    GNUNET_break (0);
    GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
    return;
  }
  zis_msg = (const struct ZoneIterationNextMessage *) message;
  rid = ntohl (zis_msg->gns_header.r_id);
  for (zi = nc->op_head; NULL != zi; zi = zi->next)
    if (zi->request_id == rid)
      break;
  if (NULL == zi)
  {
    GNUNET_break (0);
    GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
    return;
  }
  run_zone_iteration_round (zi);
  GNUNET_SERVER_receive_done (client, GNUNET_OK);
}


/**
 * Load zone keys from directory by reading all .zkey files in this directory
 *
 * @param cls int * 'counter' to store the number of files found
 * @param filename directory to scan
 * @return GNUNET_OK to continue
 */
static int
zonekey_file_it (void *cls, const char *filename)
{
  unsigned int *counter = cls;
  struct GNUNET_CRYPTO_EccPrivateKey *pk;
  

  if ((NULL == filename) ||
      (NULL == strstr (filename, ".zkey")))
    return GNUNET_OK;
  pk = GNUNET_CRYPTO_ecc_key_create_from_file (filename);
  learn_private_key (pk);
  (*counter)++;
  return GNUNET_OK;
}


/**
 * Send 'sync' message to zone monitor, we're now in sync.
 *
 * @param zm monitor that is now in sync
 */ 
static void
monitor_sync (struct ZoneMonitor *zm)
{
  struct GNUNET_MessageHeader sync;

  sync.size = htons (sizeof (struct GNUNET_MessageHeader));
  sync.type = htons (GNUNET_MESSAGE_TYPE_NAMESTORE_MONITOR_SYNC);
  GNUNET_SERVER_notification_context_unicast (monitor_nc,
					      zm->client,
					      &sync,
					      GNUNET_NO);
}


/**
 * Obtain the next datum during the zone monitor's zone intiial iteration.
 *
 * @param cls zone monitor that does its initial iteration
 * @param tc scheduler context
 */
static void
monitor_next (void *cls,
	      const struct GNUNET_SCHEDULER_TaskContext *tc);


/**
 * A 'GNUNET_NAMESTORE_RecordIterator' for monitors.
 *
 * @param cls a 'struct ZoneMonitor *' with information about the monitor
 * @param zone_key zone key of the zone
 * @param expire expiration time
 * @param name name
 * @param rd_count number of records
 * @param rd array of records
 * @param signature signature
 */
static void
monitor_iterate_cb (void *cls,
		    const struct GNUNET_CRYPTO_EccPublicKey *zone_key,
		    struct GNUNET_TIME_Absolute expire,
		    const char *name,
		    unsigned int rd_count,
		    const struct GNUNET_NAMESTORE_RecordData *rd,
		    const struct GNUNET_CRYPTO_EccSignature *signature)
{
  struct ZoneMonitor *zm = cls;

  if (NULL == name)
  {
    /* finished with iteration */
    monitor_sync (zm);
    return;
  }
  send_lookup_response (monitor_nc,
			zm->client,
			zm->request_id,
			zone_key,
			expire,
			name,
			rd_count,
			rd,
			signature);
  zm->task = GNUNET_SCHEDULER_add_now (&monitor_next, zm);
}


/**
 * Handles a 'GNUNET_MESSAGE_TYPE_NAMESTORE_MONITOR_START' message
 *
 * @param cls unused
 * @param client GNUNET_SERVER_Client sending the message
 * @param message message of type 'struct ZoneMonitorStartMessage'
 */
static void
handle_monitor_start (void *cls,
		      struct GNUNET_SERVER_Client *client,
		      const struct GNUNET_MessageHeader *message)
{
  static struct GNUNET_CRYPTO_ShortHashCode zeros;
  const struct ZoneMonitorStartMessage *zis_msg;
  struct ZoneMonitor *zm;

  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
	      "Received `%s' message\n",
	      "ZONE_MONITOR_START");
  zis_msg = (const struct ZoneMonitorStartMessage *) message;
  zm = GNUNET_new (struct ZoneMonitor);
  zm->request_id = ntohl (zis_msg->gns_header.r_id);
  zm->offset = 0;
  zm->client = client; // FIXME: notify handler for disconnects, check monitors!
  if (0 == memcmp (&zeros, &zis_msg->zone, sizeof (zeros)))
  {
    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
		"Starting to monitor all zones\n");
    zm->zone = zis_msg->zone;
    zm->has_zone = GNUNET_NO;
  }
  else
  {
    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
		"Starting to monitor zone `%s'\n",
		GNUNET_NAMESTORE_short_h2s (&zis_msg->zone));
    zm->zone = zis_msg->zone;
    zm->has_zone = GNUNET_YES;
  }
  GNUNET_CONTAINER_DLL_insert (monitor_head, monitor_tail, zm);
  GNUNET_SERVER_client_mark_monitor (client);
  GNUNET_SERVER_disable_receive_done_warning (client);
  GNUNET_SERVER_notification_context_add (monitor_nc,
					  client);
  zm->task = GNUNET_SCHEDULER_add_now (&monitor_next, zm);  
}


/**
 * Obtain the next datum during the zone monitor's zone intiial iteration.
 *
 * @param cls zone monitor that does its initial iteration
 * @param tc scheduler context
 */
static void
monitor_next (void *cls,
	      const struct GNUNET_SCHEDULER_TaskContext *tc)
{
  struct ZoneMonitor *zm = cls;
  int ret;
  
  zm->task = GNUNET_SCHEDULER_NO_TASK;
  ret = GSN_database->iterate_records (GSN_database->cls,
				       (GNUNET_YES == zm->has_zone) ? &zm->zone : NULL,
				       NULL, zm->offset++,
				       &monitor_iterate_cb, zm);
  if (GNUNET_SYSERR == ret)
  {
    GNUNET_SERVER_client_disconnect (zm->client);
    return;
  }
  if (GNUNET_NO == ret)
  {
    /* empty zone */
    monitor_sync (zm);
    return;
  }
}


/**
 * Process namestore requests.
 *
 * @param cls closure
 * @param server the initialized server
 * @param cfg configuration to use
 */
static void
run (void *cls, struct GNUNET_SERVER_Handle *server,
     const struct GNUNET_CONFIGURATION_Handle *cfg)
{
  static const struct GNUNET_SERVER_MessageHandler handlers[] = {
    {&handle_start, NULL,
     GNUNET_MESSAGE_TYPE_NAMESTORE_START, sizeof (struct StartMessage)},
    {&handle_lookup_name, NULL,
     GNUNET_MESSAGE_TYPE_NAMESTORE_LOOKUP_NAME, 0},
    {&handle_record_put, NULL,
    GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_PUT, 0},
    {&handle_record_create, NULL,
     GNUNET_MESSAGE_TYPE_NAMESTORE_RECORD_CREATE, 0},
    {&handle_zone_to_name, NULL,
     GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_TO_NAME, sizeof (struct ZoneToNameMessage) },
    {&handle_iteration_start, NULL,
     GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_ITERATION_START, sizeof (struct ZoneIterationStartMessage) },
    {&handle_iteration_next, NULL,
     GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_ITERATION_NEXT, sizeof (struct ZoneIterationNextMessage) },
    {&handle_iteration_stop, NULL,
     GNUNET_MESSAGE_TYPE_NAMESTORE_ZONE_ITERATION_STOP, sizeof (struct ZoneIterationStopMessage) },
    {&handle_monitor_start, NULL,
     GNUNET_MESSAGE_TYPE_NAMESTORE_MONITOR_START, sizeof (struct ZoneMonitorStartMessage) },
    {NULL, NULL, 0, 0}
  };
  char *database;
  unsigned int counter;

  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Starting namestore service\n");
  GSN_cfg = cfg;
  monitor_nc = GNUNET_SERVER_notification_context_create (server, 1);
  /* Load private keys from disk */
  if (GNUNET_OK !=
      GNUNET_CONFIGURATION_get_value_filename (cfg, "namestore", 
					       "zonefile_directory",
					       &zonefile_directory))
  {
    GNUNET_log (GNUNET_ERROR_TYPE_ERROR, 
		_("No directory to load zonefiles specified in configuration\n"));
    GNUNET_SCHEDULER_add_now (&cleanup_task, NULL);
    return;
  }

  if (GNUNET_NO == GNUNET_DISK_file_test (zonefile_directory))
  {
    if (GNUNET_SYSERR == GNUNET_DISK_directory_create (zonefile_directory))
    {
      GNUNET_log (GNUNET_ERROR_TYPE_ERROR, 
		  _("Creating directory `%s' for zone files failed!\n"),
		  zonefile_directory);
      GNUNET_SCHEDULER_add_now (&cleanup_task, NULL);
      return;
    }
    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
		"Created directory `%s' for zone files\n", 
		zonefile_directory);
  }

  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
	      "Scanning directory `%s' for zone files\n", 
	      zonefile_directory);
  zonekeys = GNUNET_CONTAINER_multihashmap_create (16, GNUNET_NO);
  counter = 0;
  GNUNET_DISK_directory_scan (zonefile_directory, 
			      &zonekey_file_it, &counter);
  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
	      "Found %u zone files\n", 
	      counter);

  /* Loading database plugin */
  if (GNUNET_OK !=
      GNUNET_CONFIGURATION_get_value_string (cfg, "namestore", "database",
                                             &database))
    GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "No database backend configured\n");

  GNUNET_asprintf (&db_lib_name, "libgnunet_plugin_namestore_%s", database);
  GSN_database = GNUNET_PLUGIN_load (db_lib_name, (void *) GSN_cfg);
  GNUNET_free (database);
  if (NULL == GSN_database)
  {
    GNUNET_log (GNUNET_ERROR_TYPE_ERROR, 
		"Could not load database backend `%s'\n",
		db_lib_name);
    GNUNET_SCHEDULER_add_now (&cleanup_task, NULL);
    return;
  }

  /* Configuring server handles */
  GNUNET_SERVER_add_handlers (server, handlers);
  snc = GNUNET_SERVER_notification_context_create (server, 16);
  GNUNET_SERVER_disconnect_notify (server,
                                   &client_disconnect_notification,
                                   NULL);
  GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &cleanup_task,
                                NULL);
}


/**
 * The main function for the template service.
 *
 * @param argc number of arguments from the command line
 * @param argv command line arguments
 * @return 0 ok, 1 on error
 */
int
main (int argc, char *const *argv)
{
  return (GNUNET_OK ==
          GNUNET_SERVICE_run (argc, argv, "namestore",
                              GNUNET_SERVICE_OPTION_NONE, &run, NULL)) ? 0 : 1;
}

/* end of gnunet-service-namestore.c */