4f1cf0b5e5dfe63d9f319667669081921391e2af
[nepi.git] / src / nepi / resources / linux / ns3 / ns3simulation.py
1 #
2 #    NEPI, a framework to manage network experiments
3 #    Copyright (C) 2014 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, \
23         ResourceState, ResourceFactory, reschedule_delay
24 from nepi.resources.linux.application import LinuxApplication
25 from nepi.util.timefuncs import tnow, tdiffsec
26 from nepi.resources.ns3.ns3simulation import NS3Simulation
27 from nepi.resources.ns3.ns3wrapper import SIMULATOR_UUID, GLOBAL_VALUE_UUID, \
28         IPV4_GLOBAL_ROUTING_HELPER_UUID
29 from nepi.resources.linux.ns3.ns3client import LinuxNS3Client
30
31 import os
32 import time
33 import threading
34
35 ## TODO: Clean up DCE part. All that is DCE specific should go
36 ##       in the linux ns3dceapplication.py
37
38 @clsinit_copy
39 class LinuxNS3Simulation(LinuxApplication, NS3Simulation):
40     _rtype = "LinuxNS3Simulation"
41
42     @classmethod
43     def _register_attributes(cls):
44         impl_type = Attribute("simulatorImplementationType",
45                 "The object class to use as the simulator implementation",
46             allowed = ["ns3::DefaultSimulatorImpl", "ns3::RealtimeSimulatorImpl"],
47             default = "ns3::DefaultSimulatorImpl",
48             type = Types.Enumerate,
49             flags = Flags.Design)
50
51         sched_type = Attribute("schedulerType",
52                 "The object class to use as the scheduler implementation",
53                 allowed = ["ns3::MapScheduler",
54                             "ns3::ListScheduler",
55                             "ns3::HeapScheduler",
56                             "ns3::MapScheduler",
57                             "ns3::CalendarScheduler"
58                     ],
59             default = "ns3::MapScheduler",
60             type = Types.Enumerate,
61             flags = Flags.Design)
62
63         check_sum = Attribute("checksumEnabled",
64                 "A global switch to enable all checksums for all protocols",
65             default = False,
66             type = Types.Bool,
67             flags = Flags.Design)
68
69         ns_log = Attribute("nsLog",
70             "NS_LOG environment variable. " \
71                     " Will only generate output if ns-3 is compiled in DEBUG mode. ",
72             flags = Flags.Design)
73
74         verbose = Attribute("verbose",
75             "True to output debugging info from the ns3 client-server communication",
76             type = Types.Bool,
77             flags = Flags.Design)
78
79         enable_dump = Attribute("enableDump",
80             "Enable dumping the remote executed ns-3 commands to a script "
81             "in order to later reproduce and debug the experiment",
82             type = Types.Bool,
83             default = False,
84             flags = Flags.Design)
85
86         build_mode = Attribute("buildMode",
87             "Mode used to build ns-3 with waf. One if: debug, release, oprimized ",
88             default = "optimized", 
89             allowed = ["debug", "release", "optimized"],
90             type = Types.Enumerate,
91             flags = Flags.Design)
92
93         ns3_version = Attribute("ns3Version",
94             "Version of ns-3 to install from nsam repo",
95             #default = "ns-3.19", 
96             default = "ns-3-dev", 
97             flags = Flags.Design)
98
99         pybindgen_version = Attribute("pybindgenVersion",
100             "Version of pybindgen to install from bazar repo",
101             #default = "864", 
102             default = "868", 
103             flags = Flags.Design)
104
105         populate_routing_tables = Attribute("populateRoutingTables",
106             "Invokes  Ipv4GlobalRoutingHelper.PopulateRoutingTables() ",
107             default = False,
108             type = Types.Bool,
109             flags = Flags.Design)
110
111         cls._register_attribute(impl_type)
112         cls._register_attribute(sched_type)
113         cls._register_attribute(check_sum)
114         cls._register_attribute(ns_log)
115         cls._register_attribute(enable_dump)
116         cls._register_attribute(verbose)
117         cls._register_attribute(build_mode)
118         cls._register_attribute(ns3_version)
119         cls._register_attribute(pybindgen_version)
120         cls._register_attribute(populate_routing_tables)
121
122     def __init__(self, ec, guid):
123         LinuxApplication.__init__(self, ec, guid)
124         NS3Simulation.__init__(self)
125
126         self._client = None
127         self._home = "ns3-simu-%s" % self.guid
128         self._socket_name = "ns3-%s.sock" % os.urandom(4).encode('hex')
129         self._dce_manager_helper_uuid = None
130         self._dce_application_helper_uuid = None
131         self._enable_dce = None
132
133     @property
134     def socket_name(self):
135         return self._socket_name
136
137     @property
138     def remote_socket(self):
139         return os.path.join(self.run_home, self.socket_name)
140
141     @property
142     def ns3_build_home(self):
143         return os.path.join(self.node.bin_dir, "ns-3", self.get("ns3Version"), 
144                 self.get("buildMode"), "build")
145
146     def trace(self, name, attr = TraceAttr.ALL, block = 512, offset = 0):
147         self._client.flush() 
148         return LinuxApplication.trace(self, name, attr, block, offset)
149
150     def upload_sources(self):
151         self.node.mkdir(os.path.join(self.node.src_dir, "ns3wrapper"))
152
153         # upload ns3 wrapper python script
154         ns3_wrapper = os.path.join(os.path.dirname(__file__), "..", "..", "ns3", 
155                 "ns3wrapper.py")
156
157         self.node.upload(ns3_wrapper,
158                 os.path.join(self.node.src_dir, "ns3wrapper", "ns3wrapper.py"),
159                 overwrite = False)
160
161         # upload ns3 wrapper debug python script
162         ns3_wrapper_debug = os.path.join(os.path.dirname(__file__), "..", "..", "ns3", 
163                 "ns3wrapper_debug.py")
164
165         self.node.upload(ns3_wrapper_debug,
166                 os.path.join(self.node.src_dir, "ns3wrapper", "ns3wrapper_debug.py"),
167                 overwrite = False)
168
169         # upload ns3_server python script
170         ns3_server = os.path.join(os.path.dirname(__file__), "..", "..", "ns3",
171                 "ns3server.py")
172
173         self.node.upload(ns3_server,
174                 os.path.join(self.node.src_dir, "ns3wrapper", "ns3server.py"),
175                 overwrite = False)
176
177         if self.node.use_rpm:
178             # upload pygccxml sources
179             pygccxml_tar = os.path.join(os.path.dirname(__file__), "dependencies",
180                     "%s.tar.gz" % self.pygccxml_version)
181
182             self.node.upload(pygccxml_tar,
183                     os.path.join(self.node.src_dir, "%s.tar.gz" % self.pygccxml_version),
184                     overwrite = False)
185
186         # Upload user defined ns-3 sources
187         self.node.mkdir(os.path.join(self.node.src_dir, "ns-3"))
188         src_dir = os.path.join(self.node.src_dir, "ns-3")
189
190         super(LinuxNS3Simulation, self).upload_sources(src_dir = src_dir)
191     
192     def upload_extra_sources(self, sources = None, src_dir = None):
193         return super(LinuxNS3Simulation, self).upload_sources(
194                 sources = sources, 
195                 src_dir = src_dir)
196
197     def upload_start_command(self):
198         command = self.get("command")
199         env = self.get("env")
200
201         # We want to make sure the ccnd is running
202         # before the experiment starts.
203         # Run the command as a bash script in background,
204         # in the host ( but wait until the command has
205         # finished to continue )
206         env = self.replace_paths(env)
207         command = self.replace_paths(command)
208
209         shfile = os.path.join(self.app_home, "start.sh")
210         self.node.upload_command(command, 
211                     shfile = shfile,
212                     env = env,
213                     overwrite = True)
214
215         # Run the ns3wrapper 
216         self._run_in_background()
217
218     def configure(self):
219         if self.has_changed("simulatorImplementationType"):
220             simu_type = self.get("simulatorImplementationType")
221             stype = self.create("StringValue", simu_type)
222             self.invoke(GLOBAL_VALUE_UUID, "Bind", "SimulatorImplementationType", stype)
223
224         if self.has_changed("checksumEnabled"):
225             check_sum = self.get("checksumEnabled")
226             btrue = self.create("BooleanValue", check_sum)    
227             self.invoke(GLOBAL_VALUE_UUID, "Bind", "ChecksumEnabled", btrue)
228         
229         if self.has_changed("schedulerType"):
230             sched_type = self.get("schedulerType")
231             stype = self.create("StringValue", sched_type)
232             self.invoke(GLOBAL_VALUE_UUID, "Bind", "SchedulerType", btrue)
233         
234     def do_deploy(self):
235         if not self.node or self.node.state < ResourceState.READY:
236             self.debug("---- RESCHEDULING DEPLOY ---- node state %s " % self.node.state )
237             
238             # ccnd needs to wait until node is deployed and running
239             self.ec.schedule(reschedule_delay, self.deploy)
240         else:
241             if not self.get("command"):
242                 self.set("command", self._start_command)
243             
244             if not self.get("depends"):
245                 self.set("depends", self._dependencies)
246
247             if self.get("sources"):
248                 sources = self.get("sources")
249                 source = sources.split(" ")[0]
250                 basename = os.path.basename(source)
251                 version = ( basename.strip().replace(".tar.gz", "")
252                     .replace(".tar","")
253                     .replace(".gz","")
254                     .replace(".zip","") )
255
256                 self.set("ns3Version", version)
257                 self.set("sources", source)
258
259             if not self.get("build"):
260                 self.set("build", self._build)
261
262             if not self.get("install"):
263                 self.set("install", self._install)
264
265             if not self.get("env"):
266                 self.set("env", self._environment)
267
268             self.do_discover()
269             self.do_provision()
270
271             # Create client
272             self._client = LinuxNS3Client(self)
273
274             self.configure()
275             
276             self.set_ready()
277
278     def do_start(self):
279         """ Starts simulation execution
280
281         """
282         self.info("Starting")
283
284         if self.state == ResourceState.READY:
285             if self.get("populateRoutingTables") == True:
286                 self.invoke(IPV4_GLOBAL_ROUTING_HELPER_UUID, "PopulateRoutingTables")
287
288             self._client.start()
289
290             # Wait until the Simulation is actually started...
291             is_running = False
292             for i in xrange(1000):
293                 is_running = self.invoke(SIMULATOR_UUID, "isRunning")
294             
295                 if is_running:
296                     break
297                 else:
298                     time.sleep(1)
299             else:
300                 if not is_running:
301                     msg = " Simulation did not start"
302                     self.error(msg)
303                     raise RuntimeError
304
305             self.set_started()
306         else:
307             msg = " Failed to execute command '%s'" % command
308             self.error(msg, out, err)
309             raise RuntimeError, msg
310
311     def do_stop(self):
312         """ Stops simulation execution
313
314         """
315         if self.state == ResourceState.STARTED:
316             self._client.stop() 
317             self.set_stopped()
318
319     def do_release(self):
320         self.info("Releasing resource")
321
322         tear_down = self.get("tearDown")
323         if tear_down:
324             self.node.execute(tear_down)
325
326         self.do_stop()
327         self._client.shutdown()
328         LinuxApplication.do_stop(self)
329         
330         super(LinuxApplication, self).do_release()
331
332     @property
333     def enable_dce(self):
334         if self._enable_dce is None:
335             from nepi.resources.ns3.ns3dceapplication import NS3BaseDceApplication
336             rclass = ResourceFactory.get_resource_type(
337                     NS3BaseDceApplication.get_rtype())
338             
339             self._enable_dce = False
340             for guid in self.ec.resources:
341                 rm = self.ec.get_resource(guid)
342                 if isinstance(rm, rclass):
343                     self._enable_dce = True
344                     break
345
346         return self._enable_dce
347
348     @property
349     def _start_command(self):
350         command = [] 
351
352         command.append("PYTHONPATH=$PYTHONPATH:${SRC}/ns3wrapper/")
353         
354         command.append("python ${SRC}/ns3wrapper/ns3server.py -S %s" % \
355                 os.path.basename(self.remote_socket) )
356
357         ns_log = self.get("nsLog")
358         if ns_log:
359             command.append("-L '%s'" % ns_log)
360
361         if self.get("enableDump"):
362             command.append("-D")
363
364         if self.get("verbose"):
365             command.append("-v")
366
367         command = " ".join(command)
368         return command
369
370     @property
371     def _dependencies(self):
372         if self.node.use_rpm:
373             return ( " gcc gcc-c++ python python-devel mercurial bzr tcpdump socat gccxml unzip")
374         elif self.node.use_deb:
375             return ( " gcc g++ python python-dev mercurial bzr tcpdump socat gccxml python-pygccxml unzip")
376         return ""
377
378     @property
379     def ns3_repo(self):
380         return "http://code.nsnam.org"
381
382     @property
383     def pygccxml_version(self):
384         return "pygccxml-1.0.0"
385
386     @property
387     def dce_repo(self):
388         return "http://code.nsnam.org/ns-3-dce"
389         #eturn "http://code.nsnam.org/epmancini/ns-3-dce"
390
391     @property
392     def _build(self):
393         # If the user defined local sources for ns-3, we uncompress the sources
394         # on the remote sources directory. Else we clone ns-3 from the official repo.
395         source = self.get("sources")
396         if not source:
397             clone_ns3_cmd = "hg clone %(ns3_repo)s/%(ns3_version)s ${SRC}/ns-3/%(ns3_version)s" \
398                     % {
399                         'ns3_version': self.get("ns3Version"),
400                         'ns3_repo':  self.ns3_repo,       
401                       }
402         else:
403             if source.find(".tar.gz") > -1:
404                 clone_ns3_cmd = ( 
405                             "tar xzf ${SRC}/ns-3/%(basename)s " 
406                             " --strip-components=1 -C ${SRC}/ns-3/%(ns3_version)s "
407                             ) % {
408                                 'basename': os.path.basename(source),
409                                 'ns3_version': self.get("ns3Version"),
410                                 }
411             elif source.find(".tar") > -1:
412                 clone_ns3_cmd = ( 
413                             "tar xf ${SRC}/ns-3/%(basename)s " 
414                             " --strip-components=1 -C ${SRC}/ns-3/%(ns3_version)s "
415                             ) % {
416                                 'basename': os.path.basename(source),
417                                 'ns3_version': self.get("ns3Version"),
418                                 }
419             elif source.find(".zip") > -1:
420                 basename = os.path.basename(source)
421                 bare_basename = basename.replace(".zip", "") \
422                         .replace(".tar", "") \
423                         .replace(".tar.gz", "")
424
425                 clone_ns3_cmd = ( 
426                             "unzip ${SRC}/ns-3/%(basename)s && "
427                             "mv ${SRC}/ns-3/%(bare_basename)s ${SRC}/ns-3/%(ns3_version)s "
428                             ) % {
429                                 'bare_basename': basename_name,
430                                 'basename': basename,
431                                 'ns3_version': self.get("ns3Version"),
432                                 }
433
434         clone_dce_cmd = " echo 'DCE will not be built' "
435         if self.enable_dce:
436             clone_dce_cmd = (
437                         # DCE installation
438                         # Test if dce is alredy installed
439                         " ( "
440                         "  ( "
441                         "    ( test -d ${SRC}/dce/ns-3-dce ) "
442                         "   && echo 'dce binaries found, nothing to do'"
443                         "  ) "
444                         " ) "
445                         "  || " 
446                         # Get dce source code
447                         " ( "
448                         "   mkdir -p ${SRC}/dce && "
449                         "   hg clone %(dce_repo)s ${SRC}/dce/ns-3-dce"
450                         " ) "
451                      ) % {
452                             'dce_repo': self.dce_repo
453                          }
454
455         return (
456                 # NS3 installation
457                 "( "
458                 " ( "
459                 # Test if ns-3 is alredy installed
460                 "  ((( test -d ${SRC}/ns-3/%(ns3_version)s ) || "
461                 "    ( test -d ${NS3BINDINGS:='None'} && test -d ${NS3LIBRARIES:='None'})) "
462                 "  && echo 'ns-3 binaries found, nothing to do' )"
463                 " ) "
464                 "  || " 
465                 # If not, install ns-3 and its dependencies
466                 " (   "
467                 # Install pygccxml
468                 "   (   "
469                 "     ( "
470                 "       python -c 'import pygccxml' && "
471                 "       echo 'pygccxml not found' "
472                 "     ) "
473                 "      || "
474                 "     ( "
475                 "       tar xf ${SRC}/%(pygccxml_version)s.tar.gz -C ${SRC} && "
476                 "       cd ${SRC}/%(pygccxml_version)s && "
477                 "       python setup.py build && "
478                 "       sudo -S python setup.py install "
479                 "     ) "
480                 "   ) " 
481                 # Install pybindgen
482                 "  && "
483                 "   (   "
484                 "     ( "
485                 "       test -d ${SRC}/pybindgen/%(pybindgen_version)s && "
486                 "       echo 'binaries found, nothing to do' "
487                 "     ) "
488                 "      || "
489                 # If not, clone and build
490                 "      ( cd ${SRC} && "
491                 "        mkdir -p ${SRC}/pybindgen && "
492                 "        bzr checkout lp:pybindgen -r %(pybindgen_version)s ${SRC}/pybindgen/%(pybindgen_version)s && "
493                 "        cd ${SRC}/pybindgen/%(pybindgen_version)s && "
494                 "        ./waf configure && "
495                 "        ./waf "
496                 "      ) "
497                 "   ) " 
498                 " && "
499                 # Get ns-3 source code
500                 "  ( "
501                 "     mkdir -p ${SRC}/ns-3/%(ns3_version)s && "
502                 "     %(clone_ns3_cmd)s "
503                 "  ) "
504                 " ) "
505                 ") "
506                 " && "
507                 "( "
508                 "   %(clone_dce_cmd)s "
509                 ") "
510              ) % { 
511                     'ns3_version': self.get("ns3Version"),
512                     'pybindgen_version': self.get("pybindgenVersion"),
513                     'pygccxml_version': self.pygccxml_version,
514                     'clone_ns3_cmd': clone_ns3_cmd,
515                     'clone_dce_cmd': clone_dce_cmd,
516                  }
517
518     @property
519     def _install(self):
520         install_dce_cmd = " echo 'DCE will not be installed' "
521         if self.enable_dce:
522             install_dce_cmd = (
523                         " ( "
524                         "   ((test -d %(ns3_build_home)s/bin_dce ) && "
525                         "    echo 'dce binaries found, nothing to do' )"
526                         " ) "
527                         " ||" 
528                         " (   "
529                          # If not, copy ns-3 build to bin
530                         "  cd ${SRC}/dce/ns-3-dce && "
531                         "  rm -rf ${SRC}/dce/ns-3-dce/build && "
532                         "  ./waf configure %(enable_opt)s --with-pybindgen=${SRC}/pybindgen/%(pybindgen_version)s "
533                         "  --prefix=%(ns3_build_home)s --with-ns3=%(ns3_build_home)s && "
534                         "  ./waf build && "
535                         "  ./waf install && "
536                         "  mv %(ns3_build_home)s/lib*/python*/site-packages/ns/dce.so %(ns3_build_home)s/lib/python/site-packages/ns/ "
537                         " )"
538                 ) % { 
539                     'ns3_version': self.get("ns3Version"),
540                     'pybindgen_version': self.get("pybindgenVersion"),
541                     'ns3_build_home': self.ns3_build_home,
542                     'build_mode': self.get("buildMode"),
543                     'enable_opt': "--enable-opt" if  self.get("buildMode") == "optimized" else ""
544                     }
545
546         return (
547                  # Test if ns-3 is alredy installed
548                 "("
549                 " ( "
550                 "  ( ( (test -d %(ns3_build_home)s/lib ) || "
551                 "    (test -d ${NS3BINDINGS:='None'} && test -d ${NS3LIBRARIES:='None'}) ) && "
552                 "    echo 'binaries found, nothing to do' )"
553                 " ) "
554                 " ||" 
555                 " (   "
556                  # If not, copy ns-3 build to bin
557                 "  mkdir -p %(ns3_build_home)s && "
558                 "  cd ${SRC}/ns-3/%(ns3_version)s && "
559                 "  rm -rf ${SRC}/ns-3/%(ns3_version)s/build && "
560                 "  ./waf configure -d %(build_mode)s --with-pybindgen=${SRC}/pybindgen/%(pybindgen_version)s "
561                 "  --prefix=%(ns3_build_home)s && "
562                 "  ./waf build && "
563                 "  ./waf install && "
564                 "  mv %(ns3_build_home)s/lib*/python* %(ns3_build_home)s/lib/python "
565                 " )"
566                 ") "
567                 " && "
568                 "( "
569                 "   %(install_dce_cmd)s "
570                 ") "
571               ) % { 
572                     'ns3_version': self.get("ns3Version"),
573                     'pybindgen_version': self.get("pybindgenVersion"),
574                     'build_mode': self.get("buildMode"),
575                     'ns3_build_home': self.ns3_build_home,
576                     'install_dce_cmd': install_dce_cmd
577                  }
578
579     @property
580     def _environment(self):
581         env = []
582         env.append("PYTHONPATH=$PYTHONPATH:${NS3BINDINGS:=%(ns3_build_home)s/lib/python/site-packages}" % { 
583                     'ns3_build_home': self.ns3_build_home
584                  })
585         # If NS3LIBRARIES is defined and not empty, assign its value, 
586         # if not assign ns3_build_home/lib/ to NS3LIBRARIES and LD_LIBARY_PATH
587         env.append("LD_LIBRARY_PATH=${NS3LIBRARIES:=%(ns3_build_home)s/lib}" % { 
588                     'ns3_build_home': self.ns3_build_home
589                  })
590         env.append("DCE_PATH=$NS3LIBRARIES/../bin_dce")
591         env.append("DCE_ROOT=$NS3LIBRARIES/..")
592
593         return " ".join(env) 
594
595     def replace_paths(self, command):
596         """
597         Replace all special path tags with shell-escaped actual paths.
598         """
599         return ( command
600             .replace("${USR}", self.node.usr_dir)
601             .replace("${LIB}", self.node.lib_dir)
602             .replace("${BIN}", self.node.bin_dir)
603             .replace("${SRC}", self.node.src_dir)
604             .replace("${SHARE}", self.node.share_dir)
605             .replace("${EXP}", self.node.exp_dir)
606             .replace("${EXP_HOME}", self.node.exp_home)
607             .replace("${APP_HOME}", self.app_home)
608             .replace("${RUN_HOME}", self.run_home)
609             .replace("${NODE_HOME}", self.node.node_home)
610             .replace("${HOME}", self.node.home_dir)
611             # If NS3LIBRARIES is defined and not empty, use that value, 
612             # if not use ns3_build_home/lib/
613             .replace("${BIN_DCE}", "${NS3LIBRARIES-%s/lib}/../bin_dce" % \
614                     self.ns3_build_home)
615             )
616
617     def valid_connection(self, guid):
618         # TODO: Validate!
619         return True
620