mirror of
https://github.com/9001/copyparty.git
synced 2025-11-05 06:13:20 +00:00
Compare commits
21 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
322b9abadc | ||
|
|
0aaf954cea | ||
|
|
c2d22aa3d1 | ||
|
|
6934c75bba | ||
|
|
c58cf78f86 | ||
|
|
7f0de790ab | ||
|
|
d4bb4e3a73 | ||
|
|
d25612d038 | ||
|
|
116b2351b0 | ||
|
|
69b83dfdc4 | ||
|
|
3b1839c2ce | ||
|
|
13742ebdf8 | ||
|
|
634657bea1 | ||
|
|
46e70d50b7 | ||
|
|
d64e9b85a7 | ||
|
|
fb853edbe3 | ||
|
|
cc076c1be1 | ||
|
|
98cc9a6755 | ||
|
|
7bd2b9c23a | ||
|
|
de724a1ff3 | ||
|
|
2163055dae |
4
.vscode/launch.json
vendored
4
.vscode/launch.json
vendored
@@ -12,10 +12,12 @@
|
|||||||
//"-nw",
|
//"-nw",
|
||||||
"-ed",
|
"-ed",
|
||||||
"-emp",
|
"-emp",
|
||||||
|
"-e2d",
|
||||||
|
"-e2s",
|
||||||
"-a",
|
"-a",
|
||||||
"ed:wark",
|
"ed:wark",
|
||||||
"-v",
|
"-v",
|
||||||
"srv::r:aed"
|
"srv::r:aed:cnodupe"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
10
.vscode/tasks.json
vendored
Normal file
10
.vscode/tasks.json
vendored
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"version": "2.0.0",
|
||||||
|
"tasks": [
|
||||||
|
{
|
||||||
|
"label": "pre",
|
||||||
|
"command": "true;rm -rf inc/* inc/.hist/;mkdir -p inc;",
|
||||||
|
"type": "shell"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -142,10 +142,9 @@ roughly sorted by priority
|
|||||||
* terminate client on bad data
|
* terminate client on bad data
|
||||||
* drop onto folders
|
* drop onto folders
|
||||||
* `os.copy_file_range` for up2k cloning
|
* `os.copy_file_range` for up2k cloning
|
||||||
|
* up2k partials ui
|
||||||
* support pillow-simd
|
* support pillow-simd
|
||||||
* cache sha512 chunks on client
|
* cache sha512 chunks on client
|
||||||
* ~~symlink existing files on upload~~
|
|
||||||
* ok at runtime, up2k db still not persisted
|
|
||||||
* comment field
|
* comment field
|
||||||
* ~~look into android thumbnail cache file format~~ bad idea
|
* ~~look into android thumbnail cache file format~~ bad idea
|
||||||
* figure out the deal with pixel3a not being connectable as hotspot
|
* figure out the deal with pixel3a not being connectable as hotspot
|
||||||
|
|||||||
@@ -105,17 +105,22 @@ def main():
|
|||||||
epilog=dedent(
|
epilog=dedent(
|
||||||
"""
|
"""
|
||||||
-a takes username:password,
|
-a takes username:password,
|
||||||
-v takes src:dst:permset:permset:... where "permset" is
|
-v takes src:dst:permset:permset:cflag:cflag:...
|
||||||
accesslevel followed by username (no separator)
|
where "permset" is accesslevel followed by username (no separator)
|
||||||
|
and "cflag" is config flags to set on this volume
|
||||||
|
|
||||||
|
list of cflags:
|
||||||
|
cnodupe rejects existing files (instead of symlinking them)
|
||||||
|
|
||||||
example:\033[35m
|
example:\033[35m
|
||||||
-a ed:hunter2 -v .::r:aed -v ../inc:dump:w:aed \033[36m
|
-a ed:hunter2 -v .::r:aed -v ../inc:dump:w:aed:cnodupe \033[36m
|
||||||
mount current directory at "/" with
|
mount current directory at "/" with
|
||||||
* r (read-only) for everyone
|
* r (read-only) for everyone
|
||||||
* a (read+write) for ed
|
* a (read+write) for ed
|
||||||
mount ../inc at "/dump" with
|
mount ../inc at "/dump" with
|
||||||
* w (write-only) for everyone
|
* w (write-only) for everyone
|
||||||
* a (read+write) for ed \033[0m
|
* a (read+write) for ed
|
||||||
|
* reject duplicate files \033[0m
|
||||||
|
|
||||||
if no accounts or volumes are configured,
|
if no accounts or volumes are configured,
|
||||||
current folder will be read/write for everyone
|
current folder will be read/write for everyone
|
||||||
@@ -125,6 +130,7 @@ def main():
|
|||||||
"""
|
"""
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
# fmt: off
|
||||||
ap.add_argument("-c", metavar="PATH", type=str, action="append", help="add config file")
|
ap.add_argument("-c", metavar="PATH", type=str, action="append", help="add config file")
|
||||||
ap.add_argument("-i", metavar="IP", type=str, default="0.0.0.0", help="ip to bind")
|
ap.add_argument("-i", metavar="IP", type=str, default="0.0.0.0", help="ip to bind")
|
||||||
ap.add_argument("-p", metavar="PORT", type=int, default=3923, help="port to bind")
|
ap.add_argument("-p", metavar="PORT", type=int, default=3923, help="port to bind")
|
||||||
@@ -135,12 +141,15 @@ def main():
|
|||||||
ap.add_argument("-q", action="store_true", help="quiet")
|
ap.add_argument("-q", action="store_true", help="quiet")
|
||||||
ap.add_argument("-ed", action="store_true", help="enable ?dots")
|
ap.add_argument("-ed", action="store_true", help="enable ?dots")
|
||||||
ap.add_argument("-emp", action="store_true", help="enable markdown plugins")
|
ap.add_argument("-emp", action="store_true", help="enable markdown plugins")
|
||||||
|
ap.add_argument("-e2d", action="store_true", help="enable up2k database")
|
||||||
|
ap.add_argument("-e2s", action="store_true", help="enable up2k db-scanner")
|
||||||
ap.add_argument("-mcr", metavar="SEC", type=int, default=60, help="md-editor mod-chk rate")
|
ap.add_argument("-mcr", metavar="SEC", type=int, default=60, help="md-editor mod-chk rate")
|
||||||
ap.add_argument("-nw", action="store_true", help="disable writes (benchmark)")
|
ap.add_argument("-nw", action="store_true", help="disable writes (benchmark)")
|
||||||
ap.add_argument("-nih", action="store_true", help="no info hostname")
|
ap.add_argument("-nih", action="store_true", help="no info hostname")
|
||||||
ap.add_argument("-nid", action="store_true", help="no info disk-usage")
|
ap.add_argument("-nid", action="store_true", help="no info disk-usage")
|
||||||
ap.add_argument("--no-sendfile", action="store_true", help="disable sendfile")
|
ap.add_argument("--no-sendfile", action="store_true", help="disable sendfile")
|
||||||
al = ap.parse_args()
|
al = ap.parse_args()
|
||||||
|
# fmt: on
|
||||||
|
|
||||||
SvcHub(al).run()
|
SvcHub(al).run()
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
# coding: utf-8
|
# coding: utf-8
|
||||||
|
|
||||||
VERSION = (0, 6, 3)
|
VERSION = (0, 7, 2)
|
||||||
CODENAME = "CHRISTMAAAAAS"
|
CODENAME = "keeping track"
|
||||||
BUILD_DT = (2021, 1, 7)
|
BUILD_DT = (2021, 1, 29)
|
||||||
|
|
||||||
S_VERSION = ".".join(map(str, VERSION))
|
S_VERSION = ".".join(map(str, VERSION))
|
||||||
S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT)
|
S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT)
|
||||||
|
|||||||
@@ -12,11 +12,12 @@ from .util import undot, Pebkac, fsdec, fsenc
|
|||||||
class VFS(object):
|
class VFS(object):
|
||||||
"""single level in the virtual fs"""
|
"""single level in the virtual fs"""
|
||||||
|
|
||||||
def __init__(self, realpath, vpath, uread=[], uwrite=[]):
|
def __init__(self, realpath, vpath, uread=[], uwrite=[], flags={}):
|
||||||
self.realpath = realpath # absolute path on host filesystem
|
self.realpath = realpath # absolute path on host filesystem
|
||||||
self.vpath = vpath # absolute path in the virtual filesystem
|
self.vpath = vpath # absolute path in the virtual filesystem
|
||||||
self.uread = uread # users who can read this
|
self.uread = uread # users who can read this
|
||||||
self.uwrite = uwrite # users who can write this
|
self.uwrite = uwrite # users who can write this
|
||||||
|
self.flags = flags # config switches
|
||||||
self.nodes = {} # child nodes
|
self.nodes = {} # child nodes
|
||||||
|
|
||||||
def add(self, src, dst):
|
def add(self, src, dst):
|
||||||
@@ -36,6 +37,7 @@ class VFS(object):
|
|||||||
"{}/{}".format(self.vpath, name).lstrip("/"),
|
"{}/{}".format(self.vpath, name).lstrip("/"),
|
||||||
self.uread,
|
self.uread,
|
||||||
self.uwrite,
|
self.uwrite,
|
||||||
|
self.flags,
|
||||||
)
|
)
|
||||||
self.nodes[name] = vn
|
self.nodes[name] = vn
|
||||||
return vn.add(src, dst)
|
return vn.add(src, dst)
|
||||||
@@ -161,7 +163,7 @@ class AuthSrv(object):
|
|||||||
|
|
||||||
yield prev, True
|
yield prev, True
|
||||||
|
|
||||||
def _parse_config_file(self, fd, user, mread, mwrite, mount):
|
def _parse_config_file(self, fd, user, mread, mwrite, mflags, mount):
|
||||||
vol_src = None
|
vol_src = None
|
||||||
vol_dst = None
|
vol_dst = None
|
||||||
for ln in [x.decode("utf-8").strip() for x in fd]:
|
for ln in [x.decode("utf-8").strip() for x in fd]:
|
||||||
@@ -191,6 +193,7 @@ class AuthSrv(object):
|
|||||||
mount[vol_dst] = vol_src
|
mount[vol_dst] = vol_src
|
||||||
mread[vol_dst] = []
|
mread[vol_dst] = []
|
||||||
mwrite[vol_dst] = []
|
mwrite[vol_dst] = []
|
||||||
|
mflags[vol_dst] = {}
|
||||||
continue
|
continue
|
||||||
|
|
||||||
lvl, uname = ln.split(" ")
|
lvl, uname = ln.split(" ")
|
||||||
@@ -198,6 +201,9 @@ class AuthSrv(object):
|
|||||||
mread[vol_dst].append(uname)
|
mread[vol_dst].append(uname)
|
||||||
if lvl in "wa":
|
if lvl in "wa":
|
||||||
mwrite[vol_dst].append(uname)
|
mwrite[vol_dst].append(uname)
|
||||||
|
if lvl == "c":
|
||||||
|
# config option, currently switches only
|
||||||
|
mflags[vol_dst][uname] = True
|
||||||
|
|
||||||
def reload(self):
|
def reload(self):
|
||||||
"""
|
"""
|
||||||
@@ -210,6 +216,7 @@ class AuthSrv(object):
|
|||||||
user = {} # username:password
|
user = {} # username:password
|
||||||
mread = {} # mountpoint:[username]
|
mread = {} # mountpoint:[username]
|
||||||
mwrite = {} # mountpoint:[username]
|
mwrite = {} # mountpoint:[username]
|
||||||
|
mflags = {} # mountpoint:[flag]
|
||||||
mount = {} # dst:src (mountpoint:realpath)
|
mount = {} # dst:src (mountpoint:realpath)
|
||||||
|
|
||||||
if self.args.a:
|
if self.args.a:
|
||||||
@@ -232,9 +239,13 @@ class AuthSrv(object):
|
|||||||
mount[dst] = src
|
mount[dst] = src
|
||||||
mread[dst] = []
|
mread[dst] = []
|
||||||
mwrite[dst] = []
|
mwrite[dst] = []
|
||||||
|
mflags[dst] = {}
|
||||||
|
|
||||||
perms = perms.split(":")
|
perms = perms.split(":")
|
||||||
for (lvl, uname) in [[x[0], x[1:]] for x in perms]:
|
for (lvl, uname) in [[x[0], x[1:]] for x in perms]:
|
||||||
|
if lvl == "c":
|
||||||
|
# config option, currently switches only
|
||||||
|
mflags[dst][uname] = True
|
||||||
if uname == "":
|
if uname == "":
|
||||||
uname = "*"
|
uname = "*"
|
||||||
if lvl in "ra":
|
if lvl in "ra":
|
||||||
@@ -245,14 +256,15 @@ class AuthSrv(object):
|
|||||||
if self.args.c:
|
if self.args.c:
|
||||||
for cfg_fn in self.args.c:
|
for cfg_fn in self.args.c:
|
||||||
with open(cfg_fn, "rb") as f:
|
with open(cfg_fn, "rb") as f:
|
||||||
self._parse_config_file(f, user, mread, mwrite, mount)
|
self._parse_config_file(f, user, mread, mwrite, mflags, mount)
|
||||||
|
|
||||||
|
self.all_writable = []
|
||||||
if not mount:
|
if not mount:
|
||||||
# -h says our defaults are CWD at root and read/write for everyone
|
# -h says our defaults are CWD at root and read/write for everyone
|
||||||
vfs = VFS(os.path.abspath("."), "", ["*"], ["*"])
|
vfs = VFS(os.path.abspath("."), "", ["*"], ["*"])
|
||||||
elif "" not in mount:
|
elif "" not in mount:
|
||||||
# there's volumes but no root; make root inaccessible
|
# there's volumes but no root; make root inaccessible
|
||||||
vfs = VFS(os.path.abspath("."), "", [], [])
|
vfs = VFS(os.path.abspath("."), "")
|
||||||
|
|
||||||
maxdepth = 0
|
maxdepth = 0
|
||||||
for dst in sorted(mount.keys(), key=lambda x: (x.count("/"), len(x))):
|
for dst in sorted(mount.keys(), key=lambda x: (x.count("/"), len(x))):
|
||||||
@@ -262,12 +274,18 @@ class AuthSrv(object):
|
|||||||
|
|
||||||
if dst == "":
|
if dst == "":
|
||||||
# rootfs was mapped; fully replaces the default CWD vfs
|
# rootfs was mapped; fully replaces the default CWD vfs
|
||||||
vfs = VFS(mount[dst], dst, mread[dst], mwrite[dst])
|
vfs = VFS(mount[dst], dst, mread[dst], mwrite[dst], mflags[dst])
|
||||||
continue
|
continue
|
||||||
|
|
||||||
v = vfs.add(mount[dst], dst)
|
v = vfs.add(mount[dst], dst)
|
||||||
v.uread = mread[dst]
|
v.uread = mread[dst]
|
||||||
v.uwrite = mwrite[dst]
|
v.uwrite = mwrite[dst]
|
||||||
|
v.flags = mflags[dst]
|
||||||
|
if v.uwrite:
|
||||||
|
self.all_writable.append(v)
|
||||||
|
|
||||||
|
if vfs.uwrite and vfs not in self.all_writable:
|
||||||
|
self.all_writable.append(vfs)
|
||||||
|
|
||||||
missing_users = {}
|
missing_users = {}
|
||||||
for d in [mread, mwrite]:
|
for d in [mread, mwrite]:
|
||||||
|
|||||||
@@ -28,6 +28,7 @@ class HttpCli(object):
|
|||||||
self.conn = conn
|
self.conn = conn
|
||||||
self.s = conn.s
|
self.s = conn.s
|
||||||
self.sr = conn.sr
|
self.sr = conn.sr
|
||||||
|
self.ip = conn.addr[0]
|
||||||
self.addr = conn.addr
|
self.addr = conn.addr
|
||||||
self.args = conn.args
|
self.args = conn.args
|
||||||
self.auth = conn.auth
|
self.auth = conn.auth
|
||||||
@@ -42,7 +43,7 @@ class HttpCli(object):
|
|||||||
self.log_func(self.log_src, msg)
|
self.log_func(self.log_src, msg)
|
||||||
|
|
||||||
def _check_nonfatal(self, ex):
|
def _check_nonfatal(self, ex):
|
||||||
return ex.code in [404]
|
return ex.code < 400 or ex.code == 404
|
||||||
|
|
||||||
def _assert_safe_rem(self, rem):
|
def _assert_safe_rem(self, rem):
|
||||||
# sanity check to prevent any disasters
|
# sanity check to prevent any disasters
|
||||||
@@ -85,7 +86,8 @@ class HttpCli(object):
|
|||||||
|
|
||||||
v = self.headers.get("x-forwarded-for", None)
|
v = self.headers.get("x-forwarded-for", None)
|
||||||
if v is not None and self.conn.addr[0] in ["127.0.0.1", "::1"]:
|
if v is not None and self.conn.addr[0] in ["127.0.0.1", "::1"]:
|
||||||
self.log_src = self.conn.set_rproxy(v.split(",")[0])
|
self.ip = v.split(",")[0]
|
||||||
|
self.log_src = self.conn.set_rproxy(self.ip)
|
||||||
|
|
||||||
self.uname = "*"
|
self.uname = "*"
|
||||||
if "cookie" in self.headers:
|
if "cookie" in self.headers:
|
||||||
@@ -305,7 +307,7 @@ class HttpCli(object):
|
|||||||
vfs, rem = self.conn.auth.vfs.get(self.vpath, self.uname, False, True)
|
vfs, rem = self.conn.auth.vfs.get(self.vpath, self.uname, False, True)
|
||||||
fdir = os.path.join(vfs.realpath, rem)
|
fdir = os.path.join(vfs.realpath, rem)
|
||||||
|
|
||||||
addr = self.conn.addr[0].replace(":", ".")
|
addr = self.ip.replace(":", ".")
|
||||||
fn = "put-{:.6f}-{}.bin".format(time.time(), addr)
|
fn = "put-{:.6f}-{}.bin".format(time.time(), addr)
|
||||||
path = os.path.join(fdir, fn)
|
path = os.path.join(fdir, fn)
|
||||||
|
|
||||||
@@ -384,9 +386,11 @@ class HttpCli(object):
|
|||||||
|
|
||||||
vfs, rem = self.conn.auth.vfs.get(self.vpath, self.uname, False, True)
|
vfs, rem = self.conn.auth.vfs.get(self.vpath, self.uname, False, True)
|
||||||
|
|
||||||
body["vdir"] = self.vpath
|
body["vtop"] = vfs.vpath
|
||||||
body["rdir"] = os.path.join(vfs.realpath, rem)
|
body["ptop"] = vfs.realpath
|
||||||
body["addr"] = self.addr[0]
|
body["prel"] = rem
|
||||||
|
body["addr"] = self.ip
|
||||||
|
body["flag"] = vfs.flags
|
||||||
|
|
||||||
x = self.conn.hsrv.broker.put(True, "up2k.handle_json", body)
|
x = self.conn.hsrv.broker.put(True, "up2k.handle_json", body)
|
||||||
response = x.get()
|
response = x.get()
|
||||||
@@ -408,7 +412,10 @@ class HttpCli(object):
|
|||||||
except KeyError:
|
except KeyError:
|
||||||
raise Pebkac(400, "need hash and wark headers for binary POST")
|
raise Pebkac(400, "need hash and wark headers for binary POST")
|
||||||
|
|
||||||
x = self.conn.hsrv.broker.put(True, "up2k.handle_chunk", wark, chash)
|
vfs, _ = self.conn.auth.vfs.get(self.vpath, self.uname, False, True)
|
||||||
|
ptop = vfs.realpath
|
||||||
|
|
||||||
|
x = self.conn.hsrv.broker.put(True, "up2k.handle_chunk", ptop, wark, chash)
|
||||||
response = x.get()
|
response = x.get()
|
||||||
chunksize, cstart, path, lastmod = response
|
chunksize, cstart, path, lastmod = response
|
||||||
|
|
||||||
@@ -453,8 +460,8 @@ class HttpCli(object):
|
|||||||
|
|
||||||
self.log("clone {} done".format(cstart[0]))
|
self.log("clone {} done".format(cstart[0]))
|
||||||
|
|
||||||
x = self.conn.hsrv.broker.put(True, "up2k.confirm_chunk", wark, chash)
|
x = self.conn.hsrv.broker.put(True, "up2k.confirm_chunk", ptop, wark, chash)
|
||||||
num_left = x.get()
|
num_left, path = x.get()
|
||||||
|
|
||||||
if not WINDOWS and num_left == 0:
|
if not WINDOWS and num_left == 0:
|
||||||
times = (int(time.time()), int(lastmod))
|
times = (int(time.time()), int(lastmod))
|
||||||
@@ -575,7 +582,7 @@ class HttpCli(object):
|
|||||||
if not os.path.isdir(fsenc(fdir)):
|
if not os.path.isdir(fsenc(fdir)):
|
||||||
raise Pebkac(404, "that folder does not exist")
|
raise Pebkac(404, "that folder does not exist")
|
||||||
|
|
||||||
suffix = ".{:.6f}-{}".format(time.time(), self.addr[0])
|
suffix = ".{:.6f}-{}".format(time.time(), self.ip)
|
||||||
open_args = {"fdir": fdir, "suffix": suffix}
|
open_args = {"fdir": fdir, "suffix": suffix}
|
||||||
else:
|
else:
|
||||||
open_args = {}
|
open_args = {}
|
||||||
@@ -637,7 +644,7 @@ class HttpCli(object):
|
|||||||
"\n".join(
|
"\n".join(
|
||||||
unicode(x)
|
unicode(x)
|
||||||
for x in [
|
for x in [
|
||||||
":".join(unicode(x) for x in self.addr),
|
":".join(unicode(x) for x in [self.ip, self.addr[1]]),
|
||||||
msg.rstrip(),
|
msg.rstrip(),
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
@@ -894,7 +901,7 @@ class HttpCli(object):
|
|||||||
open_func = open
|
open_func = open
|
||||||
# 512 kB is optimal for huge files, use 64k
|
# 512 kB is optimal for huge files, use 64k
|
||||||
open_args = [fsenc(fs_path), "rb", 64 * 1024]
|
open_args = [fsenc(fs_path), "rb", 64 * 1024]
|
||||||
if hasattr(os, 'sendfile'):
|
if hasattr(os, "sendfile"):
|
||||||
use_sendfile = not self.args.no_sendfile
|
use_sendfile = not self.args.no_sendfile
|
||||||
|
|
||||||
#
|
#
|
||||||
@@ -1020,6 +1027,10 @@ class HttpCli(object):
|
|||||||
if abspath.endswith(".md") and "raw" not in self.uparam:
|
if abspath.endswith(".md") and "raw" not in self.uparam:
|
||||||
return self.tx_md(abspath)
|
return self.tx_md(abspath)
|
||||||
|
|
||||||
|
bad = "{0}.hist{0}up2k.".format(os.sep)
|
||||||
|
if abspath.endswith(bad + "db") or abspath.endswith(bad + "snap"):
|
||||||
|
raise Pebkac(403)
|
||||||
|
|
||||||
return self.tx_file(abspath)
|
return self.tx_file(abspath)
|
||||||
|
|
||||||
fsroot, vfs_ls, vfs_virt = vn.ls(rem, self.uname)
|
fsroot, vfs_ls, vfs_virt = vn.ls(rem, self.uname)
|
||||||
|
|||||||
@@ -65,6 +65,7 @@ class HttpConn(object):
|
|||||||
color = 34
|
color = 34
|
||||||
self.rproxy = ip
|
self.rproxy = ip
|
||||||
|
|
||||||
|
self.ip = ip
|
||||||
self.log_src = "{} \033[{}m{}".format(ip, color, self.addr[1]).ljust(26)
|
self.log_src = "{} \033[{}m{}".format(ip, color, self.addr[1]).ljust(26)
|
||||||
return self.log_src
|
return self.log_src
|
||||||
|
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ from datetime import datetime, timedelta
|
|||||||
import calendar
|
import calendar
|
||||||
|
|
||||||
from .__init__ import PY2, WINDOWS, MACOS, VT100
|
from .__init__ import PY2, WINDOWS, MACOS, VT100
|
||||||
|
from .authsrv import AuthSrv
|
||||||
from .tcpsrv import TcpSrv
|
from .tcpsrv import TcpSrv
|
||||||
from .up2k import Up2k
|
from .up2k import Up2k
|
||||||
from .util import mp
|
from .util import mp
|
||||||
@@ -38,6 +39,10 @@ class SvcHub(object):
|
|||||||
self.tcpsrv = TcpSrv(self)
|
self.tcpsrv = TcpSrv(self)
|
||||||
self.up2k = Up2k(self)
|
self.up2k = Up2k(self)
|
||||||
|
|
||||||
|
if self.args.e2d and self.args.e2s:
|
||||||
|
auth = AuthSrv(self.args, self.log)
|
||||||
|
self.up2k.build_indexes(auth.all_writable)
|
||||||
|
|
||||||
# decide which worker impl to use
|
# decide which worker impl to use
|
||||||
if self.check_mp_enable():
|
if self.check_mp_enable():
|
||||||
from .broker_mp import BrokerMp as Broker
|
from .broker_mp import BrokerMp as Broker
|
||||||
|
|||||||
@@ -6,6 +6,9 @@ import os
|
|||||||
import re
|
import re
|
||||||
import time
|
import time
|
||||||
import math
|
import math
|
||||||
|
import json
|
||||||
|
import gzip
|
||||||
|
import stat
|
||||||
import shutil
|
import shutil
|
||||||
import base64
|
import base64
|
||||||
import hashlib
|
import hashlib
|
||||||
@@ -13,7 +16,15 @@ import threading
|
|||||||
from copy import deepcopy
|
from copy import deepcopy
|
||||||
|
|
||||||
from .__init__ import WINDOWS
|
from .__init__ import WINDOWS
|
||||||
from .util import Pebkac, Queue, fsenc, sanitize_fn, ren_open
|
from .util import Pebkac, Queue, fsdec, fsenc, sanitize_fn, ren_open, atomic_move
|
||||||
|
|
||||||
|
HAVE_SQLITE3 = False
|
||||||
|
try:
|
||||||
|
import sqlite3
|
||||||
|
|
||||||
|
HAVE_SQLITE3 = True
|
||||||
|
except:
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
class Up2k(object):
|
class Up2k(object):
|
||||||
@@ -22,20 +33,21 @@ class Up2k(object):
|
|||||||
* documentation
|
* documentation
|
||||||
* registry persistence
|
* registry persistence
|
||||||
* ~/.config flatfiles for active jobs
|
* ~/.config flatfiles for active jobs
|
||||||
* wark->path database for finished uploads
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self, broker):
|
def __init__(self, broker):
|
||||||
self.broker = broker
|
self.broker = broker
|
||||||
self.args = broker.args
|
self.args = broker.args
|
||||||
self.log = broker.log
|
self.log = broker.log
|
||||||
|
self.persist = self.args.e2d
|
||||||
|
|
||||||
# config
|
# config
|
||||||
self.salt = "hunter2" # TODO: config
|
self.salt = "hunter2" # TODO: config
|
||||||
|
|
||||||
# state
|
# state
|
||||||
self.registry = {}
|
|
||||||
self.mutex = threading.Lock()
|
self.mutex = threading.Lock()
|
||||||
|
self.registry = {}
|
||||||
|
self.db = {}
|
||||||
|
|
||||||
if WINDOWS:
|
if WINDOWS:
|
||||||
# usually fails to set lastmod too quickly
|
# usually fails to set lastmod too quickly
|
||||||
@@ -44,53 +56,306 @@ class Up2k(object):
|
|||||||
thr.daemon = True
|
thr.daemon = True
|
||||||
thr.start()
|
thr.start()
|
||||||
|
|
||||||
|
if self.persist:
|
||||||
|
thr = threading.Thread(target=self._snapshot)
|
||||||
|
thr.daemon = True
|
||||||
|
thr.start()
|
||||||
|
|
||||||
# static
|
# static
|
||||||
self.r_hash = re.compile("^[0-9a-zA-Z_-]{43}$")
|
self.r_hash = re.compile("^[0-9a-zA-Z_-]{43}$")
|
||||||
|
|
||||||
|
if self.persist and not HAVE_SQLITE3:
|
||||||
|
m = "could not initialize sqlite3, will use in-memory registry only"
|
||||||
|
self.log("up2k", m)
|
||||||
|
|
||||||
|
def _vis_job_progress(self, job):
|
||||||
|
perc = 100 - (len(job["need"]) * 100.0 / len(job["hash"]))
|
||||||
|
path = os.path.join(job["ptop"], job["prel"], job["name"])
|
||||||
|
return "{:5.1f}% {}".format(perc, path)
|
||||||
|
|
||||||
|
def _vis_reg_progress(self, reg):
|
||||||
|
ret = []
|
||||||
|
for _, job in reg.items():
|
||||||
|
ret.append(self._vis_job_progress(job))
|
||||||
|
|
||||||
|
return ret
|
||||||
|
|
||||||
|
def register_vpath(self, ptop):
|
||||||
|
with self.mutex:
|
||||||
|
if ptop in self.registry:
|
||||||
|
return None
|
||||||
|
|
||||||
|
reg = {}
|
||||||
|
path = os.path.join(ptop, ".hist", "up2k.snap")
|
||||||
|
if self.persist and os.path.exists(path):
|
||||||
|
with gzip.GzipFile(path, "rb") as f:
|
||||||
|
j = f.read().decode("utf-8")
|
||||||
|
|
||||||
|
reg = json.loads(j)
|
||||||
|
for _, job in reg.items():
|
||||||
|
job["poke"] = time.time()
|
||||||
|
|
||||||
|
m = "loaded snap {} |{}|".format(path, len(reg.keys()))
|
||||||
|
m = [m] + self._vis_reg_progress(reg)
|
||||||
|
self.log("up2k", "\n".join(m))
|
||||||
|
|
||||||
|
self.registry[ptop] = reg
|
||||||
|
if not self.persist or not HAVE_SQLITE3:
|
||||||
|
return None
|
||||||
|
|
||||||
|
try:
|
||||||
|
os.mkdir(os.path.join(ptop, ".hist"))
|
||||||
|
except:
|
||||||
|
pass
|
||||||
|
|
||||||
|
db_path = os.path.join(ptop, ".hist", "up2k.db")
|
||||||
|
if ptop in self.db:
|
||||||
|
# self.db[ptop].close()
|
||||||
|
return None
|
||||||
|
|
||||||
|
try:
|
||||||
|
db = self._open_db(db_path)
|
||||||
|
self.db[ptop] = db
|
||||||
|
return db
|
||||||
|
except Exception as ex:
|
||||||
|
m = "failed to open [{}]: {}".format(ptop, repr(ex))
|
||||||
|
self.log("up2k", m)
|
||||||
|
|
||||||
|
return None
|
||||||
|
|
||||||
|
def build_indexes(self, writeables):
|
||||||
|
tops = [d.realpath for d in writeables]
|
||||||
|
for top in tops:
|
||||||
|
db = self.register_vpath(top)
|
||||||
|
if db:
|
||||||
|
# can be symlink so don't `and d.startswith(top)``
|
||||||
|
excl = set([d for d in tops if d != top])
|
||||||
|
self._build_dir([db, 0], top, excl, top)
|
||||||
|
self._drop_lost(db, top)
|
||||||
|
db.commit()
|
||||||
|
|
||||||
|
def _build_dir(self, dbw, top, excl, cdir):
|
||||||
|
try:
|
||||||
|
inodes = [fsdec(x) for x in os.listdir(fsenc(cdir))]
|
||||||
|
except Exception as ex:
|
||||||
|
self.log("up2k", "listdir: " + repr(ex))
|
||||||
|
return
|
||||||
|
|
||||||
|
histdir = os.path.join(top, ".hist")
|
||||||
|
for inode in inodes:
|
||||||
|
abspath = os.path.join(cdir, inode)
|
||||||
|
try:
|
||||||
|
inf = os.stat(fsenc(abspath))
|
||||||
|
except Exception as ex:
|
||||||
|
self.log("up2k", "stat: " + repr(ex))
|
||||||
|
continue
|
||||||
|
|
||||||
|
if stat.S_ISDIR(inf.st_mode):
|
||||||
|
if abspath in excl or abspath == histdir:
|
||||||
|
continue
|
||||||
|
# self.log("up2k", " dir: {}".format(abspath))
|
||||||
|
self._build_dir(dbw, top, excl, abspath)
|
||||||
|
else:
|
||||||
|
# self.log("up2k", "file: {}".format(abspath))
|
||||||
|
rp = abspath[len(top) :].replace("\\", "/").strip("/")
|
||||||
|
c = dbw[0].execute("select * from up where rp = ?", (rp,))
|
||||||
|
in_db = list(c.fetchall())
|
||||||
|
if in_db:
|
||||||
|
_, dts, dsz, _ = in_db[0]
|
||||||
|
if len(in_db) > 1:
|
||||||
|
m = "WARN: multiple entries: [{}] => [{}] ({})"
|
||||||
|
self.log("up2k", m.format(top, rp, len(in_db)))
|
||||||
|
dts = -1
|
||||||
|
|
||||||
|
if dts == inf.st_mtime and dsz == inf.st_size:
|
||||||
|
continue
|
||||||
|
|
||||||
|
m = "reindex [{}] => [{}] ({}/{}) ({}/{})".format(
|
||||||
|
top, rp, dts, inf.st_mtime, dsz, inf.st_size
|
||||||
|
)
|
||||||
|
self.log("up2k", m)
|
||||||
|
self.db_rm(dbw[0], rp)
|
||||||
|
dbw[1] += 1
|
||||||
|
in_db = None
|
||||||
|
|
||||||
|
self.log("up2k", "file: {}".format(abspath))
|
||||||
|
try:
|
||||||
|
hashes = self._hashlist_from_file(abspath)
|
||||||
|
except Exception as ex:
|
||||||
|
self.log("up2k", "hash: " + repr(ex))
|
||||||
|
continue
|
||||||
|
|
||||||
|
wark = self._wark_from_hashlist(inf.st_size, hashes)
|
||||||
|
self.db_add(dbw[0], wark, rp, inf.st_mtime, inf.st_size)
|
||||||
|
dbw[1] += 1
|
||||||
|
if dbw[1] > 1024:
|
||||||
|
dbw[0].commit()
|
||||||
|
dbw[1] = 0
|
||||||
|
|
||||||
|
def _drop_lost(self, db, top):
|
||||||
|
rm = []
|
||||||
|
c = db.execute("select * from up")
|
||||||
|
for dwark, dts, dsz, drp in c:
|
||||||
|
abspath = os.path.join(top, drp)
|
||||||
|
try:
|
||||||
|
if not os.path.exists(fsenc(abspath)):
|
||||||
|
rm.append(drp)
|
||||||
|
except Exception as ex:
|
||||||
|
self.log("up2k", "stat-rm: " + repr(ex))
|
||||||
|
|
||||||
|
if not rm:
|
||||||
|
return
|
||||||
|
|
||||||
|
self.log("up2k", "forgetting {} deleted files".format(len(rm)))
|
||||||
|
for rp in rm:
|
||||||
|
self.db_rm(db, rp)
|
||||||
|
|
||||||
|
def _open_db(self, db_path):
|
||||||
|
conn = sqlite3.connect(db_path, check_same_thread=False)
|
||||||
|
try:
|
||||||
|
c = conn.execute(r"select * from kv where k = 'sver'")
|
||||||
|
rows = c.fetchall()
|
||||||
|
if rows:
|
||||||
|
ver = rows[0][1]
|
||||||
|
else:
|
||||||
|
self.log("up2k", "WARN: no sver in kv, DB corrupt?")
|
||||||
|
ver = "unknown"
|
||||||
|
|
||||||
|
if ver == "1":
|
||||||
|
try:
|
||||||
|
nfiles = next(conn.execute("select count(w) from up"))[0]
|
||||||
|
self.log("up2k", "found DB at {} |{}|".format(db_path, nfiles))
|
||||||
|
return conn
|
||||||
|
except Exception as ex:
|
||||||
|
m = "WARN: could not list files, DB corrupt?\n " + repr(ex)
|
||||||
|
self.log("up2k", m)
|
||||||
|
|
||||||
|
m = "REPLACING unsupported DB (v.{}) at {}".format(ver, db_path)
|
||||||
|
self.log("up2k", m)
|
||||||
|
conn.close()
|
||||||
|
os.unlink(db_path)
|
||||||
|
conn = sqlite3.connect(db_path, check_same_thread=False)
|
||||||
|
except:
|
||||||
|
pass
|
||||||
|
|
||||||
|
# sqlite is variable-width only, no point in using char/nchar/varchar
|
||||||
|
for cmd in [
|
||||||
|
r"create table kv (k text, v text)",
|
||||||
|
r"create table up (w text, mt int, sz int, rp text)",
|
||||||
|
r"insert into kv values ('sver', '1')",
|
||||||
|
r"create index up_w on up(w)",
|
||||||
|
]:
|
||||||
|
conn.execute(cmd)
|
||||||
|
|
||||||
|
conn.commit()
|
||||||
|
self.log("up2k", "created DB at {}".format(db_path))
|
||||||
|
return conn
|
||||||
|
|
||||||
def handle_json(self, cj):
|
def handle_json(self, cj):
|
||||||
|
self.register_vpath(cj["ptop"])
|
||||||
cj["name"] = sanitize_fn(cj["name"])
|
cj["name"] = sanitize_fn(cj["name"])
|
||||||
|
cj["poke"] = time.time()
|
||||||
wark = self._get_wark(cj)
|
wark = self._get_wark(cj)
|
||||||
now = time.time()
|
now = time.time()
|
||||||
|
job = None
|
||||||
with self.mutex:
|
with self.mutex:
|
||||||
# TODO use registry persistence here to symlink any matching wark
|
db = self.db.get(cj["ptop"], None)
|
||||||
if wark in self.registry:
|
reg = self.registry[cj["ptop"]]
|
||||||
job = self.registry[wark]
|
if db:
|
||||||
if job["rdir"] != cj["rdir"] or job["name"] != cj["name"]:
|
cur = db.execute(r"select * from up where w = ?", (wark,))
|
||||||
src = os.path.join(job["rdir"], job["name"])
|
for _, dtime, dsize, dp_rel in cur:
|
||||||
dst = os.path.join(cj["rdir"], cj["name"])
|
dp_abs = os.path.join(cj["ptop"], dp_rel).replace("\\", "/")
|
||||||
|
# relying on path.exists to return false on broken symlinks
|
||||||
|
if os.path.exists(fsenc(dp_abs)):
|
||||||
|
try:
|
||||||
|
prel, name = dp_rel.rsplit("/", 1)
|
||||||
|
except:
|
||||||
|
prel = ""
|
||||||
|
name = dp_rel
|
||||||
|
|
||||||
|
job = {
|
||||||
|
"name": name,
|
||||||
|
"prel": prel,
|
||||||
|
"vtop": cj["vtop"],
|
||||||
|
"ptop": cj["ptop"],
|
||||||
|
"flag": cj["flag"],
|
||||||
|
"size": dsize,
|
||||||
|
"lmod": dtime,
|
||||||
|
"hash": [],
|
||||||
|
"need": [],
|
||||||
|
}
|
||||||
|
break
|
||||||
|
|
||||||
|
if job and wark in reg:
|
||||||
|
del reg[wark]
|
||||||
|
|
||||||
|
if job or wark in reg:
|
||||||
|
job = job or reg[wark]
|
||||||
|
if job["prel"] == cj["prel"] and job["name"] == cj["name"]:
|
||||||
|
# ensure the files haven't been deleted manually
|
||||||
|
names = [job[x] for x in ["name", "tnam"] if x in job]
|
||||||
|
for fn in names:
|
||||||
|
path = os.path.join(job["ptop"], job["prel"], fn)
|
||||||
|
try:
|
||||||
|
if os.path.getsize(path) > 0:
|
||||||
|
# upload completed or both present
|
||||||
|
break
|
||||||
|
except:
|
||||||
|
# missing; restart
|
||||||
|
job = None
|
||||||
|
break
|
||||||
|
else:
|
||||||
|
# file contents match, but not the path
|
||||||
|
src = os.path.join(job["ptop"], job["prel"], job["name"])
|
||||||
|
dst = os.path.join(cj["ptop"], cj["prel"], cj["name"])
|
||||||
|
vsrc = os.path.join(job["vtop"], job["prel"], job["name"])
|
||||||
|
vsrc = vsrc.replace("\\", "/") # just for prints anyways
|
||||||
if job["need"]:
|
if job["need"]:
|
||||||
self.log("up2k", "unfinished:\n {0}\n {1}".format(src, dst))
|
self.log("up2k", "unfinished:\n {0}\n {1}".format(src, dst))
|
||||||
err = "partial upload exists at a different location; please resume uploading here instead:\n{0}{1} ".format(
|
err = "partial upload exists at a different location; please resume uploading here instead:\n"
|
||||||
job["vdir"], job["name"]
|
err += vsrc + " "
|
||||||
)
|
raise Pebkac(400, err)
|
||||||
|
elif "nodupe" in job["flag"]:
|
||||||
|
self.log("up2k", "dupe-reject:\n {0}\n {1}".format(src, dst))
|
||||||
|
err = "upload rejected, file already exists:\n " + vsrc + " "
|
||||||
raise Pebkac(400, err)
|
raise Pebkac(400, err)
|
||||||
else:
|
else:
|
||||||
# symlink to the client-provided name,
|
# symlink to the client-provided name,
|
||||||
# returning the previous upload info
|
# returning the previous upload info
|
||||||
job = deepcopy(job)
|
job = deepcopy(job)
|
||||||
job["rdir"] = cj["rdir"]
|
for k in ["ptop", "vtop", "prel"]:
|
||||||
job["name"] = self._untaken(cj["rdir"], cj["name"], now, cj["addr"])
|
job[k] = cj[k]
|
||||||
dst = os.path.join(job["rdir"], job["name"])
|
|
||||||
|
pdir = os.path.join(cj["ptop"], cj["prel"])
|
||||||
|
job["name"] = self._untaken(pdir, cj["name"], now, cj["addr"])
|
||||||
|
dst = os.path.join(job["ptop"], job["prel"], job["name"])
|
||||||
os.unlink(fsenc(dst)) # TODO ed pls
|
os.unlink(fsenc(dst)) # TODO ed pls
|
||||||
self._symlink(src, dst)
|
self._symlink(src, dst)
|
||||||
else:
|
|
||||||
|
if not job:
|
||||||
job = {
|
job = {
|
||||||
"wark": wark,
|
"wark": wark,
|
||||||
"t0": now,
|
"t0": now,
|
||||||
"addr": cj["addr"],
|
|
||||||
"vdir": cj["vdir"],
|
|
||||||
"rdir": cj["rdir"],
|
|
||||||
# client-provided, sanitized by _get_wark:
|
|
||||||
"name": cj["name"],
|
|
||||||
"size": cj["size"],
|
|
||||||
"lmod": cj["lmod"],
|
|
||||||
"hash": deepcopy(cj["hash"]),
|
"hash": deepcopy(cj["hash"]),
|
||||||
|
"need": [],
|
||||||
}
|
}
|
||||||
|
# client-provided, sanitized by _get_wark: name, size, lmod
|
||||||
|
for k in [
|
||||||
|
"addr",
|
||||||
|
"vtop",
|
||||||
|
"ptop",
|
||||||
|
"prel",
|
||||||
|
"flag",
|
||||||
|
"name",
|
||||||
|
"size",
|
||||||
|
"lmod",
|
||||||
|
"poke",
|
||||||
|
]:
|
||||||
|
job[k] = cj[k]
|
||||||
|
|
||||||
# one chunk may occur multiple times in a file;
|
# one chunk may occur multiple times in a file;
|
||||||
# filter to unique values for the list of missing chunks
|
# filter to unique values for the list of missing chunks
|
||||||
# (preserve order to reduce disk thrashing)
|
# (preserve order to reduce disk thrashing)
|
||||||
job["need"] = []
|
|
||||||
lut = {}
|
lut = {}
|
||||||
for k in cj["hash"]:
|
for k in cj["hash"]:
|
||||||
if k not in lut:
|
if k not in lut:
|
||||||
@@ -142,37 +407,55 @@ class Up2k(object):
|
|||||||
self.log("up2k", "cannot symlink; creating copy: " + repr(ex))
|
self.log("up2k", "cannot symlink; creating copy: " + repr(ex))
|
||||||
shutil.copy2(fsenc(src), fsenc(dst))
|
shutil.copy2(fsenc(src), fsenc(dst))
|
||||||
|
|
||||||
def handle_chunk(self, wark, chash):
|
def handle_chunk(self, ptop, wark, chash):
|
||||||
with self.mutex:
|
with self.mutex:
|
||||||
job = self.registry.get(wark)
|
job = self.registry[ptop].get(wark, None)
|
||||||
if not job:
|
if not job:
|
||||||
raise Pebkac(404, "unknown wark")
|
raise Pebkac(400, "unknown wark")
|
||||||
|
|
||||||
if chash not in job["need"]:
|
if chash not in job["need"]:
|
||||||
raise Pebkac(200, "already got that but thanks??")
|
raise Pebkac(200, "already got that but thanks??")
|
||||||
|
|
||||||
nchunk = [n for n, v in enumerate(job["hash"]) if v == chash]
|
nchunk = [n for n, v in enumerate(job["hash"]) if v == chash]
|
||||||
if not nchunk:
|
if not nchunk:
|
||||||
raise Pebkac(404, "unknown chunk")
|
raise Pebkac(400, "unknown chunk")
|
||||||
|
|
||||||
|
job["poke"] = time.time()
|
||||||
|
|
||||||
chunksize = self._get_chunksize(job["size"])
|
chunksize = self._get_chunksize(job["size"])
|
||||||
ofs = [chunksize * x for x in nchunk]
|
ofs = [chunksize * x for x in nchunk]
|
||||||
|
|
||||||
path = os.path.join(job["rdir"], job["name"])
|
path = os.path.join(job["ptop"], job["prel"], job["tnam"])
|
||||||
|
|
||||||
return [chunksize, ofs, path, job["lmod"]]
|
return [chunksize, ofs, path, job["lmod"]]
|
||||||
|
|
||||||
def confirm_chunk(self, wark, chash):
|
def confirm_chunk(self, ptop, wark, chash):
|
||||||
with self.mutex:
|
with self.mutex:
|
||||||
job = self.registry[wark]
|
job = self.registry[ptop][wark]
|
||||||
|
pdir = os.path.join(job["ptop"], job["prel"])
|
||||||
|
src = os.path.join(pdir, job["tnam"])
|
||||||
|
dst = os.path.join(pdir, job["name"])
|
||||||
|
|
||||||
job["need"].remove(chash)
|
job["need"].remove(chash)
|
||||||
ret = len(job["need"])
|
ret = len(job["need"])
|
||||||
|
if ret > 0:
|
||||||
|
return ret, src
|
||||||
|
|
||||||
if WINDOWS and ret == 0:
|
atomic_move(src, dst)
|
||||||
path = os.path.join(job["rdir"], job["name"])
|
|
||||||
self.lastmod_q.put([path, (int(time.time()), int(job["lmod"]))])
|
|
||||||
|
|
||||||
return ret
|
if WINDOWS:
|
||||||
|
self.lastmod_q.put([dst, (int(time.time()), int(job["lmod"]))])
|
||||||
|
|
||||||
|
db = self.db.get(job["ptop"], None)
|
||||||
|
if db:
|
||||||
|
rp = os.path.join(job["prel"], job["name"]).replace("\\", "/")
|
||||||
|
self.db_rm(db, rp)
|
||||||
|
self.db_add(db, job["wark"], rp, job["lmod"], job["size"])
|
||||||
|
db.commit()
|
||||||
|
del self.registry[ptop][wark]
|
||||||
|
# in-memory registry is reserved for unfinished uploads
|
||||||
|
|
||||||
|
return ret, dst
|
||||||
|
|
||||||
def _get_chunksize(self, filesize):
|
def _get_chunksize(self, filesize):
|
||||||
chunksize = 1024 * 1024
|
chunksize = 1024 * 1024
|
||||||
@@ -186,6 +469,13 @@ class Up2k(object):
|
|||||||
chunksize += stepsize
|
chunksize += stepsize
|
||||||
stepsize *= mul
|
stepsize *= mul
|
||||||
|
|
||||||
|
def db_rm(self, db, rp):
|
||||||
|
db.execute("delete from up where rp = ?", (rp,))
|
||||||
|
|
||||||
|
def db_add(self, db, wark, rp, ts, sz):
|
||||||
|
v = (wark, ts, sz, rp)
|
||||||
|
db.execute("insert into up values (?,?,?,?)", v)
|
||||||
|
|
||||||
def _get_wark(self, cj):
|
def _get_wark(self, cj):
|
||||||
if len(cj["name"]) > 1024 or len(cj["hash"]) > 512 * 1024: # 16TiB
|
if len(cj["name"]) > 1024 or len(cj["hash"]) > 512 * 1024: # 16TiB
|
||||||
raise Pebkac(400, "name or numchunks not according to spec")
|
raise Pebkac(400, "name or numchunks not according to spec")
|
||||||
@@ -202,9 +492,13 @@ class Up2k(object):
|
|||||||
except:
|
except:
|
||||||
cj["lmod"] = int(time.time())
|
cj["lmod"] = int(time.time())
|
||||||
|
|
||||||
# server-reproducible file identifier, independent of name or location
|
wark = self._wark_from_hashlist(cj["size"], cj["hash"])
|
||||||
ident = [self.salt, str(cj["size"])]
|
return wark
|
||||||
ident.extend(cj["hash"])
|
|
||||||
|
def _wark_from_hashlist(self, filesize, hashes):
|
||||||
|
""" server-reproducible file identifier, independent of name or location """
|
||||||
|
ident = [self.salt, str(filesize)]
|
||||||
|
ident.extend(hashes)
|
||||||
ident = "\n".join(ident)
|
ident = "\n".join(ident)
|
||||||
|
|
||||||
hasher = hashlib.sha512()
|
hasher = hashlib.sha512()
|
||||||
@@ -214,11 +508,40 @@ class Up2k(object):
|
|||||||
wark = base64.urlsafe_b64encode(digest)
|
wark = base64.urlsafe_b64encode(digest)
|
||||||
return wark.decode("utf-8").rstrip("=")
|
return wark.decode("utf-8").rstrip("=")
|
||||||
|
|
||||||
|
def _hashlist_from_file(self, path):
|
||||||
|
fsz = os.path.getsize(path)
|
||||||
|
csz = self._get_chunksize(fsz)
|
||||||
|
ret = []
|
||||||
|
with open(path, "rb", 512 * 1024) as f:
|
||||||
|
while fsz > 0:
|
||||||
|
hashobj = hashlib.sha512()
|
||||||
|
rem = min(csz, fsz)
|
||||||
|
fsz -= rem
|
||||||
|
while rem > 0:
|
||||||
|
buf = f.read(min(rem, 64 * 1024))
|
||||||
|
if not buf:
|
||||||
|
raise Exception("EOF at " + str(f.tell()))
|
||||||
|
|
||||||
|
hashobj.update(buf)
|
||||||
|
rem -= len(buf)
|
||||||
|
|
||||||
|
digest = hashobj.digest()[:32]
|
||||||
|
digest = base64.urlsafe_b64encode(digest)
|
||||||
|
ret.append(digest.decode("utf-8").rstrip("="))
|
||||||
|
|
||||||
|
return ret
|
||||||
|
|
||||||
def _new_upload(self, job):
|
def _new_upload(self, job):
|
||||||
self.registry[job["wark"]] = job
|
self.registry[job["ptop"]][job["wark"]] = job
|
||||||
|
pdir = os.path.join(job["ptop"], job["prel"])
|
||||||
|
job["name"] = self._untaken(pdir, job["name"], job["t0"], job["addr"])
|
||||||
|
# if len(job["name"].split(".")) > 8:
|
||||||
|
# raise Exception("aaa")
|
||||||
|
|
||||||
|
tnam = job["name"] + ".PARTIAL"
|
||||||
suffix = ".{:.6f}-{}".format(job["t0"], job["addr"])
|
suffix = ".{:.6f}-{}".format(job["t0"], job["addr"])
|
||||||
with ren_open(job["name"], "wb", fdir=job["rdir"], suffix=suffix) as f:
|
with ren_open(tnam, "wb", fdir=pdir, suffix=suffix) as f:
|
||||||
f, job["name"] = f["orz"]
|
f, job["tnam"] = f["orz"]
|
||||||
f.seek(job["size"] - 1)
|
f.seek(job["size"] - 1)
|
||||||
f.write(b"e")
|
f.write(b"e")
|
||||||
|
|
||||||
@@ -235,3 +558,58 @@ class Up2k(object):
|
|||||||
os.utime(fsenc(path), times)
|
os.utime(fsenc(path), times)
|
||||||
except:
|
except:
|
||||||
self.log("lmod", "failed to utime ({}, {})".format(path, times))
|
self.log("lmod", "failed to utime ({}, {})".format(path, times))
|
||||||
|
|
||||||
|
def _snapshot(self):
|
||||||
|
persist_interval = 30 # persist unfinished uploads index every 30 sec
|
||||||
|
discard_interval = 21600 # drop unfinished uploads after 6 hours inactivity
|
||||||
|
prev = {}
|
||||||
|
while True:
|
||||||
|
time.sleep(persist_interval)
|
||||||
|
with self.mutex:
|
||||||
|
for k, reg in self.registry.items():
|
||||||
|
self._snap_reg(prev, k, reg, discard_interval)
|
||||||
|
|
||||||
|
def _snap_reg(self, prev, k, reg, discard_interval):
|
||||||
|
now = time.time()
|
||||||
|
rm = [x for x in reg.values() if now - x["poke"] > discard_interval]
|
||||||
|
if rm:
|
||||||
|
m = "dropping {} abandoned uploads in {}".format(len(rm), k)
|
||||||
|
vis = [self._vis_job_progress(x) for x in rm]
|
||||||
|
self.log("up2k", "\n".join([m] + vis))
|
||||||
|
for job in rm:
|
||||||
|
del reg[job["wark"]]
|
||||||
|
try:
|
||||||
|
# remove the filename reservation
|
||||||
|
path = os.path.join(job["ptop"], job["prel"], job["name"])
|
||||||
|
if os.path.getsize(path) == 0:
|
||||||
|
os.unlink(path)
|
||||||
|
|
||||||
|
if len(job["hash"]) == len(job["need"]):
|
||||||
|
# PARTIAL is empty, delete that too
|
||||||
|
path = os.path.join(job["ptop"], job["prel"], job["tnam"])
|
||||||
|
os.unlink(path)
|
||||||
|
except:
|
||||||
|
pass
|
||||||
|
|
||||||
|
path = os.path.join(k, ".hist", "up2k.snap")
|
||||||
|
if not reg:
|
||||||
|
if k not in prev or prev[k] is not None:
|
||||||
|
prev[k] = None
|
||||||
|
if os.path.exists(path):
|
||||||
|
os.unlink(path)
|
||||||
|
return
|
||||||
|
|
||||||
|
newest = max(x["poke"] for _, x in reg.items()) if reg else 0
|
||||||
|
etag = [len(reg), newest]
|
||||||
|
if etag == prev.get(k, None):
|
||||||
|
return
|
||||||
|
|
||||||
|
path2 = "{}.{}".format(path, os.getpid())
|
||||||
|
j = json.dumps(reg, indent=2, sort_keys=True).encode("utf-8")
|
||||||
|
with gzip.GzipFile(path2, "wb") as f:
|
||||||
|
f.write(j)
|
||||||
|
|
||||||
|
atomic_move(path2, path)
|
||||||
|
|
||||||
|
self.log("up2k", "snap: {} |{}|".format(path, len(reg.keys())))
|
||||||
|
prev[k] = etag
|
||||||
|
|||||||
@@ -549,6 +549,16 @@ else:
|
|||||||
fsdec = w8dec
|
fsdec = w8dec
|
||||||
|
|
||||||
|
|
||||||
|
def atomic_move(src, dst):
|
||||||
|
if not PY2:
|
||||||
|
os.replace(src, dst)
|
||||||
|
else:
|
||||||
|
if os.path.exists(dst):
|
||||||
|
os.unlink(dst)
|
||||||
|
|
||||||
|
os.rename(src, dst)
|
||||||
|
|
||||||
|
|
||||||
def read_socket(sr, total_size):
|
def read_socket(sr, total_size):
|
||||||
remains = total_size
|
remains = total_size
|
||||||
while remains > 0:
|
while remains > 0:
|
||||||
@@ -712,3 +722,6 @@ class Pebkac(Exception):
|
|||||||
def __init__(self, code, msg=None):
|
def __init__(self, code, msg=None):
|
||||||
super(Pebkac, self).__init__(msg or HTTPCODE[code])
|
super(Pebkac, self).__init__(msg or HTTPCODE[code])
|
||||||
self.code = code
|
self.code = code
|
||||||
|
|
||||||
|
def __repr__(self):
|
||||||
|
return "Pebkac({}, {})".format(self.code, repr(self.args))
|
||||||
|
|||||||
@@ -8,7 +8,14 @@ function dbg(msg) {
|
|||||||
|
|
||||||
function ev(e) {
|
function ev(e) {
|
||||||
e = e || window.event;
|
e = e || window.event;
|
||||||
e.preventDefault ? e.preventDefault() : (e.returnValue = false);
|
|
||||||
|
if (e.preventDefault)
|
||||||
|
e.preventDefault()
|
||||||
|
|
||||||
|
if (e.stopPropagation)
|
||||||
|
e.stopPropagation();
|
||||||
|
|
||||||
|
e.returnValue = false;
|
||||||
return e;
|
return e;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -447,7 +454,8 @@ function play(tid, call_depth) {
|
|||||||
mp.au.tid = tid;
|
mp.au.tid = tid;
|
||||||
mp.au.src = url;
|
mp.au.src = url;
|
||||||
mp.au.volume = mp.expvol();
|
mp.au.volume = mp.expvol();
|
||||||
setclass('trk' + tid, 'play act');
|
var oid = 'trk' + tid;
|
||||||
|
setclass(oid, 'play act');
|
||||||
|
|
||||||
try {
|
try {
|
||||||
if (hack_attempt_play)
|
if (hack_attempt_play)
|
||||||
@@ -456,7 +464,11 @@ function play(tid, call_depth) {
|
|||||||
if (mp.au.paused)
|
if (mp.au.paused)
|
||||||
autoplay_blocked();
|
autoplay_blocked();
|
||||||
|
|
||||||
location.hash = 'trk' + tid;
|
var o = ebi(oid);
|
||||||
|
o.setAttribute('id', 'thx_js');
|
||||||
|
location.hash = oid;
|
||||||
|
o.setAttribute('id', oid);
|
||||||
|
|
||||||
pbar.drawbuf();
|
pbar.drawbuf();
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -201,6 +201,7 @@ function up2k_init(have_crypto) {
|
|||||||
|
|
||||||
var parallel_uploads = cfg_get('nthread');
|
var parallel_uploads = cfg_get('nthread');
|
||||||
var multitask = bcfg_get('multitask', true);
|
var multitask = bcfg_get('multitask', true);
|
||||||
|
var ask_up = bcfg_get('ask_up', true);
|
||||||
|
|
||||||
var col_hashing = '#00bbff';
|
var col_hashing = '#00bbff';
|
||||||
var col_hashed = '#004466';
|
var col_hashed = '#004466';
|
||||||
@@ -262,6 +263,7 @@ function up2k_init(have_crypto) {
|
|||||||
|
|
||||||
more_one_file();
|
more_one_file();
|
||||||
var bad_files = [];
|
var bad_files = [];
|
||||||
|
var good_files = [];
|
||||||
for (var a = 0; a < files.length; a++) {
|
for (var a = 0; a < files.length; a++) {
|
||||||
var fobj = files[a];
|
var fobj = files[a];
|
||||||
if (is_itemlist) {
|
if (is_itemlist) {
|
||||||
@@ -275,9 +277,32 @@ function up2k_init(have_crypto) {
|
|||||||
throw 1;
|
throw 1;
|
||||||
}
|
}
|
||||||
catch (ex) {
|
catch (ex) {
|
||||||
bad_files.push([a, fobj.name]);
|
bad_files.push(fobj.name);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
good_files.push(fobj);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (bad_files.length > 0) {
|
||||||
|
var msg = 'These {0} files (of {1} total) were skipped because they are empty:\n'.format(bad_files.length, files.length);
|
||||||
|
for (var a = 0; a < bad_files.length; a++)
|
||||||
|
msg += '-- ' + bad_files[a] + '\n';
|
||||||
|
|
||||||
|
if (files.length - bad_files.length <= 1 && /(android)/i.test(navigator.userAgent))
|
||||||
|
msg += '\nFirefox-Android has a bug which prevents selecting multiple files. Try selecting one file at a time. For more info, see firefox bug 1456557';
|
||||||
|
|
||||||
|
alert(msg);
|
||||||
|
}
|
||||||
|
|
||||||
|
var msg = ['upload these ' + good_files.length + ' files?'];
|
||||||
|
for (var a = 0; a < good_files.length; a++)
|
||||||
|
msg.push(good_files[a].name);
|
||||||
|
|
||||||
|
if (ask_up && !confirm(msg.join('\n')))
|
||||||
|
return;
|
||||||
|
|
||||||
|
for (var a = 0; a < good_files.length; a++) {
|
||||||
|
var fobj = good_files[a];
|
||||||
var now = new Date().getTime();
|
var now = new Date().getTime();
|
||||||
var lmod = fobj.lastModified || now;
|
var lmod = fobj.lastModified || now;
|
||||||
var entry = {
|
var entry = {
|
||||||
@@ -307,17 +332,6 @@ function up2k_init(have_crypto) {
|
|||||||
st.files.push(entry);
|
st.files.push(entry);
|
||||||
st.todo.hash.push(entry);
|
st.todo.hash.push(entry);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (bad_files.length > 0) {
|
|
||||||
var msg = 'These {0} files (of {1} total) were skipped because they are empty:\n'.format(bad_files.length, files.length);
|
|
||||||
for (var a = 0; a < bad_files.length; a++)
|
|
||||||
msg += '-- ' + bad_files[a][1] + '\n';
|
|
||||||
|
|
||||||
if (files.length - bad_files.length <= 1 && /(android)/i.test(navigator.userAgent))
|
|
||||||
msg += '\nFirefox-Android has a bug which prevents selecting multiple files. Try selecting one file at a time. For more info, see firefox bug 1456557';
|
|
||||||
|
|
||||||
alert(msg);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
ebi('u2btn').addEventListener('drop', gotfile, false);
|
ebi('u2btn').addEventListener('drop', gotfile, false);
|
||||||
|
|
||||||
@@ -336,16 +350,17 @@ function up2k_init(have_crypto) {
|
|||||||
//
|
//
|
||||||
|
|
||||||
function handshakes_permitted() {
|
function handshakes_permitted() {
|
||||||
return multitask || (
|
var lim = multitask ? 1 : 0;
|
||||||
st.todo.upload.length == 0 &&
|
return lim >=
|
||||||
st.busy.upload.length == 0);
|
st.todo.upload.length +
|
||||||
|
st.busy.upload.length;
|
||||||
}
|
}
|
||||||
|
|
||||||
function hashing_permitted() {
|
function hashing_permitted() {
|
||||||
return multitask || (
|
var lim = multitask ? 1 : 0;
|
||||||
handshakes_permitted() &&
|
return handshakes_permitted() && lim >=
|
||||||
st.todo.handshake.length == 0 &&
|
st.todo.handshake.length +
|
||||||
st.busy.handshake.length == 0);
|
st.busy.handshake.length;
|
||||||
}
|
}
|
||||||
|
|
||||||
var tasker = (function () {
|
var tasker = (function () {
|
||||||
@@ -670,8 +685,12 @@ function up2k_init(have_crypto) {
|
|||||||
else {
|
else {
|
||||||
var err = "";
|
var err = "";
|
||||||
var rsp = (xhr.responseText + '');
|
var rsp = (xhr.responseText + '');
|
||||||
if (rsp.indexOf('partial upload exists') !== -1) {
|
if (rsp.indexOf('partial upload exists') !== -1 ||
|
||||||
err = rsp.slice(5);
|
rsp.indexOf('file already exists') !== -1) {
|
||||||
|
err = rsp;
|
||||||
|
var ofs = err.lastIndexOf(' : ');
|
||||||
|
if (ofs > 0)
|
||||||
|
err = err.slice(0, ofs);
|
||||||
}
|
}
|
||||||
if (err != "") {
|
if (err != "") {
|
||||||
ebi('f{0}t'.format(t.n)).innerHTML = "ERROR";
|
ebi('f{0}t'.format(t.n)).innerHTML = "ERROR";
|
||||||
@@ -821,6 +840,11 @@ function up2k_init(have_crypto) {
|
|||||||
bcfg_set('multitask', multitask);
|
bcfg_set('multitask', multitask);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function tgl_ask_up() {
|
||||||
|
ask_up = !ask_up;
|
||||||
|
bcfg_set('ask_up', ask_up);
|
||||||
|
}
|
||||||
|
|
||||||
function nop(ev) {
|
function nop(ev) {
|
||||||
ev.preventDefault();
|
ev.preventDefault();
|
||||||
this.click();
|
this.click();
|
||||||
@@ -837,6 +861,7 @@ function up2k_init(have_crypto) {
|
|||||||
|
|
||||||
ebi('nthread').addEventListener('input', bumpthread, false);
|
ebi('nthread').addEventListener('input', bumpthread, false);
|
||||||
ebi('multitask').addEventListener('click', tgl_multitask, false);
|
ebi('multitask').addEventListener('click', tgl_multitask, false);
|
||||||
|
ebi('ask_up').addEventListener('click', tgl_ask_up, false);
|
||||||
|
|
||||||
var nodes = ebi('u2conf').getElementsByTagName('a');
|
var nodes = ebi('u2conf').getElementsByTagName('a');
|
||||||
for (var a = nodes.length - 1; a >= 0; a--)
|
for (var a = nodes.length - 1; a >= 0; a--)
|
||||||
|
|||||||
@@ -194,6 +194,12 @@
|
|||||||
#u2conf input+a {
|
#u2conf input+a {
|
||||||
background: #d80;
|
background: #d80;
|
||||||
}
|
}
|
||||||
|
#u2conf input[type="checkbox"]+label {
|
||||||
|
color: #f5a;
|
||||||
|
}
|
||||||
|
#u2conf input[type="checkbox"]:checked+label {
|
||||||
|
color: #fc5;
|
||||||
|
}
|
||||||
#u2foot {
|
#u2foot {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
|
|||||||
@@ -43,10 +43,14 @@
|
|||||||
<input class="txtbox" id="nthread" value="2" />
|
<input class="txtbox" id="nthread" value="2" />
|
||||||
<a href="#" id="nthread_add">+</a>
|
<a href="#" id="nthread_add">+</a>
|
||||||
</td>
|
</td>
|
||||||
<td rowspan="2">
|
<td rowspan="2" style="padding-left:1.5em">
|
||||||
<input type="checkbox" id="multitask" />
|
<input type="checkbox" id="multitask" />
|
||||||
<label for="multitask">hash while<br />uploading</label>
|
<label for="multitask">hash while<br />uploading</label>
|
||||||
</td>
|
</td>
|
||||||
|
<td rowspan="2">
|
||||||
|
<input type="checkbox" id="ask_up" />
|
||||||
|
<label for="ask_up">ask for<br />confirmation</label>
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
|||||||
@@ -3,6 +3,14 @@ echo not a script
|
|||||||
exit 1
|
exit 1
|
||||||
|
|
||||||
|
|
||||||
|
##
|
||||||
|
## delete all partial uploads
|
||||||
|
## (supports linux/macos, probably windows+msys2)
|
||||||
|
|
||||||
|
gzip -d < .hist/up2k.snap | jq -r '.[].tnam' | while IFS= read -r f; do rm -f -- "$f"; done
|
||||||
|
gzip -d < .hist/up2k.snap | jq -r '.[].name' | while IFS= read -r f; do wc -c -- "$f" | grep -qiE '^[^0-9a-z]*0' && rm -f -- "$f"; done
|
||||||
|
|
||||||
|
|
||||||
##
|
##
|
||||||
## create a test payload
|
## create a test payload
|
||||||
|
|
||||||
|
|||||||
@@ -3,12 +3,15 @@ set -e
|
|||||||
echo
|
echo
|
||||||
|
|
||||||
# osx support
|
# osx support
|
||||||
command -v gtar >/dev/null &&
|
# port install gnutar findutils gsed coreutils
|
||||||
command -v gfind >/dev/null && {
|
gtar=$(command -v gtar || command -v gnutar) || true
|
||||||
tar() { gtar "$@"; }
|
[ ! -z "$gtar" ] && command -v gfind >/dev/null && {
|
||||||
|
tar() { $gtar "$@"; }
|
||||||
sed() { gsed "$@"; }
|
sed() { gsed "$@"; }
|
||||||
find() { gfind "$@"; }
|
find() { gfind "$@"; }
|
||||||
sort() { gsort "$@"; }
|
sort() { gsort "$@"; }
|
||||||
|
command -v grealpath >/dev/null &&
|
||||||
|
realpath() { grealpath "$@"; }
|
||||||
}
|
}
|
||||||
|
|
||||||
which md5sum 2>/dev/null >/dev/null &&
|
which md5sum 2>/dev/null >/dev/null &&
|
||||||
|
|||||||
@@ -18,13 +18,16 @@ echo
|
|||||||
# (the fancy markdown editor)
|
# (the fancy markdown editor)
|
||||||
|
|
||||||
|
|
||||||
command -v gtar >/dev/null &&
|
# port install gnutar findutils gsed coreutils
|
||||||
command -v gfind >/dev/null && {
|
gtar=$(command -v gtar || command -v gnutar) || true
|
||||||
tar() { gtar "$@"; }
|
[ ! -z "$gtar" ] && command -v gfind >/dev/null && {
|
||||||
|
tar() { $gtar "$@"; }
|
||||||
sed() { gsed "$@"; }
|
sed() { gsed "$@"; }
|
||||||
find() { gfind "$@"; }
|
find() { gfind "$@"; }
|
||||||
sort() { gsort "$@"; }
|
sort() { gsort "$@"; }
|
||||||
unexpand() { gunexpand "$@"; }
|
unexpand() { gunexpand "$@"; }
|
||||||
|
command -v grealpath >/dev/null &&
|
||||||
|
realpath() { grealpath "$@"; }
|
||||||
}
|
}
|
||||||
|
|
||||||
[ -e copyparty/__main__.py ] || cd ..
|
[ -e copyparty/__main__.py ] || cd ..
|
||||||
|
|||||||
@@ -2,12 +2,16 @@
|
|||||||
set -e
|
set -e
|
||||||
echo
|
echo
|
||||||
|
|
||||||
command -v gtar >/dev/null &&
|
# osx support
|
||||||
command -v gfind >/dev/null && {
|
# port install gnutar findutils gsed coreutils
|
||||||
tar() { gtar "$@"; }
|
gtar=$(command -v gtar || command -v gnutar) || true
|
||||||
|
[ ! -z "$gtar" ] && command -v gfind >/dev/null && {
|
||||||
|
tar() { $gtar "$@"; }
|
||||||
sed() { gsed "$@"; }
|
sed() { gsed "$@"; }
|
||||||
find() { gfind "$@"; }
|
find() { gfind "$@"; }
|
||||||
sort() { gsort "$@"; }
|
sort() { gsort "$@"; }
|
||||||
|
command -v grealpath >/dev/null &&
|
||||||
|
realpath() { grealpath "$@"; }
|
||||||
}
|
}
|
||||||
|
|
||||||
which md5sum 2>/dev/null >/dev/null &&
|
which md5sum 2>/dev/null >/dev/null &&
|
||||||
|
|||||||
Reference in New Issue
Block a user