OpenSecurity/bin/opensecurityd.pyw
author BarthaM@N3SIM1218.D03.arc.local
Mon, 19 May 2014 17:19:47 +0100
changeset 163 e7fbdaabd0bc
parent 153 ef0ace8dfc97
child 164 b6b9dc0ed2ac
permissions -rwxr-xr-x
OpenSecurity/bin/opensecurity_client_restful_server.py added join to wait for netmount /umount thread finish
     1 #!/bin/env python
     2 # -*- coding: utf-8 -*-
     3 
     4 # ------------------------------------------------------------
     5 # opensecurityd
     6 # 
     7 # the opensecurityd as RESTful server
     8 #
     9 # Autor: Oliver Maurhart, <oliver.maurhart@ait.ac.at>
    10 #
    11 # Copyright (C) 2013 AIT Austrian Institute of Technology
    12 # AIT Austrian Institute of Technology GmbH
    13 # Donau-City-Strasse 1 | 1220 Vienna | Austria
    14 # http://www.ait.ac.at
    15 #
    16 # This program is free software; you can redistribute it and/or
    17 # modify it under the terms of the GNU General Public License
    18 # as published by the Free Software Foundation version 2.
    19 # 
    20 # This program is distributed in the hope that it will be useful,
    21 # but WITHOUT ANY WARRANTY; without even the implied warranty of
    22 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    23 # GNU General Public License for more details.
    24 # 
    25 # You should have received a copy of the GNU General Public License
    26 # along with this program; if not, write to the Free Software
    27 # Foundation, Inc., 51 Franklin Street, Fifth Floor, 
    28 # Boston, MA  02110-1301, USA.
    29 # ------------------------------------------------------------
    30 
    31 
    32 # ------------------------------------------------------------
    33 # imports
    34 
    35 import json
    36 import os
    37 import os.path
    38 import subprocess
    39 import sys
    40 import tempfile
    41 import web
    42 
    43 import vmmanager
    44 
    45 # local
    46 import __init__ as opensecurity
    47 from cygwin import Cygwin
    48 from environment import Environment
    49 from opensecurity_util import logger
    50 
    51 
    52 # ------------------------------------------------------------
    53 # const
    54 
    55 """All the URLs we know mapping to class handler"""
    56 opensecurity_urls = (
    57     '/browsing',                        'os_browsing',          # http://localhost:8080/browsing                                GET
    58     '/fetch_initial_image',             'os_fetch_image',       # http://localhost:8080/fetch_initial_image                     GET
    59     '/init',                            'os_init',              # http://localhost:8080/init                                    GET
    60     '/initial_image',                   'os_initial_image',     # http://localhost:8080/initial_image                           GET
    61     '/sdvms',                           'os_sdvms',             # http://localhost:8080/sdvms                                   GET, PUT
    62     '/sdvms/(.*)/application/(.*)',     'os_sdvm_application',  # http://localhost:8080/sdvms/[VMNAME]/application/[COMMAND]    GET
    63     '/sdvms/(.*)/ip',                   'os_sdvm_ip',           # http://localhost:8080/sdvms/[VMNAME]/ip                       GET
    64     '/sdvms/(.*)/start',                'os_sdvm_start',        # http://localhost:8080/sdvms/[VMNAME]/start                    GET
    65     '/sdvms/(.*)/stop',                 'os_sdvm_stop',         # http://localhost:8080/sdvms/[VMNAME]/stop                     GET
    66     '/sdvms/(.*)',                      'os_sdvm',              # http://localhost:8080/sdvms/[VMNAME]                          GET, DELETE
    67     '/setup',                           'os_setup',             # http://localhost:8080/setup                                   GET
    68     '/vms',                             'os_vms',               # http://localhost:8080/vms                                     GET
    69     '/vms/(.*)',                        'os_vm',                # http://localhost:8080/vms/[VMNAME]                            GET
    70     '/update_template',                 'os_update_template',   # http://localhost:8080/update_template                         GET
    71     '/terminate',                       'os_terminate',         # http://localhost:8080/terminate                               GET
    72     '/',                                'os_root'               # http://localhost:8080/                                        GET
    73 )
    74 
    75 
    76 # ------------------------------------------------------------
    77 # vars
    78 
    79 # Global VMManager instance
    80 gvm_mgr = None
    81 
    82 # server instance
    83 server = None
    84 
    85 
    86 # ------------------------------------------------------------
    87 # code
    88 
    89 
    90 class os_browsing:
    91     """OpenSecurity '/browsing' handler
    92     
    93     - GET: Start and prepare a new SecurityVM for Internet Browsing. Return the name of the VM.
    94     """
    95     
    96     def GET(self):
    97         log_call(web.ctx.environ)
    98         global gvm_mgr
    99         try:
   100             result = gvm_mgr.handleBrowsingRequest()
   101             return result
   102         except:
   103             raise web.internalerror()
   104 
   105        
   106 class os_fetch_image:
   107     """OpenSecurity '/fetch_initial_image' handler
   108     
   109     - GET: fetch the initial image from the X-Net Servers
   110             The initial image is stored in the
   111             Virtual Box default machine path.
   112             The result to this call is a temprary file
   113             which shows the progress (or error state)
   114             of this call.
   115     """
   116     
   117     def GET(self):
   118         
   119         log_call(web.ctx.environ)
   120         global gvm_mgr
   121 
   122         trace_file_name = os.path.join(Environment('OpenSecurity').log_path, 'OpenSecurity_fetch_image.log')
   123         trace_file = open(trace_file_name, 'w+')
   124 
   125         machine_folder = Cygwin.cygPath(gvm_mgr.getMachineFolder()) 
   126         download_initial_image_script = '/OpenSecurity/bin/download_initial_image.sh \'' + machine_folder + '\''
   127         Cygwin.bashExecute(download_initial_image_script, wait_return = False, stdout = trace_file, stderr = trace_file) 
   128 
   129         res = '{ "fetch_log": "' + trace_file_name.replace('\\', '\\\\') + '" }'
   130         return res
   131 
   132 
   133 class os_init:
   134     """OpenSecurity '/init' handler
   135     
   136     - GET: Do initial import of OsecVM.ova
   137     """
   138     
   139     def GET(self):
   140         log_call(web.ctx.environ)
   141         global gvm_mgr
   142 
   143         trace_file_name = os.path.join(Environment('OpenSecurity').log_path, 'OpenSecurity_initial_import.log')
   144         trace_file = open(trace_file_name, 'w+')
   145 
   146         vm_image = Cygwin.cygPath(gvm_mgr.getMachineFolder()) + '/OsecVM.ova'
   147         initial_import_script = '/OpenSecurity/bin/initial_vm.sh \'' + vm_image + '\''
   148         Cygwin.bashExecute(initial_import_script, wait_return = False, stdout = trace_file, stderr = trace_file) 
   149 
   150         res = '{ "init_log": "' + trace_file_name.replace('\\', '\\\\') + '" }'
   151         return res
   152 
   153 
   154 class os_initial_image:
   155     """OpenSecurity '/initial_image' handler
   156     
   157     - GET: Return what we have as initial image.
   158     """
   159     
   160     def GET(self):
   161         log_call(web.ctx.environ)
   162         global gvm_mgr
   163         t = os.path.join(gvm_mgr.systemProperties['Default machine folder'], 'OsecVM.ova')
   164         res = ''
   165         if os.path.isfile(t):
   166             res = '{"initial_template": { '
   167             res += '"name": "OsecVM.ova", '
   168             res += '"path": "' + t.replace('\\', '\\\\') + '", '
   169             res += '"size": ' + str(os.path.getsize(t)) + ', ' 
   170             res += '"date": ' + str(os.path.getmtime(t)) + ''
   171             res += '}}'
   172         return res
   173 
   174 
   175 class os_root:
   176     """OpenSecurity '/' handler
   177     
   178     - GET: give information about current installation.
   179     """
   180     
   181     def GET(self):
   182         log_call(web.ctx.environ)
   183         global gvm_mgr
   184 
   185         # create a json string and pretty print it
   186         res = '{"os_server": { '
   187         res += '"version": "' + opensecurity.__version__ + '" '
   188         res += ', "virtual box systemproperties": ' + str(gvm_mgr.systemProperties).replace("'", '"') 
   189         res += ', "current temporary folder": "' + tempfile.gettempdir().replace('\\', '\\\\') + '"'
   190         res += ', "current log folder": "' + Environment('OpenSecurity').log_path.replace('\\', '\\\\') + '"'
   191 
   192         try:
   193             res += ', "whoami": "' + Cygwin.bashExecute('whoami')[1].strip() + '"'
   194         except:
   195             res += ', "whoami": "FAILED"'
   196 
   197         try:
   198             res += ', "mount": ' + str(Cygwin.bashExecute('mount')[1].split('\n')[:-1]).replace("'", '"')
   199         except:
   200             res += ', "mount": "FAILED"'
   201 
   202         try:
   203             res += ', "cygpath --windows ~": "' + Cygwin.bashExecute('cygpath --windows ~')[1].strip().replace('\\', '\\\\') + '"'
   204         except:
   205             res += ', "cygpath --windows ~": "FAILED"'
   206 
   207 
   208         res += ', "status message": "' + gvm_mgr.status_message.replace('"', "'") + '"'
   209 
   210         res += '}}'
   211 
   212         # loading it into json and print it again ensures
   213         # we really do have a valid RFC conform json string
   214         # created (as long as the python json module is RFC conform)
   215         return json.dumps(json.loads(res), indent = 4)
   216 
   217 
   218 class os_sdvm:
   219     """OpenSecurity '/sdvms/[VM]' handler
   220     
   221     - GET: Information about a specific SecurityVM
   222     - DELETE: Remove a specific
   223     """
   224     
   225     def GET(self, name):
   226         log_call(web.ctx.environ)
   227         global gvm_mgr
   228         return gvm_mgr.getVMInfo(name)
   229 
   230     def DELETE(self, name):
   231         log_call(web.ctx.environ)
   232         global gvm_mgr
   233         return gvm_mgr.removeVM(name)
   234             
   235 
   236 class os_sdvm_application:
   237     """OpenSecurity '/sdvms/[VM]/application/[CMD]' handler
   238     
   239     - GET: start application with given command in the VM.
   240     """
   241     
   242     def GET(self, name, command):
   243         log_call(web.ctx.environ)
   244         global gvm_mgr
   245         command = '/' + command
   246         result = Cygwin.sshExecuteX11(command, gvm_mgr.getHostOnlyIP(name), 'osecuser', Cygwin.cygPath(gvm_mgr.getMachineFolder()) + '/' + name + '/dvm_key'  )
   247         self.poweroffVM(name)
   248         return gvm_mgr.removeVM(name)
   249     
   250 
   251 class os_sdvm_ip:
   252     """OpenSecurity '/sdvms/[VM]/ip' handler
   253     
   254     - GET: give IP of SecurityVM.
   255     """
   256     
   257     def GET(self, name):
   258         log_call(web.ctx.environ)
   259         global gvm_mgr
   260         return gvm_mgr.getHostOnlyIP(name)
   261             
   262 
   263 class os_sdvm_start:
   264     """OpenSecurity '/sdvms/[VM]/start' handler
   265     
   266     - GET: Start specific SecuirtyVM.
   267     """
   268     
   269     def GET(self, name):
   270         log_call(web.ctx.environ)
   271         global gvm_mgr
   272         return gvm_mgr.startVM(name)
   273             
   274 
   275 class os_sdvm_stop:
   276     """OpenSecurity '/sdvms/[VM]/stop' handler
   277     
   278     - GET: stop specific Secuirty VM.
   279     """
   280     
   281     def GET(self, name):
   282         log_call(web.ctx.environ)
   283         global gvm_mgr
   284         return gvm_mgr.stopVM(name)
   285             
   286 
   287 class os_sdvms:
   288     """OpenSecurity '/sdvms' handler
   289     
   290     - GET: list all available secuirty VMs.
   291     - POST: create new security vm.
   292     """
   293     
   294     def GET(self):
   295         """get the list of SDVMs"""
   296         log_call(web.ctx.environ)
   297         global gvm_mgr
   298         return gvm_mgr.listSDVM() 
   299             
   300     def POST(self):
   301         """create a new SDVM"""
   302         log_call(web.ctx.environ)
   303         global gvm_mgr
   304         
   305         # get a new vm-name
   306         name = gvm_mgr.generateSDVMName()
   307         try:
   308             gvm_mgr.createVM(name)
   309         except:
   310             raise web.internalerror()
   311             
   312         return name
   313             
   314 
   315 class os_setup:
   316     """OpenSecurity '/setup' handler
   317     
   318     - GET: Give user some info how to setup the OpenSecurity envvironment
   319     """
   320     
   321     def GET(self):
   322 
   323         log_call(web.ctx.environ)
   324 
   325         page = """
   326         <html>
   327         <body>
   328         <h1>Setup OpenSecurity</h1>
   329         In order to setup OpenSecurity an inital VM image has to be downloaded and imported:<br/>
   330         <ul>
   331             <li>Download initial VM image: <a href="/fetch_initial_image">fetch_initial_image</a>
   332             <li>Import initial VM: <a href="/init">init</a>
   333         </ul>
   334         </body>
   335         </html>
   336         """
   337         return page
   338 
   339 
   340 class os_terminate:
   341     """OpenSecurity '/terminate' handler
   342     
   343     - GET: terminate the opensecurityd.
   344 
   345     TODO: need to find a better way doing this, and not via the
   346           REST api. Maybe hack web.py server code?
   347     """
   348     
   349     def GET(self):
   350         log_call(web.ctx.environ)
   351         global gvm_mgr
   352         gvm_mgr.cleanup()
   353         global server
   354         server.stop()
   355         return None
   356 
   357 
   358 class os_update_template:
   359     """OpenSecurity '/update_template' handler
   360     
   361     - GET: update template vm
   362     """
   363     
   364     def GET(self):
   365         #return gvm_mgr.guestExecute('SecurityDVM', 'sudo apt-get -y update')
   366         global gvm_mgr
   367         log_call(web.ctx.environ)
   368         return gvm_mgr.updateTemplate()
   369 
   370 
   371 class os_vm:
   372     """OpenSecurity '/vms/[VM]' handler
   373     
   374     - GET: list information of arbitrary VM.
   375     """
   376     
   377     def GET(self, name):
   378         log_call(web.ctx.environ)
   379         global gvm_mgr
   380         return gvm_mgr.getVMInfo(name)
   381             
   382 
   383 class os_vms:
   384     """OpenSecurity '/vms' handler
   385     
   386     - GET: list all (also non Security) VMs.
   387     """
   388     
   389     def GET(self):
   390         log_call(web.ctx.environ)
   391         global gvm_mgr
   392         return str(gvm_mgr.listVM()).replace("'",'"')
   393             
   394 
   395 def log_call(web_environ):
   396     """log the incoming call to the REST api"""
   397     try:
   398         call = 'REST ' +  web_environ['REQUEST_METHOD'] + ' ' + web_environ['REQUEST_URI'] + ' from ' + web_environ['REMOTE_ADDR'] + ':' + web_environ['REMOTE_PORT']
   399         logger.debug(call)
   400     except:
   401         pass
   402 
   403 
   404 def main():
   405     """main startup for the opensecuirityd"""
   406 
   407     global gvm_mgr
   408     global server
   409 
   410     logger.debug('Starting OpenSecurity REST server')
   411 
   412     # ensure a VMManger is yet loaded
   413     gvm_mgr = vmmanager.VMManager.getInstance()
   414     
   415     # tweak sys.argv to control wep.py server start behavior
   416     sys.argv = [__file__, "8080"]
   417     server = web.application(opensecurity_urls, globals(), autoreload = False)
   418     server.run()
   419     
   420     logger.debug('Stopped OpenSecurity REST server')
   421 
   422 
   423 def stop():
   424     """stop the opensecuirityd"""
   425 
   426     # calling sys.exit() raises a SystemExit exception
   427     # of the WSGI Server to let it wind down
   428     # gracefully
   429     sys.exit(0)
   430 
   431 
   432 
   433 # start
   434 if __name__ == "__main__":
   435     main()
   436