blob: 042d266e1e204ac315166dd820041d38e7dae831 [file] [log] [blame]
Sapan Bhatia24836f12013-08-27 10:16:05 -04001import os
2import base64
Tony Mackae7f30c2013-09-25 12:46:50 -04003from django.db.models import F, Q
Sapan Bhatia24836f12013-08-27 10:16:05 -04004from planetstack.config import Config
Sapan Bhatia04c94ad2013-09-02 18:00:28 -04005from observer.openstacksyncstep import OpenStackSyncStep
6from core.models.network import *
Scott Baker378b3222014-08-12 18:00:35 -07007from util.logger import Logger, logging
8
9logger = Logger(level=logging.INFO)
Sapan Bhatia24836f12013-08-27 10:16:05 -040010
11class SyncNetworkSlivers(OpenStackSyncStep):
Scott Baker378b3222014-08-12 18:00:35 -070012 requested_interval = 0 # 3600
Tony Mackdacfb982013-09-24 21:57:16 -040013 provides=[NetworkSliver]
Sapan Bhatia24836f12013-08-27 10:16:05 -040014
Scott Baker378b3222014-08-12 18:00:35 -070015 # XXX smbaker: Note that this sync_step only functions for private networks.
16 # The way it works is to enumerate the all of the ports that quantum
17 # has, and then work backward from each port's network-id to determine
18 # which Network is associated from the port.
19 #
20 # There's a bug somewhere in NetworkDeployment where NAT and Dedicated
21 # networks are not getting assigned the correct network IDs. This means
22 # we can't reverse map them.
23
24 def call(self, **args):
Tony Mackdacfb982013-09-24 21:57:16 -040025 networkSlivers = NetworkSliver.objects.all()
26 networkSlivers_by_id = {}
27 networkSlivers_by_port = {}
28 for networkSliver in networkSlivers:
29 networkSlivers_by_id[networkSliver.id] = networkSliver
30 networkSlivers_by_port[networkSliver.port_id] = networkSliver
Sapan Bhatia24836f12013-08-27 10:16:05 -040031
Tony Mackdacfb982013-09-24 21:57:16 -040032 networks = Network.objects.all()
33 networks_by_id = {}
34 for network in networks:
Scott Baker378b3222014-08-12 18:00:35 -070035 for nd in network.networkdeployments_set.all():
36 networks_by_id[nd.net_id] = network
37
38 #logger.info("networks_by_id = ")
39 #for (network_id, network) in networks_by_id.items():
40 # logger.info(" %s: %s" % (network_id, network.name))
Sapan Bhatia24836f12013-08-27 10:16:05 -040041
Tony Mackdacfb982013-09-24 21:57:16 -040042 slivers = Sliver.objects.all()
43 slivers_by_instance_id = {}
44 for sliver in slivers:
45 slivers_by_instance_id[sliver.instance_id] = sliver
Sapan Bhatia24836f12013-08-27 10:16:05 -040046
Tony Mack9976dfd2014-06-03 21:04:35 -040047 driver = self.driver.client_driver(caller=sliver.creator, tenant=sliver.slice.name, deployment=sliver.node.deployment.name)
Tony Macke4be32f2014-03-11 20:45:25 -040048 ports = driver.shell.quantum.list_ports()["ports"]
Tony Mackdacfb982013-09-24 21:57:16 -040049 for port in ports:
Scott Baker378b3222014-08-12 18:00:35 -070050 #logger.info("port %s" % str(port))
Tony Mackdacfb982013-09-24 21:57:16 -040051 if port["id"] in networkSlivers_by_port:
52 # we already have it
Scott Baker378b3222014-08-12 18:00:35 -070053 #logger.info("already accounted for port %s" % port["id"])
Tony Mackdacfb982013-09-24 21:57:16 -040054 continue
Sapan Bhatia24836f12013-08-27 10:16:05 -040055
Tony Mackdacfb982013-09-24 21:57:16 -040056 if port["device_owner"] != "compute:nova":
57 # we only want the ports that connect to instances
Scott Baker378b3222014-08-12 18:00:35 -070058 #logger.info("port %s is not a compute port, it is a %s" % (port["id"], port["device_owner"]))
Tony Mackdacfb982013-09-24 21:57:16 -040059 continue
Sapan Bhatia24836f12013-08-27 10:16:05 -040060
Tony Mackdacfb982013-09-24 21:57:16 -040061 sliver = slivers_by_instance_id.get(port['device_id'], None)
62 if not sliver:
Scott Baker378b3222014-08-12 18:00:35 -070063 logger.info("no sliver for port %s device_id %s" % (port["id"], port['device_id']))
Tony Mackdacfb982013-09-24 21:57:16 -040064 continue
Sapan Bhatia24836f12013-08-27 10:16:05 -040065
Scott Baker378b3222014-08-12 18:00:35 -070066 network = networks_by_id.get(port['network_id'], None)
67 if not network:
68 logger.info("no network for port %s network %s" % (port["id"], port["network_id"]))
69
70 # we know it's associated with a sliver, but we don't know
71 # which network it is part of.
72
73 continue
74
75 if network.template.sharedNetworkName:
Tony Mackdacfb982013-09-24 21:57:16 -040076 # If it's a shared network template, then more than one network
77 # object maps to the quantum network. We have to do a whole bunch
78 # of extra work to find the right one.
79 networks = network.template.network_set.all()
80 network = None
81 for candidate_network in networks:
82 if (candidate_network.owner == sliver.slice):
83 print "found network", candidate_network
84 network = candidate_network
Sapan Bhatia24836f12013-08-27 10:16:05 -040085
Tony Mackdacfb982013-09-24 21:57:16 -040086 if not network:
Scott Baker378b3222014-08-12 18:00:35 -070087 logger.info("failed to find the correct network for a shared template for port %s network %s" % (port["id"], port["network_id"]))
Tony Mackdacfb982013-09-24 21:57:16 -040088 continue
Sapan Bhatia24836f12013-08-27 10:16:05 -040089
Tony Mackdacfb982013-09-24 21:57:16 -040090 if not port["fixed_ips"]:
Scott Baker378b3222014-08-12 18:00:35 -070091 logger.info("port %s has no fixed_ips" % port["id"])
Tony Mackdacfb982013-09-24 21:57:16 -040092 continue
Sapan Bhatia24836f12013-08-27 10:16:05 -040093
Scott Baker378b3222014-08-12 18:00:35 -070094 ip=port["fixed_ips"][0]["ip_address"]
95 logger.info("creating NetworkSliver (%s, %s, %s, %s)" % (str(network), str(sliver), ip, str(port["id"])))
Sapan Bhatia24836f12013-08-27 10:16:05 -040096
Tony Mackdacfb982013-09-24 21:57:16 -040097 ns = NetworkSliver(network=network,
98 sliver=sliver,
Scott Baker378b3222014-08-12 18:00:35 -070099 ip=ip,
Tony Mackdacfb982013-09-24 21:57:16 -0400100 port_id=port["id"])
101 ns.save()
Sapan Bhatia5f4aff22014-07-23 09:48:55 -0400102
103 def delete_record(self, network_sliver):
104 # Nothing to do, this is an OpenCloud object
105 pass
106