-
Notifications
You must be signed in to change notification settings - Fork 0
/
CIDFINMA_spec_Z.zed16
314 lines (311 loc) · 9.02 KB
/
CIDFINMA_spec_Z.zed16
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
Client Identifying Data (CID) Requirements Specification for banks in Switzerland
Language: Z Notation
Developed By Serge (Siarhei Vinahradau, vinahradau@yahoo.de
Specification, further referred to as FINMA:
https://www.finma.ch/de/~/media/finma/dokumente/rundschreiben-archiv/finma-rs200821---30-06-2017.pdf
Specification requirements:
-CID data classification (FINMA 10*)
DATACATEGORY
CIDCATEGORIES
METADATA
- CID data owner (FINMA 13*)
ENTITY
DOMAIN
- all nodes with CID data stored should be recorded (FINMA 15*)
CIDSTORINGNODESAUDITLOG
- CID protection risks are country specific (FINMA 20*)
COUNTRY
- no node outside Switzerland should have unprotected CID data stored (FINMA 20*)
CONTENT
NODE
AddNodeData
- CID data accessed by users from outside Switzerland has to be protected (FINMA 20*)
AccesNodeData
- role and function based authorisation system in place (FINMA 22*)
ROLE
USER
DOMAIN
- List of users with bulk CID access (FINMA 34*)
BulkCIDAccessUsersList
- logs for bulk CID access (FINMA 40*)
CIDBULKLOG
- an internal employee has to be responsible for the compliance of outsourced CID activities (FINMA 50*)
DOMAIN
USER
AddUser
AddInternalUser
AddExternalUser
─
DATACATEGORY ::= DIRECT | INDIRECT | POTENTIALLYDIRECT | PROTECTED | NONCID
CIDCATEGORIES == {DIRECT, INDIRECT, POTENTIALLYDIRECT}
COUNTRY ::= SWITZERLAND | UK | USA | GERMANY
METADATA ::= CUSTOMERNAME | CUSTOMERADDRESS | ISVIPCUSTOMER
CONTENT ::= MUSTERMANN | SEESTRASSE | YES | NO | XXXXX
ENTITY ::= ENTITY1 | ENTITY2 | ENTITY3
USER ::= USER1 | USER2 | USER3
ROLE ::= ROLEGUICIDUSER | ROLEGUIUSER | ROLEBULKCID | ROLEBULK | ROLE1
CIDROLES == {ROLEGUICIDUSER, ROLEBULKCID}
NODEID ::= NODE1 | NODE2 | NODE3
└
┌ NODE
nodeId: NODEID
nodeCountry: COUNTRY
nodeDataCategories: METADATA ⇸ DATACATEGORY
nodeDataContents: METADATA ⇸ CONTENT
nodeMetadata: ℙ METADATA
nodeContentsMetadata: ℙ METADATA
|
nodeCountry = SWITZERLAND ∨ (∀ c : ran nodeDataCategories ⦁ c ∉ CIDCATEGORIES)
dom nodeDataContents ⊆ dom nodeDataCategories
nodeMetadata = dom nodeDataCategories
nodeContentsMetadata = dom nodeDataContents
└
┌ DOMAIN
dataClassification: METADATA ⇸ DATACATEGORY
dataOwner: METADATA ⇸ ENTITY
roles: ROLE ↔ METADATA
userAccessRigths: USER ↔ ROLE
teams: ENTITY ↔ USER
internalUsers: ℙ USER
externalUsers: ℙ USER
classificationMetadata: ℙ METADATA
dataOwnerMetadata: ℙ METADATA
rolesRoles: ℙ ROLE
teamsTeams: ℙ ENTITY
|
∀ u : USER ⦁ ¬(u ∈ internalUsers ∧ u ∈ externalUsers)
∀ u : dom userAccessRigths ⦁ u ∈ ran teams
∀ u : dom userAccessRigths ⦁ u ∈ internalUsers ∨ u ∈ externalUsers
∀ u : externalUsers ⦁ ¬(userAccessRigths⦇{u}⦈ ∩ CIDROLES ≠ ∅ ∧ teams⦇dom (teams ▷ {u})⦈ ∩ internalUsers = ∅)
classificationMetadata = dom dataClassification
dataOwnerMetadata = dom dataOwner
rolesRoles = dom roles
dom dataClassification ⊆ dom dataOwner
teamsTeams = dom teams
#(dom dataClassification) < 6
#(dom dataOwner) < 6
└
┌ CIDSTORINGNODESAUDITLOG
cidStoringNodesIds: ℙ NODEID
NODE
|
#(cidStoringNodesIds) < 6
∀ cidDataCategory : ran nodeDataCategories ⦁
cidDataCategory ∈ CIDCATEGORIES ⇒ nodeId ∈ cidStoringNodesIds
└
┌ CIDBULKLOG
cidBulkAccess: USER ↔ NODEID
cidBulkAccessUsers: ℙ USER
|
cidBulkAccessUsers = dom cidBulkAccess
#(cidBulkAccess) < 6
└
┌ InitDomain
DOMAIN ′
NODE ′
CIDSTORINGNODESAUDITLOG ′
CIDBULKLOG ′
|
dataOwnerMetadata′ = ∅
classificationMetadata′ = ∅
userAccessRigths′ = ∅
teams′ = ∅
internalUsers′ = ∅
externalUsers′ = ∅
nodeMetadata′ = ∅
cidStoringNodesIds′ = ∅
nodeId′ = NODE1
cidBulkAccess′ = ∅
└
┌ AddRole
ΔDOMAIN
role?: ROLE
metadata?: METADATA
|
roles′ = roles ∪ {(role?, metadata?)}
dataClassification′ = dataClassification
teams′ = teams
internalUsers′ = internalUsers
externalUsers′ = externalUsers
dataOwner′ = dataOwner
userAccessRigths′ = userAccessRigths
└
┌ AddUser
ΔDOMAIN
user?: USER
entity?: ENTITY
|
teams′ = teams ∪ {(entity?, user?)}
userAccessRigths′ = userAccessRigths
roles′ = roles
internalUsers′ = internalUsers
externalUsers′ = externalUsers
dataClassification′ = dataClassification
dataOwner′ = dataOwner
└
┌ AddExternalUser
ΔDOMAIN
user?: USER
|
externalUsers′ = externalUsers ∪ {user?}
internalUsers′ = internalUsers
teams′ = teams
userAccessRigths′ = userAccessRigths
roles′ = roles
dataClassification′ = dataClassification
dataOwner′ = dataOwner
└
┌ AddInternalUser
ΔDOMAIN
user?: USER
|
internalUsers′ = internalUsers ∪ {user?}
externalUsers′ = externalUsers
teams′ = teams
userAccessRigths′ = userAccessRigths
roles′ = roles
dataClassification′ = dataClassification
dataOwner′ = dataOwner
└
┌ AddUserAccessRight
ΔDOMAIN
user?: USER
role?: ROLE
|
userAccessRigths′ = userAccessRigths ∪ {(user?, role?)}
teams′ = teams
internalUsers′ = internalUsers
externalUsers′ = externalUsers
roles′ = roles
dataClassification′ = dataClassification
dataOwner′ = dataOwner
└
┌ RemoveUserAccessRight
ΔDOMAIN
user?: USER
role?: ROLE
|
userAccessRigths′ = userAccessRigths ∖ {(user?, role?)}
roles′ = roles
teams′ = teams
internalUsers′ = internalUsers
externalUsers′ = externalUsers
dataClassification′ = dataClassification
dataOwner′ = dataOwner
└
┌ AddNodeData
ΔNODE
ΔCIDSTORINGNODESAUDITLOG
ΞDOMAIN
nodeIdInput?: NODEID
nodeCountryInput?: COUNTRY
nodeMetadataInput?: METADATA
nodeDataContentInput?: CONTENT
|
nodeCountry′ = nodeCountryInput?
∧ nodeId′ = nodeIdInput?
∧
(
(nodeCountryInput? = SWITZERLAND ∧ (dataClassification nodeMetadataInput?) ∈ CIDCATEGORIES
∧ cidStoringNodesIds′ = cidStoringNodesIds ∪ {nodeIdInput?}
∧ nodeDataContents′ = nodeDataContents ⊕ {nodeMetadataInput? ↦ nodeDataContentInput?}
∧ nodeDataCategories′ = nodeDataCategories ⊕ {nodeMetadataInput? ↦ (dataClassification nodeMetadataInput?)})
∨
((dataClassification nodeMetadataInput?) ∉ CIDCATEGORIES
∧ cidStoringNodesIds′ = cidStoringNodesIds
∧ nodeDataContents′ = nodeDataContents ⊕ {nodeMetadataInput? ↦ nodeDataContentInput?}
∧ nodeDataCategories′ = nodeDataCategories ⊕ {nodeMetadataInput? ↦ (dataClassification nodeMetadataInput?)})
∨
(nodeCountryInput? ≠ SWITZERLAND ∧ (dataClassification nodeMetadataInput?) ∈ CIDCATEGORIES
∧ cidStoringNodesIds′ = cidStoringNodesIds
∧nodeDataContents′ = nodeDataContents ⊕ {nodeMetadataInput? ↦ XXXXX}
∧nodeDataCategories′ = nodeDataCategories ⊕ {nodeMetadataInput? ↦ PROTECTED})
)
└
┌ AccessNode
ΞNODE
ΞDOMAIN
user?: USER
userCountry?: COUNTRY
nodeId?: NODEID
accessNodeMetadata?: METADATA
contentOutput!: ℙ CONTENT
|
nodeId? = nodeId
∧
accessNodeMetadata? ∈ roles⦇(userAccessRigths⦇{user?}⦈)⦈
∧
(
(nodeDataCategories⦇{accessNodeMetadata?}⦈ ⊆ CIDCATEGORIES ∧ userCountry? ≠ SWITZERLAND
∧ contentOutput! = {XXXXX})
∨
((nodeDataCategories⦇{accessNodeMetadata?}⦈ ∩ CIDCATEGORIES = ∅ ∨ userCountry? = SWITZERLAND)
∧ contentOutput! = nodeDataContents⦇{accessNodeMetadata?}⦈)
)
└
┌ AccessBulk
ΞDOMAIN
ΞNODE
ΔCIDBULKLOG
user?: USER
nodeId?: NODEID
userCountry?: COUNTRY
contentOutput!: ℙ CONTENT
|
(
ROLEBULKCID ∈ userAccessRigths⦇{user?}⦈
∧ userCountry? = SWITZERLAND
∧ ran nodeDataCategories ∩ CIDCATEGORIES ≠ ∅
∧cidBulkAccess′ = cidBulkAccess ∩ {(user?, nodeId?)}
∧ contentOutput! = ran nodeDataContents
∧ nodeId? = nodeId
)
∨
(
(ROLEBULK ∈ userAccessRigths⦇{user?}⦈ ∨ ROLEBULKCID ∈ userAccessRigths⦇{user?}⦈)
∧ cidBulkAccess′ = cidBulkAccess
∧ ran nodeDataCategories ∩ CIDCATEGORIES = ∅
∧ contentOutput! = ran nodeDataContents
∧ nodeId? = nodeId
)
└
┌ AssignDataOwner
ΔDOMAIN
metadata?: METADATA
dataOwnerInput?: ENTITY
|
dataOwner′ = dataOwner ⊕ {metadata? ↦ dataOwnerInput?}
roles′ = roles
userAccessRigths′ = userAccessRigths
└
┌ ClassifyDataCategory
ΔDOMAIN
metadata?: METADATA
dataCategory?: DATACATEGORY
|
dataClassification′ = dataClassification ⊕ {metadata? ↦ dataCategory?}
roles′ = roles
userAccessRigths′ = userAccessRigths
└
─
ImplementDataClassification == AssignDataOwner ∧ ClassifyDataCategory
└
┌ RecycleData
ΔDOMAIN
metadata?: METADATA
|
metadata? ∈ dataOwnerMetadata
metadata? ∈ classificationMetadata
dataClassification′ = {metadata?} ⩤ dataClassification
dataOwner′ = {metadata?} ⩤ dataOwner
roles′ = roles
teams′ = teams
userAccessRigths′ = userAccessRigths
└
┌ BulkCIDAccessUsersList
ΞDOMAIN
ΞNODE
BulkCIDAccessUsersList!: ℙ USER
|
BulkCIDAccessUsersList! = dom (userAccessRigths ▷ {ROLEBULKCID})
└