aboutsummaryrefslogtreecommitdiffstats
path: root/moonv4/moon_utilities/moon_utilities/cache.py
blob: 8c6ee3bf7905cf563cc0562d80e10954f7517670 (plain)
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
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
import logging
import time
import requests
from uuid import uuid4
from moon_utilities import configuration, exceptions

LOG = logging.getLogger("moon.utilities.cache")


class Cache(object):
    # TODO (asteroide): set cache integer in CONF file
    '''
        [NOTE] Propose to define the following variables inside the init method
        as defining them out side the init, will be treated as private static variables
        and keep tracks with any changes done anywhere
        for more info : you can check https://docs.python.org/3/tutorial/classes.html#class-and-instance-variables
    '''
    __UPDATE_INTERVAL = 10

    __CONTAINERS = {}
    __CONTAINERS_UPDATE = 0

    __CONTAINER_CHAINING_UPDATE = 0
    __CONTAINER_CHAINING = {}

    __PDP = {}
    __PDP_UPDATE = 0

    __POLICIES = {}
    __POLICIES_UPDATE = 0

    __MODELS = {}
    __MODELS_UPDATE = 0

    __SUBJECTS = {}
    __OBJECTS = {}
    __ACTIONS = {}

    __SUBJECT_ASSIGNMENTS = {}
    __OBJECT_ASSIGNMENTS = {}
    __ACTION_ASSIGNMENTS = {}

    __SUBJECT_CATEGORIES = {}
    __SUBJECT_CATEGORIES_UPDATE = 0
    __OBJECT_CATEGORIES = {}
    __OBJECT_CATEGORIES_UPDATE = 0
    __ACTION_CATEGORIES = {}
    __ACTION_CATEGORIES_UPDATE = 0

    __META_RULES = {}
    __META_RULES_UPDATE = 0

    __RULES = {}
    __RULES_UPDATE = 0

    __AUTHZ_REQUESTS = {}

    def __init__(self):
        self.manager_url = "{}://{}:{}".format(
            configuration.get_components()['manager'].get('protocol', 'http'),
            configuration.get_components()['manager']['hostname'],
            configuration.get_components()['manager']['port']
        )
        self.orchestrator_url = "{}://{}:{}".format(
            configuration.get_components()['orchestrator'].get('protocol', 'http'),
            configuration.get_components()['orchestrator']['hostname'],
            configuration.get_components()['orchestrator']['port']
        )

    def update(self):
        self.__update_container()
        self.__update_pdp()
        self.__update_policies()
        self.__update_models()
        for key, value in self.__PDP.items():
            # LOG.info("Updating container_chaining with {}".format(value["keystone_project_id"]))
            self.__update_container_chaining(value["keystone_project_id"])

    @property
    def authz_requests(self):
        return self.__AUTHZ_REQUESTS

    # perimeter functions

    @property
    def subjects(self):
        return self.__SUBJECTS

    def update_subjects(self, policy_id=None):
        req = requests.get("{}/policies/{}/subjects".format(
            self.manager_url, policy_id))
        self.__SUBJECTS[policy_id] = req.json()['subjects']

    def get_subject(self, policy_id, name):
        try:
            for _subject_id, _subject_dict in self.__SUBJECTS[policy_id].items():
                if _subject_dict["name"] == name:
                    return _subject_id
        except KeyError:
            pass
        self.update_subjects(policy_id)
        for _subject_id, _subject_dict in self.__SUBJECTS[policy_id].items():
            if _subject_dict["name"] == name:
                return _subject_id
        raise exceptions.SubjectUnknown("Cannot find subject {}".format(name))

    @property
    def objects(self):
        return self.__OBJECTS

    def update_objects(self, policy_id=None):
        req = requests.get("{}/policies/{}/objects".format(
            self.manager_url, policy_id))
        self.__OBJECTS[policy_id] = req.json()['objects']

    def get_object(self, policy_id, name):
        try:
            for _object_id, _object_dict in self.__OBJECTS[policy_id].items():
                if _object_dict["name"] == name:
                    return _object_id
        except KeyError:
            pass
        self.update_objects(policy_id)
        for _object_id, _object_dict in self.__OBJECTS[policy_id].items():
            if _object_dict["name"] == name:
                return _object_id
        raise exceptions.SubjectUnknown("Cannot find object {}".format(name))

    @property
    def actions(self):
        return self.__ACTIONS

    def update_actions(self, policy_id=None):
        req = requests.get("{}/policies/{}/actions".format(
            self.manager_url, policy_id))
        self.__ACTIONS[policy_id] = req.json()['actions']

    def get_action(self, policy_id, name):
        try:
            for _action_id, _action_dict in self.__ACTIONS[policy_id].items():
                if _action_dict["name"] == name:
                    return _action_id
        except KeyError:
            pass
        self.update_actions(policy_id)
        for _action_id, _action_dict in self.__ACTIONS[policy_id].items():
            if _action_dict["name"] == name:
                return _action_id
        raise exceptions.SubjectUnknown("Cannot find action {}".format(name))

    # meta_rule functions

    @property
    def meta_rules(self):
        current_time = time.time()
        if self.__META_RULES_UPDATE + self.__UPDATE_INTERVAL < current_time:
            self.__update_meta_rules()
        self.__META_RULES_UPDATE = current_time
        return self.__META_RULES

    def __update_meta_rules(self):
        req = requests.get("{}/meta_rules".format(self.manager_url))
        self.__META_RULES = req.json()['meta_rules']

    # rule functions

    @property
    def rules(self):
        current_time = time.time()
        if self.__RULES_UPDATE + self.__UPDATE_INTERVAL < current_time:
            self.__update_rules()
        self.__RULES_UPDATE = current_time
        return self.__RULES

    def __update_rules(self):
        for policy_id in self.__POLICIES:
            LOG.info("Get {}".format("{}/policies/{}/rules".format(
                self.manager_url, policy_id)))
            req = requests.get("{}/policies/{}/rules".format(
                self.manager_url, policy_id))
            self.__RULES[policy_id] = req.json()['rules']
        LOG.info("UPDATE RULES {}".format(self.__RULES))

    # assignment functions

    @property
    def subject_assignments(self):
        return self.__SUBJECT_ASSIGNMENTS

    def update_subject_assignments(self, policy_id=None, perimeter_id=None):
        if perimeter_id:
            req = requests.get("{}/policies/{}/subject_assignments/{}".format(
                self.manager_url, policy_id, perimeter_id))
        else:
            req = requests.get("{}/policies/{}/subject_assignments".format(
                self.manager_url, policy_id))
        if policy_id not in self.__SUBJECT_ASSIGNMENTS:
            self.__SUBJECT_ASSIGNMENTS[policy_id] = {}
        self.__SUBJECT_ASSIGNMENTS[policy_id].update(
            req.json()['subject_assignments'])

    def get_subject_assignments(self, policy_id, perimeter_id, category_id):
        if policy_id not in self.subject_assignments:
            self.update_subject_assignments(policy_id, perimeter_id)
        ''' 
            [NOTE] invalid condition for testing existence of policy_id
            because update_subject_assignments function already add an empty object 
            with the given policy_id and then assign the response to it
            as mentioned in these lines of code (line 191,192)

            Note: the same condition applied for the object,action assignment
            line 234, 260
        '''
        if policy_id not in self.subject_assignments:
            raise Exception("Cannot found the policy {}".format(policy_id))
        for key, value in self.subject_assignments[policy_id].items():
            if perimeter_id == value['subject_id'] and category_id == value['category_id']:
                return value['assignments']
        return []

    @property
    def object_assignments(self):
        return self.__OBJECT_ASSIGNMENTS

    def update_object_assignments(self, policy_id=None, perimeter_id=None):
        if perimeter_id:
            req = requests.get("{}/policies/{}/object_assignments/{}".format(
                self.manager_url, policy_id, perimeter_id))
        else:
            req = requests.get("{}/policies/{}/object_assignments".format(
                self.manager_url, policy_id))
        if policy_id not in self.__OBJECT_ASSIGNMENTS:
            self.__OBJECT_ASSIGNMENTS[policy_id] = {}
        self.__OBJECT_ASSIGNMENTS[policy_id].update(
            req.json()['object_assignments'])

    def get_object_assignments(self, policy_id, perimeter_id, category_id):
        if policy_id not in self.object_assignments:
            self.update_object_assignments(policy_id, perimeter_id)
        if policy_id not in self.object_assignments:
            raise Exception("Cannot found the policy {}".format(policy_id))
        for key, value in self.object_assignments[policy_id].items():
            if perimeter_id == value['object_id'] and category_id == value['category_id']:
                return value['assignments']
        return []

    @property
    def action_assignments(self):
        return self.__ACTION_ASSIGNMENTS

    def update_action_assignments(self, policy_id=None, perimeter_id=None):
        if perimeter_id:
            req = requests.get("{}/policies/{}/action_assignments/{}".format(
                self.manager_url, policy_id, perimeter_id))
        else:
            req = requests.get("{}/policies/{}/action_assignments".format(
                self.manager_url, policy_id))
        if policy_id not in self.__ACTION_ASSIGNMENTS:
            self.__ACTION_ASSIGNMENTS[policy_id] = {}
        self.__ACTION_ASSIGNMENTS[policy_id].update(
            req.json()['action_assignments'])

    def get_action_assignments(self, policy_id, perimeter_id, category_id):
        if policy_id not in self.action_assignments:
            self.update_action_assignments(policy_id, perimeter_id)
        if policy_id not in self.action_assignments:
            raise Exception("Cannot found the policy {}".format(policy_id))
        for key, value in self.action_assignments[policy_id].items():
            if perimeter_id == value['action_id'] and category_id == value['category_id']:
                return value['assignments']
        return []

    # category functions

    @property
    def subject_categories(self):
        current_time = time.time()
        if self.__SUBJECT_CATEGORIES_UPDATE + self.__UPDATE_INTERVAL < current_time:
            self.__update_subject_categories()
        self.__SUBJECT_CATEGORIES_UPDATE = current_time
        return self.__SUBJECT_CATEGORIES

    def __update_subject_categories(self):
        req = requests.get("{}/policies/subject_categories".format(
            self.manager_url))
        self.__SUBJECT_CATEGORIES.update(req.json()['subject_categories'])

    @property
    def object_categories(self):
        current_time = time.time()
        if self.__OBJECT_CATEGORIES_UPDATE + self.__UPDATE_INTERVAL < current_time:
            self.__update_object_categories()
        self.__OBJECT_CATEGORIES_UPDATE = current_time
        return self.__OBJECT_CATEGORIES

    def __update_object_categories(self):
        req = requests.get("{}/policies/object_categories".format(
            self.manager_url))
        self.__OBJECT_CATEGORIES.update(req.json()['object_categories'])

    @property
    def action_categories(self):
        current_time = time.time()
        if self.__ACTION_CATEGORIES_UPDATE + self.__UPDATE_INTERVAL < current_time:
            self.__update_action_categories()
        self.__ACTION_CATEGORIES_UPDATE = current_time
        return self.__ACTION_CATEGORIES

    def __update_action_categories(self):
        req = requests.get("{}/policies/action_categories".format(
            self.manager_url))
        self.__ACTION_CATEGORIES.update(req.json()['action_categories'])

    # PDP functions

    def __update_pdp(self):
        req = requests.get("{}/pdp".format(self.manager_url))
        pdp = req.json()
        for _pdp in pdp["pdps"].values():
            if _pdp['keystone_project_id'] not in self.__CONTAINER_CHAINING:
                self.__CONTAINER_CHAINING[_pdp['keystone_project_id']] = {}
                # Note (asteroide): force update of chaining
                self.__update_container_chaining(_pdp['keystone_project_id'])
        for key, value in pdp["pdps"].items():
            self.__PDP[key] = value

    @property
    def pdp(self):
        """Policy Decision Point
        Example of content:
        {
            "pdp_id": {
                "keystone_project_id": "keystone_project_id",
                "name": "pdp1",
                "description": "test",
                "security_pipeline": [
                    "policy_id"
                ]
            }
        }

        :return:
        """
        current_time = time.time()
        if self.__PDP_UPDATE + self.__UPDATE_INTERVAL < current_time:
            self.__update_pdp()
        self.__PDP_UPDATE = current_time
        return self.__PDP

    # policy functions
    def __update_policies(self):
        req = requests.get("{}/policies".format(self.manager_url))
        policies = req.json()
        for key, value in policies["policies"].items():
            self.__POLICIES[key] = value

    @property
    def policies(self):
        current_time = time.time()
        if self.__POLICIES_UPDATE + self.__UPDATE_INTERVAL < current_time:
            self.__update_policies()
        self.__POLICIES_UPDATE = current_time
        return self.__POLICIES

    # model functions

    def __update_models(self):
        req = requests.get("{}/models".format(self.manager_url))
        models = req.json()
        for key, value in models["models"].items():
            self.__MODELS[key] = value

    @property
    def models(self):
        current_time = time.time()
        if self.__MODELS_UPDATE + self.__UPDATE_INTERVAL < current_time:
            self.__update_models()
        self.__MODELS_UPDATE = current_time
        return self.__MODELS

    # helper functions

    def get_policy_from_meta_rules(self, meta_rule_id):
        for pdp_key, pdp_value in self.pdp.items():
            for policy_id in pdp_value["security_pipeline"]:
                model_id = self.policies[policy_id]["model_id"]
                if meta_rule_id in self.models[model_id]["meta_rules"]:
                    return policy_id

    def get_pdp_from_keystone_project(self, keystone_project_id):
        for pdp_key, pdp_value in self.pdp.items():
            if keystone_project_id == pdp_value["keystone_project_id"]:
                return pdp_key

    def get_keystone_project_id_from_policy_id(self, policy_id):
        for pdp_key, pdp_value in self.pdp.items():
            if policy_id in pdp_value["security_pipeline"]:
                return pdp_value["keystone_project_id"]
            # for policy_id in pdp_value["security_pipeline"]:
            #     model_id = self.policies[policy_id]["model_id"]
            #     if meta_rule_id in self.models[model_id]["meta_rules"]:
            #         return pdp_value["keystone_project_id"]

    def get_containers_from_keystone_project_id(self, keystone_project_id,
                                                meta_rule_id=None):
        for container_id, container_values in self.containers.items():
            for container_value in container_values:
                if 'keystone_project_id' not in container_value:
                    continue
                if container_value['keystone_project_id'] == keystone_project_id:
                    if not meta_rule_id:
                        yield container_id, container_value
                    elif container_value.get('meta_rule_id') == meta_rule_id:
                        yield container_id, container_value
                        break

    # containers functions

    def __update_container(self):
        req = requests.get("{}/pods".format(self.orchestrator_url))
        pods = req.json()
        for key, value in pods["pods"].items():
            # if key not in self.__CONTAINERS:
            self.__CONTAINERS[key] = value
            # else:
            #     for container in value:
            #         self.__CONTAINERS[key].update(value)

    def add_container(self, container_data):
        """Add a new container in the cache

        :param container_data: dictionary with information for the container
        Example:
        {
            "name": name,
            "hostname": name,
            "port": {
                "PrivatePort": tcp_port,
                "Type": "tcp",
                "IP": "0.0.0.0",
                "PublicPort": tcp_port
            },
            "keystone_project_id": uuid,
            "pdp_id": self.CACHE.get_pdp_from_keystone_project(uuid),
            "meta_rule_id": meta_rule_id,
            "container_name": container_name,
            "plugin_name": plugin_name
            "container_id": "container_id"
        }

        :return:
        """
        self.__CONTAINERS[uuid4().hex] = {
            "keystone_project_id": container_data['keystone_project_id'],
            "name": container_data['name'],
            "container_id": container_data['container_id'],
            "hostname": container_data['name'],
            "policy_id": container_data['policy_id'],
            "meta_rule_id": container_data['meta_rule_id'],
            "port": [
                {
                    "PublicPort": container_data['port']["PublicPort"],
                    "Type": container_data['port']["Type"],
                    "IP": container_data['port']["IP"],
                    "PrivatePort": container_data['port']["PrivatePort"]
                }
            ],
            "genre": container_data['plugin_name']
        }
        self.__update_container_chaining(self.get_keystone_project_id_from_policy_id(container_data['policy_id']))

    @property
    def containers(self):
        """Containers cache
        example of content :
        {
            "policy_uuid1": "component_hostname1",
            "policy_uuid2": "component_hostname2",
        }
        :return:
        """
        current_time = time.time()
        if self.__CONTAINERS_UPDATE + self.__UPDATE_INTERVAL < current_time:
            self.__update_container()
        self.__CONTAINERS_UPDATE = current_time
        return self.__CONTAINERS

    @property
    def container_chaining(self):
        """Cache for mapping Keystone Project ID with meta_rule ID and container ID
        Example of content:
        {
            "keystone_project_id": [
                {
                    "container_id": "container_id",
                    "genre": "genre",
                    "policy_id": "policy_id",
                    "meta_rule_id": "meta_rule_id",
                }
            ]
        }

        :return:
        """
        current_time = time.time()
        if self.__CONTAINER_CHAINING_UPDATE + self.__UPDATE_INTERVAL < current_time:
            for key, value in self.pdp.items():
                if not value["keystone_project_id"]:
                    continue
                self.__update_container_chaining(value["keystone_project_id"])
        self.__CONTAINER_CHAINING_UPDATE = current_time
        LOG.info(self.__CONTAINER_CHAINING_UPDATE)
        return self.__CONTAINER_CHAINING

    def __update_container_chaining(self, keystone_project_id):
        container_ids = []
        for pdp_id, pdp_value, in self.__PDP.items():
            if pdp_value:
                if pdp_value["keystone_project_id"] == keystone_project_id:
                    for policy_id in pdp_value["security_pipeline"]:
                        model_id = self.__POLICIES[policy_id]['model_id']
                        for meta_rule_id in self.__MODELS[model_id]["meta_rules"]:
                            for container_id, container_value in self.get_containers_from_keystone_project_id(
                                keystone_project_id,
                                meta_rule_id
                            ):
                                _raw = requests.get("{}/pods/{}".format(
                                    self.orchestrator_url, container_value["name"])
                                )
                                LOG.debug("_raw={}".format(_raw.text))
                                container_ids.append(
                                    {
                                        "container_id": container_value["name"],
                                        "genre": container_value["genre"],
                                        "policy_id": policy_id,
                                        "meta_rule_id": meta_rule_id,
                                        "hostname": container_value["name"],
                                        "hostip": "127.0.0.1",
                                        "port": container_value["port"],
                                    }
                                )
        self.__CONTAINER_CHAINING[keystone_project_id] = container_ids