summaryrefslogtreecommitdiffstats
path: root/nova/virt/hyperv/vif.py
blob: 8cf401908567ff7b4f1c95b8257feba5635c959e (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
# vim: tabstop=4 shiftwidth=4 softtabstop=4
#
# Copyright 2013 Cloudbase Solutions Srl
# Copyright 2013 Pedro Navarro Perez
# All Rights Reserved.
#
#    Licensed under the Apache License, Version 2.0 (the "License"); you may
#    not use this file except in compliance with the License. You may obtain
#    a copy of the License at
#
#         http://www.apache.org/licenses/LICENSE-2.0
#
#    Unless required by applicable law or agreed to in writing, software
#    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
#    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
#    License for the specific language governing permissions and limitations
#    under the License.

import abc

from oslo.config import cfg

from nova.openstack.common import log as logging
from nova.virt.hyperv import networkutils
from nova.virt.hyperv import vmutils

hyperv_opts = [
    cfg.StrOpt('vswitch_name',
               default=None,
               help='External virtual switch Name, '
                    'if not provided, the first external virtual '
                    'switch is used',
               deprecated_group='DEFAULT'),
]

CONF = cfg.CONF
CONF.register_opts(hyperv_opts, 'hyperv')

LOG = logging.getLogger(__name__)


class HyperVBaseVIFDriver(object):
    @abc.abstractmethod
    def plug(self, instance, vif):
        pass

    @abc.abstractmethod
    def unplug(self, instance, vif):
        pass


class HyperVQuantumVIFDriver(HyperVBaseVIFDriver):
    """Quantum VIF driver."""

    def plug(self, instance, vif):
        # Quantum takes care of plugging the port
        pass

    def unplug(self, instance, vif):
        # Quantum takes care of unplugging the port
        pass


class HyperVNovaNetworkVIFDriver(HyperVBaseVIFDriver):
    """Nova network VIF driver."""

    def __init__(self):
        self._vmutils = vmutils.VMUtils()
        self._netutils = networkutils.NetworkUtils()

    def plug(self, instance, vif):
        vswitch_path = self._netutils.get_external_vswitch(
            CONF.hyperv.vswitch_name)

        vm_name = instance['name']
        LOG.debug(_('Creating vswitch port for instance: %s') % vm_name)
        vswitch_port = self._netutils.create_vswitch_port(vswitch_path,
                                                          vm_name)
        self._vmutils.set_nic_connection(vm_name, vif['id'], vswitch_port)

    def unplug(self, instance, vif):
        #TODO(alepilotti) Not implemented
        pass