hw/9pfs: Preserve S_ISGID
commit2d40564aaab3a99fe6ce00fc0fc893c02e9443ec
authorM. Mohan Kumar <mohan@in.ibm.com>
Thu, 19 Jan 2012 06:51:12 +0000 (19 12:21 +0530)
committerAneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
Mon, 30 Jan 2012 05:24:16 +0000 (30 10:54 +0530)
tree8b297266eff6d33d444051ded22b18f5b2669994
parent2c30dd744aa02d31a8a3b87daaba0b2cb774f346
hw/9pfs: Preserve S_ISGID

In passthrough security model in local fs driver, after a file creation
chown and chmod are done to set the file credentials and mode as requested
by 9p client. But if there was a request to create a file with S_ISGID
bit, doing chown on that file resets the S_ISGID bit. So first call
chown and then invoking chmod with proper mode bit retains the S_ISGID
(if present/requested)

This resulted in LTP mknod02, mknod03, mknod05, open10 test case
failures. This patch fixes this issue.

man 2 chown
When the owner or group of an executable file are changed by an unprivileged
user the S_ISUID  and  S_ISGID mode  bits are cleared.  POSIX does not specify
whether this also should happen when root does the chown(); the Linux behavior
depends on the kernel version.

Signed-off-by: M. Mohan Kumar <mohan@in.ibm.com>
Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
hw/9pfs/virtio-9p-handle.c
hw/9pfs/virtio-9p-local.c