patch-2.1.75 linux/include/linux/sched.h
Next file: linux/include/linux/timer.h
Previous file: linux/include/linux/pci.h
Back to the patch index
Back to the overall index
- Lines: 25
- Date:
Sun Dec 21 17:58:36 1997
- Orig file:
v2.1.74/linux/include/linux/sched.h
- Orig date:
Wed Dec 10 11:12:46 1997
diff -u --recursive --new-file v2.1.74/linux/include/linux/sched.h linux/include/linux/sched.h
@@ -513,10 +513,24 @@
* it returns true (to do BSD-style accounting where the process is flagged
* if it uses root privs). The implication of this is that you should do
* normal permissions checks first, and check suser() last.
+ *
+ * [Dec 1997 -- Chris Evans]
+ * For correctness, the above considerations need to be extended to
+ * fsuser(). This is done, along with moving fsuser() checks to be
+ * last.
*/
extern inline int suser(void)
{
if (current->euid == 0) {
+ current->flags |= PF_SUPERPRIV;
+ return 1;
+ }
+ return 0;
+}
+
+extern inline int fsuser(void)
+{
+ if (current->fsuid == 0) {
current->flags |= PF_SUPERPRIV;
return 1;
}
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov