2015-01-13 05:31:14 -07:00
|
|
|
// Copyright (C) 2014 The Protocol Authors.
|
2014-09-22 12:42:11 -07:00
|
|
|
|
|
|
|
// +build windows
|
|
|
|
|
|
|
|
package protocol
|
|
|
|
|
2016-08-05 00:13:52 -07:00
|
|
|
// Windows uses backslashes as file separator
|
|
|
|
|
2016-12-01 05:35:32 -07:00
|
|
|
import (
|
|
|
|
"path/filepath"
|
|
|
|
"strings"
|
|
|
|
)
|
2014-09-22 12:42:11 -07:00
|
|
|
|
|
|
|
type nativeModel struct {
|
2016-04-15 03:59:41 -07:00
|
|
|
Model
|
2014-09-22 12:42:11 -07:00
|
|
|
}
|
|
|
|
|
2016-07-04 03:40:29 -07:00
|
|
|
func (m nativeModel) Index(deviceID DeviceID, folder string, files []FileInfo) {
|
2016-12-01 05:35:32 -07:00
|
|
|
files = fixupFiles(files)
|
2016-07-04 03:40:29 -07:00
|
|
|
m.Model.Index(deviceID, folder, files)
|
2014-09-22 12:42:11 -07:00
|
|
|
}
|
|
|
|
|
2016-07-04 03:40:29 -07:00
|
|
|
func (m nativeModel) IndexUpdate(deviceID DeviceID, folder string, files []FileInfo) {
|
2016-12-01 05:35:32 -07:00
|
|
|
files = fixupFiles(files)
|
2016-07-04 03:40:29 -07:00
|
|
|
m.Model.IndexUpdate(deviceID, folder, files)
|
2014-09-22 12:42:11 -07:00
|
|
|
}
|
|
|
|
|
2016-07-04 03:40:29 -07:00
|
|
|
func (m nativeModel) Request(deviceID DeviceID, folder string, name string, offset int64, hash []byte, fromTemporary bool, buf []byte) error {
|
2016-12-01 05:35:32 -07:00
|
|
|
if strings.Contains(name, `\`) {
|
2016-12-21 02:43:12 -07:00
|
|
|
l.Warnf("Dropping request for %s, contains invalid path separator", name)
|
2016-12-01 05:35:32 -07:00
|
|
|
return ErrNoSuchFile
|
|
|
|
}
|
|
|
|
|
2014-09-22 12:42:11 -07:00
|
|
|
name = filepath.FromSlash(name)
|
2016-07-04 03:40:29 -07:00
|
|
|
return m.Model.Request(deviceID, folder, name, offset, hash, fromTemporary, buf)
|
2014-09-22 12:42:11 -07:00
|
|
|
}
|
2015-02-11 15:11:44 -07:00
|
|
|
|
2016-12-01 05:35:32 -07:00
|
|
|
func fixupFiles(files []FileInfo) []FileInfo {
|
|
|
|
var out []FileInfo
|
2016-08-05 00:13:52 -07:00
|
|
|
for i := range files {
|
2016-12-01 05:35:32 -07:00
|
|
|
if strings.Contains(files[i].Name, `\`) {
|
2016-12-21 02:43:12 -07:00
|
|
|
l.Warnf("Dropping index entry for %s, contains invalid path separator", files[i].Name)
|
2016-12-01 05:35:32 -07: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 15:11:44 -07:00
|
|
|
files[i].Name = filepath.FromSlash(files[i].Name)
|
2016-12-01 05:35:32 -07:00
|
|
|
|
|
|
|
if out != nil {
|
|
|
|
out = append(out, files[i])
|
|
|
|
}
|
2015-02-11 15:11:44 -07:00
|
|
|
}
|
2016-12-01 05:35:32 -07:00
|
|
|
|
|
|
|
if out != nil {
|
|
|
|
// We did some filtering
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
|
|
|
// Unchanged
|
|
|
|
return files
|
2015-02-11 15:11:44 -07:00
|
|
|
}
|