Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
dms3
go-dms3
Commits
9715cab5
Commit
9715cab5
authored
10 years ago
by
Jeromy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
set proper UID and GID on fuse filesystems
parent
11dc94b5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
2 deletions
+16
-2
fuse/ipns/ipns_unix.go
fuse/ipns/ipns_unix.go
+7
-1
fuse/readonly/readonly_unix.go
fuse/readonly/readonly_unix.go
+9
-1
No files found.
fuse/ipns/ipns_unix.go
View file @
9715cab5
...
...
@@ -207,7 +207,11 @@ type File struct {
// Attr returns the attributes of a given node.
func (d *Directory) Attr() fuse.Attr {
log.Debug("Directory Attr")
return
fuse
.
Attr
{
Mode
:
os
.
ModeDir
|
0555
}
return fuse.Attr{
Mode: os.ModeDir | 0555,
Uid: uint32(os.Getuid()),
Gid: uint32(os.Getgid()),
}
}
// Attr returns the attributes of a given node.
...
...
@@ -221,6 +225,8 @@ func (fi *File) Attr() fuse.Attr {
return fuse.Attr{
Mode: os.FileMode(0666),
Size: uint64(size),
Uid: uint32(os.Getuid()),
Gid: uint32(os.Getgid()),
}
}
...
...
This diff is collapsed.
Click to expand it.
fuse/readonly/readonly_unix.go
View file @
9715cab5
...
...
@@ -92,19 +92,27 @@ func (s *Node) Attr() fuse.Attr {
}
switch
s
.
cached
.
GetType
()
{
case
ftpb
.
Data_Directory
:
return
fuse
.
Attr
{
Mode
:
os
.
ModeDir
|
0555
}
return
fuse
.
Attr
{
Mode
:
os
.
ModeDir
|
0555
,
Uid
:
uint32
(
os
.
Getuid
()),
Gid
:
uint32
(
os
.
Getgid
()),
}
case
ftpb
.
Data_File
:
size
:=
s
.
cached
.
GetFilesize
()
return
fuse
.
Attr
{
Mode
:
0444
,
Size
:
uint64
(
size
),
Blocks
:
uint64
(
len
(
s
.
Nd
.
Links
)),
Uid
:
uint32
(
os
.
Getuid
()),
Gid
:
uint32
(
os
.
Getgid
()),
}
case
ftpb
.
Data_Raw
:
return
fuse
.
Attr
{
Mode
:
0444
,
Size
:
uint64
(
len
(
s
.
cached
.
GetData
())),
Blocks
:
uint64
(
len
(
s
.
Nd
.
Links
)),
Uid
:
uint32
(
os
.
Getuid
()),
Gid
:
uint32
(
os
.
Getgid
()),
}
default
:
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment