SlideShare une entreprise Scribd logo
1  sur  52
Chapter 6: Integrity and Security

                     s Domain Constraints
                     s Referential Integrity
                     s Assertions
                     s Triggers
                     s Security
                     s Authorization
                     s Authorization in SQL




Database System Concepts                       6.1   ©Silberschatz, Korth and Sudarshan
Domain Constraints

        s Integrity constraints guard against accidental damage to the
             database, by ensuring that authorized changes to the database do
             not result in a loss of data consistency.
        s Domain constraints are the most elementary form of integrity
             constraint.
        s They test values inserted in the database, and test queries to
             ensure that the comparisons make sense.
        s New domains can be created from existing data types
              5 E.g. create domain Dollars numeric(12, 2)
                     create domain Pounds numeric(12,2)




Database System Concepts                   6.2                ©Silberschatz, Korth and Sudarshan
Domain Constraints (Cont.)

        s The check clause in SQL-92 permits domains to be restricted:
              5 Use check clause to ensure that an hourly-wage domain allows
                only values greater than a specified value.
                       create domain hourly-wage numeric(5,2)
                             constraint value-test check(value > = 4.00)
              5 The domain has a constraint that ensures that the hourly-wage is
                greater than 4.00
              5 The clause constraint value-test is optional; useful to indicate
                which constraint an update violated.
        s Can have complex conditions in domain check
              5 create domain AccountType char(10)
                  constraint account-type-test
                     check (value in (‘Checking’, ‘Saving’))
              5 check (branch-name in (select branch-name from branch))



Database System Concepts                        6.3                  ©Silberschatz, Korth and Sudarshan
Referential Integrity

        s Ensures that a value that appears in one relation for a given set of
             attributes also appears for a certain set of attributes in another
             relation.
              5 Example: If “Perryridge” is a branch name appearing in one of the
                tuples in the account relation, then there exists a tuple in the branch
                relation for branch “Perryridge”.
        s Formal Definition

              5 Let r1(R1) and r2(R2) be relations with primary keys K1 and K2
                respectively.
              5 The subset α of R2 is a foreign key referencing K1 in relation r1, if for
                  every t2 in r2 there must be a tuple t1 in r1 such that t1[K1] = t2[α].
              5 Referential integrity constraint also called subset dependency since its
                can be written as
                   ∏α (r2) ⊆ ∏K1 (r1)


Database System Concepts                            6.4                     ©Silberschatz, Korth and Sudarshan
Referential Integrity in the E-R
                                 Model

        s Consider relationship set R between entity sets E1 and E2. The
             relational schema for R includes the primary keys K1 of E1 and
             K2 of E2.
             Then K1 and K2 form foreign keys on the relational schemas for
             E1 and E2 respectively.
                         E1        R           E2



        s Weak entity sets are also a source of referential integrity
             constraints.
              5 For the relation schema for a weak entity set must include the
                primary key attributes of the entity set on which it depends




Database System Concepts                        6.5                  ©Silberschatz, Korth and Sudarshan
Checking Referential Integrity on
                    Database Modification
           s The following tests must be made in order to preserve the
               following referential integrity constraint:
                                ∏α (r2) ⊆ ∏K (r1)
           s Insert. If a tuple t2 is inserted into r2, the system must ensure
               that there is a tuple t1 in r1 such that t1[K] = t2[α]. That is

                                  t2 [α] ∈ ∏K (r1)
           s Delete. If a tuple, t1 is deleted from r1, the system must
               compute the set of tuples in r2 that reference t1:

                                   σα = t1[K] (r2)
               If this set is not empty
                 5 either the delete command is rejected as an error, or
                 5 the tuples that reference t1 must themselves be deleted
                   (cascading deletions are possible).
Database System Concepts                             6.6              ©Silberschatz, Korth and Sudarshan
Database Modification (Cont.)
          s Update. There are two cases:
                5 If a tuple t2 is updated in relation r2 and the update modifies values for
                  foreign key α, then a test similar to the insert case is made:
                           Let t2’ denote the new value of tuple t2. The system must ensure
                           that
                                                t2’[α] ∈ ∏K(r1)

                5 If a tuple t1 is updated in r1, and the update modifies values for the
                  primary key (K), then a test similar to the delete case is made:
                           The system must compute
                              σα = t1[K] (r2)
                           using the old value of t1 (the value before the update is applied).
                           If this set is not empty
                           1. the update may be rejected as an error, or
                           2. the update may be cascaded to the tuples in the set, or
                           3. the tuples in the set may be deleted.

Database System Concepts                                          6.7             ©Silberschatz, Korth and Sudarshan
Referential Integrity in SQL

        s Primary and candidate keys and foreign keys can be specified as part of
             the SQL create table statement:
              5 The primary key clause lists attributes that comprise the primary key.
              5 The unique key clause lists attributes that comprise a candidate key.
              5 The foreign key clause lists the attributes that comprise the foreign key and
                the name of the relation referenced by the foreign key.
        s By default, a foreign key references the primary key attributes of the
             referenced table
                  foreign key (account-number) references account
        s Short form for specifying a single column as foreign key
                  account-number char (10) references account
        s Reference columns in the referenced table can be explicitly specified
              5 but must be declared as primary key
                  foreign key (account-number) references account(account-number)




Database System Concepts                            6.8                    ©Silberschatz, Korth and Sudarshan
Referential Integrity in SQL –
                                Example

                   create table customer
                      (customer-name char(20),
                      customer-street char(30),
                      customer-city   char(30),
                      primary key (customer-name))
                   create table branch
                      (branch-name    char(15),
                      branch-city     char(30),
                      assets          integer,
                      primary key (branch-name))




Database System Concepts                   6.9       ©Silberschatz, Korth and Sudarshan
Referential Integrity in SQL – Example (Cont.)


                      create table account
                         (account-number     char(10),
                         branch-name char(15),
                         balance        integer,
                         primary key (account-number),
                         foreign key (branch-name) references branch)
                      create table depositor
                         (customer-name      char(20),
                         account-number      char(10),
                         primary key (customer-name, account-number),
                         foreign key (account-number) references account,
                         foreign key (customer-name) references
                         customer)




Database System Concepts                    6.10             ©Silberschatz, Korth and Sudarshan
Cascading Actions in SQL

        create table account
              ...
              foreign key(branch-name)       references branch
                                    on delete cascade
                                    on update cascade
              ... )
        s Due to the on delete cascade clauses, if a delete of a tuple in
             branch results in referential-integrity constraint violation, the
             delete “cascades” to the account relation, deleting the tuple that
             refers to the branch that was deleted.
        s Cascading updates are similar.




Database System Concepts                     6.11                ©Silberschatz, Korth and Sudarshan
Cascading Actions in SQL (Cont.)
       s If there is a chain of foreign-key dependencies across multiple
           relations, with on delete cascade specified for each
           dependency, a deletion or update at one end of the chain can
           propagate across the entire chain.
       s If a cascading update to delete causes a constraint violation that
           cannot be handled by a further cascading operation, the system
           aborts the transaction.
             5 As a result, all the changes caused by the transaction and its
               cascading actions are undone.
       s Referential integrity is only checked at the end of a transaction
             5 Intermediate steps are allowed to violate referential integrity provided
               later steps remove the violation
             5 Otherwise it would be impossible to create some database states, e.g.
               insert two tuples whose foreign keys point to each other




Database System Concepts                         6.12                  ©Silberschatz, Korth and Sudarshan
Referential Integrity in SQL (Cont.)

        s Alternative to cascading:
              5 on delete set null
              5 on delete set default
        s Null values in foreign key attributes complicate SQL referential
             integrity semantics, and are best prevented using not null
              5 if any attribute of a foreign key is null, the tuple is defined to satisfy
                the foreign key constraint!




Database System Concepts                           6.13                    ©Silberschatz, Korth and Sudarshan
Assertions

        s An assertion is a predicate expressing a condition that we wish
             the database always to satisfy.
        s An assertion in SQL takes the form
                create assertion <assertion-name> check <predicate>
        s When an assertion is made, the system tests it for validity, and
             tests it again on every update that may violate the assertion
              5 This testing may introduce a significant amount of overhead; hence
                assertions should be used with great care.




Database System Concepts                       6.14                 ©Silberschatz, Korth and Sudarshan
Assertion Example

        s The sum of all loan amounts for each branch must be less than
             the sum of all account balances at the branch.
              create assertion sum-constraint check
                 (not exists (select * from branch
                           where (select sum(amount) from loan
                                  where loan.branch-name =
                                          branch.branch-name)
                               >= (select sum(amount) from account
                                  where loan.branch-name =
                                          branch.branch-name)))




Database System Concepts                    6.15              ©Silberschatz, Korth and Sudarshan
Assertion Example

      s Every loan has at least one borrower who maintains an account with
          a minimum balance or $1000.00
          create assertion balance-constraint check
             (not exists (
                select * from loan
               where not exists (
                    select *
                   from borrower, depositor, account
                 where loan.loan-number = borrower.loan-number
                    and borrower.customer-name = depositor.customer-
          name
                    and depositor.account-number = account.account-
          number
                    and account.balance >= 1000)))



Database System Concepts                  6.16             ©Silberschatz, Korth and Sudarshan
Triggers

        s A trigger is a statement that is executed automatically by the
             system as a side effect of a modification to the database.
        s To design a trigger mechanism, we must:
              5 Specify the conditions under which the trigger is to be executed.
              5 Specify the actions to be taken when the trigger executes.
        s Triggers introduced to SQL standard in SQL:1999, but supported
             even earlier using non-standard syntax by most databases.




Database System Concepts                        6.17                 ©Silberschatz, Korth and Sudarshan
Trigger Example

        s Suppose that instead of allowing negative account balances, the
             bank deals with overdrafts by
              5 setting the account balance to zero
              5 creating a loan in the amount of the overdraft
              5 giving this loan a loan number identical to the account number of the
                overdrawn account
        s The condition for executing the trigger is an update to the
             account relation that results in a negative balance value.




Database System Concepts                        6.18                 ©Silberschatz, Korth and Sudarshan
Trigger Example in SQL:1999

                  create trigger overdraft-trigger after update on account
                  referencing new row as nrow
                                   for each row
                  when nrow.balance < 0
                  begin
                      insert into borrower
                         (select customer-name, account-number
                          from depositor
                          where nrow.account-number =
                                  depositor.account-number);
                        insert into loan values
                         (n.row.account-number, nrow.branch-name,
                                                         – nrow.balance);
                       update account set balance = 0
                      where account.account-number = nrow.account-number
                  end


Database System Concepts                   6.19             ©Silberschatz, Korth and Sudarshan
Triggering Events and Actions in
                               SQL

          s Triggering event can be insert, delete or update
          s Triggers on update can be restricted to specific attributes
                5 E.g. create trigger overdraft-trigger after update of balance on
                  account
          s Values of attributes before and after an update can be referenced
                5 referencing old row as : for deletes and updates
                5 referencing new row as : for inserts and updates
          s Triggers can be activated before an event, which can serve as
              extra constraints. E.g. convert blanks to null.
                   create trigger setnull-trigger before update on r
                   referencing new row as nrow
                   for each row
                      when nrow.phone-number = ‘ ‘
                      set nrow.phone-number = null



Database System Concepts                     6.20                ©Silberschatz, Korth and Sudarshan
Statement Level Triggers

        s Instead of executing a separate action for each affected row, a
             single action can be executed for all rows affected by a
             transaction
              5 Use        for each statement          instead of   for each row
              5 Use referencing old table or referencing new table to
                refer to temporary tables (called transition tables) containing the
                affected rows
              5 Can be more efficient when dealing with SQL statements that
                update a large number of rows




Database System Concepts                        6.21                     ©Silberschatz, Korth and Sudarshan
External World Actions

        s We sometimes require external world actions to be triggered on a
             database update
              5 E.g. re-ordering an item whose quantity in a warehouse has become
                small, or turning on an alarm light,
        s Triggers cannot be used to directly implement external-world
             actions, BUT
              5 Triggers can be used to record actions-to-be-taken in a separate table
              5 Have an external process that repeatedly scans the table, carries out
                external-world actions and deletes action from table
        s E.g. Suppose a warehouse has the following tables
           5 inventory(item, level): How much of each item is in the warehouse
              5 minlevel(item, level) : What is the minimum desired level of each item
              5 reorder(item, amount): What quantity should we re-order at a time
              5 orders(item, amount) : Orders to be placed (read by external process)



Database System Concepts                       6.22                  ©Silberschatz, Korth and Sudarshan
External World Actions (Cont.)

     create trigger reorder-trigger after update of amount on
        inventory
     referencing old row as orow, new row as nrow
     for each row
            when nrow.level < = (select level
                                from minlevel
                                where minlevel.item = orow.item)
                     and orow.level > (select level
                                   from minlevel
                                   where minlevel.item = orow.item)
       begin
             insert into orders
                  (select item, amount
                   from reorder
                   where reorder.item = orow.item)
       end

Database System Concepts                6.23               ©Silberschatz, Korth and Sudarshan
When Not To Use Triggers

        s Triggers were used earlier for tasks such as
              5 maintaining summary data (e.g. total salary of each department)
              5 Replicating databases by recording changes to special relations
                (called change or delta relations) and having a separate process
                that applies the changes over to a replica
        s There are better ways of doing these now:
              5 Databases today provide built in materialized view facilities to
                maintain summary data
              5 Databases provide built-in support for replication
        s Encapsulation facilities can be used instead of triggers in many
             cases
              5 Define methods to update fields
              5 Carry out actions as part of the update methods instead of
                through a trigger


Database System Concepts                        6.24                  ©Silberschatz, Korth and Sudarshan
CREATE TABLE t (rid NUMBER(5) PRIMARY KEY, col VARCHAR2(3));

             CREATE SEQUENCE seq_t
              START WITH 1000
              INCREMENT BY 1
              NOCACHE
              NOCYCLE;



             CREATE OR REPLACE TRIGGER row_level
             BEFORE INSERT ON t
             FOR EACH ROW

             BEGIN
              SELECT seq_t.NEXTVAL
              INTO :NEW.rid
              FROM dual;
              dbms_output.put_line(:NEW.rid);


             END row_level;
             /
             SQL > SET SERVEROUTPUT ON;

             INSERT INTO t (col) VALUES ('A');
             INSERT INTO t (col) VALUES ('B');
             INSERT INTO t (col) VALUES ('C');

             SELECT * FROM t;
Database System Concepts                            6.25                    ©Silberschatz, Korth and Sudarshan
•   CREATE OR REPLACE TRIGGER all_event
               AFTER INSERT OR UPDATE OR DELETE
               ON orders
               FOR EACH ROW

               DECLARE
                 vMsg VARCHAR2(30) := 'Row Level Trigger Fired';
               BEGIN
                  IF INSERTING THEN
                     dbms_output.put_line(vMsg || ' On Insert');
                  ELSIF UPDATING THEN
                     dbms_output.put_line(vMsg || ' On Update');
                  ELSIF DELETING THEN
                     dbms_output.put_line(vMsg || ' On Delete');
                  END IF;
               END statement_level;
               /

               set serveroutput on

               INSERT INTO orders (somecolumn) VALUES ('ABC');

               UPDATE orders
               SET somecolumn = 'ZZT';

               DELETE FROM orders WHERE rownum < 4;
Database System Concepts                          6.26             ©Silberschatz, Korth and Sudarshan
CREATE TABLE person ( fname VARCHAR2(15), lname VARCHAR2(15));

               CREATE TABLE audit_log ( o_fname VARCHAR2(15), o_lname VARCHAR2(15),
                                     n_fname VARCHAR2(15), n_lname VARCHAR2(15),
                                     chng_by VARCHAR2(10), chng_when DATE);

               CREATE OR REPLACE TRIGGER referencing_clause
               AFTER UPDATE ON person
               REFERENCING NEW AS NEW OLD AS OLD
               FOR EACH ROW
               BEGIN
                 INSERT INTO audit_log
                 (o_fname, o_lname, n_fname, n_lname, chng_by, chng_when)
                 VALUES
                 (:OLD.fname, :OLD.lname, :NEW.fname, :NEW.lname, USER, SYSDATE);
               END referencing_clause;
               /

               INSERT INTO person (fname, lname) VALUES ('Dan', 'Morgan');

               SELECT * FROM person;
               SELECT * FROM audit_log;

               UPDATE person
               SET lname = 'Dangerous';

               SELECT * FROM person;
               SELECT * FROM audit_log;

               UPDATE person
               SET fname = 'Mark', lname = 'Townsend';

               SELECT * FROM person;
               SELECT * FROM audit_log;

Database System Concepts                                    6.27                    ©Silberschatz, Korth and Sudarshan
Altering Triggers
   •    To see the list of all triggers

                SELECT trigger_name, status FROM user_triggers;


   •    To enable /disable a single trigger

                ALTER TRIGGER bi_t DISABLE;

                 ALTER TRIGGER bd_t ENABLE;


   •    To enable all triggers on a table
                 ALTER TABLE <table_name> ENABLE ALL TRIGGERS;
                ALTER TABLE t ENABLE ALL TRIGGERS;


   •    Disable All Triggers On A Table

                ALTER TABLE <table_name> DISABLE ALL TRIGGERS;
                ALTER TABLE t DISABLE ALL TRIGGERS;


   •    Rename Trigger

                ALTER TRIGGER <trigger_name> RENAME TO <new_name>;
                ALTER TRIGGER bi_t RENAME TO new_trigger_name;


   •     Drop Trigger (all types)

                DROP TRIGGER <trigger_name>;
                DROP TRIGGER new_trigger_name;


Database System Concepts                                          6.28   ©Silberschatz, Korth and Sudarshan
CREATE TABLE t1 (x int);
              CREATE TABLE t2 (x int);
              INSERT INTO t1 VALUES (1);
              SELECT * FROM t1;
              SELECT * FROM t2;
              CREATE OR REPLACE TRIGGER t_trigger
              AFTER INSERT ON t1

              FOR EACH ROW
              DECLARE
                    i PLS_INTEGER;
              BEGIN
                  SELECT COUNT(*) INTO i
                  FROM t1;
                           INSERT INTO t2 VALUES (i);
              END;
              /
              INSERT INTO t1 VALUES (1);
              SELECT COUNT(*) FROM t1;
              SELECT COUNT(*) FROM t2;

Database System Concepts                           6.29   ©Silberschatz, Korth and Sudarshan
•   CREATE OR REPLACE TRIGGER t_date
           BEFORE INSERT
           ON orders
           FOR EACH ROW

           DECLARE
             bad_date EXCEPTION;
           BEGIN
             IF :new.datecol > SYSDATE THEN
                RAISE_APPLICATION_ERROR(-20005,'Future Dates Not
           Allowed');
             END IF;
           END;
           /

           INSERT INTO orders VALUES ('ABC', 999, SYSDATE-1);
           INSERT INTO orders VALUES ('ABC', 999, SYSDATE);
           INSERT INTO orders VALUES ('ABC', 999, SYSDATE+1);




Database System Concepts              6.30             ©Silberschatz, Korth and Sudarshan
Security

      s Security - protection from malicious attempts to steal or modify data.
            5 Database system level
                    Authentication and authorization mechanisms to allow specific users
                    access only to required data
                    We concentrate on authorization in the rest of this chapter
            5 Operating system level
                    Operating system super-users can do anything they want to the
                    database! Good operating system level security is required.
            5 Network level: must use encryption to prevent
                    Eavesdropping (unauthorized reading of messages)
                    Masquerading (pretending to be an authorized user or sending
                    messages supposedly from authorized users)




Database System Concepts                          6.31                  ©Silberschatz, Korth and Sudarshan
Security (Cont.)

              5 Physical level
                      Physical access to computers allows destruction of data by
                      intruders; traditional lock-and-key security is needed
                      Computers must also be protected from floods, fire, etc.
                           – More in Chapter 17 (Recovery)
              5 Human level
                      Users must be screened to ensure that an authorized users do
                      not give access to intruders
                      Users should be trained on password selection and secrecy




Database System Concepts                           6.32                ©Silberschatz, Korth and Sudarshan
Authorization

        Forms of authorization on parts of the database:

        s Read authorization - allows reading, but not modification of

             data.
        s Insert authorization - allows insertion of new data, but not
             modification of existing data.
        s Update authorization - allows modification, but not deletion of
             data.
        s Delete authorization - allows deletion of data




Database System Concepts                      6.33          ©Silberschatz, Korth and Sudarshan
Authorization (Cont.)

        Forms of authorization to modify the database schema:
        s Index authorization - allows creation and deletion of indices.
        s Resources authorization - allows creation of new relations.
        s Alteration authorization - allows addition or deletion of attributes
             in a relation.
        s Drop authorization - allows deletion of relations.




Database System Concepts                  6.34                 ©Silberschatz, Korth and Sudarshan
Authorization and Views

        s Users can be given authorization on views, without being given
             any authorization on the relations used in the view definition
        s Ability of views to hide data serves both to simplify usage of the
             system and to enhance security by allowing users access only to
             data they need for their job
        s A combination or relational-level security and view-level security
             can be used to limit a user’s access to precisely the data that
             user needs.




Database System Concepts                     6.35                ©Silberschatz, Korth and Sudarshan
View Example

        s Suppose a bank clerk needs to know the names of the
             customers of each branch, but is not authorized to see specific
             loan information.
              5 Approach: Deny direct access to the loan relation, but grant access
                to the view cust-loan, which consists only of the names of
                customers and the branches at which they have a loan.
              5 The cust-loan view is defined in SQL as follows:
                    create view cust-loan as
                      select branchname, customer-name
                       from borrower, loan
                       where borrower.loan-number = loan.loan-number




Database System Concepts                       6.36                  ©Silberschatz, Korth and Sudarshan
View Example (Cont.)

        s The clerk is authorized to see the result of the query:
                           select *
                           from cust-loan
        s When the query processor translates the result into a query on
             the actual relations in the database, we obtain a query on
             borrower and loan.
        s Authorization must be checked on the clerk’s query before
             query processing replaces a view by the definition of the view.




Database System Concepts                     6.37               ©Silberschatz, Korth and Sudarshan
Authorization on Views

        s Creation of view does not require resources authorization
             since no real relation is being created
        s The creator of a view gets only those privileges that provide no
             additional authorization beyond that he already had.
        s E.g. if creator of view cust-loan had only read authorization on
             borrower and loan, he gets only read authorization on cust-loan




Database System Concepts                     6.38              ©Silberschatz, Korth and Sudarshan
Granting of Privileges

        s The passage of authorization from one user to another may be
             represented by an authorization graph.
        s The nodes of this graph are the users.
        s The root of the graph is the database administrator.
        s Consider graph for update authorization on loan.
        s An edge Ui →Uj indicates that user Ui has granted update
             authorization on loan to Uj.
                               U1            U4


              DBA                U2                U5


                                U3
Database System Concepts                    6.39             ©Silberschatz, Korth and Sudarshan
Authorization Grant Graph

        s Requirement: All edges in an authorization graph must be part of
             some path originating with the database administrator
        s If DBA revokes grant from U1:
              5 Grant must be revoked from U4 since U1 no longer has authorization
              5 Grant must not be revoked from U5 since U5 has another
                authorization path from DBA through U2
        s Must prevent cycles of grants with no path from the root:
              5 DBA grants authorization to U7
              5 U7 grants authorization to U8
              5 U8 grants authorization to U7
              5 DBA revokes authorization from U7
        s Must revoke grant U7 to U8 and from U8 to U7 since there is no
             path from DBA to U7 or to U8 anymore.

Database System Concepts                         6.40              ©Silberschatz, Korth and Sudarshan
Security Specification in SQL

        s The grant statement is used to confer authorization
                    grant <privilege list>
                    on <relation name or view name> to <user list>
        s <user list> is:
              5 a user-id
              5 public, which allows all valid users the privilege granted
              5 A role (more on this later)
        s Granting a privilege on a view does not imply granting any
             privileges on the underlying relations.
        s The grantor of the privilege must already hold the privilege on
             the specified item (or be the database administrator).




Database System Concepts                         6.41                  ©Silberschatz, Korth and Sudarshan
Privileges in SQL

          s select: allows read access to relation,or the ability to query using
              the view
                5 Example: grant users U1, U2, and U3 select authorization on the branch
                  relation:
                              grant select on branch to U1, U2, U3
          s insert: the ability to insert tuples
          s update: the ability to update using the SQL update statement
          s delete: the ability to delete tuples.
          s references: ability to declare foreign keys when creating relations.
          s usage: In SQL-92; authorizes a user to use a specified domain
          s all privileges: used as a short form for all the allowable privileges




Database System Concepts                           6.42                    ©Silberschatz, Korth and Sudarshan
Privilege To Grant Privileges

        s with grant option: allows a user who is granted a privilege to
             pass the privilege on to other users.
              5 Example:
                           grant select on branch to U1 with grant option
                   gives U1 the select privileges on branch and allows U1 to grant
                     this
                   privilege to others




Database System Concepts                          6.43                ©Silberschatz, Korth and Sudarshan
Roles
      s Roles permit common privileges for a class of users can be
          specified just once by creating a corresponding “role”
      s Privileges can be granted to or revoked from roles, just like user
      s Roles can be assigned to users, and even to other roles
      s SQL:1999 supports roles
                            create role teller
                           create role manager

                            grant select on branch to teller
                           grant update (balance) on account to teller
                           grant all privileges on account to manager

                           grant teller to manager

                           grant teller to alice, bob
                           grant manager to avi

Database System Concepts                                6.44             ©Silberschatz, Korth and Sudarshan
Revoking Authorization in SQL

        s The revoke statement is used to revoke authorization.
              revoke<privilege list>
              on <relation name or view name> from <user list> [restrict|
                cascade]
        s Example:
              revoke select on branch from U1, U2, U3 cascade
        s Revocation of a privilege from a user may cause other users
             also to lose that privilege; referred to as cascading of the
             revoke.
        s We can prevent cascading by specifying restrict:
                  revoke select on branch from U1, U2, U3 restrict
             With restrict, the revoke command fails if cascading revokes
             are required.


Database System Concepts                      6.45                   ©Silberschatz, Korth and Sudarshan
Revoking Authorization in SQL
                              (Cont.)

        s <privilege-list> may be all to revoke all privileges the revokee
             may hold.
        s If <revokee-list> includes public all users lose the privilege
             except those granted it explicitly.
        s If the same privilege was granted twice to the same user by
             different grantees, the user may retain the privilege after the
             revocation.
        s All privileges that depend on the privilege being revoked are also
             revoked.




Database System Concepts                      6.46               ©Silberschatz, Korth and Sudarshan
Limitations of SQL Authorization

        s SQL does not support authorization at a tuple level
           5 E.g. we cannot restrict students to see only (the tuples storing) their own
             grades
        s With the growth in Web access to databases, database accesses come
             primarily from application servers.
              5 End users don't have database user ids, they are all mapped to the same
                database user id
        s All end-users of an application (such as a web application) may be
             mapped to a single database user
        s The task of authorization in above cases falls on the application
             program, with no support from SQL
              5 Benefit: fine grained authorizations, such as to individual tuples, can be
                implemented by the application.
              5 Drawback: Authorization must be done in application code, and may be
                dispersed all over an application
              5 Checking for absence of authorization loopholes becomes very difficult since
                it requires reading large amounts of application code



Database System Concepts                           6.47                    ©Silberschatz, Korth and Sudarshan
Audit Trails

         s An audit trail is a log of all changes (inserts/deletes/updates) to
             the database along with information such as which user
             performed the change, and when the change was performed.
         s Used to track erroneous/fraudulent updates.
         s Can be implemented using triggers, but many database systems
             provide direct support.




Database System Concepts                    6.48                 ©Silberschatz, Korth and Sudarshan
Encryption

        s Data may be encrypted when database authorization provisions
             do not offer sufficient protection.
        s Properties of good encryption technique:
              5 Relatively simple for authorized users to encrypt and decrypt data.
              5 Encryption scheme depends not on the secrecy of the algorithm but
                on the secrecy of a parameter of the algorithm called the
                encryption key.
              5 Extremely difficult for an intruder to determine the encryption key.




Database System Concepts                         6.49                  ©Silberschatz, Korth and Sudarshan
Encryption (Cont.)

        s     Data Encryption Standard (DES) substitutes characters and rearranges
             their order on the basis of an encryption key which is provided to
             authorized users via a secure mechanism. Scheme is no more secure
             than the key transmission mechanism since the key has to be shared.
        s Advanced Encryption Standard (AES) is a new standard replacing DES,
             and is based on the Rijndael algorithm, but is also dependent on shared
             secret keys
        s    Public-key encryption is based on each user having two keys:
              5 public key – publicly published key used to encrypt data, but cannot be used
                to decrypt data
              5 private key -- key known only to individual user, and used to decrypt data.
                Need not be transmitted to the site doing encryption.
            Encryption scheme is such that it is impossible or extremely hard to
            decrypt data given only the public key.
        s The RSA public-key encryption scheme is based on the hardness of
             factoring a very large number (100's of digits) into its prime
             components.



Database System Concepts                           6.50                    ©Silberschatz, Korth and Sudarshan
Authentication
        s Password based authentication is widely used, but is susceptible
            to sniffing on a network
        s Challenge-response systems avoid transmission of
            passwords
              5 DB sends a (randomly generated) challenge string to user
              5 User encrypts string and returns result.
              5 DB verifies identity by decrypting result
              5 Can use public-key encryption system by DB sending a message
                encrypted using user’s public key, and user decrypting and sending
                the message back
        s Digital signatures are used to verify authenticity of data
              5 E.g. use private key (in reverse) to encrypt data, and anyone can
                verify authenticity by using public key (in reverse) to decrypt data.
                Only holder of private key could have created the encrypted data.
              5 Digital signatures also help ensure nonrepudiation: sender
                cannot later claim to have not created the data
Database System Concepts                         6.51                   ©Silberschatz, Korth and Sudarshan
Digital Certificates
        s Digital certificates are used to verify authenticity of public keys.
        s Problem: when you communicate with a web site, how do you know
            if you are talking with the genuine web site or an imposter?
              5 Solution: use the public key of the web site
              5 Problem: how to verify if the public key itself is genuine?
        s Solution:
           5 Every client (e.g. browser) has public keys of a few root-level
             certification authorities
           5 A site can get its name/URL and public key signed by a certification
             authority: signed document is called a certificate
           5 Client can use public key of certification authority to verify certificate
              5 Multiple levels of certification authorities can exist. Each certification
                authority
                   presents its own public-key certificate signed by a
                   higher level authority, and
                   Uses its private key to sign the certificate of other web
                   sites/authorities

Database System Concepts                           6.52                   ©Silberschatz, Korth and Sudarshan

Contenu connexe

En vedette

Revision sql te it new syllabus
Revision sql te it new syllabusRevision sql te it new syllabus
Revision sql te it new syllabussaurabhshertukde
 
Risk analysis Chapter
Risk analysis ChapterRisk analysis Chapter
Risk analysis ChapterSINGHZEE
 
Risk analysis and management
Risk analysis and managementRisk analysis and management
Risk analysis and managementgnitu
 

En vedette (7)

Revision sql te it new syllabus
Revision sql te it new syllabusRevision sql te it new syllabus
Revision sql te it new syllabus
 
Introduction er & eer
Introduction er & eerIntroduction er & eer
Introduction er & eer
 
Oodbms ch 20
Oodbms ch 20Oodbms ch 20
Oodbms ch 20
 
Analysis modelling
Analysis modellingAnalysis modelling
Analysis modelling
 
Risk analysis Chapter
Risk analysis ChapterRisk analysis Chapter
Risk analysis Chapter
 
Risk analysis and management
Risk analysis and managementRisk analysis and management
Risk analysis and management
 
Risk analysis
Risk analysisRisk analysis
Risk analysis
 

Similaire à Integrity & security

6 integrity and security
6 integrity and security6 integrity and security
6 integrity and securityDilip G R
 
6. Integrity and Security in DBMS
6. Integrity and Security in DBMS6. Integrity and Security in DBMS
6. Integrity and Security in DBMSkoolkampus
 
DBMS_INTRODUCTION OF SQL
DBMS_INTRODUCTION OF SQLDBMS_INTRODUCTION OF SQL
DBMS_INTRODUCTION OF SQLAzizul Mamun
 
Integrity Constraints in Database Management System.ppt
Integrity Constraints in Database Management System.pptIntegrity Constraints in Database Management System.ppt
Integrity Constraints in Database Management System.pptRoshni814224
 
4_RelationalDataModelAndRelationalMapping.pdf
4_RelationalDataModelAndRelationalMapping.pdf4_RelationalDataModelAndRelationalMapping.pdf
4_RelationalDataModelAndRelationalMapping.pdfLPhct2
 
Query optimization
Query optimizationQuery optimization
Query optimizationNeha Behl
 
DBMS _Relational model
DBMS _Relational modelDBMS _Relational model
DBMS _Relational modelAzizul Mamun
 
Database : Relational Data Model
Database : Relational Data ModelDatabase : Relational Data Model
Database : Relational Data ModelSmriti Jain
 
Sm relationaldatamodel-150423084157-conversion-gate01
Sm relationaldatamodel-150423084157-conversion-gate01Sm relationaldatamodel-150423084157-conversion-gate01
Sm relationaldatamodel-150423084157-conversion-gate01Ankit Dubey
 
Sm relationaldatamodel-150423084157-conversion-gate01
Sm relationaldatamodel-150423084157-conversion-gate01Sm relationaldatamodel-150423084157-conversion-gate01
Sm relationaldatamodel-150423084157-conversion-gate01Ankit Dubey
 

Similaire à Integrity & security (20)

Ch6
Ch6Ch6
Ch6
 
6 integrity and security
6 integrity and security6 integrity and security
6 integrity and security
 
6. Integrity and Security in DBMS
6. Integrity and Security in DBMS6. Integrity and Security in DBMS
6. Integrity and Security in DBMS
 
2e data models
2e   data models2e   data models
2e data models
 
Ch3
Ch3Ch3
Ch3
 
Ch3
Ch3Ch3
Ch3
 
DBMS_INTRODUCTION OF SQL
DBMS_INTRODUCTION OF SQLDBMS_INTRODUCTION OF SQL
DBMS_INTRODUCTION OF SQL
 
Integrity Constraints in Database Management System.ppt
Integrity Constraints in Database Management System.pptIntegrity Constraints in Database Management System.ppt
Integrity Constraints in Database Management System.ppt
 
Assignment#01
Assignment#01Assignment#01
Assignment#01
 
Sql.pptx
Sql.pptxSql.pptx
Sql.pptx
 
Int_SQL.pdf
Int_SQL.pdfInt_SQL.pdf
Int_SQL.pdf
 
Ddl
DdlDdl
Ddl
 
4_RelationalDataModelAndRelationalMapping.pdf
4_RelationalDataModelAndRelationalMapping.pdf4_RelationalDataModelAndRelationalMapping.pdf
4_RelationalDataModelAndRelationalMapping.pdf
 
Query optimization
Query optimizationQuery optimization
Query optimization
 
DBMS _Relational model
DBMS _Relational modelDBMS _Relational model
DBMS _Relational model
 
Ch3
Ch3Ch3
Ch3
 
Database : Relational Data Model
Database : Relational Data ModelDatabase : Relational Data Model
Database : Relational Data Model
 
Sm relationaldatamodel-150423084157-conversion-gate01
Sm relationaldatamodel-150423084157-conversion-gate01Sm relationaldatamodel-150423084157-conversion-gate01
Sm relationaldatamodel-150423084157-conversion-gate01
 
Sm relationaldatamodel-150423084157-conversion-gate01
Sm relationaldatamodel-150423084157-conversion-gate01Sm relationaldatamodel-150423084157-conversion-gate01
Sm relationaldatamodel-150423084157-conversion-gate01
 
Relational Model
Relational ModelRelational Model
Relational Model
 

Plus de saurabhshertukde

Plus de saurabhshertukde (13)

Introduction er & eer
Introduction er &  eerIntroduction er &  eer
Introduction er & eer
 
Er & eer to relational mapping
Er & eer to relational mappingEr & eer to relational mapping
Er & eer to relational mapping
 
Eer case study
Eer case studyEer case study
Eer case study
 
Chapter 2
Chapter 2Chapter 2
Chapter 2
 
Chapter 1
Chapter 1Chapter 1
Chapter 1
 
Chapter 9
Chapter 9Chapter 9
Chapter 9
 
J2 ee archi
J2 ee archiJ2 ee archi
J2 ee archi
 
J2 ee architecture
J2 ee architectureJ2 ee architecture
J2 ee architecture
 
Software project-scheduling
Software project-schedulingSoftware project-scheduling
Software project-scheduling
 
Softwareproject planning
Softwareproject planningSoftwareproject planning
Softwareproject planning
 
Pressman ch-3-prescriptive-process-models
Pressman ch-3-prescriptive-process-modelsPressman ch-3-prescriptive-process-models
Pressman ch-3-prescriptive-process-models
 
Design concepts and principles
Design concepts and principlesDesign concepts and principles
Design concepts and principles
 
Analysis concepts and principles
Analysis concepts and principlesAnalysis concepts and principles
Analysis concepts and principles
 

Dernier

"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek SchlawackFwdays
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embeddingZilliz
 
unit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxunit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxBkGupta21
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxLoriGlavin3
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxLoriGlavin3
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersRaghuram Pandurangan
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxhariprasad279825
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfMounikaPolabathina
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxLoriGlavin3
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersNicole Novielli
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 

Dernier (20)

"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embedding
 
unit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxunit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptx
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information Developers
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptx
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdf
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software Developers
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 

Integrity & security

  • 1. Chapter 6: Integrity and Security s Domain Constraints s Referential Integrity s Assertions s Triggers s Security s Authorization s Authorization in SQL Database System Concepts 6.1 ©Silberschatz, Korth and Sudarshan
  • 2. Domain Constraints s Integrity constraints guard against accidental damage to the database, by ensuring that authorized changes to the database do not result in a loss of data consistency. s Domain constraints are the most elementary form of integrity constraint. s They test values inserted in the database, and test queries to ensure that the comparisons make sense. s New domains can be created from existing data types 5 E.g. create domain Dollars numeric(12, 2) create domain Pounds numeric(12,2) Database System Concepts 6.2 ©Silberschatz, Korth and Sudarshan
  • 3. Domain Constraints (Cont.) s The check clause in SQL-92 permits domains to be restricted: 5 Use check clause to ensure that an hourly-wage domain allows only values greater than a specified value. create domain hourly-wage numeric(5,2) constraint value-test check(value > = 4.00) 5 The domain has a constraint that ensures that the hourly-wage is greater than 4.00 5 The clause constraint value-test is optional; useful to indicate which constraint an update violated. s Can have complex conditions in domain check 5 create domain AccountType char(10) constraint account-type-test check (value in (‘Checking’, ‘Saving’)) 5 check (branch-name in (select branch-name from branch)) Database System Concepts 6.3 ©Silberschatz, Korth and Sudarshan
  • 4. Referential Integrity s Ensures that a value that appears in one relation for a given set of attributes also appears for a certain set of attributes in another relation. 5 Example: If “Perryridge” is a branch name appearing in one of the tuples in the account relation, then there exists a tuple in the branch relation for branch “Perryridge”. s Formal Definition 5 Let r1(R1) and r2(R2) be relations with primary keys K1 and K2 respectively. 5 The subset α of R2 is a foreign key referencing K1 in relation r1, if for every t2 in r2 there must be a tuple t1 in r1 such that t1[K1] = t2[α]. 5 Referential integrity constraint also called subset dependency since its can be written as ∏α (r2) ⊆ ∏K1 (r1) Database System Concepts 6.4 ©Silberschatz, Korth and Sudarshan
  • 5. Referential Integrity in the E-R Model s Consider relationship set R between entity sets E1 and E2. The relational schema for R includes the primary keys K1 of E1 and K2 of E2. Then K1 and K2 form foreign keys on the relational schemas for E1 and E2 respectively. E1 R E2 s Weak entity sets are also a source of referential integrity constraints. 5 For the relation schema for a weak entity set must include the primary key attributes of the entity set on which it depends Database System Concepts 6.5 ©Silberschatz, Korth and Sudarshan
  • 6. Checking Referential Integrity on Database Modification s The following tests must be made in order to preserve the following referential integrity constraint: ∏α (r2) ⊆ ∏K (r1) s Insert. If a tuple t2 is inserted into r2, the system must ensure that there is a tuple t1 in r1 such that t1[K] = t2[α]. That is t2 [α] ∈ ∏K (r1) s Delete. If a tuple, t1 is deleted from r1, the system must compute the set of tuples in r2 that reference t1: σα = t1[K] (r2) If this set is not empty 5 either the delete command is rejected as an error, or 5 the tuples that reference t1 must themselves be deleted (cascading deletions are possible). Database System Concepts 6.6 ©Silberschatz, Korth and Sudarshan
  • 7. Database Modification (Cont.) s Update. There are two cases: 5 If a tuple t2 is updated in relation r2 and the update modifies values for foreign key α, then a test similar to the insert case is made: Let t2’ denote the new value of tuple t2. The system must ensure that t2’[α] ∈ ∏K(r1) 5 If a tuple t1 is updated in r1, and the update modifies values for the primary key (K), then a test similar to the delete case is made: The system must compute σα = t1[K] (r2) using the old value of t1 (the value before the update is applied). If this set is not empty 1. the update may be rejected as an error, or 2. the update may be cascaded to the tuples in the set, or 3. the tuples in the set may be deleted. Database System Concepts 6.7 ©Silberschatz, Korth and Sudarshan
  • 8. Referential Integrity in SQL s Primary and candidate keys and foreign keys can be specified as part of the SQL create table statement: 5 The primary key clause lists attributes that comprise the primary key. 5 The unique key clause lists attributes that comprise a candidate key. 5 The foreign key clause lists the attributes that comprise the foreign key and the name of the relation referenced by the foreign key. s By default, a foreign key references the primary key attributes of the referenced table foreign key (account-number) references account s Short form for specifying a single column as foreign key account-number char (10) references account s Reference columns in the referenced table can be explicitly specified 5 but must be declared as primary key foreign key (account-number) references account(account-number) Database System Concepts 6.8 ©Silberschatz, Korth and Sudarshan
  • 9. Referential Integrity in SQL – Example create table customer (customer-name char(20), customer-street char(30), customer-city char(30), primary key (customer-name)) create table branch (branch-name char(15), branch-city char(30), assets integer, primary key (branch-name)) Database System Concepts 6.9 ©Silberschatz, Korth and Sudarshan
  • 10. Referential Integrity in SQL – Example (Cont.) create table account (account-number char(10), branch-name char(15), balance integer, primary key (account-number), foreign key (branch-name) references branch) create table depositor (customer-name char(20), account-number char(10), primary key (customer-name, account-number), foreign key (account-number) references account, foreign key (customer-name) references customer) Database System Concepts 6.10 ©Silberschatz, Korth and Sudarshan
  • 11. Cascading Actions in SQL create table account ... foreign key(branch-name) references branch on delete cascade on update cascade ... ) s Due to the on delete cascade clauses, if a delete of a tuple in branch results in referential-integrity constraint violation, the delete “cascades” to the account relation, deleting the tuple that refers to the branch that was deleted. s Cascading updates are similar. Database System Concepts 6.11 ©Silberschatz, Korth and Sudarshan
  • 12. Cascading Actions in SQL (Cont.) s If there is a chain of foreign-key dependencies across multiple relations, with on delete cascade specified for each dependency, a deletion or update at one end of the chain can propagate across the entire chain. s If a cascading update to delete causes a constraint violation that cannot be handled by a further cascading operation, the system aborts the transaction. 5 As a result, all the changes caused by the transaction and its cascading actions are undone. s Referential integrity is only checked at the end of a transaction 5 Intermediate steps are allowed to violate referential integrity provided later steps remove the violation 5 Otherwise it would be impossible to create some database states, e.g. insert two tuples whose foreign keys point to each other Database System Concepts 6.12 ©Silberschatz, Korth and Sudarshan
  • 13. Referential Integrity in SQL (Cont.) s Alternative to cascading: 5 on delete set null 5 on delete set default s Null values in foreign key attributes complicate SQL referential integrity semantics, and are best prevented using not null 5 if any attribute of a foreign key is null, the tuple is defined to satisfy the foreign key constraint! Database System Concepts 6.13 ©Silberschatz, Korth and Sudarshan
  • 14. Assertions s An assertion is a predicate expressing a condition that we wish the database always to satisfy. s An assertion in SQL takes the form create assertion <assertion-name> check <predicate> s When an assertion is made, the system tests it for validity, and tests it again on every update that may violate the assertion 5 This testing may introduce a significant amount of overhead; hence assertions should be used with great care. Database System Concepts 6.14 ©Silberschatz, Korth and Sudarshan
  • 15. Assertion Example s The sum of all loan amounts for each branch must be less than the sum of all account balances at the branch. create assertion sum-constraint check (not exists (select * from branch where (select sum(amount) from loan where loan.branch-name = branch.branch-name) >= (select sum(amount) from account where loan.branch-name = branch.branch-name))) Database System Concepts 6.15 ©Silberschatz, Korth and Sudarshan
  • 16. Assertion Example s Every loan has at least one borrower who maintains an account with a minimum balance or $1000.00 create assertion balance-constraint check (not exists ( select * from loan where not exists ( select * from borrower, depositor, account where loan.loan-number = borrower.loan-number and borrower.customer-name = depositor.customer- name and depositor.account-number = account.account- number and account.balance >= 1000))) Database System Concepts 6.16 ©Silberschatz, Korth and Sudarshan
  • 17. Triggers s A trigger is a statement that is executed automatically by the system as a side effect of a modification to the database. s To design a trigger mechanism, we must: 5 Specify the conditions under which the trigger is to be executed. 5 Specify the actions to be taken when the trigger executes. s Triggers introduced to SQL standard in SQL:1999, but supported even earlier using non-standard syntax by most databases. Database System Concepts 6.17 ©Silberschatz, Korth and Sudarshan
  • 18. Trigger Example s Suppose that instead of allowing negative account balances, the bank deals with overdrafts by 5 setting the account balance to zero 5 creating a loan in the amount of the overdraft 5 giving this loan a loan number identical to the account number of the overdrawn account s The condition for executing the trigger is an update to the account relation that results in a negative balance value. Database System Concepts 6.18 ©Silberschatz, Korth and Sudarshan
  • 19. Trigger Example in SQL:1999 create trigger overdraft-trigger after update on account referencing new row as nrow for each row when nrow.balance < 0 begin insert into borrower (select customer-name, account-number from depositor where nrow.account-number = depositor.account-number); insert into loan values (n.row.account-number, nrow.branch-name, – nrow.balance); update account set balance = 0 where account.account-number = nrow.account-number end Database System Concepts 6.19 ©Silberschatz, Korth and Sudarshan
  • 20. Triggering Events and Actions in SQL s Triggering event can be insert, delete or update s Triggers on update can be restricted to specific attributes 5 E.g. create trigger overdraft-trigger after update of balance on account s Values of attributes before and after an update can be referenced 5 referencing old row as : for deletes and updates 5 referencing new row as : for inserts and updates s Triggers can be activated before an event, which can serve as extra constraints. E.g. convert blanks to null. create trigger setnull-trigger before update on r referencing new row as nrow for each row when nrow.phone-number = ‘ ‘ set nrow.phone-number = null Database System Concepts 6.20 ©Silberschatz, Korth and Sudarshan
  • 21. Statement Level Triggers s Instead of executing a separate action for each affected row, a single action can be executed for all rows affected by a transaction 5 Use for each statement instead of for each row 5 Use referencing old table or referencing new table to refer to temporary tables (called transition tables) containing the affected rows 5 Can be more efficient when dealing with SQL statements that update a large number of rows Database System Concepts 6.21 ©Silberschatz, Korth and Sudarshan
  • 22. External World Actions s We sometimes require external world actions to be triggered on a database update 5 E.g. re-ordering an item whose quantity in a warehouse has become small, or turning on an alarm light, s Triggers cannot be used to directly implement external-world actions, BUT 5 Triggers can be used to record actions-to-be-taken in a separate table 5 Have an external process that repeatedly scans the table, carries out external-world actions and deletes action from table s E.g. Suppose a warehouse has the following tables 5 inventory(item, level): How much of each item is in the warehouse 5 minlevel(item, level) : What is the minimum desired level of each item 5 reorder(item, amount): What quantity should we re-order at a time 5 orders(item, amount) : Orders to be placed (read by external process) Database System Concepts 6.22 ©Silberschatz, Korth and Sudarshan
  • 23. External World Actions (Cont.) create trigger reorder-trigger after update of amount on inventory referencing old row as orow, new row as nrow for each row when nrow.level < = (select level from minlevel where minlevel.item = orow.item) and orow.level > (select level from minlevel where minlevel.item = orow.item) begin insert into orders (select item, amount from reorder where reorder.item = orow.item) end Database System Concepts 6.23 ©Silberschatz, Korth and Sudarshan
  • 24. When Not To Use Triggers s Triggers were used earlier for tasks such as 5 maintaining summary data (e.g. total salary of each department) 5 Replicating databases by recording changes to special relations (called change or delta relations) and having a separate process that applies the changes over to a replica s There are better ways of doing these now: 5 Databases today provide built in materialized view facilities to maintain summary data 5 Databases provide built-in support for replication s Encapsulation facilities can be used instead of triggers in many cases 5 Define methods to update fields 5 Carry out actions as part of the update methods instead of through a trigger Database System Concepts 6.24 ©Silberschatz, Korth and Sudarshan
  • 25. CREATE TABLE t (rid NUMBER(5) PRIMARY KEY, col VARCHAR2(3)); CREATE SEQUENCE seq_t START WITH 1000 INCREMENT BY 1 NOCACHE NOCYCLE; CREATE OR REPLACE TRIGGER row_level BEFORE INSERT ON t FOR EACH ROW BEGIN SELECT seq_t.NEXTVAL INTO :NEW.rid FROM dual; dbms_output.put_line(:NEW.rid); END row_level; / SQL > SET SERVEROUTPUT ON; INSERT INTO t (col) VALUES ('A'); INSERT INTO t (col) VALUES ('B'); INSERT INTO t (col) VALUES ('C'); SELECT * FROM t; Database System Concepts 6.25 ©Silberschatz, Korth and Sudarshan
  • 26. CREATE OR REPLACE TRIGGER all_event AFTER INSERT OR UPDATE OR DELETE ON orders FOR EACH ROW DECLARE vMsg VARCHAR2(30) := 'Row Level Trigger Fired'; BEGIN IF INSERTING THEN dbms_output.put_line(vMsg || ' On Insert'); ELSIF UPDATING THEN dbms_output.put_line(vMsg || ' On Update'); ELSIF DELETING THEN dbms_output.put_line(vMsg || ' On Delete'); END IF; END statement_level; / set serveroutput on INSERT INTO orders (somecolumn) VALUES ('ABC'); UPDATE orders SET somecolumn = 'ZZT'; DELETE FROM orders WHERE rownum < 4; Database System Concepts 6.26 ©Silberschatz, Korth and Sudarshan
  • 27. CREATE TABLE person ( fname VARCHAR2(15), lname VARCHAR2(15)); CREATE TABLE audit_log ( o_fname VARCHAR2(15), o_lname VARCHAR2(15), n_fname VARCHAR2(15), n_lname VARCHAR2(15), chng_by VARCHAR2(10), chng_when DATE); CREATE OR REPLACE TRIGGER referencing_clause AFTER UPDATE ON person REFERENCING NEW AS NEW OLD AS OLD FOR EACH ROW BEGIN INSERT INTO audit_log (o_fname, o_lname, n_fname, n_lname, chng_by, chng_when) VALUES (:OLD.fname, :OLD.lname, :NEW.fname, :NEW.lname, USER, SYSDATE); END referencing_clause; / INSERT INTO person (fname, lname) VALUES ('Dan', 'Morgan'); SELECT * FROM person; SELECT * FROM audit_log; UPDATE person SET lname = 'Dangerous'; SELECT * FROM person; SELECT * FROM audit_log; UPDATE person SET fname = 'Mark', lname = 'Townsend'; SELECT * FROM person; SELECT * FROM audit_log; Database System Concepts 6.27 ©Silberschatz, Korth and Sudarshan
  • 28. Altering Triggers • To see the list of all triggers SELECT trigger_name, status FROM user_triggers; • To enable /disable a single trigger ALTER TRIGGER bi_t DISABLE; ALTER TRIGGER bd_t ENABLE; • To enable all triggers on a table ALTER TABLE <table_name> ENABLE ALL TRIGGERS; ALTER TABLE t ENABLE ALL TRIGGERS; • Disable All Triggers On A Table ALTER TABLE <table_name> DISABLE ALL TRIGGERS; ALTER TABLE t DISABLE ALL TRIGGERS; • Rename Trigger ALTER TRIGGER <trigger_name> RENAME TO <new_name>; ALTER TRIGGER bi_t RENAME TO new_trigger_name; • Drop Trigger (all types) DROP TRIGGER <trigger_name>; DROP TRIGGER new_trigger_name; Database System Concepts 6.28 ©Silberschatz, Korth and Sudarshan
  • 29. CREATE TABLE t1 (x int); CREATE TABLE t2 (x int); INSERT INTO t1 VALUES (1); SELECT * FROM t1; SELECT * FROM t2; CREATE OR REPLACE TRIGGER t_trigger AFTER INSERT ON t1 FOR EACH ROW DECLARE i PLS_INTEGER; BEGIN SELECT COUNT(*) INTO i FROM t1; INSERT INTO t2 VALUES (i); END; / INSERT INTO t1 VALUES (1); SELECT COUNT(*) FROM t1; SELECT COUNT(*) FROM t2; Database System Concepts 6.29 ©Silberschatz, Korth and Sudarshan
  • 30. CREATE OR REPLACE TRIGGER t_date BEFORE INSERT ON orders FOR EACH ROW DECLARE bad_date EXCEPTION; BEGIN IF :new.datecol > SYSDATE THEN RAISE_APPLICATION_ERROR(-20005,'Future Dates Not Allowed'); END IF; END; / INSERT INTO orders VALUES ('ABC', 999, SYSDATE-1); INSERT INTO orders VALUES ('ABC', 999, SYSDATE); INSERT INTO orders VALUES ('ABC', 999, SYSDATE+1); Database System Concepts 6.30 ©Silberschatz, Korth and Sudarshan
  • 31. Security s Security - protection from malicious attempts to steal or modify data. 5 Database system level Authentication and authorization mechanisms to allow specific users access only to required data We concentrate on authorization in the rest of this chapter 5 Operating system level Operating system super-users can do anything they want to the database! Good operating system level security is required. 5 Network level: must use encryption to prevent Eavesdropping (unauthorized reading of messages) Masquerading (pretending to be an authorized user or sending messages supposedly from authorized users) Database System Concepts 6.31 ©Silberschatz, Korth and Sudarshan
  • 32. Security (Cont.) 5 Physical level Physical access to computers allows destruction of data by intruders; traditional lock-and-key security is needed Computers must also be protected from floods, fire, etc. – More in Chapter 17 (Recovery) 5 Human level Users must be screened to ensure that an authorized users do not give access to intruders Users should be trained on password selection and secrecy Database System Concepts 6.32 ©Silberschatz, Korth and Sudarshan
  • 33. Authorization Forms of authorization on parts of the database: s Read authorization - allows reading, but not modification of data. s Insert authorization - allows insertion of new data, but not modification of existing data. s Update authorization - allows modification, but not deletion of data. s Delete authorization - allows deletion of data Database System Concepts 6.33 ©Silberschatz, Korth and Sudarshan
  • 34. Authorization (Cont.) Forms of authorization to modify the database schema: s Index authorization - allows creation and deletion of indices. s Resources authorization - allows creation of new relations. s Alteration authorization - allows addition or deletion of attributes in a relation. s Drop authorization - allows deletion of relations. Database System Concepts 6.34 ©Silberschatz, Korth and Sudarshan
  • 35. Authorization and Views s Users can be given authorization on views, without being given any authorization on the relations used in the view definition s Ability of views to hide data serves both to simplify usage of the system and to enhance security by allowing users access only to data they need for their job s A combination or relational-level security and view-level security can be used to limit a user’s access to precisely the data that user needs. Database System Concepts 6.35 ©Silberschatz, Korth and Sudarshan
  • 36. View Example s Suppose a bank clerk needs to know the names of the customers of each branch, but is not authorized to see specific loan information. 5 Approach: Deny direct access to the loan relation, but grant access to the view cust-loan, which consists only of the names of customers and the branches at which they have a loan. 5 The cust-loan view is defined in SQL as follows: create view cust-loan as select branchname, customer-name from borrower, loan where borrower.loan-number = loan.loan-number Database System Concepts 6.36 ©Silberschatz, Korth and Sudarshan
  • 37. View Example (Cont.) s The clerk is authorized to see the result of the query: select * from cust-loan s When the query processor translates the result into a query on the actual relations in the database, we obtain a query on borrower and loan. s Authorization must be checked on the clerk’s query before query processing replaces a view by the definition of the view. Database System Concepts 6.37 ©Silberschatz, Korth and Sudarshan
  • 38. Authorization on Views s Creation of view does not require resources authorization since no real relation is being created s The creator of a view gets only those privileges that provide no additional authorization beyond that he already had. s E.g. if creator of view cust-loan had only read authorization on borrower and loan, he gets only read authorization on cust-loan Database System Concepts 6.38 ©Silberschatz, Korth and Sudarshan
  • 39. Granting of Privileges s The passage of authorization from one user to another may be represented by an authorization graph. s The nodes of this graph are the users. s The root of the graph is the database administrator. s Consider graph for update authorization on loan. s An edge Ui →Uj indicates that user Ui has granted update authorization on loan to Uj. U1 U4 DBA U2 U5 U3 Database System Concepts 6.39 ©Silberschatz, Korth and Sudarshan
  • 40. Authorization Grant Graph s Requirement: All edges in an authorization graph must be part of some path originating with the database administrator s If DBA revokes grant from U1: 5 Grant must be revoked from U4 since U1 no longer has authorization 5 Grant must not be revoked from U5 since U5 has another authorization path from DBA through U2 s Must prevent cycles of grants with no path from the root: 5 DBA grants authorization to U7 5 U7 grants authorization to U8 5 U8 grants authorization to U7 5 DBA revokes authorization from U7 s Must revoke grant U7 to U8 and from U8 to U7 since there is no path from DBA to U7 or to U8 anymore. Database System Concepts 6.40 ©Silberschatz, Korth and Sudarshan
  • 41. Security Specification in SQL s The grant statement is used to confer authorization grant <privilege list> on <relation name or view name> to <user list> s <user list> is: 5 a user-id 5 public, which allows all valid users the privilege granted 5 A role (more on this later) s Granting a privilege on a view does not imply granting any privileges on the underlying relations. s The grantor of the privilege must already hold the privilege on the specified item (or be the database administrator). Database System Concepts 6.41 ©Silberschatz, Korth and Sudarshan
  • 42. Privileges in SQL s select: allows read access to relation,or the ability to query using the view 5 Example: grant users U1, U2, and U3 select authorization on the branch relation: grant select on branch to U1, U2, U3 s insert: the ability to insert tuples s update: the ability to update using the SQL update statement s delete: the ability to delete tuples. s references: ability to declare foreign keys when creating relations. s usage: In SQL-92; authorizes a user to use a specified domain s all privileges: used as a short form for all the allowable privileges Database System Concepts 6.42 ©Silberschatz, Korth and Sudarshan
  • 43. Privilege To Grant Privileges s with grant option: allows a user who is granted a privilege to pass the privilege on to other users. 5 Example: grant select on branch to U1 with grant option gives U1 the select privileges on branch and allows U1 to grant this privilege to others Database System Concepts 6.43 ©Silberschatz, Korth and Sudarshan
  • 44. Roles s Roles permit common privileges for a class of users can be specified just once by creating a corresponding “role” s Privileges can be granted to or revoked from roles, just like user s Roles can be assigned to users, and even to other roles s SQL:1999 supports roles create role teller create role manager grant select on branch to teller grant update (balance) on account to teller grant all privileges on account to manager grant teller to manager grant teller to alice, bob grant manager to avi Database System Concepts 6.44 ©Silberschatz, Korth and Sudarshan
  • 45. Revoking Authorization in SQL s The revoke statement is used to revoke authorization. revoke<privilege list> on <relation name or view name> from <user list> [restrict| cascade] s Example: revoke select on branch from U1, U2, U3 cascade s Revocation of a privilege from a user may cause other users also to lose that privilege; referred to as cascading of the revoke. s We can prevent cascading by specifying restrict: revoke select on branch from U1, U2, U3 restrict With restrict, the revoke command fails if cascading revokes are required. Database System Concepts 6.45 ©Silberschatz, Korth and Sudarshan
  • 46. Revoking Authorization in SQL (Cont.) s <privilege-list> may be all to revoke all privileges the revokee may hold. s If <revokee-list> includes public all users lose the privilege except those granted it explicitly. s If the same privilege was granted twice to the same user by different grantees, the user may retain the privilege after the revocation. s All privileges that depend on the privilege being revoked are also revoked. Database System Concepts 6.46 ©Silberschatz, Korth and Sudarshan
  • 47. Limitations of SQL Authorization s SQL does not support authorization at a tuple level 5 E.g. we cannot restrict students to see only (the tuples storing) their own grades s With the growth in Web access to databases, database accesses come primarily from application servers. 5 End users don't have database user ids, they are all mapped to the same database user id s All end-users of an application (such as a web application) may be mapped to a single database user s The task of authorization in above cases falls on the application program, with no support from SQL 5 Benefit: fine grained authorizations, such as to individual tuples, can be implemented by the application. 5 Drawback: Authorization must be done in application code, and may be dispersed all over an application 5 Checking for absence of authorization loopholes becomes very difficult since it requires reading large amounts of application code Database System Concepts 6.47 ©Silberschatz, Korth and Sudarshan
  • 48. Audit Trails s An audit trail is a log of all changes (inserts/deletes/updates) to the database along with information such as which user performed the change, and when the change was performed. s Used to track erroneous/fraudulent updates. s Can be implemented using triggers, but many database systems provide direct support. Database System Concepts 6.48 ©Silberschatz, Korth and Sudarshan
  • 49. Encryption s Data may be encrypted when database authorization provisions do not offer sufficient protection. s Properties of good encryption technique: 5 Relatively simple for authorized users to encrypt and decrypt data. 5 Encryption scheme depends not on the secrecy of the algorithm but on the secrecy of a parameter of the algorithm called the encryption key. 5 Extremely difficult for an intruder to determine the encryption key. Database System Concepts 6.49 ©Silberschatz, Korth and Sudarshan
  • 50. Encryption (Cont.) s Data Encryption Standard (DES) substitutes characters and rearranges their order on the basis of an encryption key which is provided to authorized users via a secure mechanism. Scheme is no more secure than the key transmission mechanism since the key has to be shared. s Advanced Encryption Standard (AES) is a new standard replacing DES, and is based on the Rijndael algorithm, but is also dependent on shared secret keys s Public-key encryption is based on each user having two keys: 5 public key – publicly published key used to encrypt data, but cannot be used to decrypt data 5 private key -- key known only to individual user, and used to decrypt data. Need not be transmitted to the site doing encryption. Encryption scheme is such that it is impossible or extremely hard to decrypt data given only the public key. s The RSA public-key encryption scheme is based on the hardness of factoring a very large number (100's of digits) into its prime components. Database System Concepts 6.50 ©Silberschatz, Korth and Sudarshan
  • 51. Authentication s Password based authentication is widely used, but is susceptible to sniffing on a network s Challenge-response systems avoid transmission of passwords 5 DB sends a (randomly generated) challenge string to user 5 User encrypts string and returns result. 5 DB verifies identity by decrypting result 5 Can use public-key encryption system by DB sending a message encrypted using user’s public key, and user decrypting and sending the message back s Digital signatures are used to verify authenticity of data 5 E.g. use private key (in reverse) to encrypt data, and anyone can verify authenticity by using public key (in reverse) to decrypt data. Only holder of private key could have created the encrypted data. 5 Digital signatures also help ensure nonrepudiation: sender cannot later claim to have not created the data Database System Concepts 6.51 ©Silberschatz, Korth and Sudarshan
  • 52. Digital Certificates s Digital certificates are used to verify authenticity of public keys. s Problem: when you communicate with a web site, how do you know if you are talking with the genuine web site or an imposter? 5 Solution: use the public key of the web site 5 Problem: how to verify if the public key itself is genuine? s Solution: 5 Every client (e.g. browser) has public keys of a few root-level certification authorities 5 A site can get its name/URL and public key signed by a certification authority: signed document is called a certificate 5 Client can use public key of certification authority to verify certificate 5 Multiple levels of certification authorities can exist. Each certification authority presents its own public-key certificate signed by a higher level authority, and Uses its private key to sign the certificate of other web sites/authorities Database System Concepts 6.52 ©Silberschatz, Korth and Sudarshan