mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Greg KH <gregkh@suse.de>
To: linux-kernel@vger.kernel.org, stable@kernel.org
Cc: stable-review@kernel.org, torvalds@linux-foundation.org,
	akpm@linux-foundation.org, alan@lxorguk.ukuu.org.uk,
	"J. Bruce Fields" <bfields@redhat.com>
Subject: [33/63] nfsd4: fix struct file leak
Date: Fri, 25 Mar 2011 16:44:09 -0700	[thread overview]
Message-ID: <20110325234511.313858766@clark.kroah.org> (raw)
In-Reply-To: <20110325234526.GA18017@kroah.com>

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 3050 bytes --]

2.6.38-stable review patch.  If anyone has any objections, please let us know.

------------------

From: J. Bruce Fields <bfields@redhat.com>

commit 0997b173609b9229ece28941c118a2a9b278796e upstream.

Make sure we properly reference count the struct files that a lock
depends on, and release them when the lock stateid is released.

This fixes a major leak of struct files when using locking over nfsv4.

Reported-by: Rick Koshi <nfs-bug-report@more-right-rudder.com>
Tested-by: Ivo Přikryl <prikryl@eurosat.cz>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>

---
 fs/nfsd/nfs4state.c |   32 +++++++++++++++++++++-----------
 1 file changed, 21 insertions(+), 11 deletions(-)

--- a/fs/nfsd/nfs4state.c
+++ b/fs/nfsd/nfs4state.c
@@ -397,6 +397,9 @@ static void unhash_generic_stateid(struc
 
 static void free_generic_stateid(struct nfs4_stateid *stp)
 {
+	int oflag = nfs4_access_bmap_to_omode(stp);
+
+	nfs4_file_put_access(stp->st_file, oflag);
 	put_nfs4_file(stp->st_file);
 	kmem_cache_free(stateid_slab, stp);
 }
@@ -448,11 +451,8 @@ release_stateid_lockowners(struct nfs4_s
 
 static void release_open_stateid(struct nfs4_stateid *stp)
 {
-	int oflag = nfs4_access_bmap_to_omode(stp);
-
 	unhash_generic_stateid(stp);
 	release_stateid_lockowners(stp);
-	nfs4_file_put_access(stp->st_file, oflag);
 	free_generic_stateid(stp);
 }
 
@@ -3735,6 +3735,7 @@ alloc_init_lock_stateid(struct nfs4_stat
 	stp->st_stateid.si_stateownerid = sop->so_id;
 	stp->st_stateid.si_fileid = fp->fi_id;
 	stp->st_stateid.si_generation = 0;
+	stp->st_access_bmap = 0;
 	stp->st_deny_bmap = open_stp->st_deny_bmap;
 	stp->st_openstp = open_stp;
 
@@ -3749,6 +3750,17 @@ check_lock_length(u64 offset, u64 length
 	     LOFF_OVERFLOW(offset, length)));
 }
 
+static void get_lock_access(struct nfs4_stateid *lock_stp, u32 access)
+{
+	struct nfs4_file *fp = lock_stp->st_file;
+	int oflag = nfs4_access_to_omode(access);
+
+	if (test_bit(access, &lock_stp->st_access_bmap))
+		return;
+	nfs4_file_get_access(fp, oflag);
+	__set_bit(access, &lock_stp->st_access_bmap);
+}
+
 /*
  *  LOCK operation 
  */
@@ -3846,18 +3858,16 @@ nfsd4_lock(struct svc_rqst *rqstp, struc
 	switch (lock->lk_type) {
 		case NFS4_READ_LT:
 		case NFS4_READW_LT:
-			if (find_readable_file(lock_stp->st_file)) {
-				nfs4_get_vfs_file(rqstp, fp, &cstate->current_fh, NFS4_SHARE_ACCESS_READ);
-				filp = find_readable_file(lock_stp->st_file);
-			}
+			filp = find_readable_file(lock_stp->st_file);
+			if (filp)
+				get_lock_access(lock_stp, NFS4_SHARE_ACCESS_READ);
 			file_lock.fl_type = F_RDLCK;
 			break;
 		case NFS4_WRITE_LT:
 		case NFS4_WRITEW_LT:
-			if (find_writeable_file(lock_stp->st_file)) {
-				nfs4_get_vfs_file(rqstp, fp, &cstate->current_fh, NFS4_SHARE_ACCESS_WRITE);
-				filp = find_writeable_file(lock_stp->st_file);
-			}
+			filp = find_writeable_file(lock_stp->st_file);
+			if (filp)
+				get_lock_access(lock_stp, NFS4_SHARE_ACCESS_WRITE);
 			file_lock.fl_type = F_WRLCK;
 			break;
 		default:



  parent reply	other threads:[~2011-03-26  0:19 UTC|newest]

Thread overview: 64+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-03-25 23:45 [00/63] 2.6.38.2-stable review Greg KH
2011-03-25 23:43 ` [01/63] ALSA: HDA: Realtek: Avoid unnecessary volume control index on Surround/Side Greg KH
2011-03-25 23:43 ` [02/63] ALSA: hda - VIA: Fix stereo mixer recording no sound issue Greg KH
2011-03-25 23:43 ` [03/63] ALSA: hda - VIA: Fix independent headphone " Greg KH
2011-03-25 23:43 ` [04/63] ALSA: hda - VIA: Add missing support for VT1718S in A-A path Greg KH
2011-03-25 23:43 ` [05/63] ALSA: hda - VIA: Fix invalid A-A path volume adjust issue Greg KH
2011-03-25 23:43 ` [06/63] ALSA: hda - VIA: Fix codec type for VT1708BCE at the right timing Greg KH
2011-03-25 23:43 ` [07/63] ALSA: hda - VIA: Fix VT1708 cant build up Headphone control issue Greg KH
2011-03-25 23:43 ` [08/63] ASoC: mini2440: Fix uda134x codec problem Greg KH
2011-03-25 23:43 ` [09/63] ethtool: Compat handling for struct ethtool_rxnfc Greg KH
2011-03-25 23:43 ` [10/63] Revert "slab: Fix missing DEBUG_SLAB last user" Greg KH
2011-03-25 23:43 ` [11/63] aio: wake all waiters when destroying ctx Greg KH
2011-03-25 23:43 ` [12/63] cgroups: if you list_empty() a head then dont list_del() it Greg KH
2011-03-25 23:43 ` [13/63] shmem: let shared anonymous be nonlinear again Greg KH
2011-03-25 23:43 ` [14/63] mm: swap: unlock swapfile inode mutex before closing file on bad swapfiles Greg KH
2011-03-25 23:43 ` [15/63] mm: compaction: prevent kswapd compacting memory to reduce CPU usage Greg KH
2011-03-25 23:43 ` [16/63] oom: prevent unnecessary oom kills or kernel panics Greg KH
2011-03-25 23:43 ` [17/63] oom: skip zombies when iterating tasklist Greg KH
2011-03-25 23:43 ` [18/63] oom: avoid deferring oom killer if exiting task is being traced Greg KH
2011-03-25 23:43 ` [19/63] PCI hotplug: acpiphp: set current_state to D0 in register_slot Greg KH
2011-03-25 23:43 ` [20/63] Input: xen-kbdfront - advertise either absolute or relative coordinates Greg KH
2011-03-25 23:43 ` [21/63] xen: set max_pfn_mapped to the last pfn mapped Greg KH
2011-03-25 23:43 ` [22/63] Prevent rt_sigqueueinfo and rt_tgsigqueueinfo from spoofing the signal code Greg KH
2011-03-25 23:43 ` [23/63] ALSA: HDA: Fix internal mic on Dell E5420/E5520 Greg KH
2011-03-25 23:44 ` [24/63] mm: PageBuddy and mapcount robustness Greg KH
2011-03-25 23:44 ` [25/63] ext3: skip orphan cleanup on rocompat fs Greg KH
2011-03-25 23:44 ` [26/63] x86: Fix binutils-2.21 symbol related build failures Greg KH
2011-03-25 23:44 ` [27/63] sysctl: restrict write access to dmesg_restrict Greg KH
2011-03-25 23:44 ` [28/63] procfs: fix /proc/<pid>/maps heap check Greg KH
2011-03-25 23:44 ` [29/63] proc: protect mm start_code/end_code in /proc/pid/stat Greg KH
2011-03-25 23:44 ` [30/63] fbcon: Bugfix soft cursor detection in Tile Blitting Greg KH
2011-03-25 23:44 ` [31/63] nfsd41: modify the members value of nfsd4_op_flags Greg KH
2011-03-25 23:44 ` [32/63] nfsd4: minor nfs4state.c reshuffling Greg KH
2011-03-25 23:44 ` Greg KH [this message]
2011-03-25 23:44 ` [34/63] nfsd: wrong index used in inner loop Greg KH
2011-03-25 23:44 ` [35/63] [media] uvcvideo: Fix uvc_fixup_video_ctrl() format search Greg KH
2011-03-25 23:44 ` [36/63] [media] uvcvideo: Fix descriptor parsing for video output devices Greg KH
2011-03-25 23:44 ` [37/63] sh: Fix ptrace fpu state initialisation Greg KH
2011-03-25 23:44 ` [38/63] sh: Fix ptrace hw_breakpoint handling Greg KH
2011-03-25 23:44 ` [39/63] USB: Do not pass negative length to snoop_urb() Greg KH
2011-03-25 23:44 ` [40/63] ehci-hcd: Bug fix: dont set a QHs Halt bit Greg KH
2011-03-25 23:44 ` [41/63] usb: musb: blackfin: fix typo in platform driver name Greg KH
2011-03-25 23:44 ` [42/63] usb: musb: blackfin: fix typo in new dev_pm_ops struct Greg KH
2011-03-25 23:44 ` [43/63] usb: musb: blackfin: fix typo in new bfin_musb_vbus_status func Greg KH
2011-03-25 23:44 ` [44/63] USB: uss720 fixup refcount position Greg KH
2011-03-25 23:44 ` [45/63] USB: Fix bad dma problem on WDM device disconnect Greg KH
2011-03-25 23:44 ` [46/63] USB: cdc-acm: fix memory corruption / panic Greg KH
2011-03-25 23:44 ` [47/63] USB: cdc-acm: fix potential null-pointer dereference Greg KH
2011-03-25 23:44 ` [48/63] USB: cdc-acm: fix potential null-pointer dereference on disconnect Greg KH
2011-03-25 23:44 ` [49/63] fix deadlock in pivot_root() Greg KH
2011-03-25 23:44 ` [50/63] fs: assign sb->s_bdi to default_backing_dev_info if the bdi is going away Greg KH
2011-03-25 23:44 ` [51/63] x86: Cleanup highmap after brk is concluded Greg KH
2011-03-25 23:44 ` [52/63] drm: check for modesetting on modeset ioctls Greg KH
2011-03-25 23:44 ` [53/63] drm/i915: Disable pagefaults along execbuffer relocation fast path Greg KH
2011-03-25 23:44 ` [54/63] drm/i915: Prevent racy removal of request from client list Greg KH
2011-03-25 23:44 ` [55/63] drm: Fix use-after-free in drm_gem_vm_close() Greg KH
2011-03-25 23:44 ` [56/63] drm/radeon/kms: prefer legacy pll algo for tv-out Greg KH
2011-03-25 23:44 ` [57/63] drm/radeon/kms: fix hardcoded EDID handling Greg KH
2011-03-25 23:44 ` [58/63] perf: Fix tear-down of inherited group events Greg KH
2011-03-25 23:44 ` [59/63] NFS: Fix a hang/infinite loop in nfs_wb_page() Greg KH
2011-03-25 23:44 ` [60/63] SUNRPC: Never reuse the socket port after an xs_close() Greg KH
2011-03-25 23:44 ` [61/63] fs: call security_d_instantiate in d_obtain_alias V2 Greg KH
2011-03-25 23:44 ` [62/63] dcdbas: force SMI to happen when expected Greg KH
2011-03-25 23:44 ` [63/63] ext4: skip orphan cleanup if fs has unknown ROCOMPAT features Greg KH

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20110325234511.313858766@clark.kroah.org \
    --to=gregkh@suse.de \
    --cc=akpm@linux-foundation.org \
    --cc=alan@lxorguk.ukuu.org.uk \
    --cc=bfields@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=stable-review@kernel.org \
    --cc=stable@kernel.org \
    --cc=torvalds@linux-foundation.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®