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