2010-05-05 05:21:16 +02:00
|
|
|
import sys, os, re, subprocess, socket, zlib
|
2010-05-02 08:14:20 +02:00
|
|
|
import helpers
|
ssh.py: support finding sshuttle in "$HOME/.../sshuttle"
If you ran sshuttle from /home/apenwarr/sshuttle/sshuttle, we would
automatically add /home/apenwarr/sshuttle to the PATH before trying to
execute sshuttle on the remote machine. That way, if you install it in the
same place on two computers, the client would still be able to start the
server.
Someone reported, though, that if they installed the client in
/home/apenwarr/sshuttle/shuttle, and the server in /root/sshuttle/sshuttle,
then used "-r root@servername", it wasn't able to find the program.
Similar problems would happen if you're apenwarr at home and averyp at work.
So what we now do is add *two* directories to the PATH:
/home/apenwarr/sshuttle and $HOME/sshuttle, where $HOME is the value of
$HOME on the *server*, not the client. So it'll find it in either place.
2010-05-03 03:24:31 +02:00
|
|
|
from helpers import *
|
2010-05-01 22:15:37 +02:00
|
|
|
|
2010-05-05 05:21:16 +02:00
|
|
|
|
|
|
|
def readfile(name):
|
|
|
|
basedir = os.path.dirname(os.path.abspath(sys.argv[0]))
|
|
|
|
fullname = os.path.join(basedir, name)
|
|
|
|
return open(fullname, 'rb').read()
|
|
|
|
|
|
|
|
|
|
|
|
def empackage(z, filename):
|
|
|
|
content = z.compress(readfile(filename))
|
|
|
|
content += z.flush(zlib.Z_SYNC_FLUSH)
|
|
|
|
return '%s\n%d\n%s' % (filename,len(content), content)
|
|
|
|
|
|
|
|
|
2010-05-04 19:07:51 +02:00
|
|
|
def connect(rhostport):
|
2010-05-01 22:15:37 +02:00
|
|
|
main_exe = sys.argv[0]
|
2010-05-04 19:07:51 +02:00
|
|
|
l = (rhostport or '').split(':', 1)
|
|
|
|
rhost = l[0]
|
|
|
|
portl = []
|
|
|
|
if len(l) > 1:
|
|
|
|
portl = ['-p', str(int(l[1]))]
|
2010-05-05 05:21:16 +02:00
|
|
|
|
2010-05-01 22:15:37 +02:00
|
|
|
if rhost == '-':
|
|
|
|
rhost = None
|
2010-05-05 05:21:16 +02:00
|
|
|
|
|
|
|
z = zlib.compressobj(1)
|
|
|
|
content = readfile('assembler.py')
|
|
|
|
content2 = (empackage(z, 'helpers.py') +
|
|
|
|
empackage(z, 'ssnet.py') +
|
|
|
|
empackage(z, 'server.py') +
|
|
|
|
"\n")
|
|
|
|
|
|
|
|
pyscript = r"""
|
|
|
|
import sys;
|
|
|
|
skip_imports=1;
|
|
|
|
verbosity=%d;
|
|
|
|
exec compile(sys.stdin.read(%d), "assembler.py", "exec")
|
|
|
|
""" % (helpers.verbose or 0, len(content))
|
|
|
|
pyscript = re.sub(r'\s+', ' ', pyscript.strip())
|
|
|
|
|
|
|
|
|
2010-05-01 22:15:37 +02:00
|
|
|
if not rhost:
|
2010-05-05 05:21:16 +02:00
|
|
|
argv = ['python', '-c', pyscript]
|
2010-05-01 22:15:37 +02:00
|
|
|
else:
|
2010-05-05 05:21:16 +02:00
|
|
|
argv = ['ssh'] + portl + [rhost, '--', "python -c '%s'" % pyscript]
|
2010-05-02 05:14:42 +02:00
|
|
|
(s1,s2) = socket.socketpair()
|
2010-05-01 22:15:37 +02:00
|
|
|
def setup():
|
|
|
|
# runs in the child process
|
2010-05-02 05:14:42 +02:00
|
|
|
s2.close()
|
2010-05-01 22:15:37 +02:00
|
|
|
os.setsid()
|
2010-05-02 05:14:42 +02:00
|
|
|
s1a,s1b = os.dup(s1.fileno()), os.dup(s1.fileno())
|
|
|
|
s1.close()
|
2010-05-05 05:21:16 +02:00
|
|
|
debug2('executing: %r\n' % argv)
|
2010-05-03 01:29:03 +02:00
|
|
|
p = subprocess.Popen(argv, stdin=s1a, stdout=s1b, preexec_fn=setup,
|
|
|
|
close_fds=True)
|
2010-05-02 05:14:42 +02:00
|
|
|
os.close(s1a)
|
|
|
|
os.close(s1b)
|
2010-05-05 05:21:16 +02:00
|
|
|
s2.sendall(content)
|
|
|
|
s2.sendall(content2)
|
2010-05-02 05:14:42 +02:00
|
|
|
return p, s2
|