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