2015-01-13 12:31:14 +00:00
|
|
|
// Copyright (C) 2014 The Protocol Authors.
|
2014-09-22 19:42:11 +00:00
|
|
|
|
2021-08-17 08:10:41 +00:00
|
|
|
//go:build windows
|
2014-09-22 19:42:11 +00:00
|
|
|
// +build windows
|
|
|
|
|
|
|
|
package protocol
|
|
|
|
|
2016-08-05 07:13:52 +00:00
|
|
|
// Windows uses backslashes as file separator
|
|
|
|
|
2016-12-01 12:35:32 +00:00
|
|
|
import (
|
2020-06-25 18:24:31 +00:00
|
|
|
"fmt"
|
2016-12-01 12:35:32 +00:00
|
|
|
"path/filepath"
|
|
|
|
"strings"
|
|
|
|
)
|
2014-09-22 19:42:11 +00:00
|
|
|
|
2021-10-03 10:13:04 +00:00
|
|
|
func makeNative(m Model) Model { return nativeModel{m} }
|
|
|
|
|
2014-09-22 19:42:11 +00:00
|
|
|
type nativeModel struct {
|
2016-04-15 10:59:41 +00:00
|
|
|
Model
|
2014-09-22 19:42:11 +00:00
|
|
|
}
|
|
|
|
|
2019-12-04 09:46:55 +00:00
|
|
|
func (m nativeModel) Index(deviceID DeviceID, folder string, files []FileInfo) error {
|
2016-12-01 12:35:32 +00:00
|
|
|
files = fixupFiles(files)
|
2019-12-04 09:46:55 +00:00
|
|
|
return m.Model.Index(deviceID, folder, files)
|
2014-09-22 19:42:11 +00:00
|
|
|
}
|
|
|
|
|
2019-12-04 09:46:55 +00:00
|
|
|
func (m nativeModel) IndexUpdate(deviceID DeviceID, folder string, files []FileInfo) error {
|
2016-12-01 12:35:32 +00:00
|
|
|
files = fixupFiles(files)
|
2019-12-04 09:46:55 +00:00
|
|
|
return m.Model.IndexUpdate(deviceID, folder, files)
|
2014-09-22 19:42:11 +00:00
|
|
|
}
|
|
|
|
|
2020-11-09 14:33:32 +00:00
|
|
|
func (m nativeModel) Request(deviceID DeviceID, folder, name string, blockNo, size int32, offset int64, hash []byte, weakHash uint32, fromTemporary bool) (RequestResponse, error) {
|
2016-12-01 12:35:32 +00:00
|
|
|
if strings.Contains(name, `\`) {
|
2016-12-21 09:43:12 +00:00
|
|
|
l.Warnf("Dropping request for %s, contains invalid path separator", name)
|
2018-11-13 07:53:55 +00:00
|
|
|
return nil, ErrNoSuchFile
|
2016-12-01 12:35:32 +00:00
|
|
|
}
|
|
|
|
|
2014-09-22 19:42:11 +00:00
|
|
|
name = filepath.FromSlash(name)
|
2020-11-09 14:33:32 +00:00
|
|
|
return m.Model.Request(deviceID, folder, name, blockNo, size, offset, hash, weakHash, fromTemporary)
|
2014-09-22 19:42:11 +00:00
|
|
|
}
|
2015-02-11 22:11:44 +00:00
|
|
|
|
2016-12-01 12:35:32 +00:00
|
|
|
func fixupFiles(files []FileInfo) []FileInfo {
|
|
|
|
var out []FileInfo
|
2016-08-05 07:13:52 +00:00
|
|
|
for i := range files {
|
2016-12-01 12:35:32 +00:00
|
|
|
if strings.Contains(files[i].Name, `\`) {
|
2020-06-25 18:24:31 +00:00
|
|
|
msg := fmt.Sprintf("Dropping index entry for %s, contains invalid path separator", files[i].Name)
|
|
|
|
if files[i].Deleted {
|
|
|
|
// Dropping a deleted item doesn't have any consequences.
|
|
|
|
l.Debugln(msg)
|
|
|
|
} else {
|
|
|
|
l.Warnln(msg)
|
|
|
|
}
|
2016-12-01 12:35:32 +00:00
|
|
|
if out == nil {
|
|
|
|
// Most incoming updates won't contain anything invalid, so
|
|
|
|
// we delay the allocation and copy to output slice until we
|
|
|
|
// really need to do it, then copy all the so-far valid
|
|
|
|
// files to it.
|
|
|
|
out = make([]FileInfo, i, len(files)-1)
|
|
|
|
copy(out, files)
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fixup the path separators
|
2015-02-11 22:11:44 +00:00
|
|
|
files[i].Name = filepath.FromSlash(files[i].Name)
|
2016-12-01 12:35:32 +00:00
|
|
|
|
|
|
|
if out != nil {
|
|
|
|
out = append(out, files[i])
|
|
|
|
}
|
2015-02-11 22:11:44 +00:00
|
|
|
}
|
2016-12-01 12:35:32 +00:00
|
|
|
|
|
|
|
if out != nil {
|
|
|
|
// We did some filtering
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
|
|
|
// Unchanged
|
|
|
|
return files
|
2015-02-11 22:11:44 +00:00
|
|
|
}
|