~ubuntu-branches/ubuntu/vivid/neutron/vivid-updates

« back to all changes in this revision

Viewing changes to neutron/plugins/ofagent/agent/ofswitch.py

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2015-03-30 11:17:19 UTC
  • mfrom: (1.1.21)
  • Revision ID: package-import@ubuntu.com-20150330111719-h0gx7233p4jkkgfh
Tags: 1:2015.1~b3-0ubuntu1
* New upstream milestone release:
  - d/control: Align version requirements with upstream.
  - d/control: Add new dependency on oslo-log.
  - d/p/*: Rebase.
  - d/control,d/neutron-plugin-hyperv*: Dropped, decomposed into
    separate project upstream.
  - d/control,d/neutron-plugin-openflow*: Dropped, decomposed into
    separate project upstream.
  - d/neutron-common.install: Add neutron-rootwrap-daemon and 
    neutron-keepalived-state-change binaries.
  - d/rules: Ignore neutron-hyperv-agent when installing; only for Windows.
  - d/neutron-plugin-cisco.install: Drop neutron-cisco-cfg-agent as
    decomposed into separate project upstream.
  - d/neutron-plugin-vmware.install: Drop neutron-check-nsx-config and
    neutron-nsx-manage as decomposed into separate project upstream.
  - d/control: Add dependency on python-neutron-fwaas to neutron-l3-agent.
* d/pydist-overrides: Add overrides for oslo packages.
* d/control: Fixup type in package description (LP: #1263539).
* d/p/fixup-driver-test-execution.patch: Cherry pick fix from upstream VCS
  to support unit test exection in out-of-tree vendor drivers.
* d/neutron-common.postinst: Allow general access to /etc/neutron but limit
  access to root/neutron to /etc/neutron/neutron.conf to support execution
  of unit tests in decomposed vendor drivers.
* d/control: Add dependency on python-neutron-fwaas to neutron-l3-agent
  package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2014 VA Linux Systems Japan K.K.
2
 
# Copyright (C) 2014 YAMAMOTO Takashi <yamamoto at valinux co jp>
3
 
# All Rights Reserved.
4
 
#
5
 
#    Licensed under the Apache License, Version 2.0 (the "License"); you may
6
 
#    not use this file except in compliance with the License. You may obtain
7
 
#    a copy of the License at
8
 
#
9
 
#         http://www.apache.org/licenses/LICENSE-2.0
10
 
#
11
 
#    Unless required by applicable law or agreed to in writing, software
12
 
#    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13
 
#    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14
 
#    License for the specific language governing permissions and limitations
15
 
#    under the License.
16
 
 
17
 
from ryu.app.ofctl import api as ofctl_api
18
 
 
19
 
 
20
 
class OpenFlowSwitch(object):
21
 
    def __init__(self, *args, **kwargs):
22
 
        super(OpenFlowSwitch, self).__init__(*args, **kwargs)
23
 
        self._dp = None
24
 
        # logically app doesn't belong here.  just for convenience.
25
 
        self._app = None
26
 
 
27
 
    def set_dp(self, dp):
28
 
        self._dp = dp
29
 
 
30
 
    def set_app(self, app):
31
 
        self._app = app
32
 
 
33
 
    def _get_dp(self):
34
 
        """a convenient method for openflow message composers"""
35
 
        dp = self._dp
36
 
        return (dp, dp.ofproto, dp.ofproto_parser)
37
 
 
38
 
    def _send_msg(self, msg):
39
 
        return ofctl_api.send_msg(self._app, msg)
40
 
 
41
 
    def delete_flows(self, table_id=None, strict=False, priority=0,
42
 
                     match=None, **match_kwargs):
43
 
        (dp, ofp, ofpp) = self._get_dp()
44
 
        if table_id is None:
45
 
            table_id = ofp.OFPTT_ALL
46
 
        if match is None:
47
 
            match = ofpp.OFPMatch(**match_kwargs)
48
 
        if strict:
49
 
            cmd = ofp.OFPFC_DELETE_STRICT
50
 
        else:
51
 
            cmd = ofp.OFPFC_DELETE
52
 
        msg = ofpp.OFPFlowMod(dp,
53
 
                              command=cmd,
54
 
                              table_id=table_id,
55
 
                              match=match,
56
 
                              priority=priority,
57
 
                              out_group=ofp.OFPG_ANY,
58
 
                              out_port=ofp.OFPP_ANY)
59
 
        self._send_msg(msg)
60
 
 
61
 
    def install_default_drop(self, table_id):
62
 
        (dp, _ofp, ofpp) = self._get_dp()
63
 
        msg = ofpp.OFPFlowMod(dp,
64
 
                              table_id=table_id,
65
 
                              priority=0)
66
 
        self._send_msg(msg)
67
 
 
68
 
    def install_default_goto(self, table_id, dest_table_id):
69
 
        (dp, _ofp, ofpp) = self._get_dp()
70
 
        instructions = [ofpp.OFPInstructionGotoTable(table_id=dest_table_id)]
71
 
        msg = ofpp.OFPFlowMod(dp,
72
 
                              table_id=table_id,
73
 
                              priority=0,
74
 
                              instructions=instructions)
75
 
        self._send_msg(msg)
76
 
 
77
 
    def install_default_goto_next(self, table_id):
78
 
        self.install_default_goto(table_id, table_id + 1)