8c7402af7f1950e99aa506d538816d164f1cdded
[nepi.git] / src / nepi / resources / linux / tunnel.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.resource import clsinit_copy, ResourceState, \
21         reschedule_delay
22 from nepi.resources.linux.application import LinuxApplication
23 from nepi.util.timefuncs import tnow, tdiffsec
24
25 import os
26 import time
27
28 state_check_delay = 0.5
29
30 @clsinit_copy
31 class LinuxTunnel(LinuxApplication):
32     _rtype = "abstract::LinuxTunnel"
33     _help = "Constructs a tunnel between two Linux endpoints"
34     _backend = "linux"
35
36     def __init__(self, ec, guid):
37         super(LinuxTunnel, self).__init__(ec, guid)
38         self._home = "tunnel-%s" % self.guid
39
40     def log_message(self, msg):
41         return " guid %d - tunnel %s - %s - %s " % (self.guid, 
42                 self.endpoint1.node.get("hostname"), 
43                 self.endpoint2.node.get("hostname"), 
44                 msg)
45
46     def get_endpoints(self):
47         """ Returns the list of RM that are endpoints to the tunnel 
48         """
49         raise NotImplementedError
50
51     @property
52     def endpoint1(self):
53         endpoints = self.get_endpoints()
54         if endpoints: return endpoints[0]
55         return None
56
57     @property
58     def endpoint2(self):
59         endpoints = self.get_endpoints()
60         if endpoints and len(endpoints) > 1: return endpoints[1]
61         return None
62
63     def app_home(self, endpoint):
64         return os.path.join(endpoint.node.exp_home, self._home)
65
66     def run_home(self, endpoint):
67         return os.path.join(self.app_home(endpoint), self.ec.run_id)
68
69     def initiate_connection(self, endpoint, remote_endpoint):
70         raise NotImplementedError
71
72     def establish_connection(self, endpoint, remote_endpoint, data):
73         raise NotImplementedError
74
75     def verify_connection(self, endpoint, remote_endpoint):
76         raise NotImplementedError
77
78     def terminate_connection(self, endpoint, remote_endpoint):
79         raise NotImplementedError
80
81     def check_state_connection(self, endpoint, remote_endpoint):
82         raise NotImplementedError
83
84     def do_provision(self):
85         # create run dir for tunnel on each node 
86         self.endpoint1.node.mkdir(self.run_home(self.endpoint1))
87         self.endpoint2.node.mkdir(self.run_home(self.endpoint2))
88
89         # Start 2 step connection
90         # Initiate connection from endpoint 1 to endpoint 2
91         data1 = self.initiate_connection(self.endpoint1, self.endpoint2)
92
93         # Initiate connection from endpoint 2 to endpoint 1
94         data2 = self.initiate_connection(self.endpoint2, self.endpoint1)
95
96         # Establish connection from endpoint 1 to endpoint 2
97         self.establish_connection(self.endpoint1, self.endpoint2, data2)
98         
99         # Establish connection from endpoint 2 to endpoint 1
100         self.establish_connection(self.endpoint2, self.endpoint1, data1)
101
102         # check if connection was successful on both sides
103         self.verify_connection(self.endpoint1, self.endpoint2)
104         self.verify_connection(self.endpoint2, self.endpoint1)
105        
106         self.info("Provisioning finished")
107  
108         self.set_provisioned()
109
110     def do_deploy(self):
111         if (not self.endpoint1 or self.endpoint1.state < ResourceState.READY) or \
112             (not self.endpoint2 or self.endpoint2.state < ResourceState.READY):
113             self.ec.schedule(reschedule_delay, self.deploy)
114         else:
115             self.do_discover()
116             self.do_provision()
117  
118             self.set_ready()
119
120     def do_start(self):
121         if self.state == ResourceState.READY:
122             command = self.get("command")
123             self.info("Starting command '%s'" % command)
124             
125             self.set_started()
126         else:
127             msg = " Failed to execute command '%s'" % command
128             self.error(msg, out, err)
129             raise RuntimeError, msg
130
131     def do_stop(self):
132         """ Stops application execution
133         """
134         if self.state == ResourceState.STARTED:
135             self.info("Stopping tunnel")
136
137             self.terminate_connection(self.endpoint1, self.endpoint2)
138             self.terminate_connection(self.endpoint2, self.endpoint1)
139
140             self.set_stopped()
141
142     @property
143     def state(self):
144         """ Returns the state of the application
145         """
146         if self._state == ResourceState.STARTED:
147             # In order to avoid overwhelming the remote host and
148             # the local processor with too many ssh queries, the state is only
149             # requested every 'state_check_delay' seconds.
150             if tdiffsec(tnow(), self._last_state_check) > state_check_delay:
151                 
152                 self.check_state_connection()
153
154                 self._last_state_check = tnow()
155
156         return self._state
157
158     def valid_connection(self, guid):
159         # TODO: Validate!
160         return True
161