public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Bug in NFS
@ 2001-07-13  6:23 Abramo Bagnara
  2001-07-13  9:27 ` [NFS] " Neil Brown
  0 siblings, 1 reply; 12+ messages in thread
From: Abramo Bagnara @ 2001-07-13  6:23 UTC (permalink / raw)
  To: Linux Kernel; +Cc: neilb, nfs-devel, nfs

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


I have found a bug in NFSv2.

[root@igor /tmp]# mount igor:/u u
[root@igor /tmp]# cd u
[root@igor u]# umask 000
[root@igor u]# ls -l q
ls: q: File o directory inesistente
[root@igor u]# touch q
[root@igor u]# ls -l q
-rw-r--r--    1 root     root            0 lug 13 07:56 q

This seems to be caused by use of unitialized current->fs->umask via
vfs_create called by nfsd_create.

Patch for 2.4.6 follows.

-- 
Abramo Bagnara                       mailto:abramo@alsa-project.org

Opera Unica                          Phone: +39.546.656023
Via Emilia Interna, 140
48014 Castel Bolognese (RA) - Italy

ALSA project               http://www.alsa-project.org
It sounds good!

[-- Attachment #2: nfs.diff --]
[-- Type: text/plain, Size: 282 bytes --]

--- linux-2.4/fs/nfsd/auth.c.~1~	Mon Jul 24 08:04:10 2000
+++ linux-2.4/fs/nfsd/auth.c	Fri Jul 13 08:00:10 2001
@@ -34,6 +34,7 @@
 				cred->cr_groups[i] = exp->ex_anon_gid;
 	}
 
+	current->fs->umask = 0;
 	if (cred->cr_uid != (uid_t) -1)
 		current->fsuid = cred->cr_uid;
 	else


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

end of thread, other threads:[~2001-07-14 12:29 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-07-13  6:23 [PATCH] Bug in NFS Abramo Bagnara
2001-07-13  9:27 ` [NFS] " Neil Brown
2001-07-13 11:30   ` Abramo Bagnara
2001-07-13 12:03     ` [NFS] [PATCH] Bug in NFS - should umask be allowed to set umask??? Neil Brown
2001-07-13 12:12       ` Alan Cox
2001-07-13 13:30         ` Trond Myklebust
2001-07-13 22:47       ` [NFS] [PATCH] Bug in NFS - should init " Neil Brown
2001-07-14  2:03         ` Linus Torvalds
2001-07-14  4:49           ` Neil Brown
2001-07-14  5:33             ` Alexander Viro
2001-07-14 10:53               ` Neil Brown
2001-07-14 12:28                 ` Alexander Viro

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox