-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCIDFINMA_spec_Z.zed
326 lines (276 loc) · 10.5 KB
/
CIDFINMA_spec_Z.zed
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
315
316
317
318
319
320
321
322
323
324
325
Client Identifying Data (CID) Requirements Specification for banks in Switzerland
Language: Z Notation
Developed By Serge (Siarhei Vinahradau, [email protected]
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
\begin{zsection} \SECTION Specification \parents~standard\_toolkit , zeves\_toolkit
\end{zsection}
\begin{zed}DATACATEGORY ::= DIRECT | INDIRECT | POTENTIALLYDIRECT | PROTECTED | NONCID
\end{zed}
\begin{zed}CIDCATEGORIES == \{ DIRECT , INDIRECT , POTENTIALLYDIRECT \}
\end{zed}
\begin{zed}COUNTRY ::= SWITZERLAND | UK | USA | GERMANY
\end{zed}
\begin{zed}METADATA ::= CUSTOMERNAME | CUSTOMERADDRESS | ISVIPCUSTOMER
\end{zed}
\begin{zed}CONTENT ::= MUSTERMANN | SEESTRASSE | YES | NO | XXXXX
\end{zed}
\begin{zed}ENTITY ::= ENTITY1 | ENTITY2 | ENTITY3
\end{zed}
\begin{zed}USER ::= USER1 | USER2 | USER3
\end{zed}
\begin{zed}ROLE ::= ROLEGUICIDUSER | ROLEGUIUSER | ROLEBULKCID | ROLEBULK | ROLE1
\end{zed}
\begin{zed}CIDROLES == \{ ROLEGUICIDUSER , ROLEBULKCID \}
\end{zed}
\begin{zed}NODEID ::= NODE1 | NODE2 | NODE3
\end{zed}
\begin{schema}{NODE}
nodeId : NODEID \\
nodeCountry : COUNTRY \\
nodeDataCategories : METADATA \pfun DATACATEGORY \\
nodeDataContents : METADATA \pfun CONTENT \\
nodeMetadata : \power METADATA \\
nodeContentsMetadata : \power METADATA
\where
nodeCountry = SWITZERLAND \lor ( \forall c : \ran nodeDataCategories @ c \notin CIDCATEGORIES ) \\
\dom nodeDataContents \subseteq \dom nodeDataCategories \\
nodeMetadata = \dom nodeDataCategories \\
nodeContentsMetadata = \dom nodeDataContents
\end{schema}
\begin{schema}{DOMAIN}
dataClassification : METADATA \pfun DATACATEGORY \\
dataOwner : METADATA \pfun ENTITY \\
roles : ROLE \rel METADATA \\
userAccessRigths : USER \rel ROLE \\
teams : ENTITY \rel USER \\
internalUsers : \power USER \\
externalUsers : \power USER \\
classificationMetadata : \power METADATA \\
dataOwnerMetadata : \power METADATA \\
rolesRoles : \power ROLE \\
teamsTeams : \power ENTITY
\where
\forall u : USER @ \lnot ( u \in internalUsers \land u \in externalUsers ) \\
\forall u : \dom userAccessRigths @ u \in \ran teams \\
\forall u : \dom userAccessRigths @ u \in internalUsers \lor u \in externalUsers \\
\forall u : externalUsers @ \lnot ( userAccessRigths \limg \{ u \} \rimg \cap CIDROLES \neq \emptyset \land teams \limg \dom ( teams \rres \{ u \} ) \rimg \cap internalUsers =~\emptyset ) \\
classificationMetadata = \dom dataClassification \\
dataOwnerMetadata = \dom dataOwner \\
rolesRoles = \dom roles \\
\dom dataClassification \subseteq \dom dataOwner \\
teamsTeams = \dom teams \\
\# ( \dom dataClassification ) < 6 \\
\# ( \dom dataOwner ) < 6
\end{schema}
\begin{schema}{CIDSTORINGNODESAUDITLOG}
cidStoringNodesIds : \power NODEID \\
NODE
\where
\# ( cidStoringNodesIds ) < 6\\
\forall cidDataCategory : \ran nodeDataCategories @ cidDataCategory \in CIDCATEGORIES \implies nodeId \in cidStoringNodesIds
\end{schema}
\begin{schema}{CIDBULKLOG}
cidBulkAccess : USER \rel NODEID \\
cidBulkAccessUsers : \power USER
\where
cidBulkAccessUsers = \dom cidBulkAccess \\
\# ( cidBulkAccess ) < 6
\end{schema}
\begin{schema}{InitDomain}
DOMAIN~' \\
NODE~' \\
CIDSTORINGNODESAUDITLOG~' \\
CIDBULKLOG~'
\where
dataOwnerMetadata' =~\emptyset \\
classificationMetadata' =~\emptyset \\
userAccessRigths' =~\emptyset \\
teams' =~\emptyset \\
internalUsers' =~\emptyset \\
externalUsers' =~\emptyset \\
nodeMetadata' =~\emptyset \\
cidStoringNodesIds' =~\emptyset \\
nodeId' = NODE1 \\
cidBulkAccess' =~\emptyset
\end{schema}
\begin{schema}{AddRole}
\Delta DOMAIN \\
role? : ROLE \\
metadata? : METADATA
\where
roles' = roles \cup \{ ( role? , metadata? ) \} \\
dataClassification' = dataClassification \\
teams' = teams \\
internalUsers' = internalUsers \\
externalUsers' = externalUsers \\
dataOwner' = dataOwner \\
userAccessRigths' = userAccessRigths
\end{schema}
\begin{schema}{AddUser}
\Delta DOMAIN \\
user? : USER \\
entity? : ENTITY
\where
teams' = teams \cup \{ ( entity? , user? ) \} \\
userAccessRigths' = userAccessRigths \\
roles' = roles \\
internalUsers' = internalUsers \\
externalUsers' = externalUsers \\
dataClassification' = dataClassification \\
dataOwner' = dataOwner
\end{schema}
\begin{schema}{AddExternalUser}
\Delta DOMAIN \\
user? : USER
\where
externalUsers' = externalUsers \cup \{ user? \} \\
internalUsers' = internalUsers \\
teams' = teams \\
userAccessRigths' = userAccessRigths \\
roles' = roles \\
dataClassification' = dataClassification \\
dataOwner' = dataOwner
\end{schema}
\begin{schema}{AddInternalUser}
\Delta DOMAIN \\
user? : USER
\where
internalUsers' = internalUsers \cup \{ user? \} \\
externalUsers' = externalUsers \\
teams' = teams \\
userAccessRigths' = userAccessRigths \\
roles' = roles \\
dataClassification' = dataClassification \\
dataOwner' = dataOwner
\end{schema}
\begin{schema}{AddUserAccessRight}
\Delta DOMAIN \\
user? : USER \\
role? : ROLE
\where
userAccessRigths' = userAccessRigths \cup \{ ( user? , role? ) \} \\
teams' = teams \\
internalUsers' = internalUsers \\
externalUsers' = externalUsers \\
roles' = roles \\
dataClassification' = dataClassification \\
dataOwner' = dataOwner
\end{schema}
\begin{schema}{RemoveUserAccessRight}
\Delta DOMAIN \\
user? : USER \\
role? : ROLE
\where
userAccessRigths' = userAccessRigths \setminus \{ ( user? , role? ) \} \\
roles' = roles \\
teams' = teams \\
internalUsers' = internalUsers \\
externalUsers' = externalUsers \\
dataClassification' = dataClassification \\
dataOwner' = dataOwner
\end{schema}
\begin{schema}{AddNodeData}
\Delta NODE \\
\Delta CIDSTORINGNODESAUDITLOG \\
\Xi DOMAIN \\
nodeIdInput? : NODEID \\
nodeCountryInput? : COUNTRY \\
nodeMetadataInput? : METADATA \\
nodeDataContentInput? : CONTENT
\where
nodeCountry' = nodeCountryInput? \land nodeId' = nodeIdInput? \land ( ( nodeCountryInput? = SWITZERLAND \land ( dataClassification~nodeMetadataInput? ) \in CIDCATEGORIES \land cidStoringNodesIds' = cidStoringNodesIds \cup \{ nodeIdInput? \} \land nodeDataContents' = nodeDataContents \oplus \{ nodeMetadataInput? \mapsto nodeDataContentInput? \} \land nodeDataCategories' = nodeDataCategories \oplus \{ nodeMetadataInput? \mapsto ( dataClassification~nodeMetadataInput? ) \} ) \lor ( ( dataClassification~nodeMetadataInput? ) \notin CIDCATEGORIES \land cidStoringNodesIds' = cidStoringNodesIds \land nodeDataContents' = nodeDataContents \oplus \{ nodeMetadataInput? \mapsto nodeDataContentInput? \} \land nodeDataCategories' = nodeDataCategories \oplus \{ nodeMetadataInput? \mapsto ( dataClassification~nodeMetadataInput? ) \} ) \lor ( nodeCountryInput? \neq SWITZERLAND \land ( dataClassification~nodeMetadataInput? ) \in CIDCATEGORIES \land cidStoringNodesIds' = cidStoringNodesIds \land nodeDataContents' = nodeDataContents \oplus \{ nodeMetadataInput? \mapsto XXXXX \} \land nodeDataCategories' = nodeDataCategories \oplus \{ nodeMetadataInput? \mapsto PROTECTED \} ) )
\end{schema}
\begin{schema}{AccessNode}
\Xi NODE \\
\Xi DOMAIN \\
user? : USER \\
userCountry? : COUNTRY \\
nodeId? : NODEID \\
accessNodeMetadata? : METADATA \\
contentOutput! : \power CONTENT
\where
nodeId? = nodeId \land accessNodeMetadata? \in roles \limg ( userAccessRigths \limg \{ user? \} \rimg ) \rimg \land ( ( nodeDataCategories \limg \{ accessNodeMetadata? \} \rimg \subseteq CIDCATEGORIES \land userCountry? \neq SWITZERLAND \land contentOutput! = \{ XXXXX \} ) \lor ( ( nodeDataCategories \limg \{ accessNodeMetadata? \} \rimg \cap CIDCATEGORIES =~\emptyset \lor userCountry? = SWITZERLAND ) \land contentOutput! = nodeDataContents \limg \{ accessNodeMetadata? \} \rimg ) )
\end{schema}
\begin{schema}{AccessBulk}
\Xi DOMAIN \\
\Xi NODE \\
\Delta CIDBULKLOG \\
user? : USER \\
nodeId? : NODEID \\
userCountry? : COUNTRY \\
contentOutput! : \power CONTENT
\where
( ROLEBULKCID \in userAccessRigths \limg \{ user? \} \rimg \land userCountry? = SWITZERLAND \land \ran nodeDataCategories \cap CIDCATEGORIES \neq \emptyset \land cidBulkAccess' = cidBulkAccess \cap \{ ( user? , nodeId? ) \} \land contentOutput! = \ran nodeDataContents \land nodeId? = nodeId ) \lor ( ( ROLEBULK \in userAccessRigths \limg \{ user? \} \rimg \lor ROLEBULKCID \in userAccessRigths \limg \{ user? \} \rimg ) \land cidBulkAccess' = cidBulkAccess \land \ran nodeDataCategories \cap CIDCATEGORIES =~\emptyset \land contentOutput! = \ran nodeDataContents \land nodeId? = nodeId )
\end{schema}
\begin{schema}{AssignDataOwner}
\Delta DOMAIN \\
metadata? : METADATA \\
dataOwnerInput? : ENTITY
\where
dataOwner' = dataOwner \oplus \{ metadata? \mapsto dataOwnerInput? \} \\
roles' = roles \\
userAccessRigths' = userAccessRigths
\end{schema}
\begin{schema}{ClassifyDataCategory}
\Delta DOMAIN \\
metadata? : METADATA \\
dataCategory? : DATACATEGORY
\where
dataClassification' = dataClassification \oplus \{ metadata? \mapsto dataCategory? \} \\
roles' = roles \\
userAccessRigths' = userAccessRigths
\end{schema}
\begin{zed}ImplementDataClassification \defs AssignDataOwner \land ClassifyDataCategory
\end{zed}
\begin{schema}{RecycleData}
\Delta DOMAIN \\
metadata? : METADATA
\where
metadata? \in dataOwnerMetadata \\
metadata? \in classificationMetadata \\
dataClassification' = \{ metadata? \} \ndres dataClassification \\
dataOwner' = \{ metadata? \} \ndres dataOwner \\
roles' = roles \\
teams' = teams \\
userAccessRigths' = userAccessRigths
\end{schema}
\begin{schema}{BulkCIDAccessUsersList}
\Xi DOMAIN \\
\Xi NODE \\
BulkCIDAccessUsersList! : \power USER
\where
BulkCIDAccessUsersList! = \dom ( userAccessRigths \rres \{ ROLEBULKCID \} )
\end{schema}