]> arthur.barton.de Git - bup.git/blob - lib/cmd/on--server-cmd.py
Bypass Python 3 glibc argv problems by routing args through env
[bup.git] / lib / cmd / on--server-cmd.py
1 #!/bin/sh
2 """": # -*-python-*-
3 # https://sourceware.org/bugzilla/show_bug.cgi?id=26034
4 export "BUP_ARGV_0"="$0"
5 arg_i=1
6 for arg in "$@"; do
7     export "BUP_ARGV_${arg_i}"="$arg"
8     shift
9     arg_i=$((arg_i + 1))
10 done
11 # Here to end of preamble replaced during install
12 bup_python="$(dirname "$0")/bup-python" || exit $?
13 exec "$bup_python" "$0"
14 """
15 # end of bup preamble
16
17 from __future__ import absolute_import
18 import sys, os, struct
19
20 from bup import compat, options, helpers, path
21 from bup.compat import environ, py_maj
22 from bup.io import byte_stream
23
24 optspec = """
25 bup on--server
26 --
27     This command is run automatically by 'bup on'
28 """
29 o = options.Options(optspec)
30 opt, flags, extra = o.parse(compat.argv[1:])
31 if extra:
32     o.fatal('no arguments expected')
33
34 # get the subcommand's argv.
35 # Normally we could just pass this on the command line, but since we'll often
36 # be getting called on the other end of an ssh pipe, which tends to mangle
37 # argv (by sending it via the shell), this way is much safer.
38
39 stdin = byte_stream(sys.stdin)
40 buf = stdin.read(4)
41 sz = struct.unpack('!I', buf)[0]
42 assert(sz > 0)
43 assert(sz < 1000000)
44 buf = stdin.read(sz)
45 assert(len(buf) == sz)
46 argv = buf.split(b'\0')
47 argv[0] = path.exe()
48 argv = [argv[0], b'mux', b'--'] + argv
49
50
51 # stdin/stdout are supposedly connected to 'bup server' that the caller
52 # started for us (often on the other end of an ssh tunnel), so we don't want
53 # to misuse them.  Move them out of the way, then replace stdout with
54 # a pointer to stderr in case our subcommand wants to do something with it.
55 #
56 # It might be nice to do the same with stdin, but my experiments showed that
57 # ssh seems to make its child's stderr a readable-but-never-reads-anything
58 # socket.  They really should have used shutdown(SHUT_WR) on the other end
59 # of it, but probably didn't.  Anyway, it's too messy, so let's just make sure
60 # anyone reading from stdin is disappointed.
61 #
62 # (You can't just leave stdin/stdout "not open" by closing the file
63 # descriptors.  Then the next file that opens is automatically assigned 0 or 1,
64 # and people *trying* to read/write stdin/stdout get screwed.)
65 os.dup2(0, 3)
66 os.dup2(1, 4)
67 os.dup2(2, 1)
68 fd = os.open(os.devnull, os.O_RDONLY)
69 os.dup2(fd, 0)
70 os.close(fd)
71
72 environ[b'BUP_SERVER_REVERSE'] = helpers.hostname()
73 os.execvp(argv[0], argv)
74 sys.exit(99)