Matteo Scandolo | 62a83f0 | 2018-03-01 15:59:18 -0800 | [diff] [blame] | 1 | |
| 2 | # Copyright 2017-present Open Networking Foundation |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
Matteo Scandolo | d1707b3 | 2018-05-04 12:42:53 -0700 | [diff] [blame] | 15 | import re |
| 16 | import socket |
Matteo Scandolo | cc94e90 | 2018-05-22 15:25:25 -0700 | [diff] [blame] | 17 | import random |
Matteo Scandolo | 62a83f0 | 2018-03-01 15:59:18 -0800 | [diff] [blame] | 18 | |
Matteo Scandolo | d1707b3 | 2018-05-04 12:42:53 -0700 | [diff] [blame] | 19 | from xos.exceptions import XOSValidationError, XOSProgrammingError, XOSPermissionDenied |
| 20 | from models_decl import RCORDService_decl, RCORDSubscriber_decl |
Matteo Scandolo | 62a83f0 | 2018-03-01 15:59:18 -0800 | [diff] [blame] | 21 | |
Matteo Scandolo | d1707b3 | 2018-05-04 12:42:53 -0700 | [diff] [blame] | 22 | class RCORDService(RCORDService_decl): |
| 23 | class Meta: |
| 24 | proxy = True |
| 25 | |
| 26 | class RCORDSubscriber(RCORDSubscriber_decl): |
Matteo Scandolo | 520217f | 2018-05-16 14:15:56 -0700 | [diff] [blame] | 27 | |
Matteo Scandolo | 62a83f0 | 2018-03-01 15:59:18 -0800 | [diff] [blame] | 28 | class Meta: |
| 29 | proxy = True |
| 30 | |
| 31 | def invalidate_related_objects(self): |
| 32 | # Dirty all vSGs related to this subscriber, so the vSG synchronizer |
| 33 | # will run. |
| 34 | |
| 35 | # FIXME: This should be reimplemented when multiple-objects-per-synchronizer is implemented. |
| 36 | |
| 37 | for link in self.subscribed_links.all(): |
| 38 | outer_service_instance = link.provider_service_instance |
| 39 | # TODO: We may need to invalide the vOLT too... |
| 40 | for link in outer_service_instance.subscribed_links.all(): |
| 41 | inner_service_instance = link.provider_service_instance |
| 42 | inner_service_instance.save(update_fields=["updated"]) |
| 43 | |
Matteo Scandolo | cc94e90 | 2018-05-22 15:25:25 -0700 | [diff] [blame] | 44 | def generate_tag(self): |
| 45 | # NOTE this method will loop if available c_tags are ended |
| 46 | tag = random.randint(16, 4096) |
| 47 | if tag in self.get_used_c_tags(): |
| 48 | return self.generate_tag() |
| 49 | return tag |
| 50 | |
| 51 | def get_used_c_tags(self): |
| 52 | same_onu_subscribers = RCORDSubscriber.objects.filter(onu_device=self.onu_device) |
| 53 | return [s.c_tag for s in same_onu_subscribers] |
| 54 | |
Matteo Scandolo | 62a83f0 | 2018-03-01 15:59:18 -0800 | [diff] [blame] | 55 | def save(self, *args, **kwargs): |
Matteo Scandolo | cc94e90 | 2018-05-22 15:25:25 -0700 | [diff] [blame] | 56 | |
Matteo Scandolo | 62a83f0 | 2018-03-01 15:59:18 -0800 | [diff] [blame] | 57 | self.validate_unique_service_specific_id(none_okay=True) |
| 58 | |
Scott Baker | 9d9ddf6 | 2018-03-20 20:44:27 -0700 | [diff] [blame] | 59 | # VSGServiceInstance will extract the creator from the Subscriber, as it needs a creator to create its |
| 60 | # Instance. |
| 61 | if not self.creator: |
| 62 | # If we weren't passed an explicit creator, then we will assume the caller is the creator. |
| 63 | if not getattr(self, "caller", None): |
Matteo Scandolo | d1707b3 | 2018-05-04 12:42:53 -0700 | [diff] [blame] | 64 | raise XOSProgrammingError("RCORDSubscriber's self.caller was not set") |
Scott Baker | 9d9ddf6 | 2018-03-20 20:44:27 -0700 | [diff] [blame] | 65 | self.creator = self.caller |
| 66 | |
Matteo Scandolo | 62a83f0 | 2018-03-01 15:59:18 -0800 | [diff] [blame] | 67 | if (not hasattr(self, 'caller') or not self.caller.is_admin): |
| 68 | if (self.has_field_changed("service_specific_id")): |
| 69 | raise XOSPermissionDenied("You do not have permission to change service_specific_id") |
| 70 | |
Matteo Scandolo | d1707b3 | 2018-05-04 12:42:53 -0700 | [diff] [blame] | 71 | # validate IP Address |
| 72 | if hasattr(self, 'ip_address') and self.ip_address is not None: |
| 73 | try: |
| 74 | socket.inet_aton(self.ip_address) |
| 75 | except socket.error: |
| 76 | raise XOSValidationError("The ip_address you specified (%s) is not valid" % self.ip_address) |
| 77 | |
| 78 | # validate MAC Address |
| 79 | if hasattr(self, 'mac_address') and self.mac_address is not None: |
| 80 | if not re.match("[0-9a-f]{2}([-:]?)[0-9a-f]{2}(\\1[0-9a-f]{2}){4}$", self.mac_address.lower()): |
| 81 | raise XOSValidationError("The mac_address you specified (%s) is not valid" % self.mac_address) |
| 82 | |
Matteo Scandolo | cc94e90 | 2018-05-22 15:25:25 -0700 | [diff] [blame] | 83 | # validate c_tag |
| 84 | if hasattr(self, 'c_tag') and self.c_tag is not None: |
Matteo Scandolo | aa37b42 | 2018-05-23 15:36:56 -0700 | [diff] [blame] | 85 | is_update_with_same_tag = False |
| 86 | |
| 87 | if not self.is_new: |
| 88 | # if it is an update, but the tag is the same, skip validation |
| 89 | existing = RCORDSubscriber.objects.filter(c_tag=self.c_tag) |
| 90 | |
| 91 | if len(existing) > 0 and existing[0].c_tag == self.c_tag and existing[0].id == self.id: |
| 92 | is_update_with_same_tag = True |
| 93 | |
| 94 | if self.c_tag in self.get_used_c_tags() and not is_update_with_same_tag: |
Matteo Scandolo | cc94e90 | 2018-05-22 15:25:25 -0700 | [diff] [blame] | 95 | raise XOSValidationError("The c_tag you specified (%s) has already been used on device %s" % (self.c_tag, self.onu_device)) |
| 96 | |
| 97 | if not hasattr(self, "c_tag") or self.c_tag is None: |
| 98 | self.c_tag = self.generate_tag() |
| 99 | |
Matteo Scandolo | 520217f | 2018-05-16 14:15:56 -0700 | [diff] [blame] | 100 | self.set_owner() |
| 101 | |
Matteo Scandolo | 3ecc167 | 2018-06-25 16:58:12 -0700 | [diff] [blame] | 102 | if self.status != "pre-provisioned" and hasattr(self.owner.leaf_model, "access") and self.owner.leaf_model.access == "voltha": |
Matteo Scandolo | cc94e90 | 2018-05-22 15:25:25 -0700 | [diff] [blame] | 103 | |
Matteo Scandolo | b6d67fd | 2018-05-18 16:28:51 -0700 | [diff] [blame] | 104 | # if the access network is managed by voltha, validate that onu_device actually exist |
Matteo Scandolo | d1707b3 | 2018-05-04 12:42:53 -0700 | [diff] [blame] | 105 | volt_service = self.owner.provider_services[0].leaf_model # we assume RCORDService is connected only to the vOLTService |
| 106 | |
Matteo Scandolo | b6d67fd | 2018-05-18 16:28:51 -0700 | [diff] [blame] | 107 | if not volt_service.has_access_device(self.onu_device): |
| 108 | raise XOSValidationError("The onu_device you specified (%s) does not exists" % self.onu_device) |
Matteo Scandolo | d1707b3 | 2018-05-04 12:42:53 -0700 | [diff] [blame] | 109 | |
| 110 | super(RCORDSubscriber, self).save(*args, **kwargs) |
Matteo Scandolo | 62a83f0 | 2018-03-01 15:59:18 -0800 | [diff] [blame] | 111 | self.invalidate_related_objects() |
| 112 | return |