123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188 |
- <?xml version="1.0" encoding="UTF-8"?>
- <appendix version="5.0" xml:id="appendix-schema" xmlns="http://docbook.org/ns/docbook"
- xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xi="http://www.w3.org/2001/XInclude">
- <info>
- <title>Security Database Schema</title>
- </info>
- <para> There are various database schema used by the framework and this appendix provides a single
- reference point to them all. You only need to provide the tables for the areas of functonality
- you require. </para>
- <para> DDL statements are given for the HSQLDB database. You can use these as a guideline for
- defining the schema for the database you are using. </para>
- <section>
- <title>User Schema</title>
- <para> The standard JDBC implementation of the <interfacename>UserDetailsService</interfacename>
- (<classname>JdbcDaoImpl</classname>) requires tables to load the password, account status
- (enabled or disabled) and a list of authorities (roles) for the user.
- <programlisting xml:id="db_schema_users_authorities">
- create table users(
- username varchar_ignorecase(50) not null primary key,
- password varchar_ignorecase(50) not null,
- enabled boolean not null);
- create table authorities (
- username varchar_ignorecase(50) not null,
- authority varchar_ignorecase(50) not null,
- constraint fk_authorities_users foreign key(username) references users(username));
- create unique index ix_auth_username on authorities (username,authority);
- </programlisting></para>
- <section>
- <title>Group Authorities</title>
- <para> Spring Security 2.0 introduced support for group authorities in
- <classname>JdbcDaoImpl</classname>. The table structure if groups are enabled is as
- follows:<programlisting xml:id="db-schema-groups">
- create table groups (
- id bigint generated by default as identity(start with 0) primary key,
- group_name varchar_ignorecase(50) not null);
- create table group_authorities (
- group_id bigint not null,
- authority varchar(50) not null,
- constraint fk_group_authorities_group foreign key(group_id) references groups(id));
- create table group_members (
- id bigint generated by default as identity(start with 0) primary key,
- username varchar(50) not null,
- group_id bigint not null,
- constraint fk_group_members_group foreign key(group_id) references groups(id));
- </programlisting></para>
- </section>
- </section>
- <section>
- <title>Persistent Login (Remember-Me) Schema</title>
- <para> This table is used to store data used by the more secure <link
- xlink:href="#remember-me-persistent-token">persistent token</link> remember-me
- implementation. If you are using <classname>JdbcTokenRepositoryImpl</classname> either
- directly or through the namespace, then you will need this table.
- <programlisting xml:id="db-schema-remeber-me">
- create table persistent_logins (
- username varchar(64) not null,
- series varchar(64) primary key,
- token varchar(64) not null,
- last_used timestamp not null);
- </programlisting></para>
- </section>
- <section xml:id="dbschema-acl">
- <title>ACL Schema</title>
- <para>There are four tables used by the Spring Security <link xlink:href="#domain-acls"
- >ACL</link> implementation. <orderedlist>
- <listitem>
- <para><literal>acl_sid</literal> stores the security identities recognised by the ACL
- system. These can be unique principals or authorities which may apply to multiple
- principals.</para>
- </listitem>
- <listitem>
- <para><literal>acl_class</literal> defines the domain object types to which ACLs apply.
- The <literal>class</literal> column stores the Java class name of the object. </para>
- </listitem>
- <listitem>
- <para><literal>acl_object_identity</literal> stores the object identity definitions of
- specific domai objects.</para>
- </listitem>
- <listitem>
- <para><literal>acl_entry</literal> stores the ACL permissions which apply to a specific
- object identity and security identity.</para>
- </listitem>
- </orderedlist></para>
- <para>It is assumed that the database will auto-generate the primary keys for each of the
- identities. The <literal>JdbcMutableAclService</literal> has to be able to retrieve these when
- it has created a new row in the <literal>acl_sid</literal> or <literal>acl_class</literal>
- tables. It has two properties which define the SQL needed to retrieve these values
- <literal>classIdentityQuery</literal> and <literal>sidIdentityQuery</literal>. Both of these
- default to <literal>call identity()</literal></para>
- <section>
- <title>Hypersonic SQL</title>
- <para>The default schema works with the embedded HSQLDB database that is used in unit tests
- within the
- framework.<programlisting xml:id="dbschema-acl-hsql">
- create table acl_sid (
- id bigint generated by default as identity(start with 100) not null primary key,
- principal boolean not null,
- sid varchar_ignorecase(100) not null,
- constraint unique_uk_1 unique(sid,principal) );
- create table acl_class (
- id bigint generated by default as identity(start with 100) not null primary key,
- class varchar_ignorecase(100) not null,
- constraint unique_uk_2 unique(class) );
- create table acl_object_identity (
- id bigint generated by default as identity(start with 100) not null primary key,
- object_id_class bigint not null,
- object_id_identity bigint not null,
- parent_object bigint,
- owner_sid bigint not null,
- entries_inheriting boolean not null,
- constraint unique_uk_3 unique(object_id_class,object_id_identity),
- constraint foreign_fk_1 foreign key(parent_object)references acl_object_identity(id),
- constraint foreign_fk_2 foreign key(object_id_class)references acl_class(id),
- constraint foreign_fk_3 foreign key(owner_sid)references acl_sid(id) );
- create table acl_entry (
- id bigint generated by default as identity(start with 100) not null primary key,
- acl_object_identity bigint not null,ace_order int not null,sid bigint not null,
- mask integer not null,granting boolean not null,audit_success boolean not null,
- audit_failure boolean not null,
- constraint unique_uk_4 unique(acl_object_identity,ace_order),
- constraint foreign_fk_4 foreign key(acl_object_identity)
- references acl_object_identity(id),
- constraint foreign_fk_5 foreign key(sid) references acl_sid(id) );
- </programlisting></para>
- <section>
- <title>PostgreSQL</title>
- <para>
- <programlisting>create table acl_sid(
- id bigserial not null primary key,
- principal boolean not null,
- sid varchar(100) not null,
- constraint unique_uk_1 unique(sid,principal));
- create table acl_class(
- id bigserial not null primary key,
- class varchar(100) not null,
- constraint unique_uk_2 unique(class));
- create table acl_object_identity(
- id bigserial primary key,
- object_id_class bigint not null,
- object_id_identity bigint not null,
- parent_object bigint,
- owner_sid bigint,
- entries_inheriting boolean not null,
- constraint unique_uk_3 unique(object_id_class,object_id_identity),
- constraint foreign_fk_1 foreign key(parent_object) references acl_object_identity(id),
- constraint foreign_fk_2 foreign key(object_id_class) references acl_class(id),
- constraint foreign_fk_3 foreign key(owner_sid) references acl_sid(id));
- create table acl_entry(
- id bigserial primary key,
- acl_object_identity bigint not null,
- ace_order int not null,
- sid bigint not null,
- mask integer not null,
- granting boolean not null,
- audit_success boolean not null,
- audit_failure boolean not null,
- constraint unique_uk_4 unique(acl_object_identity,ace_order),
- constraint foreign_fk_4 foreign key(acl_object_identity)
- references acl_object_identity(id),
- constraint foreign_fk_5 foreign key(sid) references acl_sid(id));
- </programlisting>
- </para>
- <para>You will have to set the <literal>classIdentityQuery</literal> and
- <literal>sidIdentityQuery</literal> properties of
- <classname>JdbcMutableAclService</classname> to the following values, respectively: <itemizedlist>
- <listitem>
- <para><literal>select currval(pg_get_serial_sequence('acl_class',
- 'id'))</literal></para>
- </listitem>
- <listitem>
- <para><literal>select currval(pg_get_serial_sequence('acl_sid',
- 'id'))</literal></para>
- </listitem>
- </itemizedlist></para>
- </section>
- </section>
- </section>
- </appendix>
|