aboutsummaryrefslogtreecommitdiff
path: root/draft-schanzen-gns.txt
blob: 782d5c33b98579a5ed214aa6b229ebcea399409a (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
Independent Stream                                       M. Schanzenbach
Internet-Draft                                               GNUnet e.V.
Intended status: Informational                               C. Grothoff
Expires: 13 May 2020                               Berner Fachhochschule
                                                                  B. Fix
                                                             GNUnet e.V.
                                                        10 November 2019


                   The GNU Name System Specification
                         draft-schanzen-gns-00

Abstract

   This document contains the GNU Name System (GNS) technical
   specification.

Status of This Memo

   This Internet-Draft is submitted in full conformance with the
   provisions of BCP 78 and BCP 79.

   Internet-Drafts are working documents of the Internet Engineering
   Task Force (IETF).  Note that other groups may also distribute
   working documents as Internet-Drafts.  The list of current Internet-
   Drafts is at https://datatracker.ietf.org/drafts/current/.

   Internet-Drafts are draft documents valid for a maximum of six months
   and may be updated, replaced, or obsoleted by other documents at any
   time.  It is inappropriate to use Internet-Drafts as reference
   material or to cite them other than as "work in progress."

   This Internet-Draft will expire on 13 May 2020.

Copyright Notice

   Copyright (c) 2019 IETF Trust and the persons identified as the
   document authors.  All rights reserved.

   This document is subject to BCP 78 and the IETF Trust's Legal
   Provisions Relating to IETF Documents (https://trustee.ietf.org/
   license-info) in effect on the date of publication of this document.
   Please review these documents carefully, as they describe your rights
   and restrictions with respect to this document.  Code Components
   extracted from this document must include Simplified BSD License text
   as described in Section 4.e of the Trust Legal Provisions and are
   provided without warranty as described in the Simplified BSD License.




Schanzenbach, et al.       Expires 13 May 2020                  [Page 1]

Internet-Draft             The GNU Name System             November 2019


Table of Contents

   1.  Introduction  . . . . . . . . . . . . . . . . . . . . . . . .   2
   2.  Zones . . . . . . . . . . . . . . . . . . . . . . . . . . . .   3
   3.  Resource Records  . . . . . . . . . . . . . . . . . . . . . .   4
     3.1.  Record Types  . . . . . . . . . . . . . . . . . . . . . .   6
     3.2.  PKEY  . . . . . . . . . . . . . . . . . . . . . . . . . .   6
     3.3.  GNS2DNS . . . . . . . . . . . . . . . . . . . . . . . . .   6
     3.4.  LEHO  . . . . . . . . . . . . . . . . . . . . . . . . . .   7
     3.5.  NICK  . . . . . . . . . . . . . . . . . . . . . . . . . .   8
     3.6.  BOX . . . . . . . . . . . . . . . . . . . . . . . . . . .   8
     3.7.  VPN . . . . . . . . . . . . . . . . . . . . . . . . . . .   9
   4.  Publishing Records  . . . . . . . . . . . . . . . . . . . . .  10
     4.1.  Key Derivations . . . . . . . . . . . . . . . . . . . . .  10
     4.2.  Resource Records Block  . . . . . . . . . . . . . . . . .  11
     4.3.  Record Data Encryption and Decryption . . . . . . . . . .  13
   5.  Internationalization and Character Encoding . . . . . . . . .  15
   6.  Name Resolution . . . . . . . . . . . . . . . . . . . . . . .  15
     6.1.  Recursion . . . . . . . . . . . . . . . . . . . . . . . .  16
     6.2.  Record Processing . . . . . . . . . . . . . . . . . . . .  16
       6.2.1.  PKEY  . . . . . . . . . . . . . . . . . . . . . . . .  17
       6.2.2.  GNS2DNS . . . . . . . . . . . . . . . . . . . . . . .  17
       6.2.3.  CNAME . . . . . . . . . . . . . . . . . . . . . . . .  18
       6.2.4.  BOX . . . . . . . . . . . . . . . . . . . . . . . . .  18
       6.2.5.  VPN . . . . . . . . . . . . . . . . . . . . . . . . .  19
       6.2.6.  NICK  . . . . . . . . . . . . . . . . . . . . . . . .  19
   7.  Zone Revocation . . . . . . . . . . . . . . . . . . . . . . .  20
     7.1.  Verification  . . . . . . . . . . . . . . . . . . . . . .  23
   8.  Determining the Root Zone and Zone Governance . . . . . . . .  24
   9.  Security Considerations . . . . . . . . . . . . . . . . . . .  25
     9.1.  Revocations . . . . . . . . . . . . . . . . . . . . . . .  25
   10. GANA Considerations . . . . . . . . . . . . . . . . . . . . .  26
   11. Test Vectors  . . . . . . . . . . . . . . . . . . . . . . . .  26
   12. Normative References  . . . . . . . . . . . . . . . . . . . .  28
   Authors' Addresses  . . . . . . . . . . . . . . . . . . . . . . .  30

1.  Introduction

   The Domain Name System (DNS) is a unique distributed database and a
   vital service for most Internet applications.  While DNS is
   distributed, it relies on centralized, trusted registrars to provide
   globally unique names.  As the awareness of the central role DNS
   plays on the Internet rises, various institutions are using their
   power (including legal means) to engage in attacks on the DNS, thus
   threatening the global availability and integrity of information on
   the Internet.





Schanzenbach, et al.       Expires 13 May 2020                  [Page 2]

Internet-Draft             The GNU Name System             November 2019


   DNS was not designed with security as a goal.  This makes it very
   vulnerable, especially to attackers that have the technical
   capabilities of an entire nation state at their disposal.  This
   specification describes a censorship-resistant, privacy-preserving
   and decentralized name system: The GNU Name System (GNS).  It is
   designed to provide a secure alternative to DNS, especially when
   censorship or manipulation is encountered.  GNS can bind names to any
   kind of cryptographically secured token, enabling it to double in
   some respects as even as an alternative to some of today's Public Key
   Infrastructures, in particular X.509 for the Web.

   This document contains the GNU Name System (GNS) technical
   specification of the GNU Name System (GNS), a fully decentralized and
   censorship-resistant name system.  GNS provides a privacy-enhancing
   alternative to the Domain Name System (DNS).  The design of GNS
   incorporates the capability to integrate and coexist with DNS.  GNS
   is based on the principle of a petname system and builds on ideas
   from the Simple Distributed Security Infrastructure (SDSI),
   addressing a central issue with the decentralized mapping of secure
   identifiers to memorable names: namely the impossibility of providing
   a global, secure and memorable mapping without a trusted authority.
   GNS uses the transitivity in the SDSI design to replace the trusted
   root with secure delegation of authority thus making petnames useful
   to other users while operating under a very strong adversary model.

   This document defines the normative wire format of resource records,
   resolution processes, cryptographic routines and security
   considerations for use by implementors.

   The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
   "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
   document are to be interpreted as described in [RFC2119].


2.  Zones

   A zone in GNS is defined by a public/private ECDSA key pair (d,zk),
   where d is the private key and zk the corresponding public key.  GNS
   employs the curve parameters of the twisted edwards representation of
   Curve25519 [RFC7748] (a.k.a. edwards25519) with the ECDSA scheme
   ([RFC6979]).  In the following, we use the following naming
   convention for our cryptographic primitives:

   d  is a 256-bit ECDSA private key.  In GNS, records are signed using
      a key derived from "d" as described in Section 4.

   p  is the prime of edwards25519 as defined in [RFC7748], i.e.  2^255
      - 19.



Schanzenbach, et al.       Expires 13 May 2020                  [Page 3]

Internet-Draft             The GNU Name System             November 2019


   B  is the group generator (X(P),Y(P)) of edwards25519 as defined in
      [RFC7748].

   L  is the prime-order subgroup of edwards25519 in [RFC7748].

   zk  is the ECDSA public key corresponding to d.  It is defined in
      [RFC6979] as the curve point d*B where B is the group generator of
      the elliptic curve.  The public key is used to uniquely identify a
      GNS zone and is referred to as the "zone key".

3.  Resource Records

   A GNS implementor MUST provide a mechanism to create and manage
   resource records for local zones.  A local zone is established by
   creating a zone key pair.  Records may be added to each zone, hence a
   (local) persistency mechanism for resource records and zones must be
   provided.  This local zone database is used by the GNS resolver
   implementation and to publish record information.

   A GNS resource record holds the data of a specific record in a zone.
   The resource record format is defined as follows:

            0     8     16    24    32    40    48    56
            +-----+-----+-----+-----+-----+-----+-----+-----+
            |                   EXPIRATION                  |
            +-----+-----+-----+-----+-----+-----+-----+-----+
            |       DATA SIZE       |          TYPE         |
            +-----+-----+-----+-----+-----+-----+-----+-----+
            |           FLAGS       |        DATA           /
            +-----+-----+-----+-----+                       /
            /                                               /
            /                                               /

                                  Figure 1

   where:

   EXPIRATION  denotes the absolute 64-bit expiration date of the
      record.  In microseconds since midnight (0 hour), January 1, 1970
      in network byte order.

   DATA SIZE  denotes the 32-bit size of the DATA field in bytes and in
      network byte order.








Schanzenbach, et al.       Expires 13 May 2020                  [Page 4]

Internet-Draft             The GNU Name System             November 2019


   TYPE  is the 32-bit resource record type.  This type can be one of
      the GNS resource records as defined in Section 3 or a DNS record
      type as defined in [RFC1035] or any of the complementary
      standardized DNS resource record types.  This value must be stored
      in network byte order.  Note that values below 2^16 are reserved
      for allocation via IANA ([RFC6895]).

   FLAGS  is a 32-bit resource record flags field (see below).

   DATA  the variable-length resource record data payload.  The contents
      are defined by the respective type of the resource record.

   Flags indicate metadata surrounding the resource record.  A flag
   value of 0 indicates that all flags are unset.  The following
   illustrates the flag distribution in the 32-bit flag value of a
   resource record:

            ... 5       4         3        2        1        0
            ------+--------+--------+--------+--------+--------+
            / ... | SHADOW | EXPREL | SUPPL  | PRIVATE|    /   |
            ------+--------+--------+--------+--------+--------+

                                  Figure 2

   where:

   SHADOW  If this flag is set, this record should be ignored by
      resolvers unless all (other) records of the same record type have
      expired.  Used to allow zone publishers to facilitate good
      performance when records change by allowing them to put future
      values of records into the DHT.  This way, future values can
      propagate and may be cached before the transition becomes active.

   EXPREL  The expiration time value of the record is a relative time
      (still in microseconds) and not an absolute time.  This flag
      should never be encountered by a resolver for records obtained
      from the DHT, but might be present when a resolver looks up
      private records of a zone hosted locally.

   SUPPL  This is a supplemental record.  It is provided in addition to
      the other records.  This flag indicates that this record is not
      explicitly managed alongside the other records under the
      respective name but may be useful for the application.  This flag
      should only be encountered by a resolver for records obtained from
      the DHT.






Schanzenbach, et al.       Expires 13 May 2020                  [Page 5]

Internet-Draft             The GNU Name System             November 2019


   PRIVATE  This is a private record of this peer and it should thus not
      be published in the DHT.  Thus, this flag should never be
      encountered by a resolver for records obtained from the DHT.
      Private records should still be considered just like regular
      records when resolving labels in local zones.

3.1.  Record Types

   A registry of GNS Record Types is described in Section 10.  The
   registration policy for this registry is "First Come First Served",
   as described in [RFC8126].  When requesting new entries, careful
   consideration of the following criteria is strongly advised: FIXME:
   ausdenken was wir da gerne haetten.

3.2.  PKEY

   In GNS, a delegation of a label to a zone is represented through a
   PKEY record.  A PKEY resource record contains the public key of the
   zone to delegate to.  A PKEY record MUST be the only record under a
   label.  No other records are allowed.  A PKEY DATA entry has the
   following format:

              0     8     16    24    32    40    48    56
              +-----+-----+-----+-----+-----+-----+-----+-----+
              |                   PUBLIC KEY                  |
              |                                               |
              |                                               |
              |                                               |
              +-----+-----+-----+-----+-----+-----+-----+-----+

                                  Figure 3

   where:

   PUBLIC KEY  A 256-bit ECDSA zone key.

3.3.  GNS2DNS

   It is possible to delegate a label back into DNS through a GNS2DNS
   record.  The resource record contains a DNS name for the resolver to
   continue with in DNS followed by a DNS server.  Both names are in the
   format defined in [RFC1034] for DNS names.  A GNS2DNS DATA entry has
   the following format:








Schanzenbach, et al.       Expires 13 May 2020                  [Page 6]

Internet-Draft             The GNU Name System             November 2019


              0     8     16    24    32    40    48    56
              +-----+-----+-----+-----+-----+-----+-----+-----+
              |                    DNS NAME                   |
              /                                               /
              /                                               /
              |                                               |
              +-----+-----+-----+-----+-----+-----+-----+-----+
              |                 DNS SERVER NAME               |
              /                                               /
              /                                               /
              |                                               |
              +-----------------------------------------------+

                                  Figure 4

   where:

   DNS NAME  The name to continue with in DNS (0-terminated).

   DNS SERVER NAME  The DNS server to use.  May be an IPv4/IPv6 address
      in dotted decimal form or a DNS name.  It may also be a relative
      GNS name ending with a "+" top-level domain.  The value is UTF-8
      encoded (also for DNS names) and 0-terminated.

3.4.  LEHO

   Legacy hostname records can be used by applications that are expected
   to supply a DNS name on the application layer.  The most common use
   case is HTTP virtual hosting, which as-is would not work with GNS
   names as those may not be globally unique.  A LEHO resource record is
   expected to be found together in a single resource record with an
   IPv4 or IPv6 address.  A LEHO DATA entry has the following format:

              0     8     16    24    32    40    48    56
              +-----+-----+-----+-----+-----+-----+-----+-----+
              |                 LEGACY HOSTNAME               |
              /                                               /
              /                                               /
              |                                               |
              +-----+-----+-----+-----+-----+-----+-----+-----+

                                  Figure 5

   where:

   LEGACY HOSTNAME  A UTF-8 string (which is not 0-terminated)
      representing the legacy hostname.




Schanzenbach, et al.       Expires 13 May 2020                  [Page 7]

Internet-Draft             The GNU Name System             November 2019


   NOTE: If an application uses a LEHO value in an HTTP request header
   (e.g.  "Host:" header) it must be converted to a punycode
   representation [RFC5891].

3.5.  NICK

   Nickname records can be used by zone administrators to publish an
   indication on what label this zone prefers to be referred to.  This
   is a suggestion to other zones what label to use when creating a PKEY
   (Section 3.2) record containing this zone's public zone key.  This
   record SHOULD only be stored under the empty label "@" but MAY be
   returned with record sets under any label as a supplemental record.
   Section 6.2.6 details how a resolver must process supplemental and
   non-supplemental NICK records.  A NICK DATA entry has the following
   format:

              0     8     16    24    32    40    48    56
              +-----+-----+-----+-----+-----+-----+-----+-----+
              |                  NICKNAME                     |
              /                                               /
              /                                               /
              |                                               |
              +-----+-----+-----+-----+-----+-----+-----+-----+

                                  Figure 6

   where:

   NICKNAME  A UTF-8 string (which is not 0-terminated) representing the
      preferred label of the zone.  This string MUST NOT include a "."
      character.

3.6.  BOX

   In GNS, every "." in a name delegates to another zone, and GNS
   lookups are expected to return all of the required useful information
   in one record set.  This is incompatible with the special labels used
   by DNS for SRV and TLSA records.  Thus, GNS defines the BOX record
   format to box up SRV and TLSA records and include them in the record
   set of the label they are associated with.  For example, a TLSA
   record for "_https._tcp.foo.gnu" will be stored in the record set of
   "foo.gnu" as a BOX record with service (SVC) 443 (https) and protocol
   (PROTO) 6 (tcp) and record TYPE "TLSA".  For reference, see also
   [RFC2782].  A BOX DATA entry has the following format:







Schanzenbach, et al.       Expires 13 May 2020                  [Page 8]

Internet-Draft             The GNU Name System             November 2019


              0     8     16    24    32    40    48    56
              +-----+-----+-----+-----+-----+-----+-----+-----+
              |   PROTO   |    SVC    |       TYPE            |
              +-----------+-----------------------------------+
              |                 RECORD DATA                   |
              /                                               /
              /                                               /
              |                                               |
              +-----+-----+-----+-----+-----+-----+-----+-----+

                                  Figure 7

   where:

   PROTO  the 16-bit protocol number, e.g. 6 for tcp.  In network byte
      order.

   SVC  the 16-bit service value of the boxed record, i.e. the port
      number.  In network byte order.

   TYPE  is the 32-bit record type of the boxed record.  In network byte
      order.

   RECORD DATA  is a variable length field containing the "DATA" format
      of TYPE as defined for the respective TYPE in DNS.

3.7.  VPN

   A VPN DATA entry has the following format:

              0     8     16    24    32    40    48    56
              +-----+-----+-----+-----+-----+-----+-----+-----+
              |          HOSTING PEER PUBLIC KEY              |
              |                (256 bits)                     |
              |                                               |
              |                                               |
              +-----------+-----------------------------------+
              |   PROTO   |    SERVICE  NAME                  |
              +-----------+                                   +
              /                                               /
              /                                               /
              |                                               |
              +-----+-----+-----+-----+-----+-----+-----+-----+

                                  Figure 8

   where:




Schanzenbach, et al.       Expires 13 May 2020                  [Page 9]

Internet-Draft             The GNU Name System             November 2019


   HOSTING PEER PUBLIC KEY  is a 256-bit EdDSA public key identifying
      the peer hosting the service.

   PROTO  the 16-bit protocol number, e.g. 6 for TCP.  In network byte
      order.

   SERVICE NAME  a shared secret used to identify the service at the
      hosting peer, used to derive the port number requird to connect to
      the service.  The service name MUST be a 0-terminated UTF-8
      string.

4.  Publishing Records

   GNS resource records are published in a distributed hash table (DHT).
   We assume that a DHT provides two functions: GET(key) and
   PUT(key,value).  In GNS, resource records are grouped by their
   respective labels, encrypted and published together in a single
   resource records block (RRBLOCK) in the DHT under a key "q": PUT(q,
   RRBLOCK).  The key "q" which is derived from the zone key "zk" and
   the respective label of the contained records.

4.1.  Key Derivations

   Given a label, the DHT key "q" is derived as follows:

            PRK_h := HKDF-Extract ("key-derivation", zk)
            h := HKDF-Expand (PRK_h, label | "gns", 512 / 8)
            d_h := h * d mod L
            zk_h := h mod L * zk
            q := SHA512 (zk_h)

   We use a hash-based key derivation function (HKDF) as defined in
   [RFC5869].  We use HMAC-SHA512 for the extraction phase and HMAC-
   SHA256 for the expansion phase.

   PRK_h  is key material retrieved using an HKDF using the string "key-
      derivation" as salt and the public zone key "zk" as initial keying
      material.

   h  is the 512-bit HKDF expansion result.  The expansion info input is
      a concatenation of the label and string "gns".

   d  is the 256-bit private zone key as defined in Section 2.

   label  is a UTF-8 string under which the resource records are
      published.





Schanzenbach, et al.       Expires 13 May 2020                 [Page 10]

Internet-Draft             The GNU Name System             November 2019


   d_h  is a 256-bit private key derived from the "d" using the keying
      material "h".

   zk_h  is a 256-bit public key derived from the zone key "zk" using
      the keying material "h".

   L  is the prime-order subgroup as defined in Section 2.

   q  Is the 512-bit DHT key under which the resource records block is
      published.  It is the SHA512 hash over the public key "zk_h"
      corresponding to the derived private key "d_h".

   We point out that the multiplication of "zk" with "h" is a point
   multiplication, while the multiplication of "d" with "h" is a scalar
   multiplication.

4.2.  Resource Records Block

   GNS records are grouped by their labels and published as a single
   block in the DHT.  The grouped record sets MAY be paired with any
   number of supplemental records.  Supplemental records must have the
   supplemental flag set (See Section 3).  The contained resource
   records are encrypted using a symmetric encryption scheme.  A GNS
   implementation must publish RRBLOCKs in accordance to the properties
   and recommendations of the underlying DHT.  This may include a
   periodic refresh publication.  A GNS RRBLOCK has the following
   format:
























Schanzenbach, et al.       Expires 13 May 2020                 [Page 11]

Internet-Draft             The GNU Name System             November 2019


              0     8     16    24    32    40    48    56
              +-----+-----+-----+-----+-----+-----+-----+-----+
              |                   SIGNATURE                   |
              |                                               |
              |                                               |
              |                                               |
              |                                               |
              |                                               |
              |                                               |
              |                                               |
              +-----+-----+-----+-----+-----+-----+-----+-----+
              |                  PUBLIC KEY                   |
              |                                               |
              |                                               |
              |                                               |
              +-----+-----+-----+-----+-----+-----+-----+-----+
              |         SIZE          |       PURPOSE         |
              +-----+-----+-----+-----+-----+-----+-----+-----+
              |                   EXPIRATION                  |
              +-----+-----+-----+-----+-----+-----+-----+-----+
              |                    BDATA                      /
              /                                               /
              /                                               |
              +-----+-----+-----+-----+-----+-----+-----+-----+

                                  Figure 9

   where:

   SIGNATURE  A 512-bit ECDSA deterministic signature compliant with
      [RFC6979].  The signature is computed over the data following the
      PUBLIC KEY field.  The signature is created using the derived
      private key "d_h" (see Section 4).

   PUBLIC KEY  is the 256-bit public key "zk_h" to be used to verify
      SIGNATURE.  The wire format of this value is defined in [RFC8032],
      Section 5.1.5.

   SIZE  A 32-bit value containing the length of the signed data
      following the PUBLIC KEY field in network byte order.  This value
      always includes the length of the fields SIZE (4), PURPOSE (4) and
      EXPIRATION (8) in addition to the length of the BDATA.  While a
      32-bit value is used, implementations MAY refuse to publish blocks
      beyond a certain size significantly below 4 GB.  However, a
      minimum block size of 62 kilobytes MUST be supported.

   PURPOSE  A 32-bit signature purpose flag.  This field MUST be 15 (in
      network byte order).



Schanzenbach, et al.       Expires 13 May 2020                 [Page 12]

Internet-Draft             The GNU Name System             November 2019


   EXPIRATION  Specifies when the RRBLOCK expires and the encrypted
      block SHOULD be removed from the DHT and caches as it is likely
      stale.  However, applications MAY continue to use non-expired
      individual records until they expire.  The value MUST be set to
      the expiration time of the resource record contained within this
      block with the smallest expiration time.  If a records block
      includes shadow records, then the maximum expiration time of all
      shadow records with matching type and the expiration times of the
      non-shadow records is considered.  This is a 64-bit absolute date
      in microseconds since midnight (0 hour), January 1, 1970 in
      network byte order.

   BDATA  The encrypted resource records with a total size of SIZE - 16.

4.3.  Record Data Encryption and Decryption

   A symmetric encryption scheme is used to encrypt the resource records
   set RDATA into the BDATA field of a GNS RRBLOCK.  The wire format of
   the RDATA looks as follows:

              0     8     16    24    32    40    48    56
              +-----+-----+-----+-----+-----+-----+-----+-----+
              |     RR COUNT          |        EXPIRA-        /
              +-----+-----+-----+-----+-----+-----+-----+-----+
              /         -TION         |       DATA SIZE       |
              +-----+-----+-----+-----+-----+-----+-----+-----+
              |         TYPE          |          FLAGS        |
              +-----+-----+-----+-----+-----+-----+-----+-----+
              |                      DATA                     /
              /                                               /
              /                                               |
              +-----+-----+-----+-----+-----+-----+-----+-----+
              |                   EXPIRATION                  |
              +-----+-----+-----+-----+-----+-----+-----+-----+
              |       DATA SIZE       |          TYPE         |
              +-----+-----+-----+-----+-----+-----+-----+-----+
              |           FLAGS       |        DATA           /
              +-----+-----+-----+-----+                       /
              /                       +-----------------------/
              /                       |                       /
              +-----------------------+                       /
              /                     PADDING                   /
              /                                               /

                                 Figure 10

   where:




Schanzenbach, et al.       Expires 13 May 2020                 [Page 13]

Internet-Draft             The GNU Name System             November 2019


   RR COUNT  A 32-bit value containing the number of variable-length
      resource records which are following after this field in network
      byte order.

   EXPIRATION, DATA SIZE, TYPE, FLAGS and DATA  These fields were
      defined in the resource record format in Section 3.  There MUST be
      a total of RR COUNT of these resource records present.

   PADDING  The padding MUST contain the value 0 in all octets.  The
      padding MUST ensure that the size of the RDATA WITHOUT the RR
      COUNT field is a power of two.  As a special exception, record
      sets with (only) a PKEY record type are never padded.  Note that a
      record set with a PKEY record MUST NOT contain other records.

   The symmetric keys and initialization vectors are derived from the
   record label and the zone key "zk".  For decryption of the resource
   records block payload, the key material "K" and initialization vector
   "IV" for the symmetric cipher are derived as follows:

            PRK_k := HKDF-Extract ("gns-aes-ctx-key", zk)
            PRK_iv := HKDF-Extract ("gns-aes-ctx-iv", zk)
            K := HKDF-Expand (PRK_k, label, 512 / 8);
            IV := HKDF-Expand (PRK_iv, label, 256 / 8)

   HKDF is a hash-based key derivation function as defined in [RFC5869].
   Specifically, HMAC-SHA512 is used for the extraction phase and HMAC-
   SHA256 for the expansion phase.  The output keying material is 64
   octets (512 bit) for the symmetric keys and 32 octets (256 bit) for
   the initialization vectors.  We divide the resulting keying material
   "K" into a 256-bit AES [RFC3826] key and a 256-bit TWOFISH [TWOFISH]
   key:

              0     8     16    24    32    40    48    56
              +-----+-----+-----+-----+-----+-----+-----+-----+
              |                    AES KEY                    |
              |                                               |
              |                                               |
              |                                               |
              +-----+-----+-----+-----+-----+-----+-----+-----+
              |                  TWOFISH KEY                  |
              |                                               |
              |                                               |
              |                                               |
              +-----+-----+-----+-----+-----+-----+-----+-----+

                                 Figure 11





Schanzenbach, et al.       Expires 13 May 2020                 [Page 14]

Internet-Draft             The GNU Name System             November 2019


   Similarly, we divide "IV" into a 128-bit initialization vector and a
   128-bit initialization vector:

              0     8     16    24    32    40    48    56
              +-----+-----+-----+-----+-----+-----+-----+-----+
              |                    AES IV                     |
              |                                               |
              +-----+-----+-----+-----+-----+-----+-----+-----+
              |                  TWOFISH IV                   |
              |                                               |
              +-----+-----+-----+-----+-----+-----+-----+-----+

                                 Figure 12

   The keys and IVs are used for a CFB128-AES-256 and CFB128-TWOFISH-256
   chained symmetric cipher.  Both ciphers are used in Cipher FeedBack
   (CFB) mode [RFC3826].

            RDATA := AES(K[0:31], IV[0:15],
                         TWOFISH(K[32:63], IV[16:31], BDATA))
            BDATA := TWOFISH(K[32:63], IV[16:31],
                             AES(K[0:31], IV[0:15], RDATA))

5.  Internationalization and Character Encoding

   All labels in GNS are encoded in UTF-8 [RFC3629].  This does not
   include any DNS names found in DNS records, such as CNAME records,
   which are internationalized through the IDNA specifications
   [RFC5890].

6.  Name Resolution

   Names in GNS are resolved by recursively querying the DHT record
   storage.  In the following, we define how resolution is initiated and
   each iteration in the resolution is processed.

   GNS resolution of a name must start in a given starting zone
   indicated using a zone public key.  Details on how the starting zone
   may be determined is discussed in Section 8.

   When GNS name resolution is requested, a desired record type MAY be
   provided by the client.  The GNS resolver will use the desired record
   type to guide processing, for example by providing conversion of VPN
   records to A or AAAA records, if that is desired.  However, filtering
   of record sets according to the required record types MUST still be
   done by the client after the resource record set is retrieved.





Schanzenbach, et al.       Expires 13 May 2020                 [Page 15]

Internet-Draft             The GNU Name System             November 2019


6.1.  Recursion

   In each step of the recursive name resolution, there is an
   authoritative zone zk and a name to resolve.  The name may be empty.
   Initially, the authoritative zone is the start zone.  If the name is
   empty, it is interpreted as the apex label "@".

   From here, the following steps are recursively executed, in order:

   1.  Extract the right-most label from the name to look up.

   2.  Calculate q using the label and zk as defined in Section 4.1.

   3.  Perform a DHT query GET(q) to retrieve the RRBLOCK.

   4.  Verify and process the RRBLOCK and decrypt the BDATA contained in
       it as defined in Section 4.3.

   Upon receiving the RRBLOCK from the DHT, apart from verifying the
   provided signature, the resolver MUST check that the authoritative
   zone key was used to sign the record: The derived zone key "h*zk"
   MUST match the public key provided in the RRBLOCK, otherwise the
   RRBLOCK MUST be ignored and the DHT lookup GET(q) MUST continue.

6.2.  Record Processing

   Record processing occurs at the end of a single recursion.  We assume
   that the RRBLOCK has been cryptographically verified and decrypted.
   At this point, we must first determine if we have received a valid
   record set in the context of the name we are trying to resolve:

   1.  Case 1: If the remainder of the name to resolve is empty and the
       record set does not consist of a PKEY, CNAME or DNS2GNS record,
       the record set is the result and the recursion is concluded.

   2.  Case 2: If the name to be resolved is of the format
       "_SERVICE._PROTO" and the record set contains one or more
       matching BOX records, the records in the BOX records are the
       result and the recusion is concluded (Section 6.2.4).

   3.  Case 3: If the remainder of the name to resolve is not empty and
       does not match the "_SERVICE._PROTO" syntax, then the current
       record set MUST consist of a single PKEY record (Section 6.2.1),
       a single CNAME record (Section 6.2.3), or one or more GNS2DNS
       records (Section 6.2.2), which are processed as described in the
       respective sections below.  The record set may include any number
       of supplemental records.  Otherwise, resolution fails and the
       resolver MUST return an empty record set.  Finally, after the



Schanzenbach, et al.       Expires 13 May 2020                 [Page 16]

Internet-Draft             The GNU Name System             November 2019


       recursion terminates, the client preferences for the record type
       SHOULD be considered.  If a VPN record is found and the client
       requests an A or AAAA record, the VPN record SHOULD be converted
       (Section 6.2.5) if possible.

6.2.1.  PKEY

   When the resolver encounters a PKEY record and the remainder of the
   name is not empty, resolution continues recursively with the
   remainder of the name in the GNS zone specified in the PKEY record.

   If the remainder of the name to resolve is empty and we have received
   a record set containing only a single PKEY record, the recursion is
   continued with the PKEY as authoritative zone and the empty apex
   label "@" as remaining name, except in the case where the desired
   record type is PKEY, in which case the PKEY record is returned and
   the resolution is concluded without resolving the empty apex label.

6.2.2.  GNS2DNS

   When a resolver encounters one or more GNS2DNS records and the
   remaining name is empty and the desired record type is GNS2DNS, the
   GNS2DNS records are returned.

   Otherwise, it is expected that the resolver first resolves the IP(s)
   of the specified DNS name server(s).  GNS2DNS records MAY contain
   numeric IPv4 or IPv6 addresses, allowing the resolver to skip this
   step.  The DNS server names may themselves be names in GNS or DNS.
   If the DNS server name ends in ".+", the rest of the name is to be
   interpreted relative to the zone of the GNS2DNS record.  If the DNS
   server name ends in ".<Base32(zk)>", the DNS server name is to be
   resolved against the GNS zone zk.

   Multiple GNS2DNS records may be stored under the same label, in which
   case the resolver MUST try all of them.  The resolver MAY try them in
   any order or even in parallel.  If multiple GNS2DNS records are
   present, the DNS name MUST be identical for all of them, if not the
   resolution fails and an emtpy record set is returned as the record
   set is invalid.












Schanzenbach, et al.       Expires 13 May 2020                 [Page 17]

Internet-Draft             The GNU Name System             November 2019


   Once the IP addresses of the DNS servers have been determined, the
   DNS name from the GNS2DNS record is appended to the remainder of the
   name to be resolved, and resolved by querying the DNS name server(s).
   As the DNS servers specified are possibly authoritative DNS servers,
   the GNS resolver MUST support recursive resolution and MUST NOT
   delegate this to the authoritative DNS servers.  The first successful
   recursive name resolution result is returned to the client.  In
   addition, the resolver returns the queried DNS name as a supplemental
   LEHO record (Section 3.4) with a relative expiration time of one
   hour.

   GNS resolvers SHOULD offer a configuration option to disable DNS
   processing to avoid information leakage and provide a consistent
   security profile for all name resolutions.  Such resolvers would
   return an empty record set upon encountering a GNS2DNS record during
   the recursion.  However, if GNS2DNS records are encountered in the
   record set for the apex and a GNS2DNS record is expicitly requested
   by the application, such records MUST still be returned, even if DNS
   support is disabled by the GNS resolver configuration.

6.2.3.  CNAME

   If a CNAME record is encountered, the canonical name is appended to
   the remaining name, except if the remaining name is empty and the
   desired record type is CNAME, in which case the resolution concludes
   with the CNAME record.  If the canonical name ends in ".+",
   resolution continues in GNS with the new name in the current zone.
   Otherwise, the resulting name is resolved via the default operating
   system name resolution process.  This may in turn again trigger a GNS
   resolution process depending on the system configuration.

   The recursive DNS resolution process may yield a CNAME as well which
   in turn may either point into the DNS or GNS namespace (if it ends in
   a ".<Base32(zk)>").  In order to prevent infinite loops, the resolver
   MUST implement loop detections or limit the number of recursive
   resolution steps.  If the last CNAME was a DNS name, the resolver
   returns the DNS name as a supplemental LEHO record (Section 3.4) with
   a relative expiration time of one hour.

6.2.4.  BOX

   When a BOX record is received, a GNS resolver must unbox it if the
   name to be resolved continues with "_SERVICE._PROTO".  Otherwise, the
   BOX record is to be left untouched.  This way, TLSA (and SRV) records
   do not require a separate network request, and TLSA records become
   inseparable from the corresponding address records.





Schanzenbach, et al.       Expires 13 May 2020                 [Page 18]

Internet-Draft             The GNU Name System             November 2019


6.2.5.  VPN

   At the end of the recursion, if the queried record type is either A
   or AAAA and the retrieved record set contains at least one VPN
   record, the resolver SHOULD open a tunnel and return the IPv4 or IPv6
   tunnel address, respectively.  The type of tunnel depends on the
   contents of the VPN record data.  The VPN record MUST be returned if
   the resolver implementation does not support setting up a tunnnel.

6.2.6.  NICK

   NIICK records are only relevant to the recursive resolver if the
   record set in question is the final result which is to be returned to
   the client.  The encountered NICK records may either be supplemental
   (see Section 3) or non-supplemental.  If the NICK record is
   supplemental, the resolver only returns the record set if one of the
   non-supplemental records matches the queried record type.

   The differentiation between a supplemental and non-supplemental NICK
   record allows the client to match the record to the authoritative
   zone.  Consider the following example:

              Query: alice.doe (type=A)
              Result:
              A: 1.2.3.4
              NICK: eve

                                 Figure 13

   In this example, the returned NICK record is non-supplemental.  For
   the client, this means that the NICK belongs to the zone "alice.doe"
   and is published under the empty label along with an A record.  The
   NICK record should be interpreted as: The zone defined by "alice.doe"
   wants to be referred to as "eve".  In contrast, consider the
   following:

              Query: alice.doe (type=A)
              Result:
              A: 1.2.3.4
              NICK: john (Supplemental)

                                 Figure 14









Schanzenbach, et al.       Expires 13 May 2020                 [Page 19]

Internet-Draft             The GNU Name System             November 2019


   In this case, the NICK record is marked as supplemental.  This means
   that the NICK record belongs to the zone "doe" and is published under
   the label "alice" along with an A record.  The NICK record should be
   interpreted as: The zone defined by "doe" wants to be referred to as
   "john".  This distinction is likely useful for other records
   published as supplemental.

7.  Zone Revocation

   Whenever a recursive resolver encounters a new GNS zone, it MUST
   check against the local revocation list whether the respective zone
   key has been revoked.  If the zone key was revoked, the resolution
   MUST fail with an empty result set.

   In order to revoke a zone key, a signed revocation object SHOULD be
   published.  This object MUST be signed using the private zone key.
   The revocation object is flooded in the overlay network.  To prevent
   flooding attacks, the revocation message MUST contain a proof of work
   (PoW).  The revocation message including the PoW MAY be calculated
   ahead of time to support timely revocation.

   For all occurences below, "Argon2d" is the Password-based Key
   Derivation Function as defined in [Argon2].  For the PoW calculations
   the algorithm is instantiated with the following parameters:

            S := "gnunet-revocation-proof-of-work" /* Salt */
            t := 3 /* Iterations */
            m := 1024 /* Memory size, 1 MiB */
            T := 64 /* Tag (=output) length in bytes */
            p := 1 /* Parallelization parameter */
            v := 0x13 /* Version */
            y := 0 /* Type (Argon2d) */
            X, K is unused

   The following is the message string "P" on which the PoW is
   calculated:

              0     8     16    24    32    40    48    56
              +-----+-----+-----+-----+-----+-----+-----+-----+
              |                      POW                      |
              +-----------------------------------------------+
              |                   TIMESTAMP                   |
              +-----------------------------------------------+
              |                  PUBLIC KEY                   |
              |                                               |
              |                                               |
              |                                               |
              +-----+-----+-----+-----+-----+-----+-----+-----+



Schanzenbach, et al.       Expires 13 May 2020                 [Page 20]

Internet-Draft             The GNU Name System             November 2019


                                 Figure 15

   where:

   POW  A 64-bit solution to the PoW.

   TIMESTAMP  denotes the absolute 64-bit expiration date of the record.
      In microseconds since midnight (0 hour), January 1, 1970 in
      network byte order.

   PUBLIC KEY  A 512-bit ECDSA deterministic signature compliant with
      [RFC6979] over the public zone zk of the zone which is revoked and
      corresponds to the key used in the PoW.  The signature is created
      using the private zone key "d" (see Section 2).

   Traditionally, PoW schemes require to find a "POW" such that at least
   D leading zeroes are found in the hash result.  D is then referred to
   as the "difficulty" of the PoW.  In order to reduce the variance in
   time it takes to calculate the PoW, we require that a number "Z"
   different PoWs must be found that on average have "D" leading zeroes.

   The resulting proofs may then published and disseminated.  The
   concrete dissemination and publication methods are out of scope of
   this document.  Given an average difficulty of "D", the proofs have
   an expiration time of EPOCH.  With each additional bit difficulty,
   the lifetime of the proof is prolonged for another EPOCH.
   Consequently, by calculating a more difficult PoW, the lifetime of
   the proof can be increased on demand by the zone owner.

   The parameters are defined as follows:

   Z  The number of PoWs required is fixed at 32.

   D  The difficulty is fixed at 25.

   EPOCH  A single epoch is fixed at 365 days.

   Given that proof has been found, a revocation data object is defined
   as follows:












Schanzenbach, et al.       Expires 13 May 2020                 [Page 21]

Internet-Draft             The GNU Name System             November 2019


              0     8     16    24    32    40    48    56
              +-----+-----+-----+-----+-----+-----+-----+-----+
              |                   TIMESTAMP                   |
              +-----+-----+-----+-----+-----+-----+-----+-----+
              |                      TTL                      |
              +-----+-----+-----+-----+-----+-----+-----+-----+
              |                     POW_0                     |
              +-----+-----+-----+-----+-----+-----+-----+-----+
              |                       ...                     |
              +-----+-----+-----+-----+-----+-----+-----+-----+
              |                     POW_Z-1                   |
              +-----------------------------------------------+
              |                   SIGNATURE                   |
              |                                               |
              |                                               |
              |                                               |
              |                                               |
              |                                               |
              |                                               |
              |                                               |
              +-----+-----+-----+-----+-----+-----+-----+-----+
              |                  PUBLIC KEY                   |
              |                                               |
              |                                               |
              |                                               |
              +-----+-----+-----+-----+-----+-----+-----+-----+

                                 Figure 16

   where:

   TIMESTAMP  denotes the absolute 64-bit expiration date of the
      revocation.  In microseconds since midnight (0 hour), January 1,
      1970 in network byte order.

   TTL  denotes the relative 64-bit time to live of of the record in
      microseconds also in network byte order.  This field is
      informational for a verifier.  The verifier may discard revocation
      if the TTL indicates that it is already expired.  However, the
      actual TTL of the revocation must be determined by examining the
      leading zeros in the proof of work calculation.

   POW_i  The values calculated as part of the PoW.  Each POW_i MUST be
      unique in the set of POW values.







Schanzenbach, et al.       Expires 13 May 2020                 [Page 22]

Internet-Draft             The GNU Name System             November 2019


   SIGNATURE  A 512-bit ECDSA deterministic signature compliant with
      [RFC6979] over the public zone zk of the zone which is revoked and
      corresponds to the key used in the PoW.  The signature is created
      using the private zone key "d" (see Section 2).

   PUBLIC KEY  is the 256-bit public key "zk" of the zone which is being
      revoked and the key to be used to verify SIGNATURE.  The wire
      format of this value is defined in [RFC8032], Section 5.1.5.

   The signature over the public key covers a 32 bit pseudo header
   conceptually prefixed to the public key.  The pseudo header includes
   the key length and signature purpose:

              0     8     16    24    32    40    48    56
              +-----+-----+-----+-----+-----+-----+-----+-----+
              |         SIZE (0x30)   |       PURPOSE (0x03)  |
              +-----+-----+-----+-----+-----+-----+-----+-----+
              |                  PUBLIC KEY                   |
              |                                               |
              |                                               |
              |                                               |
              +-----+-----+-----+-----+-----+-----+-----+-----+
              |                   TIMESTAMP                   |
              +-----+-----+-----+-----+-----+-----+-----+-----+

                                 Figure 17

   where:

   SIZE  A 32-bit value containing the length of the signed data in
      bytes (48 bytes) in network byte order.

   PURPOSE  A 32-bit signature purpose flag.  This field MUST be 3 (in
      network byte order).

   PUBLIC KEY / TIMESTAMP  Both values as defined in the revocation data
      object above.

7.1.  Verification

   In order to verify a revocation the following steps must be taken, in
   order:

   1.  The current time MUST be between TIMESTAMP and TIMESTAMP+TTL.

   2.  The signature MUST match the public key.

   3.  The set of POW values MUST NOT contain duplicates.



Schanzenbach, et al.       Expires 13 May 2020                 [Page 23]

Internet-Draft             The GNU Name System             November 2019


   4.  The average number of leading zeroes resulting from the provided
       POW values D' MUST be greater than D.

   5.  The validation period (TTL) of the revocation is calculated as
       (D'-D) * EPOCH * 1.1.  The EPOCH is extended by 10% in order to
       deal with unsynchronized clocks.  The TTL added on top of the
       TIMESTAMP yields the expiration date.

8.  Determining the Root Zone and Zone Governance

   The resolution of a GNS name must start in a given start zone
   indicated to the resolver using any public zone key.  The local
   resolver may have a local start zone configured/hard-coded which
   points to a local or remote start zone key.  A resolver client may
   also determine the start zone from the suffix of the name given for
   resolution or using information retrieved out of band.  The
   governance model of any zone is at the sole discretion of the zone
   owner.  However, the choice of start zone(s) is at the sole
   discretion of the local system administrator or user.

   This is an important distinguishing factor from the Domain Name
   System where root zone governance is centralized at the Internet
   Corporation for Assigned Names and Numbers (ICANN).  In DNS
   terminology, GNS roughly follows the idea of a hyper-hyper local root
   zone deployment, with the difference that it is not expected that all
   deployments use the same local root zone.

   In the following, we give examples how a local client resolver SHOULD
   discover the start zone.  The process given is not exhaustive and
   clients MAY suppliement it with other mechanisms or ignore it if the
   particular application requires a different process.

   GNS clients SHOULD first try to interpret the top-level domain of a
   GNS name as a zone key.  For example. if the top-level domain is a
   Base32-encoded public zone key "zk", the root zone of the resolution
   process is implicitly given by the name:

            Example name: www.example.<Base32(zk)>
            => Root zone: zk
            => Name to resolve from root zone: www.example

   In GNS, users MAY own and manage their own zones.  Each local zone
   SHOULD be associated with a single GNS label, but users MAY choose to
   use longer names consisting of multiple labels.  If the name of a
   locally managed zone matches the suffix of the name to be resolved,
   resolution SHOULD start from the respective local zone:





Schanzenbach, et al.       Expires 13 May 2020                 [Page 24]

Internet-Draft             The GNU Name System             November 2019


            Example name: www.example.gnu
            Local zones:
            fr = (d0,zk0)
            gnu = (d1,zk1)
            com = (d2,zk2)
            ...
            => Entry zone: zk1
            => Name to resolve from entry zone: www.example

   Finally, additional "suffix to zone" mappings MAY be configured.
   Suffix to zone key mappings SHOULD be configurable through a local
   configuration file or database by the user or system administrator.
   The suffix MAY consist of multiple GNS labels concatenated with a
   ".".  If multiple suffixes match the name to resolve, the longest
   matching suffix MUST BE used.  The suffix length of two results
   cannot be equal, as this would indicate a misconfiguration.  If both
   a locally managed zone and a configuration entry exist for the same
   suffix, the locally managed zone MUST have priority.

            Example name: www.example.gnu
            Local suffix mappings:
            gnu = zk0
            example.gnu = zk1
            example.com = zk2
            ...
            => Entry zone: zk1
            => Name to resolve from entry zone: www

9.  Security Considerations

9.1.  Revocations

   Revocation payloads do NOT include a 'new' key for key replacement.
   In inclusion of such a key would have two major disadvantages:

   If revocation is used after a private key was compromised, allowing
   key replacement would be dangerous, because if an adversary took over
   the private key, the adversary could then broadcast a revocation with
   a key replacement.  For the replacement, the compromised owner would
   have no chance to issue even a revocation.  Thus, allowing a
   revocation message to replace a private key makes dealing with key
   compromise situations worse.

   Sometimes, key revocations are used with the objective of changing
   cryptosystems.  Migration to another cryptosystem by replacing keys
   via a revocation message would only be secure as long as both
   cryptosystems are still secure against forgery.  Such a planned, non-
   emergency migration to another cryptosystem should be done by running



Schanzenbach, et al.       Expires 13 May 2020                 [Page 25]

Internet-Draft             The GNU Name System             November 2019


   zones for both ciphersystems in parallel for a while.  The migration
   would conclude by revoking the legacy zone key only once it is deemed
   no longer secure, and hopefully after most users have migrated to the
   replacement.

10.  GANA Considerations

   GANA is requested to create an "GNU Name System Record Types"
   registry.  The registry shall record for each entry:

   *  Name: The name of the record type (case-insensitive ASCII string,
      restricted to alphanumeric characters

   *  Number: 32-bit, above 65535

   *  Comment: Optionally, a brief English text describing the purpose
      of the record type (in UTF-8)

   *  Contact: Optionally, the contact information of a person to
      contact for further information

   *  References: Optionally, references describing the record type
      (such as an RFC)

   The registration policy for this sub-registry is "First Come First
   Served", as described in [RFC8126].  GANA is requested to populate
   this registry as follows:

              Number   | Name            | Contact | References
              ---------+-----------------+---------+---------
              65536    | PKEY            | N/A     | [This.I-D]
              65537    | NICK            | N/A     | [This.I-D]
              65538    | LEHO            | N/A     | [This.I-D]
              65539    | VPN             | N/A     | [This.I-D]
              65540    | GNS2DNS         | N/A     | [This.I-D]
              65541    | BOX             | N/A     | [This.I-D]

                                 Figure 18

11.  Test Vectors

   The following represents a test vector for a record set with a DNS
   record of type "A" as well as a GNS record of type "PKEY" under the
   label "test".







Schanzenbach, et al.       Expires 13 May 2020                 [Page 26]

Internet-Draft             The GNU Name System             November 2019


   Zone private key (d):
   WGb/eoy8BDWvaK2vRab0xTlqvS0+PeS5HG5Rh4z4cWI=
   Zone public key (zk):
   n7TNZeJ+Ks6wQymnwjZXR/cj0ae8NZMZ/PcuDVrONAo=
   Label: test
   RRCOUNT: 2

   Record #0
   EXPIRATION: 1589117218087117
   DATA_SIZE: 4
   TYPE: 1
   FLAGS: 0
   DATA (base64):
   AQIDBA==
   DATA (Human readable):
   1.2.3.4

   Record #1
   EXPIRATION: 1589117218087117
   DATA_SIZE: 32
   TYPE: 65536
   FLAGS: 2
   DATA (base64):
   +AT14h9SMRAwkor+azlHpE8DkvsUyeQyN49NEmsOXew=
   DATA (Human readable):
   Z02FBRGZA8RH0C4JHBZ6PEA7MH7G74QV2K4Y8CHQHX6H4TREBQP0

   RDATA:
   AAWlSy9KYM0AAAAEAAAAAQAAAAABAgMEAAWlSy9KYM0AAAAgAAEAAAAAAAL4BPXi
   H1IxEDCSiv5rOUekTwOS+xTJ5DI3j00Saw5d7AAAAAAAAAAAAAAAAAAAAAAAAAAA
   AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=

   BDATA:
   5e5936fttKU61GByslXav57Zgi4rac2N0F6VJCKC7NVn1YPJyiL/0+f2vZSUfHpk
   ZfRPv9clYgzO4m+PdRcYFpkG0vqmrFnDNJQRd/y9V2Wfg4ud82FK3CT9lcMpu6Sd
   fbZyE8PmL7cySfdMa/RsNWCVAES98UOvNJ7CaBDJlY2mb6iA

   RRBLOCK:
   Cqk3xJHTNxM1EE69iH33z0dK78FrhK+gUHMIUY//WHYCPZmbdgJc5Avb9uVTAAyT
   5No5uINZwxXuWpL72Xh4IIqWAE/BdKHS9deQusO6CSiZN1swM5zsupJq1qjgHusG
   AAAAlAAAAA8ABaVLL0pgzeXufd+n7bSlOtRgcrJV2r+e2YIuK2nNjdBelSQiguzV
   Z9WDycoi/9Pn9r2UlHx6ZGX0T7/XJWIMzuJvj3UXGBaZBtL6pqxZwzSUEXf8vVdl
   n4OLnfNhStwk/ZXDKbuknX22chPD5i+3Mkn3TGv0bDVglQBEvfFDrzSewmgQyZWN
   pm+ogA==


   The following is an example revocation for a zone:




Schanzenbach, et al.       Expires 13 May 2020                 [Page 27]

Internet-Draft             The GNU Name System             November 2019


   Zone private key (d):
   SLZnT2NK3cusTfuI0CM+XJiP4U43ZsCAv+Lk3FbIXHc=

   Zone public key (zk):
   bEclYC3aE2+fjSDDfRpdnv3gGHMckMceVbgymHZDlfA=

   Difficulty (5 base difficulty + 2 epochs): 7

   Proof:
   AAWkvp6KGBVAxXvM//8AALpHh010jxRdukeHTXSPEhq6R4dNdI8VDbpHh010jxUy
   ukeHTXSPGNK6R4dNdI8ZXLpHh010jxTTukeHTXSPFSW6R4dNdI8VarpHh010jxV3
   ukeHTXSPFnC6R4dNdI8X5rpHh010jxoJukeHTXSPGqm6R4dNdI8aurpHh010jxwD
   ukeHTXSPHGm6R4dNdI8cvLpHh010jxdGukeHTXSPF426R4dNdI8XxrpHh010jxif
   ukeHTXSPGL26R4dNdI8ZJLpHh010jxlTukeHTXSPGsa6R4dNdI8bfLpHh010jxuV
   ukeHTXSPHCi6R4dNdI8eC7pHh010jx4VukeHTXSPHhsJejeXmcDe4jcfEkWLqwIA
   8zG/gFIxNYu34usglSp+7w8bbtTgMD5hLGiR+xxhgpPh36dGz1KBZ9kAh9pz77yS
   bEclYC3aE2+fjSDDfRpdnv3gGHMckMceVbgymHZDlfA=


12.  Normative References

   [RFC1034]  Mockapetris, P., "Domain names - concepts and facilities",
              STD 13, RFC 1034, DOI 10.17487/RFC1034, November 1987,
              <https://www.rfc-editor.org/info/rfc1034>.

   [RFC1035]  Mockapetris, P., "Domain names - implementation and
              specification", STD 13, RFC 1035, DOI 10.17487/RFC1035,
              November 1987, <https://www.rfc-editor.org/info/rfc1035>.

   [RFC2782]  Gulbrandsen, A., Vixie, P., and L. Esibov, "A DNS RR for
              specifying the location of services (DNS SRV)", RFC 2782,
              DOI 10.17487/RFC2782, February 2000,
              <https://www.rfc-editor.org/info/rfc2782>.

   [RFC2119]  Bradner, S., "Key words for use in RFCs to Indicate
              Requirement Levels", BCP 14, RFC 2119,
              DOI 10.17487/RFC2119, March 1997,
              <https://www.rfc-editor.org/info/rfc2119>.

   [RFC3629]  Yergeau, F., "UTF-8, a transformation format of ISO
              10646", STD 63, RFC 3629, DOI 10.17487/RFC3629, November
              2003, <https://www.rfc-editor.org/info/rfc3629>.

   [RFC3826]  Blumenthal, U., Maino, F., and K. McCloghrie, "The
              Advanced Encryption Standard (AES) Cipher Algorithm in the
              SNMP User-based Security Model", RFC 3826,
              DOI 10.17487/RFC3826, June 2004,
              <https://www.rfc-editor.org/info/rfc3826>.



Schanzenbach, et al.       Expires 13 May 2020                 [Page 28]

Internet-Draft             The GNU Name System             November 2019


   [RFC5869]  Krawczyk, H. and P. Eronen, "HMAC-based Extract-and-Expand
              Key Derivation Function (HKDF)", RFC 5869,
              DOI 10.17487/RFC5869, May 2010,
              <https://www.rfc-editor.org/info/rfc5869>.

   [RFC5890]  Klensin, J., "Internationalized Domain Names for
              Applications (IDNA): Definitions and Document Framework",
              RFC 5890, DOI 10.17487/RFC5890, August 2010,
              <https://www.rfc-editor.org/info/rfc5890>.

   [RFC5891]  Klensin, J., "Internationalized Domain Names in
              Applications (IDNA): Protocol", RFC 5891,
              DOI 10.17487/RFC5891, August 2010,
              <https://www.rfc-editor.org/info/rfc5891>.

   [RFC6895]  Eastlake 3rd, D., "Domain Name System (DNS) IANA
              Considerations", BCP 42, RFC 6895, DOI 10.17487/RFC6895,
              April 2013, <https://www.rfc-editor.org/info/rfc6895>.

   [RFC6979]  Pornin, T., "Deterministic Usage of the Digital Signature
              Algorithm (DSA) and Elliptic Curve Digital Signature
              Algorithm (ECDSA)", RFC 6979, DOI 10.17487/RFC6979, August
              2013, <https://www.rfc-editor.org/info/rfc6979>.

   [RFC7748]  Langley, A., Hamburg, M., and S. Turner, "Elliptic Curves
              for Security", RFC 7748, DOI 10.17487/RFC7748, January
              2016, <https://www.rfc-editor.org/info/rfc7748>.

   [RFC8032]  Josefsson, S. and I. Liusvaara, "Edwards-Curve Digital
              Signature Algorithm (EdDSA)", RFC 8032,
              DOI 10.17487/RFC8032, January 2017,
              <https://www.rfc-editor.org/info/rfc8032>.

   [RFC8126]  Cotton, M., Leiba, B., and T. Narten, "Guidelines for
              Writing an IANA Considerations Section in RFCs", BCP 26,
              RFC 8126, DOI 10.17487/RFC8126, June 2017,
              <https://www.rfc-editor.org/info/rfc8126>.

   [TWOFISH]  Schneier, B., "The Twofish Encryptions Algorithm: A
              128-Bit Block Cipher, 1st Edition", March 1999.

   [Argon2]   Biryukov, A., Dinu, D., Khovratovich, D., and S.
              Josefsson, "The memory-hard Argon2 password hash and
              proof-of-work function", March 2020,
              <https://datatracker.ietf.org/doc/draft-irtf-cfrg-
              argon2/>.





Schanzenbach, et al.       Expires 13 May 2020                 [Page 29]

Internet-Draft             The GNU Name System             November 2019


Authors' Addresses

   Martin Schanzenbach
   GNUnet e.V.
   Boltzmannstrasse 3
   85748 Garching
   Germany

   Email: schanzen@gnunet.org


   Christian Grothoff
   Berner Fachhochschule
   Hoeheweg 80
   CH-2501 Biel/Bienne
   Switzerland

   Email: schanzen@gnunet.org


   Bernd Fix
   GNUnet e.V.
   Boltzmannstrasse 3
   85748 Garching
   Germany

   Email: fix@gnunet.org
























Schanzenbach, et al.       Expires 13 May 2020                 [Page 30]