OpenSecurity/bin/opensecurity_client_restful_server.py
author BarthaM@N3SIM1218.D03.arc.local
Wed, 04 Jun 2014 16:42:37 +0100
changeset 176 32c895509a2a
parent 168 76267df09d71
child 177 269e73c34b20
child 178 e0c11d73a10c
permissions -rwxr-xr-x
Moved drive generation and modified net mount/unmount
TODO: blacklisting cardreaders is still open
oliver@168
     1
#!/usr/bin/env python
oliver@167
     2
# -*- coding: utf-8 -*-
oliver@167
     3
oliver@167
     4
# ------------------------------------------------------------
oliver@167
     5
# opensecurity_client_restful_server
oliver@167
     6
# 
oliver@167
     7
# the OpenSecurity client RESTful server
oliver@167
     8
#
oliver@167
     9
# Autor: Oliver Maurhart, <oliver.maurhart@ait.ac.at>
oliver@167
    10
#
oliver@167
    11
# Copyright (C) 2013 AIT Austrian Institute of Technology
oliver@167
    12
# AIT Austrian Institute of Technology GmbH
oliver@167
    13
# Donau-City-Strasse 1 | 1220 Vienna | Austria
oliver@167
    14
# http://www.ait.ac.at
oliver@167
    15
#
oliver@167
    16
# This program is free software; you can redistribute it and/or
oliver@167
    17
# modify it under the terms of the GNU General Public License
oliver@167
    18
# as published by the Free Software Foundation version 2.
oliver@167
    19
# 
oliver@167
    20
# This program is distributed in the hope that it will be useful,
oliver@167
    21
# but WITHOUT ANY WARRANTY; without even the implied warranty of
oliver@167
    22
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
oliver@167
    23
# GNU General Public License for more details.
oliver@167
    24
# 
oliver@167
    25
# You should have received a copy of the GNU General Public License
oliver@167
    26
# along with this program; if not, write to the Free Software
oliver@167
    27
# Foundation, Inc., 51 Franklin Street, Fifth Floor, 
oliver@167
    28
# Boston, MA  02110-1301, USA.
oliver@167
    29
# ------------------------------------------------------------
oliver@167
    30
oliver@167
    31
oliver@167
    32
# ------------------------------------------------------------
oliver@167
    33
# imports
oliver@167
    34
oliver@167
    35
import getpass
oliver@167
    36
import glob
oliver@167
    37
import json
oliver@167
    38
import os
oliver@167
    39
import os.path
oliver@167
    40
import pickle
oliver@167
    41
import platform
oliver@167
    42
import socket
oliver@167
    43
import subprocess
oliver@167
    44
import sys
oliver@167
    45
import threading
oliver@167
    46
import time
oliver@167
    47
import urllib
oliver@167
    48
import urllib2
oliver@167
    49
import web
oliver@167
    50
import threading
oliver@167
    51
import time
oliver@167
    52
import string
oliver@167
    53
import win32api
oliver@167
    54
import win32con
BarthaM@176
    55
import win32wnet
BarthaM@176
    56
import itertools
BarthaM@176
    57
import ctypes
oliver@167
    58
oliver@167
    59
from opensecurity_util import logger, setupLogger, OpenSecurityException
oliver@167
    60
if sys.platform == 'win32' or sys.platform == 'cygwin':
oliver@167
    61
    from cygwin import Cygwin
oliver@167
    62
oliver@167
    63
# local
oliver@167
    64
import __init__ as opensecurity
oliver@167
    65
from environment import Environment
oliver@167
    66
oliver@167
    67
oliver@167
    68
# ------------------------------------------------------------
oliver@167
    69
# const
oliver@167
    70
oliver@167
    71
oliver@167
    72
"""All the URLs we know mapping to class handler"""
oliver@167
    73
opensecurity_urls = (
oliver@167
    74
    '/credentials',             'os_credentials',
oliver@167
    75
    '/keyfile',                 'os_keyfile',
oliver@167
    76
    '/log',                     'os_log',
oliver@167
    77
    '/notification',            'os_notification',
oliver@167
    78
    '/password',                'os_password',
oliver@167
    79
    '/netmount',                'os_netmount',
oliver@167
    80
    '/netumount',               'os_netumount',
BarthaM@176
    81
    '/netcleanup',              'os_netcleanup',
oliver@167
    82
    '/',                        'os_root'
oliver@167
    83
)
oliver@167
    84
oliver@167
    85
oliver@167
    86
# ------------------------------------------------------------
oliver@167
    87
# vars
oliver@167
    88
oliver@167
    89
oliver@167
    90
"""lock for read/write log file"""
oliver@167
    91
log_file_lock = threading.Lock()
oliver@167
    92
oliver@167
    93
"""timer for the log file bouncer"""
oliver@167
    94
log_file_bouncer = None
oliver@167
    95
oliver@167
    96
oliver@167
    97
"""The REST server object"""
oliver@167
    98
server = None
oliver@167
    99
oliver@167
   100
oliver@167
   101
# ------------------------------------------------------------
oliver@167
   102
# code
oliver@167
   103
oliver@167
   104
oliver@167
   105
class os_credentials:
oliver@167
   106
oliver@167
   107
    """OpenSecurity '/credentials' handler.
oliver@167
   108
    
oliver@167
   109
    This is called on GET /credentials?text=TEXT.
oliver@167
   110
    Ideally this should pop up a user dialog to insert his
oliver@167
   111
    credentials based the given TEXT.
oliver@167
   112
    """
oliver@167
   113
    
oliver@167
   114
    def GET(self):
oliver@167
   115
        
oliver@167
   116
        # pick the arguments
oliver@167
   117
        args = web.input()
oliver@167
   118
        
oliver@167
   119
        # we _need_ a text
oliver@167
   120
        if not "text" in args:
oliver@167
   121
            raise web.badrequest('no text given')
oliver@167
   122
        
oliver@167
   123
        # remember remote ip
oliver@167
   124
        remote_ip = web.ctx.environ['REMOTE_ADDR']
oliver@167
   125
oliver@167
   126
        # create the process which queries the user
oliver@167
   127
        dlg_image = os.path.join(sys.path[0], 'opensecurity_dialog.pyw')
oliver@167
   128
        process_command = [sys.executable, dlg_image, 'credentials', args.text]
oliver@167
   129
        process = subprocess.Popen(process_command, shell = False, stdout = subprocess.PIPE)        
oliver@167
   130
        
oliver@167
   131
        # run process result handling in seprate thread (not to block main one)
oliver@167
   132
        bouncer = ProcessResultBouncer(process, remote_ip, '/credentials')
oliver@167
   133
        bouncer.start()
oliver@167
   134
         
oliver@167
   135
        return 'user queried for credentials'
oliver@167
   136
oliver@167
   137
oliver@167
   138
class os_keyfile:
oliver@167
   139
oliver@167
   140
    """OpenSecurity '/keyfile' handler.
oliver@167
   141
    
oliver@167
   142
    This is called on GET /keyfile?text=TEXT.
oliver@167
   143
    Ideally this should pop up a user dialog to insert his
oliver@167
   144
    password along with a keyfile.
oliver@167
   145
    """
oliver@167
   146
    
oliver@167
   147
    def GET(self):
oliver@167
   148
        
oliver@167
   149
        # pick the arguments
oliver@167
   150
        args = web.input()
oliver@167
   151
        
oliver@167
   152
        # we _need_ a text
oliver@167
   153
        if not "text" in args:
oliver@167
   154
            raise web.badrequest('no text given')
oliver@167
   155
            
oliver@167
   156
        # remember remote ip
oliver@167
   157
        remote_ip = web.ctx.environ['REMOTE_ADDR']
oliver@167
   158
        
oliver@167
   159
        # create the process which queries the user
oliver@167
   160
        dlg_image = os.path.join(sys.path[0], 'opensecurity_dialog.pyw')
oliver@167
   161
        process_command = [sys.executable, dlg_image, 'keyfile', args.text]
oliver@167
   162
        process = subprocess.Popen(process_command, shell = False, stdout = subprocess.PIPE)        
oliver@167
   163
        
oliver@167
   164
        # run process result handling in seprate thread (not to block main one)
oliver@167
   165
        bouncer = ProcessResultBouncer(process, remote_ip, '/keyfile')
oliver@167
   166
        bouncer.start()
oliver@167
   167
         
oliver@167
   168
        return 'user queried for password and keyfile'
oliver@167
   169
oliver@167
   170
oliver@167
   171
class os_log:
oliver@167
   172
oliver@167
   173
    """OpenSecurity '/log' handler.
oliver@167
   174
    
oliver@167
   175
    This is called on GET or POST on the log function /log
oliver@167
   176
    """
oliver@167
   177
    
oliver@167
   178
    def GET(self):
oliver@167
   179
        
oliver@167
   180
        # pick the arguments
oliver@167
   181
        self.POST()
oliver@167
   182
oliver@167
   183
oliver@167
   184
    def POST(self):
oliver@167
   185
        
oliver@167
   186
        # pick the arguments
oliver@167
   187
        args = web.input()
oliver@167
   188
        args['user'] = getpass.getuser()
oliver@167
   189
        args['system'] = platform.node() + " " + platform.system() + " " + platform.release()
oliver@167
   190
oliver@167
   191
        # add these to new data to log
oliver@167
   192
        global log_file_lock
oliver@167
   193
        log_file_name = os.path.join(Environment('OpenSecurity').log_path, 'vm_new.log')
oliver@167
   194
        log_file_lock.acquire()
oliver@167
   195
        pickle.dump(args,  open(log_file_name, 'ab'))
oliver@167
   196
        log_file_lock.release()
oliver@167
   197
oliver@167
   198
        return "Ok"
oliver@167
   199
oliver@167
   200
oliver@167
   201
class os_notification:
oliver@167
   202
oliver@167
   203
    """OpenSecurity '/notification' handler.
oliver@167
   204
    
oliver@167
   205
    This is called on GET /notification?msgtype=TYPE&text=TEXT.
oliver@167
   206
    This will pop up an OpenSecurity notifcation window
oliver@167
   207
    """
oliver@167
   208
    
oliver@167
   209
    def GET(self):
oliver@167
   210
        
oliver@167
   211
        # pick the arguments
oliver@167
   212
        args = web.input()
oliver@167
   213
        
oliver@167
   214
        # we _need_ a type
oliver@167
   215
        if not "msgtype" in args:
oliver@167
   216
            raise web.badrequest('no msgtype given')
oliver@167
   217
            
oliver@167
   218
        if not args.msgtype in ['information', 'warning', 'critical']:
oliver@167
   219
            raise web.badrequest('Unknown value for msgtype')
oliver@167
   220
            
oliver@167
   221
        # we _need_ a text
oliver@167
   222
        if not "text" in args:
oliver@167
   223
            raise web.badrequest('no text given')
oliver@167
   224
            
oliver@167
   225
        # invoke the user dialog as a subprocess
oliver@167
   226
        dlg_image = os.path.join(sys.path[0], 'opensecurity_dialog.py')
oliver@167
   227
        process_command = [sys.executable, dlg_image, 'notification-' + args.msgtype, args.text]
oliver@167
   228
        process = subprocess.Popen(process_command, shell = False, stdout = subprocess.PIPE)
oliver@167
   229
oliver@167
   230
        return "Ok"
oliver@167
   231
oliver@167
   232
oliver@167
   233
class os_password:
oliver@167
   234
oliver@167
   235
    """OpenSecurity '/password' handler.
oliver@167
   236
    
oliver@167
   237
    This is called on GET /password?text=TEXT.
oliver@167
   238
    Ideally this should pop up a user dialog to insert his
oliver@167
   239
    password based device name.
oliver@167
   240
    """
oliver@167
   241
    
oliver@167
   242
    def GET(self):
oliver@167
   243
        
oliver@167
   244
        # pick the arguments
oliver@167
   245
        args = web.input()
oliver@167
   246
        
oliver@167
   247
        # we _need_ a text
oliver@167
   248
        if not "text" in args:
oliver@167
   249
            raise web.badrequest('no text given')
oliver@167
   250
            
oliver@167
   251
        # remember remote ip
oliver@167
   252
        remote_ip = web.ctx.environ['REMOTE_ADDR']
oliver@167
   253
        
oliver@167
   254
        # create the process which queries the user
oliver@167
   255
        dlg_image = os.path.join(sys.path[0], 'opensecurity_dialog.pyw')
oliver@167
   256
        process_command = [sys.executable, dlg_image, 'password', args.text]
oliver@167
   257
        process = subprocess.Popen(process_command, shell = False, stdout = subprocess.PIPE)        
oliver@167
   258
        
oliver@167
   259
        # run process result handling in seprate thread (not to block main one)
oliver@167
   260
        bouncer = ProcessResultBouncer(process, remote_ip, '/password')
oliver@167
   261
        bouncer.start()
oliver@167
   262
        
oliver@167
   263
        return 'user queried for password'
oliver@167
   264
BarthaM@176
   265
def genNetworkDrive():
BarthaM@176
   266
    logical_drives = getLogicalDrives()
BarthaM@176
   267
    logger.info("Used logical drive letters: "+ str(logical_drives).strip('[]') )
BarthaM@176
   268
    drives = list(map(chr, range(68, 91)))  
BarthaM@176
   269
    for drive in drives:
BarthaM@176
   270
        if drive not in logical_drives:
BarthaM@176
   271
            return drive
BarthaM@176
   272
    return None
BarthaM@176
   273
            
BarthaM@176
   274
def getLogicalDrives():
BarthaM@176
   275
    drive_bitmask = ctypes.cdll.kernel32.GetLogicalDrives()
BarthaM@176
   276
    drives = list(itertools.compress(string.ascii_uppercase,  map(lambda x:ord(x) - ord('0'), bin(drive_bitmask)[:1:-1])))
BarthaM@176
   277
    return drives
BarthaM@176
   278
BarthaM@176
   279
def getNetworkPath(drive):
BarthaM@176
   280
    return win32wnet.WNetGetConnection(drive+':')
BarthaM@176
   281
BarthaM@176
   282
def getDriveType(drive):
BarthaM@176
   283
    return ctypes.cdll.kernel32.GetDriveTypeW(u"%s:\\"%drive)
BarthaM@176
   284
        
BarthaM@176
   285
def getNetworkDrive(path):
BarthaM@176
   286
    for drive in getLogicalDrives():
BarthaM@176
   287
        #if is a network drive
BarthaM@176
   288
        if getDriveType(drive) == 4:
BarthaM@176
   289
            network_path = getNetworkPath(drive)
BarthaM@176
   290
            if path in network_path:
BarthaM@176
   291
                return drive
BarthaM@176
   292
    return None
BarthaM@176
   293
oliver@167
   294
# handles netumount request                    
oliver@167
   295
class MountNetworkDriveHandler(threading.Thread): 
BarthaM@176
   296
    networkPath = None
BarthaM@176
   297
    def __init__(self, net_path):
oliver@167
   298
        threading.Thread.__init__(self)
oliver@167
   299
        self.networkPath = net_path
oliver@167
   300
    
oliver@167
   301
    def run(self):
BarthaM@176
   302
        drive = genNetworkDrive()
BarthaM@176
   303
        if not drive:
BarthaM@176
   304
            logger.error("Failed to assign drive letter for: " + self.networkPath)
BarthaM@176
   305
            return 1
BarthaM@176
   306
        else:
BarthaM@176
   307
            logger.info("Assigned drive " + drive + " to " + self.networkPath)
BarthaM@176
   308
        
oliver@167
   309
        #Check for drive availability
BarthaM@176
   310
        drive = drive+':'
BarthaM@176
   311
        if os.path.exists(drive):
BarthaM@176
   312
            logger.error("Drive letter is already in use: " + drive)
oliver@167
   313
            return 1
oliver@167
   314
        
oliver@167
   315
        #Check for network resource availability
oliver@167
   316
        retry = 5
oliver@167
   317
        while not os.path.exists(self.networkPath):
oliver@167
   318
            time.sleep(1)
oliver@167
   319
            if retry == 0:
oliver@167
   320
                return 1
oliver@167
   321
            logger.info("Path not accessible: " + self.networkPath + " retrying")
oliver@167
   322
            retry-=1
oliver@167
   323
    
BarthaM@176
   324
        command = 'USE ' + drive + ' ' + self.networkPath + ' /PERSISTENT:NO'
oliver@167
   325
    
oliver@167
   326
        result = Cygwin.checkResult(Cygwin.execute('C:\\Windows\\system32\\NET', command))
oliver@167
   327
        if string.find(result[1], 'successfully',) == -1:
oliver@167
   328
            logger.error("Failed: NET " + command)
oliver@167
   329
            return 1
oliver@167
   330
        return 0
oliver@167
   331
oliver@167
   332
class os_netmount:
oliver@167
   333
    
oliver@167
   334
    """OpenSecurity '/netmount' handler"""
oliver@167
   335
    
oliver@167
   336
    def GET(self):
oliver@167
   337
        # pick the arguments
oliver@167
   338
        args = web.input()
oliver@167
   339
        
oliver@167
   340
        # we _need_ a net_resource
oliver@167
   341
        if not "net_resource" in args:
oliver@167
   342
            raise web.badrequest('no net_resource given')
oliver@167
   343
        
BarthaM@176
   344
        driveHandler = MountNetworkDriveHandler(args['net_resource'])
oliver@167
   345
        driveHandler.start()
oliver@167
   346
        driveHandler.join(None)
oliver@167
   347
        return 'Ok'
oliver@167
   348
        
oliver@167
   349
# handles netumount request                    
oliver@167
   350
class UmountNetworkDriveHandler(threading.Thread): 
BarthaM@176
   351
    networkPath = None
oliver@167
   352
    running = True
oliver@167
   353
    
BarthaM@176
   354
    def __init__(self, path):
oliver@167
   355
        threading.Thread.__init__(self)
BarthaM@176
   356
        self.networkPath = path
oliver@167
   357
oliver@167
   358
    def run(self):
oliver@167
   359
        while self.running:
BarthaM@176
   360
            drive = getNetworkDrive(self.networkPath)
BarthaM@176
   361
            if not drive:
BarthaM@176
   362
                logger.info("Failed to retrieve drive letter for: " + self.networkPath + ". Successfully deleted or missing.")
oliver@167
   363
                self.running = False
oliver@167
   364
            else:
BarthaM@176
   365
                drive = drive+':'
BarthaM@176
   366
                logger.info("Unmounting drive " + drive + " for " + self.networkPath)
BarthaM@176
   367
                command = 'USE ' + drive + ' /DELETE /YES' 
oliver@167
   368
                result = Cygwin.checkResult(Cygwin.execute('C:\\Windows\\system32\\net.exe', command)) 
oliver@167
   369
                if string.find(str(result[1]), 'successfully',) == -1:
oliver@167
   370
                    logger.error(result[2])
oliver@167
   371
                    continue
oliver@167
   372
                        
oliver@167
   373
oliver@167
   374
class os_netumount:
oliver@167
   375
    
oliver@167
   376
    """OpenSecurity '/netumount' handler"""
oliver@167
   377
    
oliver@167
   378
    def GET(self):
oliver@167
   379
        # pick the arguments
oliver@167
   380
        args = web.input()
oliver@167
   381
        
BarthaM@176
   382
        # we _need_ a net_resource
BarthaM@176
   383
        if not "net_resource" in args:
BarthaM@176
   384
            raise web.badrequest('no net_resource given')
oliver@167
   385
        
BarthaM@176
   386
        driveHandler = UmountNetworkDriveHandler(args['net_resource'])
oliver@167
   387
        driveHandler.start()
oliver@167
   388
        driveHandler.join(None)
oliver@167
   389
        return 'Ok'
BarthaM@176
   390
BarthaM@176
   391
class os_netcleanup:
oliver@167
   392
    
BarthaM@176
   393
    """OpenSecurity '/netcleanup' handler"""
BarthaM@176
   394
    
BarthaM@176
   395
    def GET(self):
BarthaM@176
   396
        # pick the arguments
BarthaM@176
   397
        args = web.input()
BarthaM@176
   398
        
BarthaM@176
   399
        # we _need_ a net_resource
BarthaM@176
   400
        if not "hostonly_ip" in args:
BarthaM@176
   401
            raise web.badrequest('no net_resource given')
BarthaM@176
   402
        
BarthaM@176
   403
        ip = args['hostonly_ip']
BarthaM@176
   404
        ip = ip[:ip.rindex('.')]
BarthaM@176
   405
        drives = getLogicalDrives()
BarthaM@176
   406
        for drive in drives:
BarthaM@176
   407
            # found network drive
BarthaM@176
   408
            if getDriveType(drive) == 4:
BarthaM@176
   409
                path = getNetworkPath(drive)
BarthaM@176
   410
                if ip in path:
BarthaM@176
   411
                    driveHandler = UmountNetworkDriveHandler(path)
BarthaM@176
   412
                    driveHandler.start()
BarthaM@176
   413
                    driveHandler.join(None)
oliver@167
   414
oliver@167
   415
class os_root:
oliver@167
   416
oliver@167
   417
    """OpenSecurity '/' handler"""
oliver@167
   418
    
oliver@167
   419
    def GET(self):
oliver@167
   420
    
oliver@167
   421
        res = "OpenSecurity-Client RESTFul Server { \"version\": \"%s\" }" % opensecurity.__version__
oliver@167
   422
        
oliver@167
   423
        # add some sample links
oliver@167
   424
        res = res + """
oliver@167
   425
        
oliver@167
   426
USAGE EXAMPLES:
oliver@167
   427
        
oliver@167
   428
Request a password: 
oliver@167
   429
    (copy paste this into your browser's address field after the host:port)
oliver@167
   430
    
oliver@167
   431
    /password?text=Give+me+a+password+for+device+%22My+USB+Drive%22+(ID%3A+32090-AAA-X0)
oliver@167
   432
    
oliver@167
   433
    (eg.: http://127.0.0.1:8090/password?text=Give+me+a+password+for+device+%22My+USB+Drive%22+(ID%3A+32090-AAA-X0))
oliver@167
   434
    NOTE: check yout taskbar, the dialog window may not pop up in front of your browser window.
oliver@167
   435
    
oliver@167
   436
    
oliver@167
   437
Request a combination of user and password:
oliver@167
   438
    (copy paste this into your browser's address field after the host:port)
oliver@167
   439
    
oliver@167
   440
    /credentials?text=Tell+the+NSA+which+credentials+to+use+in+order+to+avoid+hacking+noise+on+wire.
oliver@167
   441
    
oliver@167
   442
    (eg.: http://127.0.0.1:8090/credentials?text=Tell+the+NSA+which+credentials+to+use+in+order+to+avoid+hacking+noise+on+wire.)
oliver@167
   443
    NOTE: check yout taskbar, the dialog window may not pop up in front of your browser window.
oliver@167
   444
    
oliver@167
   445
oliver@167
   446
Request a combination of password and keyfile:
oliver@167
   447
    (copy paste this into your browser's address field after the host:port)
oliver@167
   448
    
oliver@167
   449
    /keyfile?text=Your%20private%20RSA%20Keyfile%3A
oliver@167
   450
    
oliver@167
   451
    (eg.: http://127.0.0.1:8090//keyfile?text=Your%20private%20RSA%20Keyfile%3A)
oliver@167
   452
    NOTE: check yout taskbar, the dialog window may not pop up in front of your browser window.
oliver@167
   453
    
oliver@167
   454
oliver@167
   455
Start a Browser:
oliver@167
   456
    (copy paste this into your browser's address field after the host:port)
oliver@167
   457
oliver@167
   458
    /application?vm=Debian+7&app=Browser
oliver@167
   459
oliver@167
   460
    (e.g. http://127.0.0.1:8090/application?vm=Debian+7&app=Browser)
oliver@167
   461
        """
oliver@167
   462
    
oliver@167
   463
        return res
oliver@167
   464
oliver@167
   465
oliver@167
   466
class ProcessResultBouncer(threading.Thread):
oliver@167
   467
oliver@167
   468
    """A class to post the result of a given process - assuming it to be in JSON - to a REST Api."""
oliver@167
   469
oliver@167
   470
    def __init__(self, process, remote_ip, resource): 
oliver@167
   471
oliver@167
   472
        """ctor"""
oliver@167
   473
oliver@167
   474
        threading.Thread.__init__(self)
oliver@167
   475
        self._process = process
oliver@167
   476
        self._remote_ip = remote_ip
oliver@167
   477
        self._resource = resource
oliver@167
   478
 
oliver@167
   479
    
oliver@167
   480
    def stop(self):
oliver@167
   481
oliver@167
   482
        """stop thread"""
oliver@167
   483
        self.running = False
oliver@167
   484
        
oliver@167
   485
    
oliver@167
   486
    def run(self):
oliver@167
   487
oliver@167
   488
        """run the thread"""
oliver@167
   489
oliver@167
   490
        # invoke the user dialog as a subprocess
oliver@167
   491
        result = self._process.communicate()[0]
oliver@167
   492
        if self._process.returncode != 0:
oliver@167
   493
            print 'user request has been aborted.'
oliver@167
   494
            return
oliver@167
   495
        
oliver@167
   496
        # all ok, tell send request back appropriate destination
oliver@167
   497
        try:
oliver@167
   498
            j = json.loads(result)
oliver@167
   499
        except:
oliver@167
   500
            print 'error in password parsing'
oliver@167
   501
            return
oliver@167
   502
        
oliver@167
   503
        # by provided a 'data' we turn this into a POST statement
oliver@167
   504
        url_addr = 'http://' + self._remote_ip + ':58080' + self._resource
oliver@167
   505
        req = urllib2.Request(url_addr, urllib.urlencode(j))
oliver@167
   506
        try:
oliver@167
   507
            res = urllib2.urlopen(req)
oliver@167
   508
        except:
oliver@167
   509
            print 'failed to contact: ' + url_addr
oliver@167
   510
            return 
oliver@167
   511
oliver@167
   512
oliver@167
   513
class RESTServerThread(threading.Thread):
oliver@167
   514
oliver@167
   515
    """Thread for serving the REST API."""
oliver@167
   516
oliver@167
   517
    def __init__(self, port): 
oliver@167
   518
oliver@167
   519
        """ctor"""
oliver@167
   520
        threading.Thread.__init__(self)
oliver@167
   521
        self._port = port 
oliver@167
   522
    
oliver@167
   523
    def stop(self):
oliver@167
   524
oliver@167
   525
        """stop thread"""
oliver@167
   526
        self.running = False
oliver@167
   527
        
oliver@167
   528
    
oliver@167
   529
    def run(self):
oliver@167
   530
oliver@167
   531
        """run the thread"""
oliver@167
   532
        _serve(self._port)
oliver@167
   533
oliver@167
   534
oliver@167
   535
oliver@167
   536
def is_already_running(port = 8090):
oliver@167
   537
oliver@167
   538
    """check if this is started twice"""
oliver@167
   539
oliver@167
   540
    try:
oliver@167
   541
        s = socket.create_connection(('127.0.0.1', port), 0.5)
oliver@167
   542
    except:
oliver@167
   543
        return False
oliver@167
   544
oliver@167
   545
    return True
oliver@167
   546
oliver@167
   547
oliver@167
   548
def _bounce_vm_logs():
oliver@167
   549
oliver@167
   550
    """grab all logs from the VMs and push them to the log servers"""
oliver@167
   551
oliver@167
   552
    global log_file_lock
oliver@167
   553
oliver@167
   554
    # pick the highest current number
oliver@167
   555
    cur = 0
oliver@167
   556
    for f in glob.iglob(os.path.join(Environment('OpenSecurity').log_path, 'vm_cur.log.*')):
oliver@167
   557
        try:
oliver@167
   558
            n = f.split('.')[-1:][0]
oliver@167
   559
            if cur < int(n):
oliver@167
   560
                cur = int(n)
oliver@167
   561
        except:
oliver@167
   562
            pass
oliver@167
   563
oliver@167
   564
    cur = cur + 1
oliver@167
   565
oliver@167
   566
    # first add new vm logs to our existing one: rename the log file
oliver@167
   567
    log_file_name_new = os.path.join(Environment('OpenSecurity').log_path, 'vm_new.log')
oliver@167
   568
    log_file_name_cur = os.path.join(Environment('OpenSecurity').log_path, 'vm_cur.log.' + str(cur))
oliver@167
   569
    log_file_lock.acquire()
oliver@167
   570
    try:
oliver@167
   571
        os.rename(log_file_name_new, log_file_name_cur)
oliver@167
   572
        print('new log file: ' + log_file_name_cur)
oliver@167
   573
    except:
oliver@167
   574
        pass
oliver@167
   575
    log_file_lock.release()
oliver@167
   576
oliver@167
   577
    # now we have a list of next log files to dump
oliver@167
   578
    log_files = glob.glob(os.path.join(Environment('OpenSecurity').log_path, 'vm_cur.log.*'))
oliver@167
   579
    log_files.sort()
oliver@167
   580
    for log_file in log_files:
oliver@167
   581
oliver@167
   582
        try:
oliver@167
   583
            f = open(log_file, 'rb')
oliver@167
   584
            while True:
oliver@167
   585
                l = pickle.load(f)
oliver@167
   586
                _push_log(l)
oliver@167
   587
oliver@167
   588
        except EOFError:
oliver@167
   589
oliver@167
   590
            try:
oliver@167
   591
                os.remove(log_file)
oliver@167
   592
            except:
oliver@167
   593
                logger.warning('tried to delete log file (pushed to EOF) "' + log_file + '" but failed')
oliver@167
   594
oliver@167
   595
        except:
oliver@167
   596
            logger.warning('encountered error while pushing log file "' + log_file + '"')
oliver@167
   597
            break
oliver@167
   598
oliver@167
   599
    # start bouncer again ...
oliver@167
   600
    global log_file_bouncer
oliver@167
   601
    log_file_bouncer = threading.Timer(5.0, _bounce_vm_logs)
oliver@167
   602
    log_file_bouncer.start()
oliver@167
   603
oliver@167
   604
oliver@167
   605
def _push_log(log):
oliver@167
   606
    """POST a single log to log server
oliver@167
   607
oliver@167
   608
    @param  log     the log POST param
oliver@167
   609
    """
oliver@167
   610
oliver@168
   611
    log_server_url = "http://extern.x-net.at/opensecurity/log"
oliver@167
   612
    try:
oliver@167
   613
        key = win32api.RegOpenKey(win32con.HKEY_LOCAL_MACHINE, 'SOFTWARE\OpenSecurity')
oliver@167
   614
        log_server_url = str(win32api.RegQueryValueEx(key, 'LogServerURL')[0])
oliver@167
   615
        win32api.RegCloseKey(key)
oliver@167
   616
    except:
oliver@168
   617
        logger.warning('Cannot open Registry HKEY_LOCAL_MACHINE\SOFTWARE\OpenSecurity and get "LogServerURL" value, using default instead')
oliver@167
   618
oliver@167
   619
    # by provided a 'data' we turn this into a POST statement
oliver@167
   620
    d = urllib.urlencode(log)
oliver@167
   621
    req = urllib2.Request(log_server_url, d)
oliver@167
   622
    urllib2.urlopen(req)
oliver@167
   623
    logger.debug('pushed log to server: ' + str(log_server_url))
oliver@167
   624
oliver@167
   625
oliver@167
   626
def _serve(port):
oliver@167
   627
oliver@167
   628
    """Start the REST server"""
oliver@167
   629
oliver@167
   630
    global server
oliver@167
   631
oliver@167
   632
    # start the VM-log bouncer timer
oliver@167
   633
    global log_file_bouncer
oliver@167
   634
    log_file_bouncer = threading.Timer(5.0, _bounce_vm_logs)
oliver@167
   635
    log_file_bouncer.start()
oliver@167
   636
oliver@167
   637
    # trick the web.py server 
oliver@167
   638
    sys.argv = [__file__, str(port)]
oliver@167
   639
    server = web.application(opensecurity_urls, globals())
oliver@167
   640
    server.run()
oliver@167
   641
oliver@167
   642
oliver@167
   643
def serve(port = 8090, background = False):
oliver@167
   644
oliver@167
   645
    """Start serving the REST Api
oliver@167
   646
    port ... port number to listen on
oliver@167
   647
    background ... cease into background (spawn thread) and return immediately"""
oliver@167
   648
oliver@167
   649
    # start threaded or direct version
oliver@167
   650
    if background == True:
oliver@167
   651
        t = RESTServerThread(port)
oliver@167
   652
        t.start()
oliver@167
   653
    else:
oliver@167
   654
        _serve(port)
oliver@167
   655
oliver@167
   656
def stop():
oliver@167
   657
oliver@167
   658
    """Stop serving the REST Api"""
oliver@167
   659
oliver@167
   660
    global server
oliver@167
   661
    if server is None:
oliver@167
   662
        return
oliver@167
   663
oliver@167
   664
    global log_file_bouncer
oliver@167
   665
    if log_file_bouncer is not None:
oliver@167
   666
        log_file_bouncer.cancel()
oliver@167
   667
oliver@167
   668
    server.stop()
oliver@167
   669
oliver@167
   670
# start
oliver@167
   671
if __name__ == "__main__":
oliver@167
   672
    serve()
oliver@167
   673