All of lore.kernel.org
 help / color / mirror / Atom feed
* Does NFSv4 need to call inode_permission on every write???
@ 2015-05-21  4:40 NeilBrown
  2015-05-21 13:07 ` J. Bruce Fields
  2015-05-23 13:37 ` Jeff Layton
  0 siblings, 2 replies; 6+ messages in thread
From: NeilBrown @ 2015-05-21  4:40 UTC (permalink / raw)
  To: J. Bruce Fields; +Cc: NFS

[-- Attachment #1: Type: text/plain, Size: 1117 bytes --]



Apologies if this has been answered before, however...

In nfsd_write() we have:

	if (file) {
		err = nfsd_permission(rqstp, fhp->fh_export, fhp->fh_dentry,
				NFSD_MAY_WRITE|NFSD_MAY_OWNER_OVERRIDE);
		if (err)
			goto out;
		err = nfsd_vfs_write(rqstp, fhp, file, offset, vec, vlen, cnt,
				stablep);
	} else {

So if a 'file' is already available - because the request came via NFSv4 and
there was a valid state id, and a 'struct file' was associated with that
state - we still call nfsd_permission().

Is that really needed?  The permission check will have been performed at open
- it shouldn't be needed again now.

With NFSv3 we have to check permission at each IO, and this is slightly
different from POSIX semantics.  We shouldn't have to with NFSv4... should we?

The particular issue that brought this to my attention is that "chattr +i" -
to make a file immutable - is not supposed to affect current opens, only
future opens.  But a current open over NFSv4 is affected.

Is there some reason that we cannot just remove that nfsd_permission() check?

Thanks,
NeilBrown

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 811 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2015-05-23 13:37 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-21  4:40 Does NFSv4 need to call inode_permission on every write??? NeilBrown
2015-05-21 13:07 ` J. Bruce Fields
2015-05-21 13:23   ` Boaz Harrosh
2015-05-21 23:01   ` NeilBrown
2015-05-22 16:16     ` J. Bruce Fields
2015-05-23 13:37 ` Jeff Layton

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.