summaryrefslogtreecommitdiffstats
path: root/func/minion/modules/vlan.py
blob: 45bb8aee7725b7337db3f8cef3be40a0770541db (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
#
# Copyright 2008, Stone-IT
# Jasper Capel <capel@stone-it.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
# 02110-1301  USA

"""
Func module for VLAN management
"""

__author__ = "Jasper Capel <capel@stone-it.com>"
__version__ = "0.0.3"
__api_version__ = "0.0.2"

import func_module
import os, re
from certmaster.config import BaseConfig, Option, ListOption


class Vlan(func_module.FuncModule):
    version = __version__
    api_version = __api_version__
    description = "Func module for VLAN management"

    class Config(BaseConfig):
        # A list of VLAN IDs that should be ignored.
        # You can use this if you have VLAN IDs which are reserved for internal
        # use, which should never be touched by func.
        # Use strings here, not integers!
        ignorevlans = ListOption()
        vconfig = Option("/sbin/vconfig")
        ip = Option("/sbin/ip")
        ifup = Option("/sbin/ifup")
        ifdown = Option("/sbin/ifdown")

    def list(self):
        """
        Returns a dictionary, elements look like this:
        key: interface, value: [id1, id2, id3]
        """

        retlist = {}

        f = open("/proc/net/vlan/config")

        # Read the config, throw the header lines away
        # Lines look like:
        # bond1.1003     | 1003  | bond1
        lines = f.readlines()[2:]

        for line in lines:
            elements = line.split("|")
            vlanid = elements[1].strip()
            interface = elements[2].strip()

            if interface not in retlist:
                # New list in dictionary
                retlist[interface] =  [ vlanid ]
            else:
                # Append to existing list in dictionary
                retlist[interface].append(vlanid)

        return retlist

    def list_permanent(self):
        """
        Returns a dictionary of permanent VLANs, return format is the same as
        in the list() method.
        """
        retlist = {}
        pattern = re.compile('ifcfg-([a-z0-9]+)\.([0-9]+)')

        for item in os.listdir("/etc/sysconfig/network-scripts"):
            match = pattern.match(item)
            if match:
                interface = match.group(1)
                vlanid = match.group(2)

                if interface not in retlist:
                    retlist[interface] = [ vlanid ]
                else:
                    retlist[interface].append(vlanid)

        return retlist



    def add(self, interface, vlanid):
        """
        Adds a vlan to an interface

        Keyword arguments:
        interface -- interface to add vlan to (string, for example: "eth0")
        vlanid -- ID of the vlan to add (string, for example: "1100")
        """
        if vlanid not in self.options.ignorevlans:
            exitcode = os.spawnv(os.P_WAIT, self.options.vconfig, [ self.options.vconfig, "add", interface, str(vlanid)] )
        else:
            exitcode = -1
        
        return exitcode

    def add_permanent(self, interface, vlanid, ipaddr=None, netmask=None, gateway=None):
        """
        Permanently adds a VLAN by writing to an ifcfg-file

        Keyword arguments:
        interface -- interface to add vlan to (string, for example: "eth0")
        vlanid -- ID of the vlan to add (string, for example: "1100")
        ipaddr -- IP-address for this VLAN (string)
        netmask -- Netmask for this VLAN (string)
        gateway -- Gateway for this VLAN (string)
        """
        alreadyup = False
        list = self.list()
        if interface in list:
            thisinterface = list[interface]
            if vlanid in thisinterface:
                alreadyup = True

        device = "%s.%s" % (interface, vlanid)
        if vlanid not in self.options.ignorevlans:
            filename = "/etc/sysconfig/network-scripts/ifcfg-%s" % device
            fp = open(filename, "w")
            filelines = [ "DEVICE=%s\n" % device, "VLAN=yes\n", "ONBOOT=yes\n" ]
            if ipaddr != None:
                filelines.append("BOOTPROTO=static\n")
                filelines.append("IPADDR=%s\n" % ipaddr)
            else:
                filelines.append("BOOTPROTO=none\n")
            if netmask != None:
                filelines.append("NETMASK=%s\n" % netmask)
            if gateway != None:
                filelines.append("GATEWAY=%s\n" % gateway)
            fp.writelines(filelines)
            fp.close()

            if alreadyup:
                # Don't run ifup, this will confuse the OS
                exitcode = self.up(interface, vlanid)
            else:
                exitcode = os.spawnv(os.P_WAIT, self.options.ifup, [ self.options.ifup, device ])
        else:
            exitcode = -1
        return exitcode

    def delete(self, interface, vlanid):
        """
        Deletes a vlan from an interface.
        
        Keyword arguments:
        interface -- Interface to delete vlan from (string, example: "eth0")
        vlanid -- Vlan ID to remove (string, example: "1100")
        """
        vintfname = interface + "." + str(vlanid)
        if vlanid not in self.options.ignorevlans:
            exitcode = os.spawnv(os.P_WAIT, self.options.vconfig, [ self.options.vconfig, "rem", vintfname] )
        else:
            exitcode = -1

        return exitcode

    def delete_permanent(self, interface, vlanid):
        """
        Permanently removes a vlan from an interface. This is useful when the vlan is configured through an ifcfg-file.

        Keyword arguments:
        interface -- interface to delete vlan from (string, example: "eth0")
        vlanid -- Vlan ID to remove (string, example: "1100")
        """

        if vlanid not in self.options.ignorevlans:
            device = "%s.%s" % (interface, vlanid)
            filename = "/etc/sysconfig/network-scripts/ifcfg-%s" % device
            self.down(interface, vlanid)
            self.delete(interface, vlanid)
            if os.path.exists(filename):
                os.remove(filename)
            exitcode = 0
        else:
            exitcode = -1
        return exitcode

    def up(self, interface, vlanid):
        """
        Marks a vlan interface as up

        Keyword arguments:
        interface -- interface this vlan resides on (string, example: "eth0")
        vlanid -- ID for this vlan (string, example: "1100")
        """

        vintfname = interface + "." + str(vlanid)
        if vlanid not in self.options.ignorevlans:
            exitcode = os.spawnv(os.P_WAIT, self.options.ip, [ self.options.ip, "link", "set", vintfname, "up" ])
        else:
            exitcode = -1

        return exitcode

    def down(self, interface, vlanid):
        """
        Marks a vlan interface as down

        Keyword arguments:
        interface -- interface this vlan resides on (string, example: "eth0")
        vlanid -- ID for this vlan (string, example: "1100")
        """
        vintfname = interface + "." + str(vlanid)
        if vlanid not in self.ignorevlans:
            exitcode = os.spawnv(os.P_WAIT, self.options.ip, [ self.options.ip, "link", "set", vintfname, "down" ])
        else:
            exitcode = -1

        return exitcode

    def make_it_so(self, configuration):
        """
        Applies the supplied configuration to the system.

        Keyword arguments:
        configuration  -- dictionary, elements should look like this: key: interface, value: [id1, id2, id3]
        """

        currentconfig = self.list()
        newconfig = {}

        # Convert the supplied configuration to strings.
        for interface, vlans in configuration.iteritems():
            newconfig[interface] = []
            for vlan in vlans:
                newconfig[interface].append(str(vlan))

        configuration = newconfig

        # First, remove all VLANs present in current configuration, that are
        # not present in new configuration.
        for interface, vlans in currentconfig.iteritems():
            if interface not in configuration:
                # Remove all the vlans from this interface
                for vlan in vlans:
                    self.delete(interface, vlan)

            else:
                for vlan in vlans:
                    if vlan not in configuration[interface]:
                        # VLAN not in new configuration, remove it.
                        self.delete(interface, vlan)

        # Second, add all VLANs present in new configuration, that are not
        # present in current configuration
        for interface, vlans in configuration.iteritems():
            if interface not in currentconfig:
                # Add all VLANs for this interface
                for vlan in vlans:
                    self.add(interface, vlan)

            else:
                for vlan in vlans:
                    if vlan not in currentconfig[interface]:
                        # VLAN not in current configuration, add it.
                        self.add(interface, vlan)

        # Todo: Compare the current configuration to the supplied configuration
        return self.list()
    
    def write(self):
        """
        Permantly applies configuration obtained through the list() method to the system.
        """

        currentconfig = self.list_permanent()
        newconfig = self.list()

        # First, remove all VLANs present in current configuration, that are
        # not present in new configuration.
        for interface, vlans in currentconfig.iteritems():
            if interface not in newconfig:
                for vlan in vlans:
                    self.delete_permanent(interface, vlan)

            else:
                for vlan in vlans:
                    if vlan not in newconfig[interface]:
                        self.delete_permanent(interface, vlan)

        for interface, vlans in newconfig.iteritems():
            if interface not in currentconfig:
                for vlan in vlans:
                    self.add_permanent(interface, vlan)
            
            else:
                for vlan in vlans:
                    if vlan not in currentconfig[interface]:
                        self.add_permanent(interface, vlan)

        return self.list_permanent()