- remove array_to_string() casts; psycopg2 automatically converts
[plcapi.git] / planetlab4.sql
1 --
2 -- PlanetLab Central database schema
3 -- Version 4, PostgreSQL
4 --
5 -- Aaron Klingaman <alk@cs.princeton.edu>
6 -- Reid Moran <rmoran@cs.princeton.edu>
7 -- Mark Huang <mlhuang@cs.princeton.edu>
8 -- Tony Mack <tmack@cs.princeton.edu>
9 --
10 -- Copyright (C) 2006 The Trustees of Princeton University
11 --
12 -- $Id: planetlab4.sql,v 1.28 2006/11/08 17:34:07 thierry Exp $
13 --
14
15 --------------------------------------------------------------------------------
16 -- Aggregates and store procedures
17 --------------------------------------------------------------------------------
18
19 -- Like MySQL GROUP_CONCAT(), this function aggregates values into a
20 -- PostgreSQL array.
21 CREATE AGGREGATE array_accum (
22     sfunc = array_append,
23     basetype = anyelement,
24     stype = anyarray,
25     initcond = '{}'
26 );
27
28 --------------------------------------------------------------------------------
29 -- Accounts
30 --------------------------------------------------------------------------------
31
32 -- Accounts
33 CREATE TABLE persons (
34     -- Mandatory
35     person_id serial PRIMARY KEY, -- Account identifier
36     email text NOT NULL, -- E-mail address
37     first_name text NOT NULL, -- First name
38     last_name text NOT NULL, -- Last name
39     deleted boolean NOT NULL DEFAULT false, -- Has been deleted
40     enabled boolean NOT NULL DEFAULT false, -- Has been disabled
41
42     -- Password
43     password text NOT NULL, -- Password (md5crypted)
44     verification_key text, -- Reset password key
45     verification_expires timestamp without time zone,
46
47     -- Optional
48     title text, -- Honorific
49     phone text, -- Telephone number
50     url text, -- Home page
51     bio text, -- Biography
52
53     -- Timestamps
54     date_created timestamp without time zone NOT NULL DEFAULT CURRENT_TIMESTAMP,
55     last_updated timestamp without time zone NOT NULL DEFAULT CURRENT_TIMESTAMP
56 ) WITH OIDS;
57 CREATE INDEX persons_email_idx ON persons (email) WHERE deleted IS false;
58
59 --------------------------------------------------------------------------------
60 -- Sites
61 --------------------------------------------------------------------------------
62
63 -- Sites
64 CREATE TABLE sites (
65     -- Mandatory
66     site_id serial PRIMARY KEY, -- Site identifier
67     login_base text NOT NULL, -- Site slice prefix
68     name text NOT NULL, -- Site name
69     abbreviated_name text NOT NULL, -- Site abbreviated name
70     deleted boolean NOT NULL DEFAULT false, -- Has been deleted
71     is_public boolean NOT NULL DEFAULT true, -- Shows up in public lists
72     max_slices integer NOT NULL DEFAULT 0, -- Maximum number of slices
73     max_slivers integer NOT NULL DEFAULT 1000, -- Maximum number of instantiated slivers
74
75     -- Optional
76     latitude real,
77     longitude real,
78     url text,
79
80     -- Timestamps
81     date_created timestamp without time zone NOT NULL DEFAULT CURRENT_TIMESTAMP,
82     last_updated timestamp without time zone NOT NULL DEFAULT CURRENT_TIMESTAMP
83 ) WITH OIDS;
84 CREATE INDEX sites_login_base_idx ON sites (login_base) WHERE deleted IS false;
85
86 -- Account site membership
87 CREATE TABLE person_site (
88     person_id integer REFERENCES persons NOT NULL, -- Account identifier
89     site_id integer REFERENCES sites NOT NULL, -- Site identifier
90     is_primary boolean NOT NULL DEFAULT false, -- Is the primary site for this account
91     PRIMARY KEY (person_id, site_id)
92 );
93 CREATE INDEX person_site_person_id_idx ON person_site (person_id);
94 CREATE INDEX person_site_site_id_idx ON person_site (site_id);
95
96 -- Ordered by primary site first
97 CREATE VIEW person_site_ordered AS
98 SELECT person_id, site_id
99 FROM person_site
100 ORDER BY is_primary DESC;
101
102 -- Sites that each person is a member of
103 CREATE VIEW person_sites AS
104 SELECT person_id,
105 array_accum(site_id) AS site_ids
106 FROM person_site_ordered
107 GROUP BY person_id;
108
109 -- Accounts at each site
110 CREATE VIEW site_persons AS
111 SELECT site_id,
112 array_accum(person_id) AS person_ids
113 FROM person_site
114 GROUP BY site_id;
115
116 --------------------------------------------------------------------------------
117 -- Mailing Addresses
118 --------------------------------------------------------------------------------
119
120 CREATE TABLE address_types (
121     address_type_id serial PRIMARY KEY, -- Address type identifier
122     name text UNIQUE NOT NULL, -- Address type
123     description text -- Address type description
124 ) WITH OIDS;
125
126 INSERT INTO address_types (name) VALUES ('Personal');
127 INSERT INTO address_types (name) VALUES ('Shipping');
128 -- XXX Used to be Site
129 INSERT INTO address_types (name) VALUES ('Billing');
130
131 -- Mailing addresses
132 CREATE TABLE addresses (
133     address_id serial PRIMARY KEY, -- Address identifier
134     line1 text NOT NULL, -- Address line 1
135     line2 text, -- Address line 2
136     line3 text, -- Address line 3
137     city text NOT NULL, -- City
138     state text NOT NULL, -- State or province
139     postalcode text NOT NULL, -- Postal code
140     country text NOT NULL -- Country
141 ) WITH OIDS;
142
143 -- Each mailing address can be one of several types
144 CREATE TABLE address_address_type (
145     address_id integer REFERENCES addresses NOT NULL, -- Address identifier
146     address_type_id integer REFERENCES address_types NOT NULL, -- Address type
147     PRIMARY KEY (address_id, address_type_id)
148 ) WITH OIDS;
149 CREATE INDEX address_address_type_address_id_idx ON address_address_type (address_id);
150 CREATE INDEX address_address_type_address_type_id_idx ON address_address_type (address_type_id);
151
152 CREATE VIEW address_address_types AS
153 SELECT address_id,
154 array_accum(address_type_id) AS address_type_ids,
155 array_accum(address_types.name) AS address_types
156 FROM address_address_type
157 LEFT JOIN address_types USING (address_type_id)
158 GROUP BY address_id;
159
160 CREATE TABLE site_address (
161     site_id integer REFERENCES sites NOT NULL, -- Site identifier
162     address_id integer REFERENCES addresses NOT NULL, -- Address identifier
163     PRIMARY KEY (site_id, address_id)
164 ) WITH OIDS;
165 CREATE INDEX site_address_site_id_idx ON site_address (site_id);
166 CREATE INDEX site_address_address_id_idx ON site_address (address_id);
167
168 CREATE VIEW site_addresses AS
169 SELECT site_id,
170 array_accum(address_id) AS address_ids
171 FROM site_address
172 GROUP BY site_id;
173
174 --------------------------------------------------------------------------------
175 -- Authentication Keys
176 --------------------------------------------------------------------------------
177
178 -- Valid key types
179 CREATE TABLE key_types (
180     key_type text PRIMARY KEY -- Key type
181 ) WITH OIDS;
182 INSERT INTO key_types (key_type) VALUES ('ssh');
183
184 -- Authentication keys
185 CREATE TABLE keys (
186     key_id serial PRIMARY KEY, -- Key identifier
187     key_type text REFERENCES key_types NOT NULL, -- Key type
188     key text NOT NULL, -- Key material
189     is_blacklisted boolean NOT NULL DEFAULT false -- Has been blacklisted
190 ) WITH OIDS;
191
192 -- Account authentication key(s)
193 CREATE TABLE person_key (
194     person_id integer REFERENCES persons NOT NULL, -- Account identifier
195     key_id integer REFERENCES keys NOT NULL, -- Key identifier
196     PRIMARY KEY (person_id, key_id)
197 ) WITH OIDS;
198 CREATE INDEX person_key_person_id_idx ON person_key (person_id);
199 CREATE INDEX person_key_key_id_idx ON person_key (key_id);
200
201 CREATE VIEW person_keys AS
202 SELECT person_id,
203 array_accum(key_id) AS key_ids
204 FROM person_key
205 GROUP BY person_id;
206
207 --------------------------------------------------------------------------------
208 -- Account roles
209 --------------------------------------------------------------------------------
210
211 -- Valid account roles
212 CREATE TABLE roles (
213     role_id integer PRIMARY KEY, -- Role identifier
214     name text UNIQUE NOT NULL -- Role symbolic name
215 ) WITH OIDS;
216 INSERT INTO roles (role_id, name) VALUES (10, 'admin');
217 INSERT INTO roles (role_id, name) VALUES (20, 'pi');
218 INSERT INTO roles (role_id, name) VALUES (30, 'user');
219 INSERT INTO roles (role_id, name) VALUES (40, 'tech');
220 INSERT INTO roles (role_id, name) VALUES (1000, 'node');
221 INSERT INTO roles (role_id, name) VALUES (2000, 'anonymous');
222 -- xxx not sure this us useful yet
223 --INSERT INTO roles (role_id, name) VALUES (3000, 'peer');
224
225 CREATE TABLE person_role (
226     person_id integer REFERENCES persons NOT NULL, -- Account identifier
227     role_id integer REFERENCES roles NOT NULL, -- Role identifier
228     PRIMARY KEY (person_id, role_id)
229 ) WITH OIDS;
230 CREATE INDEX person_role_person_id_idx ON person_role (person_id);
231
232 -- Account roles
233 CREATE VIEW person_roles AS
234 SELECT person_id,
235 array_accum(role_id) AS role_ids,
236 array_accum(roles.name) AS roles
237 FROM person_role
238 LEFT JOIN roles USING (role_id)
239 GROUP BY person_id;
240
241 --------------------------------------------------------------------------------
242 -- Nodes
243 --------------------------------------------------------------------------------
244
245 -- Valid node boot states
246 CREATE TABLE boot_states (
247     boot_state text PRIMARY KEY
248 ) WITH OIDS;
249 INSERT INTO boot_states (boot_state) VALUES ('boot');
250 INSERT INTO boot_states (boot_state) VALUES ('dbg');
251 INSERT INTO boot_states (boot_state) VALUES ('inst');
252 INSERT INTO boot_states (boot_state) VALUES ('rins');
253 INSERT INTO boot_states (boot_state) VALUES ('rcnf');
254 INSERT INTO boot_states (boot_state) VALUES ('new');
255
256 -- Peers
257 CREATE TABLE peers (
258      peer_id  serial PRIMARY KEY, -- identifier
259      peername text NOT NULL,      -- free text
260      peer_url text NOT NULL,      -- the url of that peer's API
261      person_id integer REFERENCES persons NOT NULL, -- the account we use for logging in
262        
263      deleted boolean NOT NULL DEFAULT false
264 ) WITH OIDS;
265
266
267 -- Nodes
268 CREATE TABLE nodes (
269     -- Mandatory
270     node_id serial PRIMARY KEY, -- Node identifier
271     hostname text NOT NULL, -- Node hostname
272     site_id integer REFERENCES sites, -- At which site (clause NOT NULL removed for foreign_nodes)
273     boot_state text REFERENCES boot_states NOT NULL DEFAULT 'inst', -- Node boot state
274     cached boolean NOT NULL DEFAULT false,  -- is this entry cached from a peer ?
275     peer_id integer REFERENCES peers,       -- if cached, then from what peer
276     deleted boolean NOT NULL DEFAULT false, -- Is deleted
277
278     -- Optional
279     model text, -- Hardware make and model
280     boot_nonce text, -- Random nonce updated by Boot Manager
281     version text, -- Boot CD version string updated by Boot Manager
282     -- XXX Should be key_id integer REFERENCES keys
283     ssh_rsa_key text, -- SSH host key updated by Boot Manager
284     key text, -- Node key generated by API when configuration file is downloaded
285
286     -- Timestamps
287     date_created timestamp without time zone NOT NULL DEFAULT CURRENT_TIMESTAMP,
288     last_updated timestamp without time zone NOT NULL DEFAULT CURRENT_TIMESTAMP
289 ) WITH OIDS;
290 CREATE INDEX nodes_hostname_idx ON nodes (hostname) WHERE deleted IS false;
291 CREATE INDEX nodes_site_id_idx ON nodes (site_id) WHERE deleted IS false;
292
293 -- Nodes at each site
294 CREATE VIEW site_nodes AS
295 SELECT site_id,
296 array_accum(node_id) AS node_ids
297 FROM nodes
298 GROUP BY site_id;
299
300 -- Nodes at each peer
301 CREATE VIEW peer_nodes AS
302 SELECT peer_id,
303 array_to_string(array_accum(node_id), ',') AS node_ids
304 FROM nodes 
305 GROUP BY peer_id;
306
307 CREATE VIEW view_peers AS
308 SELECT 
309 peers.*, 
310 peer_nodes.node_ids 
311 FROM peers
312 LEFT JOIN peer_nodes USING (peer_id);
313
314 --------------------------------------------------------------------------------
315 -- Node groups
316 --------------------------------------------------------------------------------
317
318 -- Node groups
319 CREATE TABLE nodegroups (
320     nodegroup_id serial PRIMARY KEY, -- Group identifier
321     name text UNIQUE NOT NULL, -- Group name
322     description text -- Group description
323 ) WITH OIDS;
324
325 -- Node group membership
326 CREATE TABLE nodegroup_node (
327     nodegroup_id integer REFERENCES nodegroups NOT NULL, -- Group identifier
328     node_id integer REFERENCES nodes NOT NULL, -- Node identifier
329     PRIMARY KEY (nodegroup_id, node_id)
330 ) WITH OIDS;
331 CREATE INDEX nodegroup_node_nodegroup_id_idx ON nodegroup_node (nodegroup_id);
332 CREATE INDEX nodegroup_node_node_id_idx ON nodegroup_node (node_id);
333
334 -- Nodes in each node group
335 CREATE VIEW nodegroup_nodes AS
336 SELECT nodegroup_id,
337 array_accum(node_id) AS node_ids
338 FROM nodegroup_node
339 GROUP BY nodegroup_id;
340
341 -- Node groups that each node is a member of
342 CREATE VIEW node_nodegroups AS
343 SELECT node_id,
344 array_accum(nodegroup_id) AS nodegroup_ids
345 FROM nodegroup_node
346 GROUP BY node_id;
347
348 --------------------------------------------------------------------------------
349 -- Node configuration files
350 --------------------------------------------------------------------------------
351
352 CREATE TABLE conf_files (
353     conf_file_id serial PRIMARY KEY, -- Configuration file identifier
354     enabled bool NOT NULL DEFAULT true, -- Configuration file is active
355     source text NOT NULL, -- Relative path on the boot server where file can be downloaded
356     dest text NOT NULL, -- Absolute path where file should be installed
357     file_permissions text NOT NULL DEFAULT '0644', -- chmod(1) permissions
358     file_owner text NOT NULL DEFAULT 'root', -- chown(1) owner
359     file_group text NOT NULL DEFAULT 'root', -- chgrp(1) owner
360     preinstall_cmd text, -- Shell command to execute prior to installing
361     postinstall_cmd text, -- Shell command to execute after installing
362     error_cmd text, -- Shell command to execute if any error occurs
363     ignore_cmd_errors bool NOT NULL DEFAULT false, -- Install file anyway even if an error occurs
364     always_update bool NOT NULL DEFAULT false -- Always attempt to install file even if unchanged
365 );
366
367 CREATE TABLE conf_file_node (
368     conf_file_id integer REFERENCES conf_files NOT NULL, -- Configuration file identifier
369     node_id integer REFERENCES nodes NOT NULL, -- Node identifier
370     PRIMARY KEY (conf_file_id, node_id)
371 );
372 CREATE INDEX conf_file_node_conf_file_id_idx ON conf_file_node (conf_file_id);
373 CREATE INDEX conf_file_node_node_id_idx ON conf_file_node (node_id);
374
375 -- Nodes linked to each configuration file
376 CREATE VIEW conf_file_nodes AS
377 SELECT conf_file_id,
378 array_accum(node_id) AS node_ids
379 FROM conf_file_node
380 GROUP BY conf_file_id;
381
382 -- Configuration files linked to each node
383 CREATE VIEW node_conf_files AS
384 SELECT node_id,
385 array_accum(conf_file_id) AS conf_file_ids
386 FROM conf_file_node
387 GROUP BY node_id;
388
389 CREATE TABLE conf_file_nodegroup (
390     conf_file_id integer REFERENCES conf_files NOT NULL, -- Configuration file identifier
391     nodegroup_id integer REFERENCES nodegroups NOT NULL, -- Node group identifier
392     PRIMARY KEY (conf_file_id, nodegroup_id)
393 );
394 CREATE INDEX conf_file_nodegroup_conf_file_id_idx ON conf_file_nodegroup (conf_file_id);
395 CREATE INDEX conf_file_nodegroup_nodegroup_id_idx ON conf_file_nodegroup (nodegroup_id);
396
397 -- Node groups linked to each configuration file
398 CREATE VIEW conf_file_nodegroups AS
399 SELECT conf_file_id,
400 array_accum(nodegroup_id) AS nodegroup_ids
401 FROM conf_file_nodegroup
402 GROUP BY conf_file_id;
403
404 -- Configuration files linked to each node group
405 CREATE VIEW nodegroup_conf_files AS
406 SELECT nodegroup_id,
407 array_accum(conf_file_id) AS conf_file_ids
408 FROM conf_file_nodegroup
409 GROUP BY nodegroup_id;
410
411 --------------------------------------------------------------------------------
412 -- Node network interfaces
413 --------------------------------------------------------------------------------
414
415 -- Valid network addressing schemes
416 CREATE TABLE network_types (
417     type text PRIMARY KEY -- Addressing scheme
418 ) WITH OIDS;
419 INSERT INTO network_types (type) VALUES ('ipv4');
420
421 -- Valid network configuration methods
422 CREATE TABLE network_methods (
423     method text PRIMARY KEY -- Configuration method
424 ) WITH OIDS;
425 INSERT INTO network_methods (method) VALUES ('static');
426 INSERT INTO network_methods (method) VALUES ('dhcp');
427 INSERT INTO network_methods (method) VALUES ('proxy');
428 INSERT INTO network_methods (method) VALUES ('tap');
429 INSERT INTO network_methods (method) VALUES ('ipmi');
430 INSERT INTO network_methods (method) VALUES ('unknown');
431
432 -- Node network interfaces
433 CREATE TABLE nodenetworks (
434     -- Mandatory
435     nodenetwork_id serial PRIMARY KEY, -- Network interface identifier
436     node_id integer REFERENCES nodes NOT NULL, -- Which node
437     is_primary boolean NOT NULL DEFAULT false, -- Is the primary interface for this node
438     type text REFERENCES network_types NOT NULL, -- Addressing scheme
439     method text REFERENCES network_methods NOT NULL, -- Configuration method
440
441     -- Optional, depending on type and method
442     ip text, -- IP address
443     mac text, -- MAC address
444     gateway text, -- Default gateway address
445     network text, -- Network address
446     broadcast text, -- Network broadcast address
447     netmask text, -- Network mask
448     dns1 text, -- Primary DNS server
449     dns2 text, -- Secondary DNS server
450     bwlimit integer, -- Bandwidth limit in bps
451     hostname text -- Hostname of this interface
452 ) WITH OIDS;
453 CREATE INDEX nodenetworks_node_id_idx ON nodenetworks (node_id);
454
455 -- Ordered by primary interface first
456 CREATE VIEW nodenetworks_ordered AS
457 SELECT node_id, nodenetwork_id
458 FROM nodenetworks
459 ORDER BY is_primary DESC;
460
461 -- Network interfaces on each node
462 CREATE VIEW node_nodenetworks AS
463 SELECT node_id,
464 array_accum(nodenetwork_id) AS nodenetwork_ids
465 FROM nodenetworks_ordered
466 GROUP BY node_id;
467
468 --------------------------------------------------------------------------------
469 -- Power control units (PCUs)
470 --------------------------------------------------------------------------------
471
472 CREATE TABLE pcus (
473     -- Mandatory
474     pcu_id serial PRIMARY KEY, -- PCU identifier
475     site_id integer REFERENCES sites NOT NULL, -- Site identifier
476     hostname text, -- Hostname, not necessarily unique (multiple logical sites could use the same PCU)
477     ip text NOT NULL, -- IP, not necessarily unique
478
479     -- Optional
480     protocol text, -- Protocol, e.g. ssh or https or telnet
481     username text, -- Username, if applicable
482     "password" text, -- Password, if applicable
483     model text, -- Model, e.g. BayTech or iPal
484     notes text -- Random notes
485 ) WITH OIDS;
486 CREATE INDEX pcus_site_id_idx ON pcus (site_id);
487
488 CREATE VIEW site_pcus AS
489 SELECT site_id,
490 array_accum(pcu_id) AS pcu_ids
491 FROM pcus
492 GROUP BY site_id;
493
494 CREATE TABLE pcu_node (
495     pcu_id integer REFERENCES pcus NOT NULL, -- PCU identifier
496     node_id integer REFERENCES nodes NOT NULL, -- Node identifier
497     port integer NOT NULL, -- Port number
498     PRIMARY KEY (pcu_id, node_id), -- The same node cannot be controlled by different ports
499     UNIQUE (pcu_id, port) -- The same port cannot control multiple nodes
500 );
501 CREATE INDEX pcu_node_pcu_id_idx ON pcu_node (pcu_id);
502 CREATE INDEX pcu_node_node_id_idx ON pcu_node (node_id);
503
504 CREATE VIEW node_pcus AS
505 SELECT node_id,
506 array_accum(pcu_id) AS pcu_ids,
507 array_accum(port) AS ports
508 FROM pcu_node
509 GROUP BY node_id;
510
511 CREATE VIEW pcu_nodes AS
512 SELECT pcu_id,
513 array_accum(node_id) AS node_ids,
514 array_accum(port) AS ports
515 FROM pcu_node
516 GROUP BY pcu_id;
517
518 --------------------------------------------------------------------------------
519 -- Slices
520 --------------------------------------------------------------------------------
521
522 CREATE TABLE slice_instantiations (
523     instantiation text PRIMARY KEY
524 ) WITH OIDS;
525 INSERT INTO slice_instantiations (instantiation) VALUES ('not-instantiated'); -- Placeholder slice
526 INSERT INTO slice_instantiations (instantiation) VALUES ('plc-instantiated'); -- Instantiated by Node Manager
527 INSERT INTO slice_instantiations (instantiation) VALUES ('delegated'); -- Manually instantiated
528
529 -- Slices
530 CREATE TABLE slices (
531     slice_id serial PRIMARY KEY, -- Slice identifier
532     site_id integer REFERENCES sites NOT NULL, -- Site identifier
533     name text NOT NULL, -- Slice name
534     instantiation text REFERENCES slice_instantiations NOT NULL DEFAULT 'plc-instantiated', -- Slice state, e.g. plc-instantiated
535     url text, -- Project URL
536     description text, -- Project description
537
538     max_nodes integer NOT NULL DEFAULT 100, -- Maximum number of nodes that can be assigned to this slice
539
540     creator_person_id integer REFERENCES persons NOT NULL, -- Creator
541     created timestamp without time zone NOT NULL DEFAULT CURRENT_TIMESTAMP, -- Creation date
542     expires timestamp without time zone NOT NULL DEFAULT CURRENT_TIMESTAMP + '2 weeks', -- Expiration date
543
544     is_deleted boolean NOT NULL DEFAULT false
545 ) WITH OIDS;
546 CREATE INDEX slices_site_id_idx ON slices (site_id) WHERE is_deleted IS false;
547 CREATE INDEX slices_name_idx ON slices (name) WHERE is_deleted IS false;
548
549 -- Slivers
550 CREATE TABLE slice_node (
551     slice_id integer REFERENCES slices NOT NULL, -- Slice identifier
552     node_id integer REFERENCES nodes NOT NULL, -- Node identifier
553     PRIMARY KEY (slice_id, node_id)
554 ) WITH OIDS;
555 CREATE INDEX slice_node_slice_id_idx ON slice_node (slice_id);
556 CREATE INDEX slice_node_node_id_idx ON slice_node (node_id);
557
558 -- Synonym for slice_node
559 CREATE VIEW slivers AS
560 SELECT * FROM slice_node;
561
562 -- Nodes in each slice
563 CREATE VIEW slice_nodes AS
564 SELECT slice_id,
565 array_accum(node_id) AS node_ids
566 FROM slice_node
567 GROUP BY slice_id;
568
569 -- Slices on each node
570 CREATE VIEW node_slices AS
571 SELECT node_id,
572 array_accum(slice_id) AS slice_ids
573 FROM slice_node
574 GROUP BY node_id;
575
576 -- Slices at each site
577 CREATE VIEW site_slices AS
578 SELECT site_id,
579 array_accum(slice_id) AS slice_ids
580 FROM slices
581 GROUP BY site_id;
582
583 -- Slice membership
584 CREATE TABLE slice_person (
585     slice_id integer REFERENCES slices NOT NULL, -- Slice identifier
586     person_id integer REFERENCES persons NOT NULL, -- Account identifier
587     PRIMARY KEY (slice_id, person_id)
588 ) WITH OIDS;
589 CREATE INDEX slice_person_slice_id_idx ON slice_person (slice_id);
590 CREATE INDEX slice_person_person_id_idx ON slice_person (person_id);
591
592 -- Members of the slice
593 CREATE VIEW slice_persons AS
594 SELECT slice_id,
595 array_accum(person_id) AS person_ids
596 FROM slice_person
597 GROUP BY slice_id;
598
599 -- Slices of which each person is a member
600 CREATE VIEW person_slices AS
601 SELECT person_id,
602 array_accum(slice_id) AS slice_ids
603 FROM slice_person
604 GROUP BY person_id;
605
606 --------------------------------------------------------------------------------
607 -- Slice attributes
608 --------------------------------------------------------------------------------
609
610 -- Slice attribute types
611 CREATE TABLE slice_attribute_types (
612     attribute_type_id serial PRIMARY KEY, -- Attribute type identifier
613     name text UNIQUE NOT NULL, -- Attribute name
614     description text, -- Attribute description
615     min_role_id integer REFERENCES roles DEFAULT 10 -- If set, minimum (least powerful) role that can set or change this attribute
616 ) WITH OIDS;
617
618 -- Slice/sliver attributes
619 CREATE TABLE slice_attribute (
620     slice_attribute_id serial PRIMARY KEY, -- Slice attribute identifier
621     slice_id integer REFERENCES slices NOT NULL, -- Slice identifier
622     node_id integer REFERENCES nodes, -- Sliver attribute if set
623     attribute_type_id integer REFERENCES slice_attribute_types NOT NULL, -- Attribute type identifier
624     value text
625 ) WITH OIDS;
626 CREATE INDEX slice_attribute_slice_id_idx ON slice_attribute (slice_id);
627 CREATE INDEX slice_attribute_node_id_idx ON slice_attribute (node_id);
628
629 CREATE VIEW slice_attributes AS
630 SELECT slice_id,
631 array_accum(slice_attribute_id) AS slice_attribute_ids
632 FROM slice_attribute
633 GROUP BY slice_id;
634
635 --------------------------------------------------------------------------------
636 -- Authenticated sessions
637 --------------------------------------------------------------------------------
638
639 -- Authenticated sessions
640 CREATE TABLE sessions (
641     session_id text PRIMARY KEY, -- Session identifier
642     expires timestamp without time zone
643 ) WITH OIDS;
644
645 -- People can have multiple sessions
646 CREATE TABLE person_session (
647     person_id integer REFERENCES persons NOT NULL, -- Account identifier
648     session_id text REFERENCES sessions NOT NULL, -- Session identifier
649     PRIMARY KEY (person_id, session_id),
650     UNIQUE (session_id) -- Sessions are unique
651 ) WITH OIDS;
652 CREATE INDEX person_session_person_id_idx ON person_session (person_id);
653
654 -- Nodes can have only one session
655 CREATE TABLE node_session (
656     node_id integer REFERENCES nodes NOT NULL, -- Node identifier
657     session_id text REFERENCES sessions NOT NULL, -- Session identifier
658     UNIQUE (node_id), -- Nodes can have only one session
659     UNIQUE (session_id) -- Sessions are unique
660 ) WITH OIDS;
661
662 --------------------------------------------------------------------------------
663 -- Message templates
664 --------------------------------------------------------------------------------
665
666 CREATE TABLE messages (
667     message_id text PRIMARY KEY, -- Message name
668     template text, -- Message template
669     enabled bool NOT NULL DEFAULT true -- Whether message is enabled
670 ) WITH OIDS;
671
672 --------------------------------------------------------------------------------
673 -- Events
674 --------------------------------------------------------------------------------
675
676 -- Event types
677 CREATE TABLE event_types (
678     event_type text PRIMARY KEY -- Event type
679 ) WITH OIDS;
680 INSERT INTO event_types (event_type) VALUES ('Add');
681 INSERT INTO event_types (event_type) VALUES ('AddTo');
682 INSERT INTO event_types (event_type) VALUES ('Get');
683 INSERT INTO event_types (event_type) VALUES ('Update');
684 INSERT INTO event_types (event_type) VALUES ('Delete');
685 INSERT INTO event_types (event_type) VALUES ('DeleteFrom');
686 INSERT INTO event_types (event_type) VALUES ('Unknown');
687
688 -- Object types
689 CREATE TABLE object_types (
690     object_type text PRIMARY KEY -- Object type 
691 ) WITH OIDS;
692 INSERT INTO object_types (object_type) VALUES ('AddressType');
693 INSERT INTO object_types (object_type) VALUES ('Address');
694 INSERT INTO object_types (object_type) VALUES ('BootState');
695 INSERT INTO object_types (object_type) VALUES ('ConfFile');
696 INSERT INTO object_types (object_type) VALUES ('KeyType');
697 INSERT INTO object_types (object_type) VALUES ('Key');
698 INSERT INTO object_types (object_type) VALUES ('NetworkMethod');
699 INSERT INTO object_types (object_type) VALUES ('NetworkType');
700 INSERT INTO object_types (object_type) VALUES ('Network');
701 INSERT INTO object_types (object_type) VALUES ('NodeGroup');
702 INSERT INTO object_types (object_type) VALUES ('NodeNetwork');
703 INSERT INTO object_types (object_type) VALUES ('Node');
704 INSERT INTO object_types (object_type) VALUES ('PCU');
705 INSERT INTO object_types (object_type) VALUES ('Person');
706 INSERT INTO object_types (object_type) VALUES ('Role');
707 INSERT INTO object_types (object_type) VALUES ('Session');
708 INSERT INTO object_types (object_type) VALUES ('Site');
709 INSERT INTO object_types (object_type) VALUES ('SliceAttributeType');
710 INSERT INTO object_types (object_type) VALUES ('SliceAttribute');
711 INSERT INTO object_types (object_type) VALUES ('Slice');
712 INSERT INTO object_types (object_type) VALUES ('Unknown');
713
714 -- Events
715 CREATE TABLE events (
716     event_id serial PRIMARY KEY,  -- Event identifier
717     person_id integer REFERENCES persons, -- Person responsible for event, if any
718     node_id integer REFERENCES nodes, -- Node responsible for event, if any
719     event_type text REFERENCES event_types NOT NULL DEFAULT 'Unknown', -- Event type 
720     object_type text REFERENCES object_types NOT NULL DEFAULT 'Unknown', -- Object type associated with event
721     fault_code integer NOT NULL DEFAULT 0, -- Did this event result in error
722     call text NOT NULL, -- Call responsible for this event
723     runtime float, -- Event run time
724     time timestamp without time zone  NOT NULL DEFAULT CURRENT_TIMESTAMP -- Event timestamp
725 ) WITH OIDS;
726
727 -- Event objects
728 CREATE TABLE event_object (
729     event_id integer REFERENCES events NOT NULL, -- Event identifier
730     object_id integer NOT NULL -- Object identifier
731 ) WITH OIDS;
732 CREATE INDEX event_object_event_id_idx ON event_object (event_id);
733 CREATE INDEX event_object_object_id_idx ON event_object (object_id);
734
735 CREATE VIEW event_objects AS
736 SELECT event_id,
737 array_accum(object_id) AS object_ids
738 FROM event_object
739 GROUP BY event_id;
740
741 --------------------------------------------------------------------------------
742 -- Useful views
743 --------------------------------------------------------------------------------
744
745 CREATE VIEW view_events AS
746 SELECT
747 events.event_id,
748 events.person_id,
749 events.node_id,
750 events.event_type,
751 events.object_type,
752 events.fault_code,
753 events.call,
754 events.runtime,
755 CAST(date_part('epoch', events.time) AS bigint) AS time,
756 COALESCE(event_objects.object_ids, '{}') AS object_ids
757 FROM events
758 LEFT JOIN event_objects USING (event_id);
759
760 CREATE VIEW view_persons AS
761 SELECT
762 persons.person_id,
763 persons.email,
764 persons.first_name,
765 persons.last_name,
766 persons.deleted,
767 persons.enabled,
768 persons.password,
769 persons.verification_key,
770 persons.verification_expires,
771 persons.title,
772 persons.phone,
773 persons.url,
774 persons.bio,
775 CAST(date_part('epoch', persons.date_created) AS bigint) AS date_created,
776 CAST(date_part('epoch', persons.last_updated) AS bigint) AS last_updated,
777 COALESCE(person_roles.role_ids, '{}') AS role_ids,
778 COALESCE(person_roles.roles, '{}') AS roles,
779 COALESCE(person_sites.site_ids, '{}') AS site_ids,
780 COALESCE(person_keys.key_ids, '{}') AS key_ids,
781 COALESCE(person_slices.slice_ids, '{}') AS slice_ids
782 FROM persons
783 LEFT JOIN person_roles USING (person_id)
784 LEFT JOIN person_sites USING (person_id)
785 LEFT JOIN person_keys USING (person_id)
786 LEFT JOIN person_slices USING (person_id);
787
788 CREATE VIEW view_nodes AS
789 SELECT
790 nodes.node_id,
791 nodes.hostname,
792 nodes.site_id,
793 nodes.boot_state,
794 nodes.deleted,
795 nodes.model,
796 nodes.boot_nonce,
797 nodes.version,
798 nodes.ssh_rsa_key,
799 nodes.key,
800 CAST(date_part('epoch', nodes.date_created) AS bigint) AS date_created,
801 CAST(date_part('epoch', nodes.last_updated) AS bigint) AS last_updated,
802 COALESCE(node_nodenetworks.nodenetwork_ids, '{}') AS nodenetwork_ids,
803 COALESCE(node_nodegroups.nodegroup_ids, '{}') AS nodegroup_ids,
804 COALESCE(node_slices.slice_ids, '{}') AS slice_ids,
805 COALESCE(node_pcus.pcu_ids, '{}') AS pcu_ids,
806 COALESCE(node_pcus.ports, '{}') AS ports,
807 COALESCE(node_conf_files.conf_file_ids, '{}') AS conf_file_ids,
808 node_session.session_id AS session
809 FROM nodes
810 LEFT JOIN node_nodenetworks USING (node_id)
811 LEFT JOIN node_nodegroups USING (node_id)
812 LEFT JOIN node_slices USING (node_id)
813 LEFT JOIN node_pcus USING (node_id)
814 LEFT JOIN node_conf_files USING (node_id)
815 LEFT JOIN node_session USING (node_id)
816 WHERE nodes.cached=False;
817
818 CREATE VIEW view_foreign_nodes AS
819 SELECT
820 nodes.node_id,
821 nodes.hostname,
822 nodes.peer_id,
823 nodes.boot_state,
824 nodes.model,
825 nodes.version,
826 CAST(date_part('epoch', nodes.date_created) AS bigint) AS date_created,
827 CAST(date_part('epoch', nodes.last_updated) AS bigint) AS last_updated,
828 node_slices.slice_ids,
829 nodes.deleted
830 FROM nodes
831 LEFT JOIN node_slices USING (node_id)
832 WHERE nodes.cached=True AND nodes.deleted=False;
833
834 CREATE VIEW view_nodegroups AS
835 SELECT
836 nodegroups.nodegroup_id,
837 nodegroups.name,
838 nodegroups.description,
839 COALESCE(nodegroup_nodes.node_ids, '{}') AS node_ids,
840 COALESCE(nodegroup_conf_files.conf_file_ids, '{}') AS conf_file_ids
841 FROM nodegroups
842 LEFT JOIN nodegroup_nodes USING (nodegroup_id)
843 LEFT JOIN nodegroup_conf_files USING (nodegroup_id);
844
845 CREATE VIEW view_conf_files AS
846 SELECT
847 conf_files.conf_file_id,
848 conf_files.enabled,
849 conf_files.source,
850 conf_files.dest,
851 conf_files.file_permissions,
852 conf_files.file_owner,
853 conf_files.file_group,
854 conf_files.preinstall_cmd,
855 conf_files.postinstall_cmd,
856 conf_files.error_cmd,
857 conf_files.ignore_cmd_errors,
858 conf_files.always_update,
859 COALESCE(conf_file_nodes.node_ids, '{}') AS node_ids,
860 COALESCE(conf_file_nodegroups.nodegroup_ids, '{}') AS nodegroup_ids
861 FROM conf_files
862 LEFT JOIN conf_file_nodes USING (conf_file_id)
863 LEFT JOIN conf_file_nodegroups USING (conf_file_id);
864
865 CREATE VIEW view_pcus AS
866 SELECT
867 pcus.pcu_id,
868 pcus.site_id,
869 pcus.hostname,
870 pcus.ip,
871 pcus.protocol,
872 pcus.username,
873 pcus.password,
874 pcus.model,
875 pcus.notes,
876 COALESCE(pcu_nodes.node_ids, '{}') AS node_ids,
877 COALESCE(pcu_nodes.ports, '{}') AS ports
878 FROM pcus
879 LEFT JOIN pcu_nodes USING (pcu_id);
880
881 CREATE VIEW view_sites AS
882 SELECT
883 sites.site_id,
884 sites.login_base,
885 sites.name,
886 sites.abbreviated_name,
887 sites.deleted,
888 sites.is_public,
889 sites.max_slices,
890 sites.max_slivers,
891 sites.latitude,
892 sites.longitude,
893 sites.url,
894 CAST(date_part('epoch', sites.date_created) AS bigint) AS date_created,
895 CAST(date_part('epoch', sites.last_updated) AS bigint) AS last_updated,
896 COALESCE(site_persons.person_ids, '{}') AS person_ids,
897 COALESCE(site_nodes.node_ids, '{}') AS node_ids,
898 COALESCE(site_addresses.address_ids, '{}') AS address_ids,
899 COALESCE(site_slices.slice_ids, '{}') AS slice_ids,
900 COALESCE(site_pcus.pcu_ids, '{}') AS pcu_ids
901 FROM sites
902 LEFT JOIN site_persons USING (site_id)
903 LEFT JOIN site_nodes USING (site_id)
904 LEFT JOIN site_addresses USING (site_id)
905 LEFT JOIN site_slices USING (site_id)
906 LEFT JOIN site_pcus USING (site_id);
907
908 CREATE VIEW view_addresses AS
909 SELECT
910 addresses.address_id,
911 addresses.line1,
912 addresses.line2,
913 addresses.line3,
914 addresses.city,
915 addresses.state,
916 addresses.postalcode,
917 addresses.country,
918 COALESCE(address_address_types.address_type_ids, '{}') AS address_type_ids,
919 COALESCE(address_address_types.address_types, '{}') AS address_types
920 FROM addresses
921 LEFT JOIN address_address_types USING (address_id);
922
923 CREATE VIEW view_slices AS
924 SELECT
925 slices.slice_id,
926 slices.site_id,
927 slices.name,
928 slices.instantiation,
929 slices.url,
930 slices.description,
931 slices.max_nodes,
932 slices.creator_person_id,
933 slices.is_deleted,
934 CAST(date_part('epoch', slices.created) AS bigint) AS created,
935 CAST(date_part('epoch', slices.expires) AS bigint) AS expires,
936 COALESCE(slice_nodes.node_ids, '{}') AS node_ids,
937 COALESCE(slice_persons.person_ids, '{}') AS person_ids,
938 COALESCE(slice_attributes.slice_attribute_ids, '{}') AS slice_attribute_ids
939 FROM slices
940 LEFT JOIN slice_nodes USING (slice_id)
941 LEFT JOIN slice_persons USING (slice_id)
942 LEFT JOIN slice_attributes USING (slice_id);
943
944 CREATE VIEW view_slice_attributes AS
945 SELECT
946 slice_attribute.slice_attribute_id,
947 slice_attribute.slice_id,
948 slice_attribute.node_id,
949 slice_attribute_types.attribute_type_id,
950 slice_attribute_types.name,
951 slice_attribute_types.description,
952 slice_attribute_types.min_role_id,
953 slice_attribute.value
954 FROM slice_attribute
955 INNER JOIN slice_attribute_types USING (attribute_type_id);
956
957 CREATE VIEW view_sessions AS
958 SELECT
959 sessions.session_id,
960 CAST(date_part('epoch', sessions.expires) AS bigint) AS expires,
961 person_session.person_id,
962 node_session.node_id
963 FROM sessions
964 LEFT JOIN person_session USING (session_id)
965 LEFT JOIN node_session USING (session_id);
966
967 --------------------------------------------------------------------------------
968 -- Built-in maintenance account and default site
969 --------------------------------------------------------------------------------
970
971 INSERT INTO persons
972 (first_name, last_name, email, password, enabled)
973 VALUES
974 ('Maintenance', 'Account', 'maint@localhost.localdomain', 'nopass', true);
975
976 INSERT INTO person_role (person_id, role_id) VALUES (1, 10);
977 INSERT INTO person_role (person_id, role_id) VALUES (1, 20);
978 INSERT INTO person_role (person_id, role_id) VALUES (1, 30);
979 INSERT INTO person_role (person_id, role_id) VALUES (1, 40);
980
981 INSERT INTO sites
982 (login_base, name, abbreviated_name, max_slices)
983 VALUES
984 ('pl', 'PlanetLab Central', 'PLC', 100);
985
986 -- federation stuff starting here
987
988 --CREATE TABLE foreign_nodes (
989 --     foreign_node_id serial PRIMARY KEY, -- identifier
990 --     hostname text NOT NULL, 
991 --     boot_state text NOT NULL,
992 --     peer_id integer REFERENCES peers NOT NULL,
993 --       
994 --     deleted boolean NOT NULL DEFAULT false
995 --) WITH OIDS;
996
997 --CREATE VIEW peer_foreign_nodes AS
998 --SELECT peer_id,
999 --array_to_string(array_accum(foreign_node_id), ',') AS foreign_node_ids
1000 --FROM foreign_nodes
1001 --GROUP BY peer_id;
1002
1003