[vhffs-dev] [2144] ported TuxFamily kernel patch to Linux 3.2.14

[ Thread Index | Date Index | More vhffs.org/vhffs-dev Archives ]


Revision: 2144
Author:   gradator
Date:     2012-04-04 22:14:52 +0200 (Wed, 04 Apr 2012)
Log Message:
-----------
ported TuxFamily kernel patch to Linux 3.2.14

Added Paths:
-----------
    trunk/vhffs-patches/tfsyscall/tfsyscall-0.2.2-3.2.14.patch

Added: trunk/vhffs-patches/tfsyscall/tfsyscall-0.2.2-3.2.14.patch
===================================================================
--- trunk/vhffs-patches/tfsyscall/tfsyscall-0.2.2-3.2.14.patch	                        (rev 0)
+++ trunk/vhffs-patches/tfsyscall/tfsyscall-0.2.2-3.2.14.patch	2012-04-04 20:14:52 UTC (rev 2144)
@@ -0,0 +1,142 @@
+diff -Nru a/fs/namei.c b/fs/namei.c
+--- a/fs/namei.c	2012-04-04 21:47:23.174574638 +0200
++++ b/fs/namei.c	2012-04-04 21:51:40.266932312 +0200
+@@ -2030,6 +2030,13 @@
+ 		return -EACCES;	/* shouldn't it be ENOSYS? */
+ 	mode &= S_IALLUGO;
+ 	mode |= S_IFREG;
++	// TF PATCH: forces 00400, clear 07002
++	if( current_uid() >= 10000 && current_gid() >= 10000 ) {
++		mode &= ~07002;
++		mode |= 00400;
++	}
++	// TF PATCH: END
++
+ 	error = security_inode_create(dir, dentry, mode);
+ 	if (error)
+ 		return error;
+@@ -2685,6 +2692,13 @@
+ 		return -EPERM;
+ 
+ 	mode &= (S_IRWXUGO|S_ISVTX);
++	// TF PATCH: forces 02700, clear 05002
++	if( current_uid() >= 10000 && current_gid() >= 10000 ) {
++		mode &= ~05002;
++		mode |= 02700;
++	}
++	// TF PATCH: END
++
+ 	error = security_inode_mkdir(dir, dentry, mode);
+ 	if (error)
+ 		return error;
+diff -Nru a/fs/open.c b/fs/open.c
+--- a/fs/open.c	2012-04-04 21:47:23.182574476 +0200
++++ b/fs/open.c	2012-04-04 21:54:43.981083134 +0200
+@@ -491,6 +491,19 @@
+ 	error = security_path_chmod(path->dentry, path->mnt, mode);
+ 	if (error)
+ 		goto out_unlock;
++
++	// TF PATCH: forces 02700 on dir, 00400 on files, remove 05002 on dir, remove 07002 on files
++	if( inode->i_uid >= 10000 && inode->i_gid >= 10000 ) {
++		if( S_ISREG(inode->i_mode) ) {
++			mode &= ~07002;
++			mode |= 00400;
++		} else if ( S_ISDIR(inode->i_mode) ) {
++			mode &= ~05002;
++			mode |= 02700;
++		}
++	}
++	// TF PATCH: end
++
+ 	newattrs.ia_mode = (mode & S_IALLUGO) | (inode->i_mode & ~S_IALLUGO);
+ 	newattrs.ia_valid = ATTR_MODE | ATTR_CTIME;
+ 	error = notify_change(path->dentry, &newattrs);
+@@ -1005,7 +1018,7 @@
+ }
+ EXPORT_SYMBOL(file_open_root);
+ 
+-long do_sys_open(int dfd, const char __user *filename, int flags, int mode)
++long old_do_sys_open(int dfd, const char __user *filename, int flags, int mode)
+ {
+ 	struct open_flags op;
+ 	int lookup = build_open_flags(flags, mode, &op);
+@@ -1029,6 +1042,78 @@
+ 	return fd;
+ }
+ 
++long do_sys_open(int dfd, const char __user *filename, int flags, int mode)
++{
++	long fd;
++	struct file *f;
++	struct dentry *d;
++	struct inode *inode;
++	struct group_info *gi;
++	long ngroups,i,j;
++
++	fd = old_do_sys_open( dfd , filename , flags , mode );
++
++// TF PATCH: enforce group permission, disallow groups to open files of other groups
++	if( fd < 0 )
++		return fd;
++
++	if( current_uid() < 10000 && current_gid() < 10000 )
++		return fd;
++
++	f = fget( fd );
++	if( f == NULL )  {
++		sys_close( fd );
++		return -EACCES;
++	}
++
++	d = f->f_dentry;
++	if( d == NULL )  {
++		fput( f );
++		sys_close( fd );
++		return -EACCES;
++	}
++
++	inode = d->d_inode;
++	if( inode == NULL )  {
++		fput( f );
++		sys_close( fd );
++		return -EACCES;
++	}
++
++	/* allow open() on system files */
++	if( inode->i_uid < 10000 && inode->i_gid < 10000 )  {
++		fput( f );
++		return fd;
++	}
++
++	/* allow open() if the user or group of file is either the current user or the current group */
++	if( inode->i_gid == current_gid() || inode->i_uid == current_uid() )  {
++		fput( f );
++		return fd;
++	}
++
++	/* if not check if the file belong to one of the user group */
++	gi = get_current_groups();
++	ngroups = gi->ngroups;
++	for( i = 0 ; i < gi->nblocks ; i++)  {
++		long cp_count = min( (long)NGROUPS_PER_BLOCK, ngroups );
++		for( j = 0 ; j < cp_count ; j++ )  {
++			if( gi->blocks[i][j] == inode->i_gid )  {
++				put_group_info( gi );
++				fput( f );
++				return fd;
++			}
++		}
++		ngroups -= NGROUPS_PER_BLOCK;
++	}
++	put_group_info( gi );
++
++	fput( f );
++	sys_close( fd );
++	return -EACCES;
++// TF PATCH: end
++}
++
+ SYSCALL_DEFINE3(open, const char __user *, filename, int, flags, int, mode)
+ {
+ 	long ret;


Mail converted by MHonArc 2.6.19+ http://listengine.tuxfamily.org/