Modified FailureManager to abort only when critical resources fail
[nepi.git] / src / nepi / resources / planetlab / tap.py
1 #
2 #    NEPI, a framework to manage network experiments
3 #    Copyright (C) 2013 INRIA
4 #
5 #    This program is free software: you can redistribute it and/or modify
6 #    it under the terms of the GNU General Public License as published by
7 #    the Free Software Foundation, either version 3 of the License, or
8 #    (at your option) any later version.
9 #
10 #    This program is distributed in the hope that it will be useful,
11 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
12 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 #    GNU General Public License for more details.
14 #
15 #    You should have received a copy of the GNU General Public License
16 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 #
18 # Author: Alina Quereilhac <alina.quereilhac@inria.fr>
19
20 from nepi.execution.attribute import Attribute, Flags, Types
21 from nepi.execution.resource import clsinit_copy, ResourceState, \
22         reschedule_delay, failtrap
23 from nepi.resources.linux.application import LinuxApplication
24 from nepi.resources.planetlab.node import PlanetlabNode
25 from nepi.util.timefuncs import tnow, tdiffsec
26
27 import os
28 import time
29
30 # TODO: - routes!!!
31 #       - CREATE GRE - PlanetlabGRE - it only needs to set the gre and remote
32 #               properties when configuring the vif_up
33
34 PYTHON_VSYS_VERSION = "1.0"
35
36 @clsinit_copy
37 class PlanetlabTap(LinuxApplication):
38     _rtype = "PlanetlabTap"
39     _help = "Creates a TAP device on a PlanetLab host"
40     _backend = "planetlab"
41
42     @classmethod
43     def _register_attributes(cls):
44         ip4 = Attribute("ip4", "IPv4 Address",
45               flags = Flags.ExecReadOnly)
46
47         mac = Attribute("mac", "MAC Address",
48                 flags = Flags.ExecReadOnly)
49
50         prefix4 = Attribute("prefix4", "IPv4 network prefix",
51                 type = Types.Integer,
52                 flags = Flags.ExecReadOnly)
53
54         mtu = Attribute("mtu", "Maximum transmition unit for device",
55                 type = Types.Integer)
56
57         devname = Attribute("deviceName", 
58                 "Name of the network interface (e.g. eth0, wlan0, etc)",
59                 flags = Flags.ReadOnly)
60
61         up = Attribute("up", "Link up", 
62                 type = Types.Bool)
63         
64         snat = Attribute("snat", "Set SNAT=1", 
65                 type = Types.Bool,
66                 flags = Flags.ExecReadOnly)
67         
68         pointopoint = Attribute("pointopoint", "Peer IP address", 
69                 flags = Flags.ExecReadOnly)
70
71         tear_down = Attribute("tearDown", "Bash script to be executed before " + \
72                 "releasing the resource",
73                 flags = Flags.ExecReadOnly)
74
75         cls._register_attribute(ip4)
76         cls._register_attribute(mac)
77         cls._register_attribute(prefix4)
78         cls._register_attribute(mtu)
79         cls._register_attribute(devname)
80         cls._register_attribute(up)
81         cls._register_attribute(snat)
82         cls._register_attribute(pointopoint)
83         cls._register_attribute(tear_down)
84
85     def __init__(self, ec, guid):
86         super(PlanetlabTap, self).__init__(ec, guid)
87         self._home = "tap-%s" % self.guid
88
89     @property
90     def node(self):
91         node = self.get_connected(PlanetlabNode.rtype())
92         if node: return node[0]
93         return None
94
95     def upload_sources(self):
96         # upload vif-creation python script
97         pl_vif_create = os.path.join(os.path.dirname(__file__), "scripts",
98                 "pl-vif-create.py")
99
100         self.node.upload(pl_vif_create,
101                 os.path.join(self.node.src_dir, "pl-vif-create.py"),
102                 overwrite = False)
103
104         # upload vif-stop python script
105         pl_vif_stop = os.path.join(os.path.dirname(__file__), "scripts",
106                 "pl-vif-stop.py")
107
108         self.node.upload(pl_vif_stop,
109                 os.path.join(self.node.src_dir, "pl-vif-stop.py"),
110                 overwrite = False)
111
112         # upload vif-connect python script
113         pl_vif_connect = os.path.join(os.path.dirname(__file__), "scripts",
114                 "pl-vif-udp-connect.py")
115
116         self.node.upload(pl_vif_connect,
117                 os.path.join(self.node.src_dir, "pl-vif-udp-connect.py"),
118                 overwrite = False)
119
120         # upload tun-connect python script
121         tunchannel = os.path.join(os.path.dirname(__file__), "..", "linux",
122                 "scripts", "tunchannel.py")
123
124         self.node.upload(tunchannel,
125                 os.path.join(self.node.src_dir, "tunchannel.py"),
126                 overwrite = False)
127
128         # upload stop.sh script
129         stop_command = self.replace_paths(self._stop_command)
130         self.node.upload(stop_command,
131                 os.path.join(self.app_home, "stop.sh"),
132                 text = True, 
133                 overwrite = False)
134
135     def upload_start_command(self):
136         super(PlanetlabTap, self).upload_start_command()
137
138         # We want to make sure the device is up and running
139         # before the deploy finishes (so things will be ready
140         # before other stuff starts running).
141         # Run the command as a bash script in background,
142         # in the host ( but wait until the command has
143         # finished to continue )
144         self._run_in_background()
145         
146         # Retrive if_name
147         if_name = self.wait_if_name()
148         self.set("deviceName", if_name) 
149
150     @failtrap
151     def deploy(self):
152         if not self.node or self.node.state < ResourceState.PROVISIONED:
153             self.ec.schedule(reschedule_delay, self.deploy)
154         else:
155             if not self.get("command"):
156                 self.set("command", self._start_command)
157
158             if not self.get("depends"):
159                 self.set("depends", self._dependencies)
160
161             if not self.get("install"):
162                 self.set("install", self._install)
163
164             self.discover()
165             self.provision()
166
167             self.debug("----- READY ---- ")
168             self.set_ready()
169
170     @failtrap
171     def start(self):
172         if self.state == ResourceState.READY:
173             command = self.get("command")
174             self.info("Starting command '%s'" % command)
175
176             self.set_started()
177         else:
178             msg = " Failed to execute command '%s'" % command
179             self.error(msg, out, err)
180             raise RuntimeError, msg
181
182     @failtrap
183     def stop(self):
184         command = self.get('command') or ''
185         
186         if self.state == ResourceState.STARTED:
187             self.info("Stopping command '%s'" % command)
188
189             command = "bash %s" % os.path.join(self.app_home, "stop.sh")
190             (out, err), proc = self.execute_command(command,
191                     blocking = True)
192
193             self.set_stopped()
194
195     @property
196     def state(self):
197         # First check if the ccnd has failed
198         state_check_delay = 0.5
199         if self._state == ResourceState.STARTED and \
200                 tdiffsec(tnow(), self._last_state_check) > state_check_delay:
201
202             if self.get("deviceName"):
203                 (out, err), proc = self.node.execute("ifconfig")
204
205                 if out.strip().find(self.get("deviceName")) == -1: 
206                     # tap is not running is not running (socket not found)
207                     self.finish()
208
209             self._last_state_check = tnow()
210
211         return self._state
212
213     def release(self):
214         # Node needs to wait until all associated RMs are released
215         # to be released
216         try:
217             from nepi.resources.linux.udptunnel import UdpTunnel
218             rms = self.get_connected(UdpTunnel.rtype())
219             for rm in rms:
220                 if rm.state < ResourceState.STOPPED:
221                     self.ec.schedule(reschedule_delay, self.release)
222                     return 
223         except:
224             import traceback
225             err = traceback.format_exc()
226             self.error(err)
227
228         super(PlanetlabTap, self).release()
229
230     def wait_if_name(self):
231         """ Waits until the if_name file for the command is generated, 
232             and returns the if_name for the device """
233         if_name = None
234         delay = 1.0
235
236         for i in xrange(4):
237             (out, err), proc = self.node.check_output(self.run_home, "if_name")
238
239             if out:
240                 if_name = out.strip()
241                 break
242             else:
243                 time.sleep(delay)
244                 delay = delay * 1.5
245         else:
246             msg = "Couldn't retrieve if_name"
247             self.error(msg, out, err)
248             raise RuntimeError, msg
249
250         return if_name
251
252     def udp_connect_command(self, remote_ip, local_port_file, 
253             remote_port_file, ret_file, cipher, cipher_key,
254             bwlimit, txqueuelen):
255         command = ["sudo -S "]
256         command.append("PYTHONPATH=$PYTHONPATH:${SRC}")
257         command.append("python ${SRC}/pl-vif-udp-connect.py")
258         command.append("-t %s" % self.vif_type)
259         command.append("-S %s " % self.sock_name)
260         command.append("-l %s " % local_port_file)
261         command.append("-r %s " % remote_port_file)
262         command.append("-H %s " % remote_ip)
263         command.append("-R %s " % ret_file)
264         if cipher:
265             command.append("-c %s " % cipher)
266         if cipher_key:
267             command.append("-k %s " % cipher_key)
268         if txqueuelen:
269             command.append("-q %s " % txqueuelen)
270         if bwlimit:
271             command.append("-b %s " % bwlimit)
272
273         command = " ".join(command)
274         command = self.replace_paths(command)
275         return command
276
277     @property
278     def _start_command(self):
279         command = ["sudo -S python ${SRC}/pl-vif-create.py"]
280         
281         command.append("-t %s" % self.vif_type)
282         command.append("-a %s" % self.get("ip4"))
283         command.append("-n %d" % self.get("prefix4"))
284         command.append("-f %s " % self.if_name_file)
285         command.append("-S %s " % self.sock_name)
286         if self.get("snat") == True:
287             command.append("-s")
288         if self.get("pointopoint"):
289             command.append("-p %s" % self.get("pointopoint"))
290
291         return " ".join(command)
292
293     @property
294     def _stop_command(self):
295         command = ["sudo -S python ${SRC}/pl-vif-stop.py"]
296         
297         command.append("-S %s " % self.sock_name)
298         return " ".join(command)
299
300     @property
301     def vif_type(self):
302         return "IFF_TAP"
303
304     @property
305     def if_name_file(self):
306         return os.path.join(self.run_home, "if_name")
307
308     @property
309     def sock_name(self):
310         return os.path.join(self.run_home, "tap.sock")
311
312     @property
313     def _dependencies(self):
314         return "mercurial make gcc"
315
316     @property
317     def _install(self):
318         # Install python-vsys and python-passfd
319         install_vsys = ( " ( "
320                     "   python -c 'import vsys, os;  vsys.__version__ == \"%(version)s\" or os._exit(1)' "
321                     " ) "
322                     " || "
323                     " ( "
324                     "   cd ${SRC} ; "
325                     "   hg clone http://nepi.inria.fr/code/python-vsys ; "
326                     "   cd python-vsys ; "
327                     "   make all ; "
328                     "   sudo -S make install "
329                     " )" ) % ({
330                         "version": PYTHON_VSYS_VERSION
331                         })
332
333         install_passfd = ( " ( python -c 'import passfd' ) "
334                     " || "
335                     " ( "
336                     "   cd ${SRC} ; "
337                     "   hg clone http://nepi.inria.fr/code/python-passfd ; "
338                     "   cd python-passfd ; "
339                     "   make all ; "
340                     "   sudo -S make install "
341                     " )" )
342
343         return "%s ; %s" % ( install_vsys, install_passfd )
344
345     def valid_connection(self, guid):
346         # TODO: Validate!
347         return True
348