Chinese Wall Model Flashcards

1
Q

What is the main motivation behind the Chinese Wall Model?

A

The core motivation for the Chinese Wall Model is to protect against conflicts of interest.

This model will prevent a given subject from ever accessing information that may be of conflicting interest. One simple example is that an advisor should not consult two competing clients as this can lead to a situation where confidential information is leaked between two conflicting objects.

This model prevents this from happening by not allowing a subject to access some piece of information if it is in conflict previously accessed information, e.g., talks with a competing client.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What factors are used to determine access in the Chinese Wall Model?

A

Access is granted or rejected based on:

  1. The subject making the request.
  2. The object requested access to.
  3. The access history of the subject.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How are objects structured in the Chinese Wall Model?

A

Objects are organized according to three levels:

  1. The first level is the information itself contained in the object, i.e., the content of a file.
  2. Information is contained within a company dataset (CD). Here we will find all information related to one company.
  3. Every CD is placed in conflict of interest classes (COI). No one subject can access information from two companies if they are situated in the same COI.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How is read and write affected by the restrictions of the Chinese Wall Model?

A

Given the conflict of interest restrictions imposed by the Chinese Wall Model, a given subject can only read one CD from a COI.

Writing is confined to a single dataset. Thus, if a subject s can read an object o, then s can only write to o’ if o and o’ are in the dataset. This is to avoid indirect sharing of information across different COIs.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How are the different components of the Chinese Wall Model formalized?

A

The components and operations in the CW model are formalized as:

S is the set of subjects

O is the set of objects

L = COI * CD is the set of labels

L1: o -> is a function mapping objects to their COI classes

L2: o -> is a function mapping objects to their CDs.

H(s, o) is the access history of s and returns true if it has ever accessed o.

R(s, o) is simply s requesting access to o.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How does the CW model compare to Bell-LaPadula?

A

The CW model combines mandatory access control with some free choice (free to select initial object in a COI). Once a decision is made, the model “builds a wall around the dataset” to ensure that the user does not access other datasets in the COI. The CW model can easily be combines with discretionary access control models such as BLP to provide clearance levels for subjects and objects.

The models possess many of the same properties even if they are enforced differently. They can also be combined to add more complexity and finer granularity.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly