nfsd: fix oops on access from high-numbered ports

This bug was always here, but before my commit 6fa02839bf9412e18e77
("recheck for secure ports in fh_verify"), it could only be triggered by
failure of a kmalloc(). After that commit it could be triggered by a
client making a request from a non-reserved port for access to an export
marked "secure". (Exports are "secure" by default.)

The result is a struct svc_export with a reference count one too low,
resulting in likely oopses next time the export is accessed.

The reference counting here is not straightforward; a later patch will
clean up fh_verify().

Thanks to Lukas Hejtmanek for the bug report and followup.

Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
Cc: Lukas Hejtmanek <xhejtman@ics.muni.cz>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by J. Bruce Fields and committed by Linus Torvalds b663c6fd 9b89ca7a

+2 -2
+2 -2
fs/nfsd/nfsfh.c
··· 232 232 fhp->fh_dentry = dentry; 233 233 fhp->fh_export = exp; 234 234 nfsd_nr_verified++; 235 + cache_get(&exp->h); 235 236 } else { 236 237 /* 237 238 * just rechecking permissions ··· 242 241 dprintk("nfsd: fh_verify - just checking\n"); 243 242 dentry = fhp->fh_dentry; 244 243 exp = fhp->fh_export; 244 + cache_get(&exp->h); 245 245 /* 246 246 * Set user creds for this exportpoint; necessary even 247 247 * in the "just checking" case because this may be a ··· 254 252 if (error) 255 253 goto out; 256 254 } 257 - cache_get(&exp->h); 258 - 259 255 260 256 error = nfsd_mode_check(rqstp, dentry->d_inode->i_mode, type); 261 257 if (error)