Fixing GRE tunnel between localhost and remote host
[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
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 socket
29 import time
30
31 PYTHON_VSYS_VERSION = "1.0"
32
33 @clsinit_copy
34 class PlanetlabTap(LinuxApplication):
35     _rtype = "PlanetlabTap"
36     _help = "Creates a TAP device on a PlanetLab host"
37     _backend = "planetlab"
38
39     @classmethod
40     def _register_attributes(cls):
41         ip4 = Attribute("ip4", "IPv4 Address",
42               flags = Flags.Design)
43
44         mac = Attribute("mac", "MAC Address",
45                 flags = Flags.Design)
46
47         prefix4 = Attribute("prefix4", "IPv4 network prefix",
48                 type = Types.Integer,
49                 flags = Flags.Design)
50
51         mtu = Attribute("mtu", "Maximum transmition unit for device",
52                 type = Types.Integer)
53
54         devname = Attribute("deviceName", 
55                 "Name of the network interface (e.g. eth0, wlan0, etc)",
56                 flags = Flags.NoWrite)
57
58         up = Attribute("up", "Link up", 
59                 type = Types.Bool)
60         
61         snat = Attribute("snat", "Set SNAT=1", 
62                 type = Types.Bool,
63                 flags = Flags.Design)
64         
65         pointopoint = Attribute("pointopoint", "Peer IP address", 
66                 flags = Flags.Design)
67
68         txqueuelen = Attribute("txqueuelen", "Length of transmission queue", 
69                 flags = Flags.Design)
70
71         txqueuelen = Attribute("txqueuelen", "Length of transmission queue", 
72                 flags = Flags.Design)
73
74         gre_key = Attribute("greKey", 
75                 "GRE key to be used to configure GRE tunnel", 
76                 default = "1",
77                 flags = Flags.Design)
78
79         gre_remote = Attribute("greRemote", 
80                 "Public IP of remote endpoint for GRE tunnel", 
81                 flags = Flags.Design)
82
83         tear_down = Attribute("tearDown", 
84                 "Bash script to be executed before releasing the resource",
85                 flags = Flags.Design)
86
87         cls._register_attribute(ip4)
88         cls._register_attribute(mac)
89         cls._register_attribute(prefix4)
90         cls._register_attribute(mtu)
91         cls._register_attribute(devname)
92         cls._register_attribute(up)
93         cls._register_attribute(snat)
94         cls._register_attribute(pointopoint)
95         cls._register_attribute(txqueuelen)
96         cls._register_attribute(gre_key)
97         cls._register_attribute(gre_remote)
98         cls._register_attribute(tear_down)
99
100     def __init__(self, ec, guid):
101         super(PlanetlabTap, self).__init__(ec, guid)
102         self._home = "tap-%s" % self.guid
103         self._gre_enabled = False
104
105     @property
106     def node(self):
107         node = self.get_connected(PlanetlabNode.get_rtype())
108         if node: return node[0]
109         raise RuntimeError, "TAP/TUN devices must be connected to Node"
110
111     @property
112     def gre_enabled(self):
113         if not self._gre_enabled:
114             from nepi.resources.linux.gretunnel import LinuxGRETunnel
115             gre = self.get_connected(LinuxGRETunnel.get_rtype())
116             if gre: self._gre_enabled = True
117
118         return self._gre_enabled
119
120     def upload_sources(self):
121         scripts = []
122
123         # vif-creation python script
124         pl_vif_create = os.path.join(os.path.dirname(__file__), "scripts",
125                 "pl-vif-create.py")
126
127         scripts.append(pl_vif_create)
128         
129         # vif-up python script
130         pl_vif_up = os.path.join(os.path.dirname(__file__), "scripts",
131                 "pl-vif-up.py")
132         
133         scripts.append(pl_vif_up)
134
135         # vif-down python script
136         pl_vif_down = os.path.join(os.path.dirname(__file__), "scripts",
137                 "pl-vif-down.py")
138         
139         scripts.append(pl_vif_down)
140
141         # udp-connect python script
142         pl_vif_connect = os.path.join(os.path.dirname(__file__), "scripts",
143                 "pl-vif-udp-connect.py")
144         
145         scripts.append(pl_vif_connect)
146
147         # tunnel creation python script
148         tunchannel = os.path.join(os.path.dirname(__file__), "..", "linux",
149                 "scripts", "tunchannel.py")
150
151         scripts.append(tunchannel)
152
153         # Upload scripts
154         scripts = ";".join(scripts)
155
156         self.node.upload(scripts,
157                 os.path.join(self.node.src_dir),
158                 overwrite = False)
159
160         # upload stop.sh script
161         stop_command = self.replace_paths(self._stop_command)
162
163         self.node.upload_command(stop_command,
164                 shfile = os.path.join(self.app_home, "stop.sh"),
165                 # Overwrite file every time. 
166                 # The stop.sh has the path to the socket, which should change
167                 # on every experiment run.
168                 overwrite = True)
169
170     def upload_start_command(self):
171         # If GRE mode is enabled, TAP creation is delayed until the
172         # tunnel is established
173         if not self.gre_enabled:
174             # Overwrite file every time. 
175             # The start.sh has the path to the socket, wich should change
176             # on every experiment run.
177             super(PlanetlabTap, self).upload_start_command(overwrite = True)
178
179             # We want to make sure the device is up and running
180             # before the deploy finishes, so we execute now the 
181             # start script. We run it in background, because the 
182             # TAP will live for as long as the process that 
183             # created it is running, and wait until the TAP  
184             # is created. 
185             self._run_in_background()
186             
187             # After creating the TAP, the pl-vif-create.py script
188             # will write the name of the TAP to a file. We wait until
189             # we can read the interface name from the file.
190             vif_name = self.wait_vif_name()
191             self.set("deviceName", vif_name) 
192
193     def do_deploy(self):
194         if not self.node or self.node.state < ResourceState.PROVISIONED:
195             self.ec.schedule(reschedule_delay, self.deploy)
196         else:
197             if not self.get("command"):
198                 self.set("command", self._start_command)
199
200             if not self.get("depends"):
201                 self.set("depends", self._dependencies)
202
203             if not self.get("install"):
204                 self.set("install", self._install)
205
206             self.do_discover()
207             self.do_provision()
208
209             self.set_ready()
210
211     def do_start(self):
212         if self.state == ResourceState.READY:
213             command = self.get("command")
214             self.info("Starting command '%s'" % command)
215
216             self.set_started()
217         else:
218             msg = " Failed to execute command '%s'" % command
219             self.error(msg, out, err)
220             raise RuntimeError, msg
221
222     def do_stop(self):
223         command = self.get('command') or ''
224         
225         if self.state == ResourceState.STARTED:
226             self.info("Stopping command '%s'" % command)
227
228             command = "bash %s" % os.path.join(self.app_home, "stop.sh")
229             (out, err), proc = self.execute_command(command,
230                     blocking = True)
231
232             if err:
233                 msg = " Failed to stop command '%s' " % command
234                 self.error(msg, out, err)
235
236             self.set_stopped()
237
238     @property
239     def state(self):
240         state_check_delay = 0.5
241         if self._state == ResourceState.STARTED and \
242                 tdiffsec(tnow(), self._last_state_check) > state_check_delay:
243
244             if self.get("deviceName"):
245                 (out, err), proc = self.node.execute("ifconfig")
246
247                 if out.strip().find(self.get("deviceName")) == -1: 
248                     # tap is not running is not running (socket not found)
249                     self.set_stopped()
250
251             self._last_state_check = tnow()
252
253         return self._state
254
255     def do_release(self):
256         # Node needs to wait until all associated RMs are released
257         # to be released
258         from nepi.resources.linux.tunnel import LinuxTunnel
259         rms = self.get_connected(LinuxTunnel.get_rtype())
260
261         for rm in rms:
262             if rm.state < ResourceState.STOPPED:
263                 self.ec.schedule(reschedule_delay, self.release)
264                 return 
265
266         super(PlanetlabTap, self).do_release()
267
268     def wait_vif_name(self, exec_run_home = None):
269         """ Waits until the vif_name file for the command is generated, 
270             and returns the vif_name for the device """
271         vif_name = None
272         delay = 0.5
273
274         # The vif_name file will be created in the tap-home, while the
275         # current execution home might be elsewhere to check for errors
276         # (e.g. could be a tunnel-home)
277         if not exec_run_home:
278             exec_run_home = self.run_home
279
280         for i in xrange(20):
281             (out, err), proc = self.node.check_output(self.run_home, "vif_name")
282
283             if proc.poll() > 0:
284                 (out, err), proc = self.node.check_errors(exec_run_home)
285                 
286                 if err.strip():
287                     raise RuntimeError, err
288
289             if out:
290                 vif_name = out.strip()
291                 break
292             else:
293                 time.sleep(delay)
294                 delay = delay * 1.5
295         else:
296             msg = "Couldn't retrieve vif_name"
297             self.error(msg, out, err)
298             raise RuntimeError, msg
299
300         return vif_name
301
302     def gre_connect(self, remote_endpoint, connection_app_home,
303             connection_run_home):
304         gre_connect_command = self._gre_connect_command(
305                 remote_endpoint, connection_run_home)
306
307         # upload command to connect.sh script
308         shfile = os.path.join(connection_app_home, "gre-connect.sh")
309         self.node.upload_command(gre_connect_command,
310                 shfile = shfile,
311                 overwrite = False)
312
313         # invoke connect script
314         cmd = "bash %s" % shfile
315         (out, err), proc = self.node.run(cmd, connection_run_home) 
316              
317         # check if execution errors occurred
318         msg = " Failed to connect endpoints "
319         
320         if proc.poll() or err:
321             self.error(msg, out, err)
322             raise RuntimeError, msg
323     
324         # Wait for pid file to be generated
325         pid, ppid = self.node.wait_pid(connection_run_home)
326         
327         # If the process is not running, check for error information
328         # on the remote machine
329         if not pid or not ppid:
330             (out, err), proc = self.node.check_errors(connection_run_home)
331             # Out is what was written in the stderr file
332             if err:
333                 msg = " Failed to start command '%s' " % command
334                 self.error(msg, out, err)
335                 raise RuntimeError, msg
336         
337         # After creating the TAP, the pl-vif-create.py script
338         # will write the name of the TAP to a file. We wait until
339         # we can read the interface name from the file.
340         vif_name = self.wait_vif_name(exec_run_home = connection_run_home)
341         self.set("deviceName", vif_name) 
342
343         return True
344
345     def udp_connect(self, remote_endpoint, connection_app_home, 
346             connection_run_home, cipher, cipher_key, bwlimit, txqueuelen):
347         udp_connect_command = self._udp_connect_command(
348                 remote_endpoint, connection_run_home,
349                 cipher, cipher_key, bwlimit, txqueuelen)
350
351         # upload command to connect.sh script
352         shfile = os.path.join(connection_app_home, "udp-connect.sh")
353         self.node.upload_command(udp_connect_command,
354                 shfile = shfile,
355                 overwrite = False)
356
357         # invoke connect script
358         cmd = "bash %s" % shfile
359         (out, err), proc = self.node.run(cmd, connection_run_home) 
360              
361         # check if execution errors occurred
362         msg = "Failed to connect endpoints "
363         
364         if proc.poll():
365             self.error(msg, out, err)
366             raise RuntimeError, msg
367     
368         # Wait for pid file to be generated
369         pid, ppid = self.node.wait_pid(connection_run_home)
370         
371         # If the process is not running, check for error information
372         # on the remote machine
373         if not pid or not ppid:
374             (out, err), proc = self.node.check_errors(connection_run_home)
375             # Out is what was written in the stderr file
376             if err:
377                 msg = " Failed to start command '%s' " % command
378                 self.error(msg, out, err)
379                 raise RuntimeError, msg
380
381         return pid, ppid
382
383     def _udp_connect_command(self, remote_endpoint, connection_run_home, 
384             cipher, cipher_key, bwlimit, txqueuelen):
385
386         # Set the remote endpoint
387         self.set("pointopoint", remote_endpoint.get("ip4"))
388
389         remote_ip = socket.gethostbyname(
390                 remote_endpoint.node.get("ip"))
391
392         local_port_file = os.path.join(connection_run_home, 
393                 "local_port")
394
395         remote_port_file = os.path.join(connection_run_home, 
396                 "remote_port")
397
398         ret_file = os.path.join(connection_run_home, 
399                 "ret_file")
400
401         # Generate UDP connect command
402         # Use pl-vif-up.py script to configure TAP with peer info
403         vif_up_command = self._vif_up_command
404         
405         command = ["( "]
406         command.append(vif_up_command)
407
408         # Use pl-vid-udp-connect.py to stablish the tunnel between endpoints
409         command.append(") & (")
410         command.append("sudo -S")
411         command.append("PYTHONPATH=$PYTHONPATH:${SRC}")
412         command.append("python ${SRC}/pl-vif-udp-connect.py")
413         command.append("-t %s" % self.vif_type)
414         command.append("-S %s " % self.sock_name)
415         command.append("-l %s " % local_port_file)
416         command.append("-r %s " % remote_port_file)
417         command.append("-H %s " % remote_ip)
418         command.append("-R %s " % ret_file)
419         if cipher:
420             command.append("-c %s " % cipher)
421         if cipher_key:
422             command.append("-k %s " % cipher_key)
423         if txqueuelen:
424             command.append("-q %s " % txqueuelen)
425         if bwlimit:
426             command.append("-b %s " % bwlimit)
427
428         command.append(")")
429
430         command = " ".join(command)
431         command = self.replace_paths(command)
432
433         return command
434
435     def _gre_connect_command(self, remote_endpoint, connection_run_home): 
436         # Set the remote endpoint
437         self.set("pointopoint", remote_endpoint.get("ip4"))
438         self.set("greRemote", socket.gethostbyname(
439             remote_endpoint.node.get("ip")))
440
441         # Generate GRE connect command
442
443         # Use vif_down command to first kill existing TAP in GRE mode
444         vif_down_command = self._vif_down_command
445
446         # Use pl-vif-up.py script to configure TAP with peer info
447         vif_up_command = self._vif_up_command
448         
449         command = ["("]
450         command.append(vif_down_command)
451         command.append(") ; (")
452         command.append(vif_up_command)
453         command.append(")")
454
455         command = " ".join(command)
456         command = self.replace_paths(command)
457
458         return command
459
460     @property
461     def _start_command(self):
462         if self.gre_enabled:
463             command = []
464         else:
465             command = ["sudo -S python ${SRC}/pl-vif-create.py"]
466             
467             command.append("-t %s" % self.vif_type)
468             command.append("-a %s" % self.get("ip4"))
469             command.append("-n %d" % self.get("prefix4"))
470             command.append("-f %s " % self.vif_name_file)
471             command.append("-S %s " % self.sock_name)
472
473             if self.get("snat") == True:
474                 command.append("-s")
475
476             if self.get("pointopoint"):
477                 command.append("-p %s" % self.get("pointopoint"))
478             
479             if self.get("txqueuelen"):
480                 command.append("-q %s" % self.get("txqueuelen"))
481
482         return " ".join(command)
483
484     @property
485     def _stop_command(self):
486         if self.gre_enabled:
487             command = self._vif_down_command
488         else:
489             command = ["sudo -S "]
490             command.append("PYTHONPATH=$PYTHONPATH:${SRC}")
491             command.append("python ${SRC}/pl-vif-down.py")
492             command.append("-S %s " % self.sock_name)
493             command = " ".join(command)
494
495         return command
496
497     @property
498     def _vif_up_command(self):
499         if self.gre_enabled:
500             device_name = "%s" % self.guid
501         else:
502             device_name = self.get("deviceName")
503
504         # Use pl-vif-up.py script to configure TAP
505         command = ["sudo -S "]
506         command.append("PYTHONPATH=$PYTHONPATH:${SRC}")
507         command.append("python ${SRC}/pl-vif-up.py")
508         command.append("-u %s" % self.node.get("username"))
509         command.append("-N %s" % device_name)
510         command.append("-t %s" % self.vif_type)
511         command.append("-a %s" % self.get("ip4"))
512         command.append("-n %d" % self.get("prefix4"))
513
514         if self.get("snat") == True:
515             command.append("-s")
516
517         if self.get("pointopoint"):
518             command.append("-p %s" % self.get("pointopoint"))
519         
520         if self.get("txqueuelen"):
521             command.append("-q %s" % self.get("txqueuelen"))
522
523         if self.gre_enabled:
524             command.append("-g %s" % self.get("greKey"))
525             command.append("-G %s" % self.get("greRemote"))
526         
527         command.append("-f %s " % self.vif_name_file)
528
529         return " ".join(command)
530
531     @property
532     def _vif_down_command(self):
533         if self.gre_enabled:
534             device_name = "%s" % self.guid
535         else:
536             device_name = self.get("deviceName")
537
538         command = ["sudo -S "]
539         command.append("PYTHONPATH=$PYTHONPATH:${SRC}")
540         command.append("python ${SRC}/pl-vif-down.py")
541         command.append("-N %s " % device_name)
542         
543         if self.gre_enabled:
544             command.append("-u %s" % self.node.get("username"))
545             command.append("-t %s" % self.vif_type)
546             command.append("-D")
547
548         return " ".join(command)
549
550     @property
551     def vif_type(self):
552         return "IFF_TAP"
553
554     @property
555     def vif_name_file(self):
556         return os.path.join(self.run_home, "vif_name")
557
558     @property
559     def sock_name(self):
560         return os.path.join(self.run_home, "tap.sock")
561
562     @property
563     def _dependencies(self):
564         return "mercurial make gcc"
565
566     @property
567     def _install(self):
568         # Install python-vsys and python-passfd
569         install_vsys = ( " ( "
570                     "   python -c 'import vsys, os;  vsys.__version__ == \"%(version)s\" or os._exit(1)' "
571                     " ) "
572                     " || "
573                     " ( "
574                     "   cd ${SRC} ; "
575                     "   hg clone http://nepi.inria.fr/code/python-vsys ; "
576                     "   cd python-vsys ; "
577                     "   make all ; "
578                     "   sudo -S make install "
579                     " )" ) % ({
580                         "version": PYTHON_VSYS_VERSION
581                         })
582
583         install_passfd = ( " ( python -c 'import passfd' ) "
584                     " || "
585                     " ( "
586                     "   cd ${SRC} ; "
587                     "   hg clone http://nepi.inria.fr/code/python-passfd ; "
588                     "   cd python-passfd ; "
589                     "   make all ; "
590                     "   sudo -S make install "
591                     " )" )
592
593         return "%s ; %s" % ( install_vsys, install_passfd )
594
595     def valid_connection(self, guid):
596         # TODO: Validate!
597         return True
598