Project

General

Profile

Actions

Bug #5160

closed

zfsctl_snapshot_inactive() can leak a vnode hold

Added by Matthew Ahrens over 8 years ago. Updated over 5 years ago.

Status:
Closed
Priority:
Normal
Category:
zfs - Zettabyte File System
Start date:
2014-09-13
Due date:
% Done:

0%

Estimated time:
Difficulty:
Medium
Tags:
needs-triage
Gerrit CR:
External Bug:

Description

If zfsctl_snapshot_inactive() is called on a vnode with v_count > 1, it leaks a hold on the target vnode (vn) and directory vnode (dvp).

Steps to reproduce:

create a fs with 100 snapshots, e.g. test/snaps

have a thread do:
while true; do ls -l /test/snaps/.zfs/snapshot >/dev/null; done

have another thread do:
while true; do zfs promote test/clone; zfs promote test/snaps; done

use dtrace (with experimental D; available here: https://github.com/ahrens/illumos/tree/dpp) to delay & observe:

dtrace w -xd \\
-n 'vn_rele:entry/args0 == (void*)0xffffff01dd42ce80ULL/{[stack()]=count(); chill(100000);}' \\
-n 'zfsctl_snapshot_inactive:entry{ if (args[0]->v_count > 1) trace(args[0]->v_count); self->vp=args[0];}' \\
-n 'gfs_vop_inactive:entry/callers["zfsctl_snapshot_inactive"]/{self->good=1;
[stack()]=count()}' \\
-n 'zfsctl_snapshot_inactive:return{if (self
>good) self->good=0; else printf("bad return");}' \\
n 'gfs_dir_lookup:return/callers["zfsctl_snapshot_inactive"] && self>vp->v_count > 1/{trace(self->vp->v_count)}'

the address is found by selecting one of the output of this at random:
dtrace -n 'zfsctl_snapshot_inactive:entry{print(args0);'

when you see "bad return", we have hit the bug. Then doing "zfs umount test/snaps" will fail with EBUSY.


Related issues

Related to illumos gate - Bug #5768: zfsctl_snapshot_inactive() can leak a vnode holdClosedMatthew Ahrens2015-03-28

Actions
Actions #1

Updated by Alek Pinchuk about 7 years ago

  • Related to Bug #5768: zfsctl_snapshot_inactive() can leak a vnode hold added
Actions #2

Updated by Vitaliy Gusev over 5 years ago

I guess this issue can be closed ?

Actions #3

Updated by Matthew Ahrens over 5 years ago

  • Status changed from New to Closed
Actions

Also available in: Atom PDF