[50] | 1 | -- these lines could be run as a superuser. alter database name, username, password, group as appropriate.
|
---|
| 2 | -- make sure to alter dnsdb.conf to match
|
---|
| 3 | -- CREATE GROUP dnsdb;
|
---|
| 4 | -- CREATE USER dnsdb WITH UNENCRYPTED PASSWORD 'secret' IN GROUP dnsdb;
|
---|
| 5 | -- CREATE DATABASE dnsdb OWNED BY dnsdb;
|
---|
| 6 | -- SET SESSION AUTHORIZATION 'dnsdb';
|
---|
| 7 |
|
---|
[212] | 8 | -- need a handy place to put eg a DB version identifier - useful for auto-upgrading a DB
|
---|
| 9 | CREATE TABLE misc (
|
---|
| 10 | misc_id serial NOT NULL,
|
---|
| 11 | key text DEFAULT '' NOT NULL,
|
---|
[215] | 12 | value text DEFAULT '' NOT NULL
|
---|
[212] | 13 | );
|
---|
| 14 |
|
---|
| 15 | COPY misc (misc_id, key, value) FROM stdin;
|
---|
[545] | 16 | 1 dbversion 1.2
|
---|
[212] | 17 | \.
|
---|
| 18 |
|
---|
[545] | 19 | CREATE TABLE locations (
|
---|
| 20 | location character varying (4) PRIMARY KEY,
|
---|
| 21 | loc_id serial UNIQUE,
|
---|
| 22 | group_id integer NOT NULL DEFAULT 1,
|
---|
| 23 | iplist text NOT NULL DEFAULT '',
|
---|
| 24 | description character varying(40) NOT NULL DEFAULT '',
|
---|
| 25 | comments text NOT NULL DEFAULT ''
|
---|
| 26 | );
|
---|
| 27 |
|
---|
[50] | 28 | CREATE TABLE default_records (
|
---|
| 29 | record_id serial NOT NULL,
|
---|
| 30 | group_id integer DEFAULT 1 NOT NULL,
|
---|
[130] | 31 | host text DEFAULT '' NOT NULL,
|
---|
[50] | 32 | "type" integer DEFAULT 1 NOT NULL,
|
---|
[130] | 33 | val text DEFAULT '' NOT NULL,
|
---|
[50] | 34 | distance integer DEFAULT 0 NOT NULL,
|
---|
| 35 | weight integer DEFAULT 0 NOT NULL,
|
---|
| 36 | port integer DEFAULT 0 NOT NULL,
|
---|
| 37 | ttl integer DEFAULT 86400 NOT NULL,
|
---|
[130] | 38 | description text
|
---|
[50] | 39 | );
|
---|
| 40 |
|
---|
| 41 | -- default records for the default group
|
---|
| 42 | COPY default_records (record_id, group_id, host, "type", val, distance, weight, port, ttl, description) FROM stdin;
|
---|
| 43 | 1 1 ns1.example.com:hostmaster.DOMAIN 6 10800:3600:604800:5400 0 0 0 86400 \N
|
---|
| 44 | 2 1 DOMAIN 2 ns2.example.com 0 0 0 7200 \N
|
---|
| 45 | 3 1 DOMAIN 2 ns1.example.com 0 0 0 7200 \N
|
---|
| 46 | 4 1 DOMAIN 1 10.0.0.4 0 0 0 7200 \N
|
---|
| 47 | 5 1 DOMAIN 15 mx1.example.com 10 0 0 7200 \N
|
---|
| 48 | 6 1 www.DOMAIN 5 DOMAIN 0 0 0 10800 \N
|
---|
| 49 | 7 1 DOMAIN 16 "v=spf1 a mx -all" 0 0 0 10800 \N
|
---|
| 50 | \.
|
---|
| 51 |
|
---|
[544] | 52 | CREATE TABLE default_rev_records (
|
---|
| 53 | record_id serial NOT NULL,
|
---|
| 54 | group_id integer DEFAULT 1 NOT NULL,
|
---|
| 55 | host text DEFAULT '' NOT NULL,
|
---|
| 56 | "type" integer DEFAULT 1 NOT NULL,
|
---|
| 57 | val text DEFAULT '' NOT NULL,
|
---|
| 58 | ttl integer DEFAULT 86400 NOT NULL,
|
---|
| 59 | description text
|
---|
| 60 | );
|
---|
| 61 |
|
---|
| 62 | COPY default_rev_records (record_id, group_id, host, "type", val, ttl, description) FROM stdin;
|
---|
| 63 | 1 1 hostmaster.ADMINDOMAIN:ns1.ADMINDOMAIN 6 3600:900:1048576:2560 3600
|
---|
| 64 | 2 1 unused-%r.ADMINDOMAIN 65283 ZONE 3600
|
---|
[545] | 65 | 3 1 ns2.example.com 2 ZONE 7200 \N
|
---|
| 66 | 4 1 ns1.example.com 2 ZONE 7200 \N
|
---|
[544] | 67 | \.
|
---|
| 68 |
|
---|
[85] | 69 | CREATE TABLE domains (
|
---|
| 70 | domain_id serial NOT NULL,
|
---|
[545] | 71 | "domain" character varying(80) NOT NULL PRIMARY KEY,
|
---|
[85] | 72 | group_id integer DEFAULT 1 NOT NULL,
|
---|
| 73 | description character varying(255) DEFAULT ''::character varying NOT NULL,
|
---|
| 74 | status integer DEFAULT 1 NOT NULL,
|
---|
| 75 | zserial integer,
|
---|
[545] | 76 | sertype character(1) DEFAULT 'D'::bpchar,
|
---|
| 77 | changed boolean DEFAULT true NOT NULL,
|
---|
| 78 | default_location character varying (4) DEFAULT '' NOT NULL
|
---|
[85] | 79 | );
|
---|
[548] | 80 | -- ~2x performance boost iff most zones are fed to output from the cache
|
---|
| 81 | CREATE INDEX dom_status_index ON domains (status);
|
---|
[85] | 82 |
|
---|
[548] | 83 |
|
---|
[544] | 84 | CREATE TABLE revzones (
|
---|
| 85 | rdns_id serial NOT NULL,
|
---|
[545] | 86 | revnet cidr NOT NULL PRIMARY KEY,
|
---|
[544] | 87 | group_id integer DEFAULT 1 NOT NULL,
|
---|
| 88 | description character varying(255) DEFAULT ''::character varying NOT NULL,
|
---|
| 89 | status integer DEFAULT 1 NOT NULL,
|
---|
| 90 | zserial integer,
|
---|
[545] | 91 | sertype character(1) DEFAULT 'D'::bpchar,
|
---|
| 92 | changed boolean DEFAULT true NOT NULL,
|
---|
| 93 | default_location character varying (4) DEFAULT '' NOT NULL
|
---|
[544] | 94 | );
|
---|
[548] | 95 | CREATE INDEX rev_status_index ON revzones USING btree (status);
|
---|
[544] | 96 |
|
---|
[85] | 97 | CREATE TABLE groups (
|
---|
| 98 | group_id serial NOT NULL,
|
---|
| 99 | parent_group_id integer DEFAULT 1 NOT NULL,
|
---|
| 100 | group_name character varying(255) DEFAULT ''::character varying NOT NULL,
|
---|
| 101 | permission_id integer DEFAULT 1 NOT NULL,
|
---|
| 102 | inherit_perm boolean DEFAULT true NOT NULL
|
---|
| 103 | );
|
---|
| 104 |
|
---|
| 105 | -- Provide a basic default group
|
---|
[86] | 106 | COPY groups (group_id, parent_group_id, permission_id, group_name) FROM stdin;
|
---|
[85] | 107 | 1 1 1 default
|
---|
| 108 | \.
|
---|
| 109 |
|
---|
[91] | 110 | -- entry is text due to possible long entries from AXFR - a domain with "many"
|
---|
| 111 | -- odd records will overflow varchar(200)
|
---|
[85] | 112 | CREATE TABLE log (
|
---|
[89] | 113 | log_id serial NOT NULL,
|
---|
[85] | 114 | domain_id integer,
|
---|
| 115 | user_id integer,
|
---|
| 116 | group_id integer,
|
---|
| 117 | email character varying(60),
|
---|
| 118 | name character varying(60),
|
---|
[91] | 119 | entry text,
|
---|
[548] | 120 | stamp timestamp with time zone DEFAULT now(),
|
---|
| 121 | rdns_id integer
|
---|
[85] | 122 | );
|
---|
| 123 |
|
---|
| 124 | CREATE TABLE permissions (
|
---|
| 125 | permission_id serial NOT NULL,
|
---|
| 126 | "admin" boolean DEFAULT false NOT NULL,
|
---|
| 127 | self_edit boolean DEFAULT false NOT NULL,
|
---|
| 128 | group_create boolean DEFAULT false NOT NULL,
|
---|
| 129 | group_edit boolean DEFAULT false NOT NULL,
|
---|
| 130 | group_delete boolean DEFAULT false NOT NULL,
|
---|
| 131 | user_create boolean DEFAULT false NOT NULL,
|
---|
| 132 | user_edit boolean DEFAULT false NOT NULL,
|
---|
| 133 | user_delete boolean DEFAULT false NOT NULL,
|
---|
| 134 | domain_create boolean DEFAULT false NOT NULL,
|
---|
| 135 | domain_edit boolean DEFAULT false NOT NULL,
|
---|
| 136 | domain_delete boolean DEFAULT false NOT NULL,
|
---|
| 137 | record_create boolean DEFAULT false NOT NULL,
|
---|
| 138 | record_edit boolean DEFAULT false NOT NULL,
|
---|
| 139 | record_delete boolean DEFAULT false NOT NULL,
|
---|
[548] | 140 | user_id integer UNIQUE,
|
---|
| 141 | group_id integer UNIQUE,
|
---|
[545] | 142 | record_locchg boolean DEFAULT false NOT NULL,
|
---|
| 143 | location_create boolean DEFAULT false NOT NULL,
|
---|
| 144 | location_edit boolean DEFAULT false NOT NULL,
|
---|
| 145 | location_delete boolean DEFAULT false NOT NULL,
|
---|
[548] | 146 | location_view boolean DEFAULT false NOT NULL
|
---|
[85] | 147 | );
|
---|
| 148 |
|
---|
| 149 | -- Need *two* basic permissions; one for the initial group, one for the default admin user
|
---|
[548] | 150 | COPY permissions (permission_id, "admin", self_edit, group_create, group_edit, group_delete, user_create, user_edit, user_delete, domain_create, domain_edit, domain_delete, record_create, record_edit, record_delete, user_id, group_id, record_locchg, location_create, location_edit, location_delete, location_view) FROM stdin;
|
---|
| 151 | 1 f f f f f f f f t t t t t t \N 1 f f f f f
|
---|
| 152 | 2 t f f f f f f f f f f f f f 1 \N f f f f f
|
---|
[85] | 153 | \.
|
---|
| 154 |
|
---|
[544] | 155 | -- rdns_id defaults to 0 since many records will not have an associated rDNS entry.
|
---|
[50] | 156 | CREATE TABLE records (
|
---|
[544] | 157 | domain_id integer NOT NULL DEFAULT 0,
|
---|
[50] | 158 | record_id serial NOT NULL,
|
---|
[130] | 159 | host text DEFAULT '' NOT NULL,
|
---|
[50] | 160 | "type" integer DEFAULT 1 NOT NULL,
|
---|
[130] | 161 | val text DEFAULT '' NOT NULL,
|
---|
[50] | 162 | distance integer DEFAULT 0 NOT NULL,
|
---|
| 163 | weight integer DEFAULT 0 NOT NULL,
|
---|
| 164 | port integer DEFAULT 0 NOT NULL,
|
---|
[85] | 165 | ttl integer DEFAULT 7200 NOT NULL,
|
---|
[545] | 166 | description text,
|
---|
[548] | 167 | rdns_id integer NOT NULL DEFAULT 0,
|
---|
| 168 | location character varying (4) DEFAULT '' NOT NULL,
|
---|
| 169 | stamp TIMESTAMP WITH TIME ZONE DEFAULT 'epoch' NOT NULL,
|
---|
| 170 | expires boolean DEFAULT 'n' NOT NULL,
|
---|
| 171 | stampactive boolean DEFAULT 'n' NOT NULL
|
---|
[50] | 172 | );
|
---|
[548] | 173 | CREATE INDEX rec_domain_index ON records USING btree (domain_id);
|
---|
| 174 | CREATE INDEX rec_revzone_index ON records USING btree (rdns_id);
|
---|
| 175 | CREATE INDEX rec_types_index ON records USING btree ("type");
|
---|
[50] | 176 |
|
---|
| 177 | CREATE TABLE rectypes (
|
---|
| 178 | val integer NOT NULL,
|
---|
[544] | 179 | name character varying(20) NOT NULL,
|
---|
[50] | 180 | stdflag integer DEFAULT 1 NOT NULL,
|
---|
[102] | 181 | listorder integer DEFAULT 255 NOT NULL,
|
---|
| 182 | alphaorder integer DEFAULT 32768 NOT NULL
|
---|
[50] | 183 | );
|
---|
| 184 |
|
---|
| 185 | -- Types are required. NB: these are vaguely read-only too
|
---|
[85] | 186 | -- data from http://www.iana.org/assignments/dns-parameters
|
---|
[102] | 187 | COPY rectypes (val, name, stdflag, listorder, alphaorder) FROM stdin;
|
---|
| 188 | 1 A 1 1 1
|
---|
[547] | 189 | 2 NS 2 10 37
|
---|
[544] | 190 | 3 MD 5 255 29
|
---|
| 191 | 4 MF 5 255 30
|
---|
[547] | 192 | 5 CNAME 2 12 9
|
---|
[544] | 193 | 6 SOA 0 0 53
|
---|
| 194 | 7 MB 5 255 28
|
---|
| 195 | 8 MG 5 255 31
|
---|
| 196 | 9 MR 5 255 33
|
---|
| 197 | 10 NULL 5 255 43
|
---|
| 198 | 11 WKS 5 255 64
|
---|
[545] | 199 | 12 PTR 3 5 46
|
---|
[544] | 200 | 13 HINFO 5 255 18
|
---|
| 201 | 14 MINFO 5 255 32
|
---|
[547] | 202 | 15 MX 1 11 34
|
---|
| 203 | 16 TXT 2 13 60
|
---|
[544] | 204 | 17 RP 4 255 48
|
---|
| 205 | 18 AFSDB 5 255 4
|
---|
| 206 | 19 X25 5 255 65
|
---|
| 207 | 20 ISDN 5 255 21
|
---|
| 208 | 21 RT 5 255 50
|
---|
| 209 | 22 NSAP 5 255 38
|
---|
| 210 | 23 NSAP-PTR 5 255 39
|
---|
| 211 | 24 SIG 5 255 51
|
---|
| 212 | 25 KEY 5 255 23
|
---|
| 213 | 26 PX 5 255 47
|
---|
| 214 | 27 GPOS 5 255 17
|
---|
| 215 | 28 AAAA 1 3 3
|
---|
| 216 | 29 LOC 5 255 25
|
---|
| 217 | 30 NXT 5 255 44
|
---|
| 218 | 31 EID 5 255 15
|
---|
| 219 | 32 NIMLOC 5 255 36
|
---|
[547] | 220 | 33 SRV 1 14 55
|
---|
[544] | 221 | 34 ATMA 5 255 6
|
---|
| 222 | 35 NAPTR 5 255 35
|
---|
| 223 | 36 KX 5 255 24
|
---|
| 224 | 37 CERT 5 255 8
|
---|
| 225 | 38 A6 5 3 2
|
---|
| 226 | 39 DNAME 5 255 12
|
---|
| 227 | 40 SINK 5 255 52
|
---|
| 228 | 41 OPT 5 255 45
|
---|
| 229 | 42 APL 5 255 5
|
---|
| 230 | 43 DS 5 255 14
|
---|
| 231 | 44 SSHFP 5 255 56
|
---|
| 232 | 45 IPSECKEY 5 255 20
|
---|
| 233 | 46 RRSIG 5 255 49
|
---|
| 234 | 47 NSEC 5 255 40
|
---|
| 235 | 48 DNSKEY 5 255 13
|
---|
| 236 | 49 DHCID 5 255 10
|
---|
| 237 | 50 NSEC3 5 255 41
|
---|
| 238 | 51 NSEC3PARAM 5 255 42
|
---|
| 239 | 55 HIP 5 255 19
|
---|
| 240 | 99 SPF 5 255 54
|
---|
| 241 | 100 UINFO 5 255 62
|
---|
| 242 | 101 UID 5 255 61
|
---|
| 243 | 102 GID 5 255 16
|
---|
| 244 | 103 UNSPEC 5 255 63
|
---|
| 245 | 249 TKEY 5 255 58
|
---|
| 246 | 250 TSIG 5 255 59
|
---|
| 247 | 251 IXFR 5 255 22
|
---|
| 248 | 252 AXFR 5 255 7
|
---|
| 249 | 253 MAILB 5 255 27
|
---|
| 250 | 254 MAILA 5 255 26
|
---|
| 251 | 32768 TA 5 255 57
|
---|
| 252 | 32769 DLV 5 255 11
|
---|
[50] | 253 | \.
|
---|
| 254 |
|
---|
[544] | 255 | -- Custom types (ab)using the "Private use" range from 65280 to 65534
|
---|
| 256 | COPY rectypes (val, name, stdflag, listorder, alphaorder) FROM stdin;
|
---|
| 257 | 65280 A+PTR 2 2 2
|
---|
| 258 | 65281 AAAA+PTR 2 4 4
|
---|
[545] | 259 | 65282 PTR template 3 6 2
|
---|
| 260 | 65283 A+PTR template 2 7 2
|
---|
[547] | 261 | 65284 AAAA+PTR template 2 8 2
|
---|
| 262 | 65285 Delegation 2 9 2
|
---|
[544] | 263 | \.
|
---|
| 264 |
|
---|
[50] | 265 | CREATE TABLE users (
|
---|
| 266 | user_id serial NOT NULL,
|
---|
| 267 | group_id integer DEFAULT 1 NOT NULL,
|
---|
| 268 | username character varying(60) NOT NULL,
|
---|
| 269 | "password" character varying(34) NOT NULL,
|
---|
[85] | 270 | firstname character varying(60),
|
---|
| 271 | lastname character varying(60),
|
---|
[50] | 272 | phone character varying(15),
|
---|
| 273 | "type" character(1) DEFAULT 'S'::bpchar NOT NULL,
|
---|
| 274 | status integer DEFAULT 1 NOT NULL,
|
---|
[85] | 275 | permission_id integer DEFAULT 1 NOT NULL,
|
---|
| 276 | inherit_perm boolean DEFAULT true NOT NULL
|
---|
[50] | 277 | );
|
---|
| 278 |
|
---|
| 279 | -- create initial default user? may be better to create an "initialize" script or something
|
---|
[86] | 280 | COPY users (user_id, group_id, username, "password", firstname, lastname, phone, "type", status, permission_id, inherit_perm) FROM stdin;
|
---|
[89] | 281 | 1 1 admin $1$PfEBUv9d$wV2/UG4gmKk08DLmdE8/d. Initial User \N S 1 2 f
|
---|
[50] | 282 | \.
|
---|
| 283 |
|
---|
| 284 | --
|
---|
| 285 | -- contraints. add these here so initial data doesn't get added strangely.
|
---|
| 286 | --
|
---|
| 287 |
|
---|
| 288 | -- primary keys
|
---|
[65] | 289 | ALTER TABLE ONLY permissions
|
---|
| 290 | ADD CONSTRAINT permissions_permission_id_key UNIQUE (permission_id);
|
---|
| 291 |
|
---|
[50] | 292 | ALTER TABLE ONLY groups
|
---|
| 293 | ADD CONSTRAINT groups_group_id_key UNIQUE (group_id);
|
---|
| 294 |
|
---|
| 295 | ALTER TABLE ONLY domains
|
---|
| 296 | ADD CONSTRAINT domains_domain_id_key UNIQUE (domain_id);
|
---|
| 297 |
|
---|
| 298 | ALTER TABLE ONLY default_records
|
---|
| 299 | ADD CONSTRAINT default_records_pkey PRIMARY KEY (record_id);
|
---|
| 300 |
|
---|
| 301 | ALTER TABLE ONLY records
|
---|
| 302 | ADD CONSTRAINT records_pkey PRIMARY KEY (record_id);
|
---|
| 303 |
|
---|
| 304 | ALTER TABLE ONLY rectypes
|
---|
| 305 | ADD CONSTRAINT rectypes_pkey PRIMARY KEY (val, name);
|
---|
| 306 |
|
---|
| 307 | ALTER TABLE ONLY users
|
---|
| 308 | ADD CONSTRAINT users_pkey PRIMARY KEY (username);
|
---|
| 309 |
|
---|
| 310 | ALTER TABLE ONLY users
|
---|
| 311 | ADD CONSTRAINT uidu UNIQUE (user_id);
|
---|
| 312 |
|
---|
| 313 | -- foreign keys
|
---|
[65] | 314 | -- fixme: permissions FK refs
|
---|
[545] | 315 | ALTER TABLE ONLY locations
|
---|
| 316 | ADD CONSTRAINT "locations_group_id_fkey" FOREIGN KEY (group_id) REFERENCES groups(group_id);
|
---|
| 317 |
|
---|
[50] | 318 | ALTER TABLE ONLY domains
|
---|
| 319 | ADD CONSTRAINT "$1" FOREIGN KEY (group_id) REFERENCES groups(group_id);
|
---|
| 320 |
|
---|
| 321 | ALTER TABLE ONLY default_records
|
---|
| 322 | ADD CONSTRAINT "$1" FOREIGN KEY (group_id) REFERENCES groups(group_id);
|
---|
| 323 |
|
---|
| 324 | ALTER TABLE ONLY users
|
---|
| 325 | ADD CONSTRAINT "$1" FOREIGN KEY (group_id) REFERENCES groups(group_id);
|
---|
| 326 |
|
---|
[548] | 327 | ALTER TABLE ONLY revzones
|
---|
| 328 | ADD CONSTRAINT "$1" FOREIGN KEY (group_id) REFERENCES groups(group_id);
|
---|
| 329 |
|
---|
[50] | 330 | ALTER TABLE ONLY groups
|
---|
| 331 | ADD CONSTRAINT group_parent FOREIGN KEY (parent_group_id) REFERENCES groups(group_id);
|
---|
[86] | 332 |
|
---|
| 333 | -- set starting sequence numbers, since we've inserted data before they're active
|
---|
[548] | 334 | -- only set the ones that have data loaded with \copy, and obey the convention
|
---|
| 335 | -- that comes out of pg_dump
|
---|
| 336 | SELECT pg_catalog.setval('misc_misc_id_seq', 1, true);
|
---|
| 337 | SELECT pg_catalog.setval('default_records_record_id_seq', 8, true);
|
---|
| 338 | SELECT pg_catalog.setval('default_rev_records_record_id_seq', 4, true);
|
---|
| 339 | SELECT pg_catalog.setval('groups_group_id_seq', 1, true);
|
---|
| 340 | SELECT pg_catalog.setval('permissions_permission_id_seq', 2, true);
|
---|
| 341 | SELECT pg_catalog.setval('users_user_id_seq', 1, true);
|
---|