finite state transducers for policy evaluation and
play

Finite State Transducers for Policy Evaluation and Conflict - PowerPoint PPT Presentation

Finite State Transducers for Policy Evaluation and Conflict Resolution Javier Baliosian and Joan Serrat Universitat Politcnica de Catalunya Spain Network Management Group jbaliosian@tsc.upc.es 1 Motivation A policy conflict occurs


  1. Finite State Transducers for Policy Evaluation and Conflict Resolution Javier Baliosian and Joan Serrat Universitat Politècnica de Catalunya – Spain Network Management Group jbaliosian@tsc.upc.es 1

  2. Motivation A policy conflict occurs when the conditions of two or more policy rules that apply to the same set of managed objects are simultaneously satisfied, but the actions of two or more of these policy rules conflict with each other. (Strassner) ● We have been looking for a technology independent model for conflict resolution in PBNM. ● In fields such as speech recognition, quick decisions based on ambiguous grammatical rules are required. They make use of Finite State Transducers (FSTs). ● We propose an approach consisting of an adapted subset of FST concepts with the aim of detecting and solving conflicting policy rules. 2

  3. Finite State Transducers They are special automata for which, on each edge, there ● are two labels instead of one. Transducers can be seen as devices defining a class of ● relations over strings of symbols. Their implementations tend to have good performance. ● 1/1 0/0 1/0 0/0 0 1 2 0/1 1/1 Classic transducer representing division by 3 3

  4. Obligations They are modeled as a graph with one edge only ● The incoming label is the condition part ● The outgoing label is the action ● It must be added to the existing model with a union ● d / k 1 0 if the user dials up then execute the action connect 4

  5. FST Operations Operations on FSTs Union ● Intersection ● Complement ● Composition ● Kleene closure ● Determinization ● In the general case, FSTs are not closed under ● some of these operations, but The restrictions required for the operations’ ● closure are compatible with PBNM. 5

  6. Determinization a/c e/f 1 i/j 4 0 3 2 a/d g/f Ambiguous transducer Determinzation is the actual conflict resolution process ● It consists of leaving only one possible edge to choose in a ● given node For this algorithm, we replace the classic labels for ● Tautness Functions. We named the extended transducers as TFFSTs ● 6

  7. Tautness Functions This is intended to represent how ● “taut” a condition is around an event Related to the concepts of ● “distance” and “nested domains” It assigns a real in [-1,1] to the ● duple <condition,event> B A c a b 7

  8. Examples of TFs The most straightforward example is when a domain is ● “inside” another domain. B is tauter than A on the event e. In PCIM we can count the number of elements in ● PolicySetAppliesToElement association. The more elements there are, the less taut the condition. Policy A: All users are forbidden to reboot workstations. A Policy B: The system administrators are authorized to B reboot workstations. e Event e: A system administrator is trying to reboot a workstation 8

  9. Determinization (cont'd) a/c e/f 1 i/j 0 3 4 2 After a/d g/f e ∧ ¬ g / c.f Before e → τ g / (c ∨ (c ∧ d)).f a/ ε e ⇄ τ g / (c ∧ d).f ⊕ E i/j 0 5 3 4 g → τ e / (d ∨ (c ∧ d)).f g ∧ ¬ e / d.f 9

  10. TFFST Semantics in Policy-Based Management ● Rights ● Prohibitions ● Obligations ● Dispensations ● Constraints ● Conflict Resolution 10

  11. Rights These are just an edge with the same label on both sides ● and the identity flag on. This means: Every time input is positive under “u,” then it ● replicates the input on the output. Example: Rule 1: The users are authorized to print <u> /<u> 1 0 T1 11

  12. Identities on TFFSTs Both labels on each edge of a transducer can be seen as a ● condition that may be fulfilled by several events. Identity is needed to reproduce exactly the input on the ● output. u / u <u>/<u> 0 1 0 1 The same incoming Any action that fulfills event is thrown as “u” may be produced output if it fulfills condition “u” 12

  13. Prohibitions These are expressed as the substraction of a right ● Example: Rule 1: The users are authorized to print (T1) Rule2: Guest users are forbidden to print T1 ∩ T2 T2 T2 ?/? r / ¬ r <r>/<r> <u ∧ r>/<u ∧ ¬ r> [r]/[r] 2 0 0 1 0,0 1,2 ¬ r / ? <r>/<r> <u ∧ ¬ r>/<u> ?/? Auxiliary right: 1 Guest users are allowed T1 − T2 T2 Complement to print 13

  14. Obligations Obligations can be associated with more than one event ● Example: Rule 1: if the user dials up (d in the figure) and the system sends the order of charge (c in the figure), then the connect action (k in the figure) should be executed. (Chomicki et al. example) ?-c/?-c <c>/<c>k <d>/<d> 0 2 1 14

  15. Dispensations As in the case of prohibitions, dispensations should be ● expressed as the intersection of the existing policy body with a transducer expressing the complement of an obligation. ? / ? c / ¬ a c / ¬ a c / a 2 0 1 1 0 0 ¬ c / ? c / a ¬ c / ? ? / ? 1 Auxiliary obligation Obligation's complement Dispensation in an “all permitted” environment 15

  16. Constraints Constraints must be composed after the model of policies. ● <?-e>/<?-e> Example: <e>/<e> 2 c/ ε 4 c/ ε c / ε c/ ε <?-c>/<?-c> <e>/<e> ?-c / ?-c 5 <?-c>/<?-c> <?-c>/<?-c> <c>/<c>k <?-c>/<?-c> <d>/<d> 2 0 1 1 1 <?-c>/<?-c> 7 3 <?-e>/<?-e> <e>/<e> <e>/<e> <e>/<e> 0 6 <?-e>/<?-e> <?-e>/<?-e> <?-e>/<?-e> Rule 1: if the user dials up and the Rule 2: if an error (e in the figure) system sends the order of charge, then occurs, charge action should not be a connect action should be executed. triggered 16

  17. Constraints (cont'd) Example continuation: Composition of both transducers is c/k 8 <c>/<c>k c/k 1 c/k <e>/<e> <e>/<e> 5 c/k <?-c>/<?-c> <?-e-c>/<?-e-c> 3 4 7 <e>/<e> <?-e-c>/<?-e-c> <?-e-c>/<?-e-c> <d>/<d> <e>/<e> <?-c>/<?-c> 6 0 <?-c>/<?-c> This TFFST is equivalent to the sequential evaluation of the ● last two. 17

  18. The Overall Process 1. Compute the union of all transducers representing rights and obligations 2. Subtract the transducers representing prohibitions and dispensations 3. Compose the resulting transducer with each constraint transducer 4. Determinize the resulting transducer to solve conflicts 18

  19. Conclusions A formal model based on a new entity called TFFST was ● developed for conflict detection and resolution of modality conflicts and some dynamic conflicts by means of constraints. Its operations do not solve problems that were not solvable ● before but, our framework is designed to be efficient and independent of ● technology . Conflict resolution is carried out beforehand, and runtime ● processes have a linear order on the amount of incoming events. The model takes advantage of experience from other fields. ● 19

  20. Conclusions (cont'd) Tautness Functions are an abstraction layer ● They make the conflict resolution process as general as ● possible. From the point of view of the algorithms, they are ● technology-independent . They make it possible to deal with orthogonal conditions . ● They are a research issue in themselves. ● 20

  21. Ongoing and Future Work Modeling with weighted TFFSTs for explicit priorities. ● Support for more than one PDP. ● Scalability evaluation. ● Development of practical network management related ● Tautness Functions. Rewriting of determinization algorithm. ● Policy re-writing from TFFSTs must be researched. ● 21

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend