execute_command.py 2.54 KB
Newer Older
Ad Schellevis's avatar
Ad Schellevis committed
1 2 3 4
#!/usr/local/bin/python2.7
"""
    Copyright (c) 2014 Ad Schellevis

5
    part of OPNsense (https://www.opnsense.org/)
Ad Schellevis's avatar
Ad Schellevis committed
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30

    All rights reserved.

    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions are met:

    1. Redistributions of source code must retain the above copyright notice,
     this list of conditions and the following disclaimer.

    2. Redistributions in binary form must reproduce the above copyright
     notice, this list of conditions and the following disclaimer in the
     documentation and/or other materials provided with the distribution.

    THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
    INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
    AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
    AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
    OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
    SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
    INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
    CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
    ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
    POSSIBILITY OF SUCH DAMAGE.

    --------------------------------------------------------------------------------------
31
    package : configd
32
    function: commandline execute commands to configd daemon
Ad Schellevis's avatar
Ad Schellevis committed
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63


"""
__author__ = 'Ad Schellevis'
import socket
import sys


if len(sys.argv) <= 1:
    print 'usage : %s [unix domain socket filename] <command>'%sys.argv[0]
    sys.exit(0)
else:
    server_address = sys.argv[1].strip()

if len(sys.argv) > 2:
    exec_command = ' '.join(sys.argv[2:])
else:
    # command line input
    exec_command = raw_input('command:')+'\n'

# Create and open unix domain socket
sock = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
print ('connecting to %s' % server_address)
try:
    sock.connect(server_address)
except socket.error, msg:
    print ('error connection to %s '%server_address)
    sys.exit(1)

# send command and await response
try:
64
    print ('send:%s '%exec_command)
Ad Schellevis's avatar
Ad Schellevis committed
65
    sock.send(exec_command)
66
    data = ""
67 68 69
    while True:
        line = sock.recv(4096)
        if line:
70 71 72 73
            data = data + line

        # end of stream marker found, exit
        if data.find("%c%c%c"%(chr(0),chr(0),chr(0))) > -1:
74
            break
75 76

    print ('response:%s'% data[:-3] )
Ad Schellevis's avatar
Ad Schellevis committed
77 78
finally:
    sock.close()