mirror of
https://github.com/rclone/rclone.git
synced 2024-11-23 12:29:24 +08:00
fbc7f2e61b
This replaces built-in os.MkdirAll with a patched version that stops the recursion when reaching the volume part of the path. The original version would continue recursion, and for extended length paths end up with \\? as the top-level directory, and the error message would then be something like: mkdir \\?: The filename, directory name, or volume label syntax is incorrect.
60 lines
1.2 KiB
Go
60 lines
1.2 KiB
Go
//go:build linux || freebsd
|
|
// +build linux freebsd
|
|
|
|
package docker
|
|
|
|
import (
|
|
"fmt"
|
|
"net"
|
|
"os"
|
|
"path/filepath"
|
|
|
|
"github.com/rclone/rclone/lib/file"
|
|
)
|
|
|
|
func newUnixListener(path string, gid int) (net.Listener, string, error) {
|
|
// try systemd socket activation
|
|
fds := systemdActivationFiles()
|
|
switch len(fds) {
|
|
case 0:
|
|
// fall thru
|
|
case 1:
|
|
listener, err := net.FileListener(fds[0])
|
|
return listener, "", err
|
|
default:
|
|
return nil, "", fmt.Errorf("expected only one socket from systemd, got %d", len(fds))
|
|
}
|
|
|
|
// create socket outselves
|
|
if filepath.Ext(path) == "" {
|
|
path += ".sock"
|
|
}
|
|
if !filepath.IsAbs(path) {
|
|
path = filepath.Join(sockDir, path)
|
|
}
|
|
|
|
if err := file.MkdirAll(filepath.Dir(path), 0755); err != nil {
|
|
return nil, "", err
|
|
}
|
|
if err := os.Remove(path); err != nil && !os.IsNotExist(err) {
|
|
return nil, "", err
|
|
}
|
|
|
|
listener, err := net.Listen("unix", path)
|
|
if err != nil {
|
|
return nil, "", err
|
|
}
|
|
|
|
if err = os.Chmod(path, 0660); err != nil {
|
|
return nil, "", err
|
|
}
|
|
if os.Geteuid() == 0 {
|
|
if err = os.Chown(path, 0, gid); err != nil {
|
|
return nil, "", err
|
|
}
|
|
}
|
|
|
|
// we don't use spec file with unix sockets
|
|
return listener, path, nil
|
|
}
|