Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jacobsa-fuse
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
jacobsa-fuse
Commits
f6679004
Commit
f6679004
authored
Jul 24, 2015
by
Aaron Jacobs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
RenameOp
parent
88036b92
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
6 deletions
+23
-6
fuseops/convert.go
fuseops/convert.go
+23
-6
No files found.
fuseops/convert.go
View file @
f6679004
...
...
@@ -176,13 +176,30 @@ func Convert(
io
=
to
co
=
&
to
.
commonOp
case
*
fuseshim
.
RenameRequest
:
case
fusekernel
.
OpRename
:
in
:=
(
*
fusekernel
.
RenameIn
)(
m
.
Data
())
if
m
.
Len
()
<
unsafe
.
Sizeof
(
*
in
)
{
goto
corrupt
}
names
:=
m
.
Bytes
()[
unsafe
.
Sizeof
(
*
in
)
:
]
// names should be "old\x00new\x00"
if
len
(
names
)
<
4
{
goto
corrupt
}
if
names
[
len
(
names
)
-
1
]
!=
'\x00'
{
goto
corrupt
}
i
:=
bytes
.
IndexByte
(
names
,
'\x00'
)
if
i
<
0
{
goto
corrupt
}
oldName
,
newName
:=
names
[
:
i
],
names
[
i
+
1
:
len
(
names
)
-
1
]
to
:=
&
RenameOp
{
bfReq
:
typed
,
OldParent
:
InodeID
(
typed
.
Header
.
Node
),
OldName
:
typed
.
OldName
,
NewParent
:
InodeID
(
typed
.
NewDir
),
NewName
:
typed
.
NewName
,
OldParent
:
InodeID
(
m
.
Header
()
.
Node
),
OldName
:
string
(
oldName
),
NewParent
:
InodeID
(
in
.
Newdir
),
NewName
:
string
(
newName
),
}
io
=
to
co
=
&
to
.
commonOp
...
...
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