/usr/share/opendnssec/kasp.rng is in opendnssec-common 1:1.4.3-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | <?xml version="1.0" encoding="UTF-8"?>
<!--
$Id: kasp.rnc 7358 2013-10-11 11:47:27Z matthijs $
Copyright (c) 2009 .SE (The Internet Infrastructure Foundation).
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-->
<grammar xmlns="http://relaxng.org/ns/structure/1.0" datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">
<start>
<element name="KASP">
<zeroOrMore>
<element name="Policy">
<!-- (short) symbolic name for Policy -->
<attribute name="name">
<data type="string"/>
</attribute>
<!-- description of policy (free text) -->
<element name="Description">
<data type="string"/>
</element>
<!--
<Signatures> hold parameters related to signatures
These will go in the signature category in the DB
Most of these will be passed to the signer without
processing.
-->
<element name="Signatures">
<!-- how often should the zone be (re)signed? -->
<element name="Resign">
<data type="duration"/>
</element>
<!--
the signatures are reused for a period of time
how long time before the expiration of the signature
should it be refreshed?
-->
<element name="Refresh">
<data type="duration"/>
</element>
<!-- for how long should a signature be valid? -->
<element name="Validity">
<element name="Default">
<data type="duration"/>
</element>
<element name="Denial">
<data type="duration"/>
</element>
</element>
<!--
how much should we jitter the signature expiration time?
(e.g. increase the expiration time by X)
-->
<element name="Jitter">
<data type="duration"/>
</element>
<!-- how much should we predate the signature inception time? -->
<element name="InceptionOffset">
<data type="duration"/>
</element>
</element>
<!-- use NSEC or NSEC3? -->
<element name="Denial">
<choice>
<ref name="nsec"/>
<ref name="nsec3"/>
</choice>
</element>
<element name="Keys">
<!-- TTL for DNSKEYs -->
<ref name="ttl"/>
<!-- key retirement safety factor -->
<element name="RetireSafety">
<data type="duration"/>
</element>
<!-- key publication safety factor -->
<element name="PublishSafety">
<data type="duration"/>
</element>
<optional>
<!-- do the zones share the same keys? -->
<element name="ShareKeys">
<empty/>
</element>
</optional>
<optional>
<!-- enforcer may purge keys after this amount of time -->
<element name="Purge">
<data type="duration"/>
</element>
</optional>
<zeroOrMore>
<!-- Key Signing Keys (KSK) parameters -->
<element name="KSK">
<!-- generic key definition, see below -->
<ref name="anykey"/>
<optional>
<!--
use RFC 5011 for key rollover?
Not implemented yet
-->
<element name="RFC5011">
<empty/>
</element>
</optional>
</element>
</zeroOrMore>
<zeroOrMore>
<!-- Zone Signing Keys (ZSK) parameters -->
<element name="ZSK">
<!-- generic key definition, see below -->
<ref name="anykey"/>
</element>
</zeroOrMore>
</element>
<element name="Zone">
<!-- Expected propagation delay in child publication -->
<ref name="propagationdelay"/>
<!-- Expected zone SOA parameters -->
<element name="SOA">
<ref name="anysoa"/>
<ref name="serial"/>
</element>
</element>
<!--
Excepted paren parameters for key rollover usage.
These might be guess or obtained by querying the parent zone
NOTE: This assumes that all zones with the same policy have
the same parent or at least parents with the same parameters!
-->
<element name="Parent">
<!-- Expected propagation delay in parent publication -->
<ref name="propagationdelay"/>
<!-- Expected TTL of DS in parent -->
<element name="DS">
<ref name="ttl"/>
</element>
<!-- Expected parent SOA parameters -->
<element name="SOA">
<ref name="anysoa"/>
</element>
</element>
</element>
</zeroOrMore>
</element>
</start>
<define name="serial">
<element name="Serial">
<choice>
<!-- use increasing counter (sync with unsigned zone if possible) -->
<value>counter</value>
<!-- use increasing counter in YYYYMMDDxx format -->
<value>datecounter</value>
<!-- use unix timestamp as an 32-bit unsigned integer -->
<value>unixtime</value>
<!-- keep the serial from unsigned zone (do not resign unless incremented) -->
<value>keep</value>
</choice>
</element>
</define>
<define name="nsec">
<element name="NSEC">
<empty/>
</element>
</define>
<define name="nsec3">
<element name="NSEC3">
<optional>
<!-- what value for NSEC3PARAM TTL to use? Default 0. -->
<ref name="ttl"/>
</optional>
<optional>
<!-- use global NSEC3 opt-out? -->
<element name="OptOut">
<empty/>
</element>
</optional>
<!-- how often should we resalt? (e.g. create new NSEC3 chains) -->
<element name="Resalt">
<data type="duration"/>
</element>
<!-- NSEC3 hash parameters -->
<element name="Hash">
<element name="Algorithm">
<data type="nonNegativeInteger">
<param name="maxInclusive">255</param>
</data>
</element>
<element name="Iterations">
<data type="nonNegativeInteger">
<param name="maxInclusive">65535</param>
</data>
</element>
<!-- Salt length in octets -->
<element name="Salt">
<attribute name="length">
<data type="nonNegativeInteger">
<param name="maxInclusive">255</param>
</data>
</attribute>
<optional>
<!--
The actual salt is generated by the Enforcer
Note: the enforcer may decide to store the
current salt in the DB and so it could be exported
here.
-->
<data type="string"/>
</optional>
</element>
</element>
</element>
</define>
<!-- Generic SOA definition -->
<define name="anysoa">
<ref name="ttl"/>
<element name="Minimum">
<data type="duration"/>
</element>
</define>
<!-- Generic key definition -->
<define name="anykey">
<element name="Algorithm">
<optional>
<attribute name="length">
<data type="positiveInteger"/>
</attribute>
</optional>
<data type="nonNegativeInteger">
<param name="maxInclusive">255</param>
</data>
</element>
<element name="Lifetime">
<data type="duration"/>
</element>
<element name="Repository">
<data type="string"/>
</element>
<optional>
<!--
Number of Standby keys
Makes the rollover faster, since the key is
already pre-published and ready.
-->
<element name="Standby">
<data type="nonNegativeInteger"/>
</element>
</optional>
<optional>
<!-- Use manual key rollover? -->
<element name="ManualRollover">
<empty/>
</element>
</optional>
</define>
<define name="ttl">
<element name="TTL">
<data type="duration"/>
</element>
</define>
<define name="propagationdelay">
<element name="PropagationDelay">
<data type="duration"/>
</element>
</define>
<define name="partial">
<element name="Partial">
<empty/>
</element>
</define>
</grammar>
|