+ All Categories
Home > Documents > Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007.

Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007.

Date post: 17-Jan-2016
Category:
Upload: meredith-warren
View: 220 times
Download: 0 times
Share this document with a friend
Popular Tags:
50
Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007
Transcript
Page 1: Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007.

Trustworthy Semantic Webs

Bhavani ThuraisinghamThe University of Texas at Dallas

June 14, 2007

Page 2: Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007.

Outline• My origins

– Security constraint processing for MLS/DBMS for Inference Problem (1986-1996)

– Tim Berners Lee’s Vision for Semantic Web (late 1990s)– XML Security research with U of Milan 1999-2000– NSF/EU Workshop October 2001

• Where am I now?: Trustworthy Semantic Webs– Beyond XML Security (Texas Enterprise Funds)– Secure Geospatial semantic web (Raytheon Corporation)– Application: Assured Information Sharing (US Air Force)

• References– A semantic web primer: Antoniou and van Harmlen, MIT Press 2003– Building trustworthy semantic webs, Thuraisingham, CRC Press

(Taylor and Francis), 2007 (to appear)

Page 3: Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007.

Collaborators• Honeywell/MITRE (Lock Data Views and Security Constraint Processing,

1986-1996)– Pat Dwyer, Paul Stachour, Harvey Rubinovitz, Marie Collins

• U. of Milan (XML Security, 1999-2000)– Profs. Elisa Bertino, Elena Ferrari, Barbara Carminati

• University of Texas at Dallas (2004-Present)– Prof. Latifur Khan and Students (Inference Control, Secure geospatial

semantic web)• George Mason University (Assured Information Sharing, 2004-Present)

– Prof. Ravi Sandhu• University of Maryland Baltimore County (Policy Reasoning, 2006-Present)

– Profs Tim Finin, Anupam Joshi, Yelena Yesha• MIT (Policy reasoning, 2007-Present)

– Dr. Lalana Kagal

Page 4: Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007.

Security Constraints (Policies)Late 1980s/Early 1990s

Honeywell/MITRE research funded by AFRL, SPAWAR, CECOM

• Simple Constraint: Mission attribute of SHIP is Secret• Content-based constraint: If relation MISSION contains information

about missions in Europe, then MISSION is Secret• Association-based Constraint: Ship’s location and mission taken

together is Secret; individually each attribute is Unclassified• Release constraint: After X is released Y is Secret• Aggregate Constraint: Ten or more tuples taken together is Secret• Dynamic Constraint: After the Mission is completed, information

about the mission is Unclassified• Logical Constraint: A Implies B; therefore if B is Secret then A must

be at least Secret

Page 5: Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007.

Enforcement of Security Constraints (1990-1995)

User Interface Manager

ConstraintManager

Security Constraints

Query Processor:

Constraints during query and release operations

Update Processor:

Constraints during update operation

Database Design Tool

Constraints during database design operation

MLS Database

MLS/DBMS

Page 6: Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007.

ChallengesFinal report to Army around 1996

• How do you specify the policies– Very difficult task

– DoD Policies are very complex

• Reasoning about policies– Datalog based systems have performance problems

– Need more complex reasoning strategies

• Inference problem is unsolvable– 1990 Computer Security Foundations Workshop (Thuraisingham)

• One can always make unauthorized inferences by using real world knowledge– How long do you keep the history; how do you represent the real world

data

Page 7: Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007.

From Today’s Web to the Semantic Web Berners Lee’s Vision in the late 1990s

• Today’s web– High recall, low precision: Too many web pages resulting in

searches, many not relevant– Results sensitive to vocabulary: Different words even if they

mean the same thing do not results in same web pages– Results are single web pages not linked web pages

• Tomorrow’s web– Machine understandable web pages– Activities on the web such as searching with little or no human

intervention– Technologies for knowledge management, e-commerce,

interoperability]– Retrieving appropriate web pages, sensitive to vocabulary

Page 8: Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007.

Potential Applications• Knowledge Management

– Organizing knowledge, automated tools for maintaining knowledge, question answering, querying multiple documents

• E-Business– Develop software agents that can interpret privacy

requirements, pricing and product information and display timely and correct information; provide information about the reputation of shops; negotiation on behalf of the user

• Other: web services, interoperability, data management, digital libraries

Page 9: Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007.

Layered Approach: Tim Berners Lee’s Technology Stack

Page 10: Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007.

XML Security (jointly with U of Milan) Credentials in XML

<Professor credID=“9” subID = “16: CIssuer = “2”><name> Alice Brown </name><university> University of X <university/><department> CS </department><research-group> Security </research-group>

</Professor>

<Secretary credID=“12” subID = “4: CIssuer = “2”><name> John James </name><university> University of X <university/><department> CS </department><level> Senior </level>

</Secretary>

Page 11: Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007.

Policies in XML<?xml version="1.0" encoding="UTF-8"?> <policy_base> ...

<policy_spec ID=‘P1' cred_expr="//Professor[department='CS']" target="annual_report.xml" path="//Patent[@Dept='CS']//node()" priv="VIEW"/> <policy_spec ID=‘P2' cred_expr="//Professor[department='CS']" target="annual_report.xml" path="//Patent[@Dept='IST']/Short-descr/node() and //Patent[@Dept='IST']/authors" priv="VIEW"/> <policy_spec ID=‘P3' cred_expr="//Professor[department='IST'] " target="annual_report.xml" path="//Patent[@Dept='IST']//node()" priv="VIEW"/> <policy_spec ID=‘P4' cred_expr="//Professor[department='IST']" target="annual_report.xml" path="//Patent[@Dept='CS']/Short-descr/node() and //Patent[@Dept='CS']/authors" priv="VIEW"/> <policy_spec ID=‘P5' cred_expr="//secretary[department='CS' and level='junior']" target="annual_report.xml" path="//Asset[@Dept='CS']/node()" priv="VIEW "/> <policy_spec ID=‘P6' cred_expr="//secretary[department='CS' and level='senior']" target="annual_report.xml" path="//Asset[@Dept='IST']/Funds/@Type and //Asset[@Dept='IST']/Funds/@Funding-Date" priv="VIEW "/> <policy_spec ID=‘P7' cred_expr="//secretary[department='IST' and level='junior']" target="annual_report.xml" path="//Asset[@Dept='IST']/node()" priv="VIEW "/>

... </policy_base>

Page 12: Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007.

System Architecture for Access Control

UserPull/Query Push/result

XML Documents

X-Access X-AdminAdmin Tools

Policybase

Credentialbase

Page 13: Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007.

Third-Party Architecture

Credential base

policy baseXML Source

User/Subject

Owner

Publisher

Query

Reply documen

t

SE-XML

credentials

• The Owner is the producer of information It specifies access control policies

• The Publisher is responsible for managing (a portion of) the Owner information and answering subject queries

• Goal: Untrusted Publisher with respect to Authenticity and Completeness checking

Page 14: Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007.

Secure Web Service Architecture

Confidentiality, Authenticity, IntegrityConfidentiality, Authenticity, Integrity

Service requestor

Service provider

UDDIQuery

BusinessEntity

BusinessService

BindingTemplate

<dsig:Signature>

BusinessService

tModel

PublisherAssertion

Page 15: Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007.

NSF/EU Workshop October 2001• An invitational workshop was held in October

2001 to determine directions for semantic web• My presentation was on Security for the

semantic web; this was the beginning of security research for the semantic web

• Since then two major accomplishments (2001-2004)– Finin, Kagal et al at UMBC; REI policy language,

framework and reasoned (Kagal PhD Thesis)– Policy Aware Web Project initiated at MIT

• More recently Piertro Bonatti et al’s (U of Naples) research on policy and semantic web

Page 16: Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007.

Beyond XML SecurityWhy do we need RDF, OWL Security?

• Why do we need RDF and OWL?– More expressive as well as reasoning power

than XML– Inferencing capabilities

• Policies can be expressed in RDF and OWL• Need to secure RDF and OWL documents• Inference and Privacy problems can be

better handled with RDF and OWL• Some early research on RDF security with

Elena Ferrari and Barbara Carminati (2003-4)

Page 17: Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007.

Security and Ontologies• Access control for Ontologies

– Who can access which parts of the Ontologies– E.g, Professor can access all patents of the

department while the Secretary can access only the descriptions of the patents in the patent ontology

• Ontologies for Security Applications– Use ontologies for specifying security/privacy policies– Ontology reasoning techniques for reasoning about

policies – Integrating heterogeneous policies may involve

developing ontologies and resolving inconsistencies

Page 18: Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007.

Confidentiality, Privacy and Trust CPT• Trust

– Trust is established between say a web site and a user based on credentials or reputations.

• Privacy– When a user logs into a website to make say a purchase, the web site will

specify heat its privacy policies are. The user will then determine whether he/she wants to enter personal information.

– That is, if the web site will give out say the user’s address to a third party, then the user can decide whether to enter this information.

– However before the user enters the information, the user has to decide whether he trusts the web site.

– This can be based on the credential and reputation.– if the user trusts the web site, then the user can enter his private information if

he is satisfied with the policies. If not, he can choose not to enter the information.

• Confidentiality– Here the user is requesting information from the web site;– the web site checks its confidentiality policies and decides what information to

release to the user. – The web set can also check the trust it has on the user and decide whether to

give the information to the user.

Page 19: Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007.

Inference/Privacy Control

Policies

Ontologies

Rules

Semantic web engine

XML, RDF, OWLDocumentsWeb Pages, Databases

Inference Engine/Rules Processor

Interface to the Semantic WebTechnologyBy UTDallas

Page 20: Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007.

Geospatial Interoperability Challenges

Syntactic Naming Heterogeneity Distance – Float or Distance TypeStructural Naming Heterogeneity Location expressed by two separate coordinates or by a point data typeSemantic Heterogeneity Distance computed on the sphere or in a plane Service Discovery and Evaluation Hydrologist in charge of Flood Warnings has 3 Water-level Service Providers. Service CompositionService to Compute the outline of a Toxic cloud after a Chemical Spill.

Page 21: Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007.

WWWURI, HTML, HTTP

Bringing the web to its full potential for Geospatial Domain

Geospatial

Semantic WebGRDF

Dynamic Geo-Web ServicesUDDI, WSDL, SOAP,OGC -WS

Static

Geospatial Semantic WebServices DAGIS

DAGIS (Automatic Discovery of Geospatial Information Services) Vision

Page 22: Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007.

Motivating Scenario

Query: “Find movie theaters within 30 miles of 75080”

within, near, overlap – Geospatial Operators

Theaters, Restaurants – Businesses (Non-Geospatial data)

Miles – Distance Unit

75080 , Richardson – Geo References

Cinemark Movies 10

Radisson Hotel Dallas North-Richardson

Page 23: Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007.

DAGIS System Architecture

• DAGIS Query Interface

• OWL-S MatchMaker

• OWL-DL Reasoner for Matchmaker

• Service Providers

1. Register/ Advertise

3. Service Discovery, Service Enactment

DAGIS Matchmaker

DAGIS Matchmaker

ServiceProvider - 1

ServiceProvider - 1

ServiceProvider -

n

ServiceProvider -

n

DAGISAgent

DAGISAgent

Reasoner/Matching Engine

Reasoner/Matching EngineDAGIS

Interface

DAGISInterface

… …

2. Query

Page 24: Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007.

DAGIS for Complex Queries

1. Query Profile

2. Service Discovery 3. Compose

Selection

4. Construct Sequence

5.Return Dynamic Service URI

DAGISComposer

DAGISComposer

Match-Maker

Match-Maker

DAGISAgent

DAGISAgent

ClientClient

ComposerSequencer

ComposerSequencer

Find Movie Theaters within 30 Miles from Richardson, TX

TX

Zipcode Finder Zipcode Finder

Theater Finder Theater Finder

Richardson

30 Miles

Theaters

Page 25: Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007.

DAGIS Composer Algorithm

• Recursive Back Chaining Inference Mechanism (Regression Planning)

TX

Richardson

30 Miles

Movie TheatersZipcodefinder

GetTheater

Inputs:= City, State , Distance Output := Movie Theaters NO Service Provider

Inputs:= City, State Output := ZipCode ZipCodeFinder

Inputs:= ZipCode , Distance Output := MovieTheaters Theater Finder

Page 26: Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007.

DAGIS Integration ScenariosQuery Availability Service Type Service Invoked

Find Movie Theaters within 30 Miles of

75080

YES Atomic (Single) Service Provider

GetTheatersAndMoviesService

Find Movie Theaters within 30 Miles of

Richardson,TX

NO DAGIS Composes two Atomic Services:ZipCodeFinder ,

GetTheatersAndMovies

Find Movie Theaters within 30 Miles of

75080QoS: Response Time

30 Sec

YESTwo services with QoS 40 Sec and 50

Sec Available

Atomic ServiceGetTheatersAndMovi

esService QoS Response Time

40 Sec

Find Movie Theaters within 30 Miles of

75080

NO Atomic Service GetTheatersService

Page 27: Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007.

Online Ontology Repository

• http://www.utdallas.edu/~gxs059000/QoSUpper.owl

• http://www.utdallas.edu/~gxs059000/QoSMiddle.owl

• http://www.utdallas.edu/~gxs059000/GetTheatersAndMovies.owl

• http://www.utdallas.edu/~gxs059000/GetTheatersAndMovies1.owl

• http://www.utdallas.edu/~gxs059000/GetTheaters.owl

• http://www.utdallas.edu/~gxs059000/ZipCodeFinder.owl

• http://www.utdallas.edu/~gxs059000/DAGISCompServ1.owl

Page 28: Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007.

Geospatial Data Integration

Upper-level ontologies

Mid-level ontology (GRDF)

Domain ontologies

Concrete Definitions of All Relevant Geospatial ConceptsConcrete Definitions of All Relevant Geospatial Concepts

Abstract Definitions of Main Geospatial ConceptsAbstract Definitions of Main Geospatial Concepts

Hydrologyontology

Hydrologyontology

Cartographyontology

Cartographyontology

Imageontology

Imageontology

Page 29: Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007.

GRDF (Beyond OGC’s GML)

GRDF (Geospatial Resource Description

Framework) – Adds semantics to data– Loosely-structured (easy to freely mix with

other non-geospatial data)– Semantically extensible

ComputerScienceBuilding hasExtent

(33.98111, -96.4011)(33.989999, -96.4022)

Page 30: Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007.

GRDF Example (Topology)

<owl:Class rdf:ID=“Edge"></owl:Class>

<owl:Class rdf:ID=“Node"></owl:Class> <owl:Class rdf:ID=“Face">• <rdfs:subClassOf>

• <owl:Restriction>

• <owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#int"

• >1</owl:minCardinality>

• <owl:onProperty>

• <owl:DataTypeProperty rdf:ID=“hasEdge"/>

• </owl:onProperty>

• </owl:Restriction>

• …

• </owl:Class>

Page 31: Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007.

Semantic Access Control (SAC)

Traditional Access Control

Traditional Access Control Semantic WebSemantic Web

Semantic Access ControlSemantic Access Control

MotivationShortcomings of Traditional Access Control

Proprietary systemsLack of modularityChanges in access control schemas break the systemChanges in data schemas break the systemPath to resources (e.g., XPATH) is clumsy//school/department/professor/personal/ssn – LONG!Non-optimal for distributed/federation environment

Page 32: Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007.

SAC Ontology

• Written in OWL (Web Ontology Language)

• User-centric

• Modular

• Easily extensible

• Available at :

http://utd61105.campus.ad.utdallas.edu/geo/voc/newaccessonto

Page 33: Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007.

Geo-WS Security

• Data providers (e.g., geospatial clearinghouses, research centers) need access control on serviceable resources.

• Access policies have geospatial dimension – Bob has access on Building A– Bob does NOT have access on Building B– Building A and B have overlapping area

• Current access control mechanisms are static and non-modular.

Page 34: Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007.

Geo-WS Security: Policy Components

• Subjects: Software Agents or Human clients• Resources: Assets exposed through WS• Actions: Read, Write, Execute• Conditions: Additional constraints (e.g., geospatial parameters) on policy enforcement

Resources

Subjects

ActionsCondition

Policy Set

Page 35: Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007.

Geo-WS Security: Architecture

ClientClientDAGIS

DAGIS

Geospatial Semantic WS Provider

Enforcement Module

Decision Module

Authorization Module

Semantic-enabled Policy DB

Web Service Client Side Web Service Provider Side

Page 36: Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007.

Geo-WS Security: Semantics

• Policy rules are based on description logic (DL).• DL allows machine-processed deductions on policy

base. • Example 1:

– DL Rule: ‘Stores’ Inv. Prop. ‘Is Stored In’– Fact: Airplane_Hanger(X) ‘stores’ Airplane(Y)

• Example 2:– DL Rule: ‘Is Located In’ is Symmetric– Fact: Polygon(S) ‘Is Located In’ Polygon(V)

Polygon(V) ‘Is Located In’ Polygon(T)

Page 37: Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007.

Geo-WS Security: Inferencing

Geospatial DataStore

Semantic-enabled Policy DB

Inferencing Module

Obvious facts

Deduced facts

Page 38: Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007.

SAC in Action

• Environment: University Campus• Campus Ontology http://utd61105.campus.ad.utdallas.edu/geo/voc/campusonto

• Main Resources– Computer Science Building– Pharmacy Building– Electric Generator in each Building

• User Access: – Bob has ‘execute’ access to all Building Resources– Bob doesn’t have any access to CS Building– Bob has ‘modify’ access to Building resources within a certain

geographic extent• Policy File located at

http://utd61105.campus.ad.utdallas.edu/geo/voc/policyfile1

Page 39: Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007.

Future Directions for Secure Geospatial Semantic Web

• QoS based Selection for Complex Queries• Automatic Trust Negotiation for DAGIS

– Examine the work of Winslett et al (Trust Buildrer) and Bertino et al (Trust-X)

• Define a specification for access control semantics

• Geospatial dataset development• Application: Crime Analysis

Page 40: Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007.

Assured Information Sharing: Need to Know to Need to Share

• Need to know policies during the cold war; even if the user has access, does the user have a need to know?

• Pose 9/11 the emphasis is on need to share– User may not have access, but needs the data

• Do we give the data to the user and then analyze the consequences

• Do we analyze the consequences and then determine the actions to take

• Do we simply not give the data to the user• What are risks involved?

Page 41: Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007.

Assured Information Sharing: Architecture

ExportData/Policy

ComponentData/Policy for Agency A

Data/Policy for Coalition

ExportData/Policy

ComponentData/Policy for Agency C

ComponentData/Policy for Agency B

ExportData/Policy

Trustworthy PartnersSemi-Trustworthy PartnersUntrustworthy Partners

Page 42: Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007.

Our Approach • Integrate the Medicaid claims data and mine the

data; next enforce policies and determine how much information has been lost (Trustworthy partners); Prototype system

• Examine RBAC and UCON for coalitions (George Mason University – Ravi Sandhu)

• Apply game theory and probing to extract information from semi-trustworthy partners

• Trust for Peer to Peer Networks• Conduct information operations (defensive and

offensive) and determine the actions of an untrustworthy partner.

Page 43: Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007.

Coalition

Policy Enforcement Prototype

Page 44: Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007.

Architectural Elements of the Prototype

•Policy Enforcement Point (PEP): •Enforces policies on requests sent by the Web Service.•Translates this request into an XACML request; sends it to the PDP.

•Policy Decision Point (PDP): •Makes decisions regarding the request made by the web service.•Conveys the XACML request to the PEP.

Policy Files:

Policy Files are written in XACML policy language. Policy Files specify rules for “Targets”. Each

target is composed of 3 components: Subject, Resource and Action; each target is identified

uniquely by its components taken together. The XACML request generated by the PEP contains

the target. The PDP’s decision making capability lies in matching the target in the request file with

the target in the policy file. These policy files are supplied by the owner of the databases (Entities in

the coalition).Databases:The entities participating in the coalition provide access to their databases.

Migrating to RDF from XML, developing ontologies for policy interoperability

Page 45: Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007.

UCON Policy Model (Prof. Ravi Sandu, X. Min)

• Operations that we need to model:– Document read by a member.– Adding/removing a member to/from the group– Adding/removing a document to/from the group

• Member attributes– Member: boolean– TS-join: join time– TS-leave: leave time

• Document attributes– D-Member: boolean– D-TS-join: join time– D-TS-leave: leave time

Page 46: Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007.

Policy model: member enroll/dis-enroll

Initial state:Never been a

member

State I

Currently a member

State II

Past member

State III

enroll dis-enroll

memberTS-joinTS-leave

nullnullnull

Truetime of joinnullenroll

Falsetime of jointime of leavedis-enroll

enroll

enroll, dis-enroll: authorized to Group-Admins

UCON elements:Pre-Authorization, attribute predicates, attribute mutability

enroll

Page 47: Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007.

Policy model: document add/remove

Initial state:Never been a

group doc

State I

Currently a group doc

State II

Past group doc

State III

add remove

D-memberD-TS-joinD-TS-leave

nullnullnull

Truetime of joinnulladd

Falsetime of jointime of leaveremove

add, remove : authorized to Group-Admins

add

UCON elements:Pre-Authorization, attribute predicates, attribute mutability

add

Page 48: Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007.

Directions: Combining UCON and Data Sharing with Semantic Web

(UMBC-GMU-UTD-MIT)• UMBC Research – In particular, Lalana Kagal’s

PhD research– REI (RDF-based) Policy Language and

Reasoning system• How can we extend UCON and REI to develop

a security model and reasoning (possibly based on PELLET) for data sharing environment?

Page 49: Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007.

Policy Engineering

• Software engineering for software; Data engineering for data; Ontology engineering for ontology; Tim Finin coined the term “Policy engineering” for policies

• Policy engineering involved developing tools for– Policy specification– Policy reasoning (consistency, completeness, - - -),– Policy reuse– Policy evolution

• Policy generation still an issue

Page 50: Trustworthy Semantic Webs Bhavani Thuraisingham The University of Texas at Dallas June 14, 2007.

Where are we and where do we go from here?

• Status– Tremendous progress the past 6 years– Tim Berners Lee’s vision now includes security and policy

management for the semantic web– Multilevel security for web information retrieval (including

inference) is being investigated by Fred Schneider et al at Cornell

• Future– Semantic web will never be complete; it will continue to evolve– We cannot buy a semantic web product; need to integrate

several technologies– As we make progress with semantic web technologies, need to

investigate CPT as well as tools for policy engineering– Need to share environment will be a major application; Network

centric enterprise services and the Global information grid of the DoD

– Specialized semantic webs for multiple domains and different types of data (e.g, geospatial)


Recommended