63ae086c593752f3a28d779bb19c049363c4bdd6
[nepi.git] / src / nepi / resources / linux / udptunnel.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.tunnel import LinuxTunnel
24 from nepi.util.sshfuncs import ProcStatus
25 from nepi.util.timefuncs import tnow, tdiffsec
26
27 import os
28 import socket
29 import time
30
31 @clsinit_copy
32 class LinuxUdpTunnel(LinuxTunnel):
33     _rtype = "LinuxUdpTunnel"
34     _help = "Constructs a tunnel between two Linux endpoints using a UDP connection "
35     _backend = "linux"
36
37     @classmethod
38     def _register_attributes(cls):
39         cipher = Attribute("cipher",
40                "Cipher to encript communication. "
41                 "One of PLAIN, AES, Blowfish, DES, DES3. ",
42                 default = None,
43                 allowed = ["PLAIN", "AES", "Blowfish", "DES", "DES3"],
44                 type = Types.Enumerate, 
45                 flags = Flags.Design)
46
47         cipher_key = Attribute("cipherKey",
48                 "Specify a symmetric encryption key with which to protect "
49                 "packets across the tunnel. python-crypto must be installed "
50                 "on the system." ,
51                 flags = Flags.Design)
52
53         txqueuelen = Attribute("txQueueLen",
54                 "Specifies the interface's transmission queue length. "
55                 "Defaults to 1000. ", 
56                 type = Types.Integer, 
57                 flags = Flags.Design)
58
59         bwlimit = Attribute("bwLimit",
60                 "Specifies the interface's emulated bandwidth in bytes "
61                 "per second.",
62                 type = Types.Integer, 
63                 flags = Flags.Design)
64
65         cls._register_attribute(cipher)
66         cls._register_attribute(cipher_key)
67         cls._register_attribute(txqueuelen)
68         cls._register_attribute(bwlimit)
69
70     def __init__(self, ec, guid):
71         super(LinuxUdpTunnel, self).__init__(ec, guid)
72         self._home = "udp-tunnel-%s" % self.guid
73         self._pids = dict()
74
75     def log_message(self, msg):
76         return " guid %d - udptunnel %s - %s - %s " % (self.guid, 
77                 self.endpoint1.node.get("hostname"), 
78                 self.endpoint2.node.get("hostname"), 
79                 msg)
80
81     def get_endpoints(self):
82         """ Returns the list of RM that are endpoints to the tunnel 
83         """
84         connected = []
85         for guid in self.connections:
86             rm = self.ec.get_resource(guid)
87             if hasattr(rm, "udp_connect"):
88                 connected.append(rm)
89         return connected
90
91     def initiate_connection(self, endpoint, remote_endpoint):
92         cipher = self.get("cipher")
93         cipher_key = self.get("cipherKey")
94         bwlimit = self.get("bwLimit")
95         txqueuelen = self.get("txQueueLen")
96        
97         # Return the command to execute to initiate the connection to the
98         # other endpoint
99         connection_app_home = self.app_home(endpoint)
100         connection_run_home = self.run_home(endpoint)
101         pid, ppid = endpoint.udp_connect(
102                 remote_endpoint, 
103                 connection_app_home,
104                 connection_run_home, 
105                 cipher, cipher_key, bwlimit, txqueuelen)
106
107         port = self.wait_local_port(endpoint)
108
109         self._pids[endpoint] = (pid, ppid)
110
111         return port
112
113     def establish_connection(self, endpoint, remote_endpoint, port):
114         self.upload_remote_port(endpoint, port)
115
116     def verify_connection(self, endpoint, remote_endpoint):
117         self.wait_result(endpoint)
118
119     def terminate_connection(self, endpoint, remote_endpoint):
120         pid, ppid = self._pids[endpoint]
121
122         if pid and ppid:
123             (out, err), proc = endpoint.node.kill(pid, ppid, 
124                     sudo = True) 
125
126             # check if execution errors occurred
127             if proc.poll() and err:
128                 msg = " Failed to STOP tunnel"
129                 self.error(msg, out, err)
130                 raise RuntimeError, msg
131
132     def check_state_connection(self):
133         # Make sure the process is still running in background
134         # No execution errors occurred. Make sure the background
135         # process with the recorded pid is still running.
136         pid1, ppid1 = self._pids[self.endpoint1]
137         pid2, ppid2 = self._pids[self.endpoint2]
138
139         status1 = self.endpoint1.node.status(pid1, ppid1)
140         status2 = self.endpoint2.node.status(pid2, ppid2)
141
142         if status1 == ProcStatus.FINISHED and \
143                 status2 == ProcStatus.FINISHED:
144
145             # check if execution errors occurred
146             (out1, err1), proc1 = self.endpoint1.node.check_errors(
147                     self.run_home(self.endpoint1))
148
149             (out2, err2), proc2 = self.endpoint2.node.check_errors(
150                     self.run_home(self.endpoint2))
151
152             if err1 or err2: 
153                 msg = "Error occurred in tunnel"
154                 self.error(msg, err1, err2)
155                 self.fail()
156             else:
157                 self.set_stopped()
158
159     def wait_local_port(self, endpoint):
160         """ Waits until the local_port file for the endpoint is generated, 
161         and returns the port number 
162         
163         """
164         return self.wait_file(endpoint, "local_port")
165
166     def wait_result(self, endpoint):
167         """ Waits until the return code file for the endpoint is generated 
168         
169         """ 
170         return self.wait_file(endpoint, "ret_file")
171  
172     def wait_file(self, endpoint, filename):
173         """ Waits until file on endpoint is generated """
174         result = None
175         delay = 1.0
176
177         for i in xrange(20):
178             (out, err), proc = endpoint.node.check_output(
179                     self.run_home(endpoint), filename)
180
181             if out:
182                 result = out.strip()
183                 break
184             else:
185                 time.sleep(delay)
186                 delay = delay * 1.5
187         else:
188             msg = "Couldn't retrieve %s" % filename
189             self.error(msg, out, err)
190             raise RuntimeError, msg
191
192         return result
193
194     def upload_remote_port(self, endpoint, port):
195         # upload remote port number to file
196         port = "%s\n" % port
197         endpoint.node.upload(port,
198                 os.path.join(self.run_home(endpoint), "remote_port"),
199                 text = True, 
200                 overwrite = False)
201