syncthing/lib/protocol/nativemodel_windows.go

78 lines
1.9 KiB
Go
Raw Normal View History

2015-01-13 13:31:14 +01:00
// Copyright (C) 2014 The Protocol Authors.
2014-09-22 21:42:11 +02:00
//go:build windows
2014-09-22 21:42:11 +02:00
// +build windows
package protocol
// Windows uses backslashes as file separator
import (
"fmt"
"path/filepath"
"strings"
)
2014-09-22 21:42:11 +02:00
type nativeModel struct {
Model
2014-09-22 21:42:11 +02:00
}
func (m nativeModel) Index(deviceID DeviceID, folder string, files []FileInfo) error {
files = fixupFiles(files)
return m.Model.Index(deviceID, folder, files)
2014-09-22 21:42:11 +02:00
}
func (m nativeModel) IndexUpdate(deviceID DeviceID, folder string, files []FileInfo) error {
files = fixupFiles(files)
return m.Model.IndexUpdate(deviceID, folder, files)
2014-09-22 21:42:11 +02:00
}
func (m nativeModel) Request(deviceID DeviceID, folder, name string, blockNo, size int32, offset int64, hash []byte, weakHash uint32, fromTemporary bool) (RequestResponse, error) {
if strings.Contains(name, `\`) {
l.Warnf("Dropping request for %s, contains invalid path separator", name)
return nil, ErrNoSuchFile
}
2014-09-22 21:42:11 +02:00
name = filepath.FromSlash(name)
return m.Model.Request(deviceID, folder, name, blockNo, size, offset, hash, weakHash, fromTemporary)
2014-09-22 21:42:11 +02:00
}
2015-02-11 23:11:44 +01:00
func fixupFiles(files []FileInfo) []FileInfo {
var out []FileInfo
for i := range files {
if strings.Contains(files[i].Name, `\`) {
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)
}
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 23:11:44 +01:00
files[i].Name = filepath.FromSlash(files[i].Name)
if out != nil {
out = append(out, files[i])
}
2015-02-11 23:11:44 +01:00
}
if out != nil {
// We did some filtering
return out
}
// Unchanged
return files
2015-02-11 23:11:44 +01:00
}