Adding CCN RMs for Linux Backend
[nepi.git] / src / nepi / resources / linux / ccnd.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.trace import Trace, TraceAttr
22 from nepi.execution.resource import ResourceManager, clsinit_copy, ResourceState
23 from nepi.resources.linux.application import LinuxApplication
24 from nepi.resources.linux.node import OSType
25
26 from nepi.util.sshfuncs import ProcStatus
27 from nepi.util.timefuncs import strfnow, strfdiff
28 import os
29
30 @clsinit_copy
31 class LinuxCCND(LinuxApplication):
32     _rtype = "LinuxCCND"
33
34     @classmethod
35     def _register_attributes(cls):
36         debug = Attribute("debug", "Sets the CCND_DEBUG environmental variable. "
37             " Allowed values are : \n"
38             "  0 - no messages \n"
39             "  1 - basic messages (any non-zero value gets these) \n"
40             "  2 - interest messages \n"
41             "  4 - content messages \n"
42             "  8 - matching details \n"
43             "  16 - interest details \n"
44             "  32 - gory interest details \n"
45             "  64 - log occasional human-readable timestamps \n"
46             "  128 - face registration debugging \n"
47             "  -1 - max logging \n"
48             "  Or apply bitwise OR to these values to get combinations of them",
49             flags = Flags.ExecReadOnly)
50
51         port = Attribute("port", "Sets the CCN_LOCAL_PORT environmental variable. "
52             "Defaults to 9695 ", 
53             flags = Flags.ExecReadOnly)
54  
55         sockname = Attribute("sockname",
56             "Sets the CCN_LOCAL_SCOKNAME environmental variable. "
57             "Defaults to /tmp/.ccnd.sock", 
58             flags = Flags.ExecReadOnly)
59
60         capacity = Attribute("capacity",
61             "Sets the CCND_CAP environmental variable. "
62             "Capacity limit in terms of ContentObjects",
63             flags = Flags.ExecReadOnly)
64
65         mtu = Attribute("mtu", "Sets the CCND_MTU environmental variable. ",
66             flags = Flags.ExecReadOnly)
67   
68         data_pause = Attribute("dataPauseMicrosec",
69             "Sets the CCND_DATA_PAUSE_MICROSEC environmental variable. ",
70             flags = Flags.ExecReadOnly)
71
72         default_stale = Attribute("defaultTimeToStale",
73              "Sets the CCND_DEFAULT_TIME_TO_STALE environmental variable. ",
74             flags = Flags.ExecReadOnly)
75
76         max_stale = Attribute("maxTimeToStale",
77             "Sets the CCND_MAX_TIME_TO_STALE environmental variable. ",
78             flags = Flags.ExecReadOnly)
79
80         max_rte = Attribute("maxRteMicrosec",
81             "Sets the CCND_MAX_RTE_MICROSEC environmental variable. ",
82             flags = Flags.ExecReadOnly)
83
84         keystore = Attribute("keyStoreDirectory",
85             "Sets the CCND_KEYSTORE_DIRECTORY environmental variable. ",
86             flags = Flags.ExecReadOnly)
87
88         listen_on = Attribute("listenOn",
89             "Sets the CCND_LISTEN_ON environmental variable. ",
90             flags = Flags.ExecReadOnly)
91
92         autoreg = Attribute("autoreg",
93             "Sets the CCND_AUTOREG environmental variable. ",
94             flags = Flags.ExecReadOnly)
95
96         prefix = Attribute("prefix",
97             "Sets the CCND_PREFIX environmental variable. ",
98             flags = Flags.ExecReadOnly)
99
100         cls._register_attribute(debug)
101         cls._register_attribute(port)
102         cls._register_attribute(sockname)
103         cls._register_attribute(capacity)
104         cls._register_attribute(mtu)
105         cls._register_attribute(data_pause)
106         cls._register_attribute(default_stale)
107         cls._register_attribute(max_stale)
108         cls._register_attribute(max_rte)
109         cls._register_attribute(keystore)
110         cls._register_attribute(listen_on)
111         cls._register_attribute(autoreg)
112         cls._register_attribute(prefix)
113
114     @classmethod
115     def _register_traces(cls):
116         log = Trace("log", "CCND log output")
117         status = Trace("status", "ccndstatus output")
118
119         cls._register_trace(log)
120         cls._register_trace(status)
121
122     def __init__(self, ec, guid):
123         super(LinuxCCND, self).__init__(ec, guid)
124
125     def deploy(self):
126         if not self.get("command"):
127             self.set("command", self._default_command)
128         
129         if not self.get("depends"):
130             self.set("depends", self._default_dependencies)
131
132         if not self.get("sources"):
133             self.set("sources", self._default_sources)
134
135         if not self.get("build"):
136             self.set("build", self._default_build)
137
138         if not self.get("install"):
139             self.set("install", self._default_install)
140
141         if not self.get("env"):
142             self.set("env", self._default_environment)
143
144         super(LinuxCCND, self).deploy()
145
146     def stop(self):
147         command = self.get('command') or ''
148         state = self.state
149         
150         if state == ResourceState.STARTED:
151             self.info("Stopping command '%s'" % command)
152
153             command = "ccndstop"
154             env = self.get("env") 
155
156             # replace application specific paths in the command
157             command = self.replace_paths(command)
158             env = env and self.replace_paths(env)
159
160             # Upload the command to a file, and execute asynchronously
161             self.node.run_and_wait(command, self.app_home,
162                         shfile = "ccndstop.sh",
163                         env = env,
164                         pidfile = "ccndstop_pidfile", 
165                         ecodefile = "ccndstop_exitcode", 
166                         stdout = "ccndstop_stdout", 
167                         stderr = "ccndstop_stderr")
168
169
170             super(LinuxCCND, self).stop()
171
172     @property
173     def state(self):
174         if self._state == ResourceState.STARTED:
175             # we executed the ccndstart command. This should have started
176             # a remote ccnd daemon. The way we can query wheather ccnd is
177             # still running is by executing the ccndstatus command.
178             state_check_delay = 0.5
179             if strfdiff(strfnow(), self._last_state_check) > state_check_delay:
180                 env = self.get('env') or ""
181                 environ = self.node.format_environment(env, inline = True)
182                 command = environ + "; ccndstatus"
183                 command = self.replace_paths(command)
184             
185                 (out, err), proc = self.node.execute(command)
186
187                 retcode = proc.poll()
188
189                 if retcode == 1 and err.find("No such file or directory") > -1:
190                     # ccnd is not running (socket not found)
191                     self._state = ResourceState.FINISHED
192                 elif retcode:
193                     # other error
194                     msg = " Failed to execute command '%s'" % command
195                     self.error(msg, out, err)
196                     self._state = ResourceState.FAILED
197
198                 self._last_state_check = strfnow()
199
200         return self._state
201
202     @property
203     def _default_command(self):
204         return "ccndstart"
205
206     @property
207     def _default_dependencies(self):
208         if self.node.os in [ OSType.FEDORA_12 , OSType.FEDORA_14 ]:
209             return ( " autoconf openssl-devel  expat-devel libpcap-devel "
210                 " ecryptfs-utils-devel libxml2-devel automake gawk " 
211                 " gcc gcc-c++ git pcre-devel make ")
212         elif self.node.os in [ OSType.UBUNTU , OSType.DEBIAN]:
213             return ( " autoconf libssl-dev libexpat-dev libpcap-dev "
214                 " libecryptfs0 libxml2-utils automake gawk gcc g++ "
215                 " git-core pkg-config libpcre3-dev make ")
216         return ""
217
218     @property
219     def _default_sources(self):
220         return "http://www.ccnx.org/releases/ccnx-0.7.1.tar.gz"
221
222     @property
223     def _default_build(self):
224         sources = self.get("sources").split(" ")[0]
225         sources = os.path.basename(sources)
226
227         return (
228             # Evaluate if ccnx binaries are already installed
229             " ( "
230                 " test -f ${EXP_HOME}/ccnx/bin/ccnd && "
231                 " echo 'sources found, nothing to do' "
232             " ) || ( "
233             # If not, untar and build
234                 " ( "
235                     " mkdir -p ${SOURCES}/ccnx && "
236                     " tar xf ${SOURCES}/%(sources)s --strip-components=1 -C ${SOURCES}/ccnx "
237                  " ) && "
238                     "cd ${SOURCES}/ccnx && "
239                     # Just execute and silence warnings...
240                     " ( ./configure && make ) "
241              " )") % ({ 'sources': sources })
242
243     @property
244     def _default_install(self):
245         return (
246             # Evaluate if ccnx binaries are already installed
247             " ( "
248                 " test -f ${EXP_HOME}/ccnx/bin/ccnd && "
249                 " echo 'sources found, nothing to do' "
250             " ) || ( "
251             # If not, install
252                 "  mkdir -p ${EXP_HOME}/ccnx/bin && "
253                 "  cp -r ${SOURCES}/ccnx ${EXP_HOME}"
254             " )"
255             )
256
257     @property
258     def _default_environment(self):
259         envs = dict({
260             "debug": "CCND_DEBUG",
261             "port": "CCN_LOCAL_PORT",
262             "sockname" : "CCN_LOCAL_SOCKNAME",
263             "capacity" : "CCND_CAP",
264             "mtu" : "CCND_MTU",
265             "dataPauseMicrosec" : "CCND_DATA_PAUSE_MICROSEC",
266             "defaultTimeToStale" : "CCND_DEFAULT_TIME_TO_STALE",
267             "maxTimeToStale" : "CCND_MAX_TIME_TO_STALE",
268             "maxRteMicrosec" : "CCND_MAX_RTE_MICROSEC",
269             "keyStoreDirectory" : "CCND_KEYSTORE_DIRECTORY",
270             "listenOn" : "CCND_LISTEN_ON",
271             "autoreg" : "CCND_AUTOREG",
272             "prefix" : "CCND_PREFIX",
273             })
274
275         env = "PATH=$PATH:${EXP_HOME}/ccnx/bin "
276         env += " ".join(map(lambda k: "%s=%s" % (envs.get(k), self.get(k)) \
277             if self.get(k) else "", envs.keys()))
278         
279         return env            
280         
281     def valid_connection(self, guid):
282         # TODO: Validate!
283         return True
284