summaryrefslogtreecommitdiffhomepage
path: root/pkg/sentry/fs/file_overlay.go
diff options
context:
space:
mode:
authorNicolas Lacasse <nlacasse@google.com>2019-04-10 16:35:22 -0700
committerShentubot <shentubot@google.com>2019-04-10 16:36:28 -0700
commitd93d19fd4eefdfd868919a73c9498e7da7eb9258 (patch)
tree79add4ec602cae3a44b551daca485ae3766e6f0b /pkg/sentry/fs/file_overlay.go
parentc8368e477b8f2dedaadacbd6efbb455879c9b1d6 (diff)
Fix uses of RootFromContext.
RootFromContext can return a dirent with reference taken, or nil. We must call DecRef if (and only if) a real dirent is returned. PiperOrigin-RevId: 242965515 Change-Id: Ie2b7b4cb19ee09b6ccf788b71f3fd7efcdf35a11
Diffstat (limited to 'pkg/sentry/fs/file_overlay.go')
-rw-r--r--pkg/sentry/fs/file_overlay.go10
1 files changed, 8 insertions, 2 deletions
diff --git a/pkg/sentry/fs/file_overlay.go b/pkg/sentry/fs/file_overlay.go
index cd231bdef..4efe85832 100644
--- a/pkg/sentry/fs/file_overlay.go
+++ b/pkg/sentry/fs/file_overlay.go
@@ -169,7 +169,9 @@ func (f *overlayFileOperations) Seek(ctx context.Context, file *File, whence See
// Readdir implements FileOperations.Readdir.
func (f *overlayFileOperations) Readdir(ctx context.Context, file *File, serializer DentrySerializer) (int64, error) {
root := RootFromContext(ctx)
- defer root.DecRef()
+ if root != nil {
+ defer root.DecRef()
+ }
dirCtx := &DirCtx{
Serializer: serializer,
DirCursor: &f.dirCursor,
@@ -440,7 +442,11 @@ func (omi *overlayMappingIdentity) InodeID() uint64 {
// MappedName implements MappingIdentity.MappedName.
func (omi *overlayMappingIdentity) MappedName(ctx context.Context) string {
- name, _ := omi.overlayFile.Dirent.FullName(RootFromContext(ctx))
+ root := RootFromContext(ctx)
+ if root != nil {
+ defer root.DecRef()
+ }
+ name, _ := omi.overlayFile.Dirent.FullName(root)
return name
}