/usr/share/voms/voms.data is in voms-server 2.0.12-4build1.
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 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 | ########################################################################
#
# Authors: Vincenzo Ciaschini - Vincenzo.Ciaschini@cnaf.infn.it
# Akos Frohner - Akos.Frohner@cern.ch
# Karoly Lorentey - Karoly.Lorentey@cern.ch
#
# Copyright (c) 2002, 2003 INFN-CNAF on behalf of the EU DataGrid.
# For license conditions see LICENSE file or
# http://www.edg.org/license.html
#
# Parts of this code may be based upon or even include verbatim pieces,
# originally written by other people, in which case the original header
# follows.
#
########################################################################
# MySQL dump 8.16
#
# Host: localhost Database: voms
#--------------------------------------------------------
# Server version 3.23.42
#
#
# Current Database: voms
#
#
# Access Control List for containers (group/role/capability)
#
CREATE TABLE acl (
-- ACL identifier (common id for all entries in one list)
aid bigint unsigned NOT NULL,
-- Administrator's identifier
adminid bigint NOT NULL,
-- Operation on the container
operation smallint NOT NULL,
-- Allow/deny flag (default deny).
allow tinyint NOT NULL,
-- Changelog
createdBy bigint unsigned NOT NULL,
createdSerial bigint unsigned NOT NULL,
-- Keys and indices.
INDEX (aid), -- not primary key!
INDEX (aid, adminid, operation)
) TYPE=InnoDB;
CREATE TABLE acld (
aid bigint unsigned NOT NULL,
adminid bigint NOT NULL,
operation bigint NOT NULL,
allow tinyint NOT NULL,
createdBy bigint unsigned NOT NULL,
createdSerial bigint unsigned NOT NULL,
deletedBy bigint unsigned NOT NULL,
deletedSerial bigint unsigned NOT NULL,
-- Keys and indices.
INDEX (aid),
INDEX (aid, adminid, operation)
) TYPE=InnoDB;
#
# List of the administrator users (to be referenced in acls)
#
CREATE TABLE admins (
-- Administrator's identifier
adminid bigint NOT NULL,
-- the DN of the administrator
dn varchar(250) NOT NULL,
-- Issuer certificate authority
ca smallint unsigned NOT NULL,
createdBy bigint unsigned NOT NULL,
createdSerial bigint unsigned NOT NULL,
-- Keys and indices.
PRIMARY KEY (adminid),
UNIQUE KEY admin (dn,ca)
) TYPE=InnoDB;
#
# Known Certificate Authorities
# (generated from /etc/grid-security/certificates).
#
CREATE TABLE ca (
-- Internal id.
cid smallint unsigned NOT NULL auto_increment,
-- Distinguished name (UTF-8).
ca varchar(250) NOT NULL,
-- free-form description of the CA
cadescr varchar(250),
PRIMARY KEY (cid),
UNIQUE KEY ca (ca)
-- No createdBy/createdSerial, the rows in this table, because
-- they should be never changed by the administrative interface.
) TYPE=InnoDB;
#
# Holds all groups in a VO
#
CREATE TABLE groups (
-- Internal entity identifier.
gid bigint unsigned NOT NULL auto_increment,
-- Fully Qualified Group Name
dn varchar(255) NOT NULL,
-- Parent group.
parent bigint unsigned NOT NULL,
-- Applied ACL (entries are in 'or' relation).
aclid bigint unsigned NOT NULL,
-- Default ACL for a group/role created under this group.
defaultAclid bigint unsigned NOT NULL,
-- Changelog.
createdBy bigint unsigned NOT NULL,
createdSerial bigint unsigned NOT NULL,
must tinyint default null,
-- Keys and indices.
PRIMARY KEY (gid),
KEY parentg (parent),
KEY groupname (dn)
) TYPE=InnoDB;
-- archive table for groups
CREATE TABLE groupsd (
gid bigint unsigned NOT NULL,
dn varchar(255) NOT NULL,
parent bigint unsigned NOT NULL,
aclid bigint unsigned NOT NULL,
must tinyint,
defaultAclid bigint unsigned NOT NULL,
createdBy bigint unsigned NOT NULL,
createdSerial bigint unsigned NOT NULL,
deletedBy bigint unsigned NOT NULL,
deletedSerial bigint unsigned NOT NULL,
PRIMARY KEY (gid),
KEY parentg (parent),
KEY groupname (dn)
) TYPE=InnoDB;
#
# Link table between usr and (roles/groups/capabilities)
#
CREATE TABLE m (
-- user's identifier
uid bigint unsigned NOT NULL REFERENCES usr(uid),
-- group
gid bigint unsigned NOT NULL REFERENCES groups(gid),
-- role
rid bigint unsigned REFERENCES roles(rid),
-- capability
cid bigint unsigned REFERENCES capabilities(cid),
vid bigint unsigned REFERENCES validity(vid),
pid bigint unsigned REFERENCES periodicity(pid),
-- Changelog
createdBy bigint unsigned NOT NULL,
createdSerial bigint unsigned NOT NULL,
-- Keys and indices
UNIQUE m (uid,gid,rid,cid),
KEY uid (uid),
KEY rid (rid),
KEY cid (cid),
KEY container (gid,rid,cid)
) TYPE=InnoDB;
-- archives for membership
CREATE TABLE md (
uid bigint unsigned NOT NULL,
gid bigint unsigned NOT NULL,
rid bigint unsigned,
cid bigint unsigned,
vid bigint unsigned,
pid bigint unsigned,
createdBy bigint unsigned NOT NULL,
createdSerial bigint unsigned NOT NULL,
deletedBy bigint unsigned NOT NULL,
deletedSerial bigint unsigned NOT NULL,
UNIQUE m (uid,gid,rid,cid),
KEY uid (uid),
KEY rid (rid),
KEY cid (cid),
KEY container (gid,rid,cid)
) TYPE=InnoDB;
#
# Table structure for table 'validity'
#
CREATE TABLE validity (
vid bigint unsigned NOT NULL,
begin TIMESTAMP NOT NULL,
end TIMESTAMP NOT NULL,
PRIMARY KEY(vid)
) TYPE=InnoDB;
#
# Table structure for table 'periodicity'
#
CREATE TABLE periodicity (
pid bigint unsigned NOT NULL,
hour TINYINT NOT NULL,
day TINYINT NOT NULL,
wday TINYINT NOT NULL,
month TINYINT NOT NULL,
year TINYINT NOT NULL,
hduration INTEGER NOT NULL,
PRIMARY KEY(pid)
) TYPE=InnoDB;
#
# Support for special queries
#
CREATE TABLE queries (
qid bigint unsigned NOT NULL auto_increment,
query varchar(255) NOT NULL,
PRIMARY KEY (qid)
) TYPE=InnoDB;
#
# Holds all roles in a VO
#
CREATE TABLE roles (
-- Internal entity identifier.
rid bigint unsigned NOT NULL auto_increment,
-- the role name (relative to a group)
role varchar(255) NOT NULL,
-- Applied ACL (entries are in 'or' relation).
aclid bigint NOT NULL,
-- Changelog.
createdBy bigint unsigned NOT NULL,
createdSerial bigint unsigned NOT NULL,
PRIMARY KEY (rid),
KEY role (role)
) TYPE=InnoDB;
-- archive table for roles
CREATE TABLE rolesd (
rid bigint unsigned NOT NULL,
role varchar(255) NOT NULL,
aclid bigint NOT NULL,
createdBy bigint unsigned NOT NULL,
createdSerial bigint unsigned NOT NULL,
deletedBy bigint unsigned NOT NULL,
deletedSerial bigint unsigned NOT NULL,
PRIMARY KEY (rid),
KEY role (role)
) TYPE=InnoDB;
#
# Holds all capabilities in the VO.
#
CREATE TABLE capabilities (
-- Internal entity identifier.
cid bigint unsigned NOT NULL auto_increment,
-- Name of the capability (for administration)
capability varchar(255) NOT NULL,
-- Applied ACL (entries are in 'or' relation).
aclid bigint NOT NULL,
-- Changelog
createdBy bigint unsigned NOT NULL,
createdSerial bigint unsigned NOT NULL,
-- Keys and indices.
PRIMARY KEY (cid),
KEY capability (capability)
) TYPE=InnoDB;
-- archive table for capabilities
CREATE TABLE capabilitiesd (
cid bigint unsigned NOT NULL,
capability varchar(255) NOT NULL,
aclid bigint NOT NULL,
createdBy bigint unsigned NOT NULL,
createdSerial bigint unsigned NOT NULL,
deletedBy bigint unsigned NOT NULL,
deletedSerial bigint unsigned NOT NULL,
PRIMARY KEY (cid),
KEY capability (capability)
) TYPE=InnoDB;
#
# Lists all users administered by the VOMS.
#
CREATE TABLE usr (
-- Internal entity identifier.
uid bigint unsigned NOT NULL auto_increment,
-- Distinguished name (UTF-8).
dn varchar(250) NOT NULL,
-- Issuer certificate authority.
ca smallint unsigned NOT NULL,
-- Common Name (UTF-8)
cn varchar(250) NOT NULL,
-- User's mail address (optional)
mail varchar(250) default NULL,
-- pointer to the user's certificate (optional)
cauri varchar(250) default NULL,
-- Changelog.
createdBy bigint unsigned NOT NULL,
createdSerial bigint unsigned NOT NULL,
-- Keys and indices.
KEY (uid),
UNIQUE KEY dnca (dn,ca),
KEY dn (dn)
) TYPE=InnoDB;
-- The archive records for usr.
CREATE TABLE usrd (
uid bigint unsigned NOT NULL,
dn varchar(250) NOT NULL,
ca smallint unsigned NOT NULL,
cn varchar(250) NOT NULL,
mail varchar(250),
cauri varchar(250),
createdBy bigint unsigned NOT NULL,
createdSerial bigint unsigned NOT NULL,
deletedBy bigint unsigned NOT NULL,
deletedSerial bigint unsigned NOT NULL,
KEY (uid), -- This is not unique!
KEY dnca (dn,ca), -- This is not unique!
KEY dn (dn)
) TYPE=InnoDB;
#
# Changelog tables.
#
CREATE TABLE realtime (
transaction bigint unsigned NOT NULL,
time timestamp NOT NULL,
PRIMARY KEY(transaction),
INDEX (time)
) TYPE=InnoDB;
CREATE TABLE sequences (
name varchar(32) NOT NULL,
value bigint,
INDEX (name)
) TYPE=InnoDB;
CREATE TABLE createuser_queue (
-- Request id.
reqid BIGINT NOT NULL,
-- DN of user to be created.
dn VARCHAR(255) NOT NULL,
-- CA id of user to be created.
cid SMALLINT NOT NULL,
-- CN of user to be created.
cn VARCHAR(255),
-- CAURI of user to be created.
cauri VARCHAR(255),
-- Email address of user to be created.
mail VARCHAR(255),
-- Email address to notify when request is closed.
clientemail VARCHAR(255),
-- Client notification address.
clientcomment VARCHAR(255),
-- Comment given by the client.
admincomment VARCHAR(255),
-- Comment given by the admin.
status BIGINT NOT NULL,
PRIMARY KEY (reqid),
INDEX (dn, cid)
) TYPE=InnoDB;
-- Database version number.
--
-- Version 0 is, where the version table doesn't exists.
-- Later versions can be tested by
--
-- select max(version) from version;
--
CREATE TABLE version (
version INT
) TYPE = InnoDB;
-- Sequence number of the issued attribute certificates in bigint format.
CREATE TABLE seqnumber (
seq VARCHAR(50) NOT NULL
) TYPE = InnoDB;
-- Persistent storage of serialized Java request objects. It would be
-- a nightmare to define and maintain a detailed database mapping for
-- request type hierarchies, state hierarchies, the chronicle, etc.,
-- so we cheat by storing the domain objects themselves in the
-- database. We speed up database access by duplicating some of the
-- request data in indexed columns.
CREATE TABLE requests (
-- Request id.
reqid BIGINT NOT NULL,
-- True if the request has been fully processed.
complete BOOL,
-- The type of the request. (A fully qualified Java class name.)
type VARCHAR(128),
-- The requested action. (A fully qualified Java class name.)
action VARCHAR(128),
-- The fqdn of the container that this request wants to change.
container VARCHAR(128),
-- The short name of the state of the request.
state VARCHAR(32),
-- Id of the client sending the request. (Points to ADMINS table.)
requester BIGINT,
-- The time of the last state change.
lastchange TIMESTAMP,
-- The serialized Java Request object.
request BLOB NOT NULL,
PRIMARY KEY(reqid),
INDEX (reqid),
INDEX (state),
INDEX (type),
INDEX (action),
INDEX (container),
INDEX (requester),
INDEX (lastchange)
) TYPE=InnoDB;
|