Is it possible for Syncthing not to lock files in Windows when hashing them?

It doesn’t explicitly lock them.

We simply open them for reading using the standard go apis.

1 Like

I wonder if there exists any kind of a solution or a hack to get around this then :innocent:.

For the record, Dropbox has the same problem, which is actually much worse there, because it locks files until they have been uploaded to their servers, which may take quite a while. With Syncthing, it seems to only be the hashing that locks them.

The only user-side workaround that I can think of right now is to delay file watcher by a significant amount of time, e.g. 5 minutes, so that the user has enough time to do their file operations before Syncthing accesses the files.

I assume you are seeing this on a Windows machine. The file is not actually “locked” by anyone, but it’s just how Windows works. In contrast to many other (e.g. UNIX-style) operating systems, Windows tries to forbid things going away as long as they’re in use (opened) by some piece of software. The solution is easy, use a sane operating system :wink:

IMHO this Windows behavior has always been unfortunate to put it mildly. In a 1970s world where computers were hard wired room-filling beasts, nothing could ever disappear hardware-wise. But with the introduction of USB storage devices at the latest, the assumption that stuff can be disallowed from disappearing is simply wrong. Try deleting a 12 GB video file in Linux while watching it. That will happily work and the video will still keep playing until the end, because the actual data is only freed when the last accessor closes the file. Such graceful failure mechanisms are not possible in Windows, because the one deleting the file will get an access denied error. If a file disappears because the hardware is unplugged, a read / write error will occur, and the same could be expected and handled by any program using any file at any time. There is simply no way to prevent things from disappearing, so Windows trying to ensure that by giving errors to any other offending program is a lost cause from the start.

That said, the Shadow Copy function could be used by Syncthing to work on a consistent filesystem snapshot while others can happily continue modifying and deleting files. That could even be supported on some other platforms’ file systems, but it is far from universal or portable. So there is currently no code in Syncthing to use such workarounds only on Windows systems.

1 Like

“Locked” is literally the terminology used by MS (e.g. see https://techcommunity.microsoft.com/t5/windows-blog-archive/the-case-of-the-mysterious-locked-file/ba-p/723349) :wink:. Windows itself displays a warning about the file or folder being “in use”.

image

Yeah, although as mentioned above, the behaviour is not exactly consistent. If you delete the file while Syncthing is pushing it to a remote device, Windows will not complain and happily perform the operation.

In addition to that, I have myself been replacing the Syncthing binary on Linux with a different version while still running, then press restart in the GUI, and it will happily restart using the new binary. This will never work on Windows, which will not allow to replace the binary like that in the first place.

Apparently Go’s file open sets FILE_SHARE_READ | FILE_SHARE_WRITE which means to allow concurrent reads and writes to the file by others while we have it open. It does not set FILE_SHARE_DELETE which would allow delete and rename concurrently with it being opened by us. I’m not sure if that’s intentional or just an oversight on the part of whoever wrote this Go code. Someone could open an issue on golang/go to clarify. (Generally Go strives to default to Unix-like behavior, thus disabling locking by default, so I would tend to think this is an oversight and not intentional.)

We could use syscall.CreateFile directly in our filesystem abstraction for Windows and set FILE_SHARE_DELETE there, instead of os.Open. Someone could investigate that and file an issue + PR if they cared enough. :wink:

Aaaactually… I think this is the one point where the two are kind of similar? We do the rename-and-replace (but not delete) dance with the running binary on Windows during auto updates, and Linux does in fact reject opening a running binary for writing (as opposed to renaming or deleting it):

% scp syncthing ams2:
scp: ./syncthing: Text file busy

(the error is from the remote, where scp does not do the write-to-temp-file-and-rename by default, and of course in Unix terminology “text file” means “running binary” because code lives in the TEXT segment of the executable… :roll_eyes: )

:slight_smile:

2 Likes

This is kind of important for me, but to tell the truth, I have no idea how and where to modify the Syncthing code to add this functionality. At least for testing purposes, would it be enough to change

sharemode := uint32(FILE_SHARE_READ | FILE_SHARE_WRITE)

to

sharemode := uint32(FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE)

in Go, compile local Go binaries, and then use those to compile Syncthing?

You don’t need to recompile go, as that is just the compiler, the standard library is not baked into it. I think it might be enough to change the standard library code and I think go would recompile the standard library before compiling syncthing.

That atleast was the case when I was testing some networking changes.

1 Like

I modified syscall_windows.go in C:\Program Files\Go\src, then recompiled Syncthing. Go picked the changes automatically and built new binaries. I have compared them with the previous ones, and the hash indeed differed.

Then, I did some quick testing with large files using slow storage, and it was possible to move them out of the Syncthing folder while it was still hashing them. It took a few more seconds for the Web GUI to update its state, but regardless, the solution seems to be working!

1 Like

Relevant proposals, both declined:

1 Like

This is unfortunate :confused:.

Here, the user keeps complaining about their files being locked, preventing them from moving them to a different location. Because of this, tomorrow we are planning to switch from the official binary to a custom built one (with FILE_SHARE_DELETE implemented), at least temporarily, since this has been hindering their work too much.

@tomasz86 Where exactly did you modify syscall_windows.go?

You just need to replace sharemode := uint32(FILE_SHARE_READ | FILE_SHARE_WRITE) with sharemode := uint32(FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE).

I use this PowerShell script to do this automatically after every new Go installation.

$SyscallWindowsGoFile = Join-Path -Path $Env:ProgramFiles -ChildPath "go" | Join-Path -ChildPath "src" | Join-Path -ChildPath "syscall" | Join-Path -ChildPath "syscall_windows.go"

if (Test-Path -LiteralPath $SyscallWindowsGoFile -PathType Leaf) {
	(Get-Content -LiteralPath $SyscallWindowsGoFile) -replace "sharemode := uint32\(FILE_SHARE_READ \| FILE_SHARE_WRITE\)","sharemode := uint32(FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE)" | Set-Content -LiteralPath $SyscallWindowsGoFile
}

Pause
1 Like

For what it’s worth I hit this issue regularly. I’m regularly moving and or renaming files in watched folders which causes rehashing and problems renaming parent directories, or whatever. I have to launch the UI, pause the folder to stop the hashing and then remember to resume the folder when I am done. It would be great for this fix to make it into the production release. Syncthing should ideally work without interfering with what we are trying to do with the files.

1 Like

Not sure it would help with rehashing since Syncthing won’t know that a moved/renamed file contains previously known blocks until it hashes it.

The exact behavior also depends on the underlying filesystem. Microsoft’s ReFS, Oracle’s ZFS/OpenZFS, XFS, btrfs plus other copy-on-write (COW) filesystems support deletes, renames, and writing (including overwriting a binary executable that’s in use).

My Syncthing folders are on a btrfs volume so renaming/overwriting/deleting files and directories hasn’t been an issue. Having the volume on a SSD also makes disk I/O from Syncthing’s rehashing low impact.

There are a few hashing-related parameters that can be tuned if the overhead is slowing down your system.

Don’t care about the rehashing speed. But I would like the OS to allow me to move the file or rename the parent directory while the hashing is ongoing. If the file disappears during the hashing just move onto the next file and queue a rescan or something.

To be clear, this is not about importing a fix into Syncthing. It’s the Go standard library that needs the change.

1 Like

Implementing what you mentioned previously would be fine, right?

Because I’m eventually planning to give it a try sometime in the future :sweat_smile:.

1 Like

Depends on what the PR looks like. If it ends up duplicating hundreds of lines of internal standard library code that we then need to maintain in perpetuity it may not, in fact, be fine. If the ugliness is manageable, sure. Maybe we already do all the heavy lifting required.

Did I unerstand that correctly that Syncthing does not lock files on Linux?

So for example if my backup tool writes to/deletes from the folder while Syncthing is scanning this same folder, the backup tool won’t be blocked to do so.

I’d like to be sure that Syncthing operation won’t affect the backup files while they are created. That’s why I let Syncthing only run by manually issuing “systemctl start Syncthing” after made sure no backup jobs were running at the same time. And after syncing, I manually stopped it. If that can be configured to always run Syncthing in the background without additional data integrity risk, I would be very glad :slightly_smiling_face:

Linux doesn’t have mandatory locks in the way of Windows, and Syncthing doesn’t do any explicit locking of any kind there.

1 Like