linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "Aneesh Kumar K.V" <aneesh.kumar@linux.vnet.ibm.com>
To: hch@infradead.org, viro@zeniv.linux.org.uk, adilger@sun.com,
	corbet@lwn.net, serue@us.ibm.com
Cc: linux-fsdevel@vger.kernel.org, sfrench@us.ibm.com,
	"Aneesh Kumar K.V" <aneesh.kumar@linux.vnet.ibm.com>
Subject: [PATCH -V4 6/6] x86: Add new syscalls for x86_64
Date: Fri, 23 Apr 2010 17:08:35 +0530	[thread overview]
Message-ID: <1272022715-11716-7-git-send-email-aneesh.kumar@linux.vnet.ibm.com> (raw)
In-Reply-To: <1272022715-11716-1-git-send-email-aneesh.kumar@linux.vnet.ibm.com>

Add sys_name_to_handle and sys_open_by_handle syscall for x86_64
Add necessary compat syscall support

Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
---
 arch/x86/ia32/ia32entry.S        |    2 +
 arch/x86/include/asm/unistd_64.h |    4 ++
 fs/compat.c                      |   72 ++++++++++++++++++++++++++++++++++++++
 include/linux/compat.h           |   14 +++++++
 4 files changed, 92 insertions(+), 0 deletions(-)

diff --git a/arch/x86/ia32/ia32entry.S b/arch/x86/ia32/ia32entry.S
index 59b4556..45cf8f0 100644
--- a/arch/x86/ia32/ia32entry.S
+++ b/arch/x86/ia32/ia32entry.S
@@ -842,4 +842,6 @@ ia32_sys_call_table:
 	.quad compat_sys_rt_tgsigqueueinfo	/* 335 */
 	.quad sys_perf_event_open
 	.quad compat_sys_recvmmsg
+	.quad compat_sys_name_to_handle
+	.quad compat_sys_open_by_handle		/* 339 */
 ia32_syscall_end:
diff --git a/arch/x86/include/asm/unistd_64.h b/arch/x86/include/asm/unistd_64.h
index ff4307b..99967d0 100644
--- a/arch/x86/include/asm/unistd_64.h
+++ b/arch/x86/include/asm/unistd_64.h
@@ -663,6 +663,10 @@ __SYSCALL(__NR_rt_tgsigqueueinfo, sys_rt_tgsigqueueinfo)
 __SYSCALL(__NR_perf_event_open, sys_perf_event_open)
 #define __NR_recvmmsg				299
 __SYSCALL(__NR_recvmmsg, sys_recvmmsg)
+#define __NR_name_to_handle			300
+__SYSCALL(__NR_name_to_handle, sys_name_to_handle)
+#define __NR_open_by_handle			301
+__SYSCALL(__NR_open_by_handle, sys_open_by_handle)
 
 #ifndef __NO_STUBS
 #define __ARCH_WANT_OLD_READDIR
diff --git a/fs/compat.c b/fs/compat.c
index 4b6ed03..5a03a5b 100644
--- a/fs/compat.c
+++ b/fs/compat.c
@@ -2310,3 +2310,75 @@ asmlinkage long compat_sys_timerfd_gettime(int ufd,
 }
 
 #endif /* CONFIG_TIMERFD */
+
+long get_compat_file_handle(struct file_handle *dst,
+			struct compat_file_handle __user *src)
+{
+	compat_uptr_t f_handle;
+
+	if (!access_ok(VERIFY_READ, src, sizeof(*src)) ||
+		__get_user(dst->handle_size, &src->handle_size) ||
+		__get_user(dst->handle_type, &src->handle_type) ||
+		copy_from_user(dst->fsid.uuid,
+			src->fsid.uuid, sizeof(dst->fsid.uuid)) ||
+		__get_user(f_handle, &src->f_handle)) {
+		return -EFAULT;
+	}
+	dst->f_handle = compat_ptr(f_handle);
+	return 0;
+}
+
+long put_compat_file_handle(struct compat_file_handle __user *dst,
+			struct file_handle *src)
+{
+	/*
+	 * dst->f_handle is copied from do_sys_name_to_handle
+	 */
+	return (!access_ok(VERIFY_WRITE, dst, sizeof(*dst)) ||
+		__put_user(src->handle_size, &dst->handle_size) ||
+		__put_user(src->handle_type, &dst->handle_type) ||
+		copy_to_user(dst->fsid.uuid,
+			src->fsid.uuid, sizeof(dst->fsid.uuid))) ? -EFAULT : 0;
+}
+
+
+asmlinkage long compat_sys_name_to_handle(const char __user *name,
+					struct compat_file_handle __user *uh)
+{
+	long ret1, ret2;
+	compat_uptr_t f_handle;
+	struct file_handle handle;
+
+	ret1 = (!access_ok(VERIFY_READ, uh, sizeof(*uh)) ||
+		__get_user(handle.handle_size, &uh->handle_size) ||
+		__get_user(f_handle, &uh->f_handle)) ? -EFAULT : 0;
+	if (ret1)
+		return ret1;
+
+	handle.f_handle = compat_ptr(f_handle);
+	ret1 = do_sys_name_to_handle(name, &handle);
+	if ((ret1 == -EOVERFLOW) || !ret1)
+		ret2 = put_compat_file_handle(uh, &handle) ? -EFAULT : 0;
+
+	if (ret1)
+		return ret1;
+	if (ret2)
+		return ret2;
+	return 0;
+}
+
+asmlinkage long compat_sys_open_by_handle(struct compat_file_handle __user *uh,
+					int flags)
+{
+	long error;
+	struct file_handle handle;
+
+	error = get_compat_file_handle(&handle, uh) ? -EFAULT : 0;
+	if (error)
+		return error;
+
+	/* we don't want to set the O_LARGEFILE flag */
+	error = do_sys_open_by_handle(&handle, flags);
+
+	return error;
+}
diff --git a/include/linux/compat.h b/include/linux/compat.h
index 717c691..6d2fda1 100644
--- a/include/linux/compat.h
+++ b/include/linux/compat.h
@@ -12,6 +12,7 @@
 #include <linux/sem.h>
 #include <linux/socket.h>
 #include <linux/if.h>
+#include <linux/fs.h>
 
 #include <asm/compat.h>
 #include <asm/siginfo.h>
@@ -209,6 +210,15 @@ struct compat_robust_list_head {
 	compat_uptr_t			list_op_pending;
 };
 
+struct compat_file_handle {
+	int handle_size;
+	int handle_type;
+	/* File system identifier */
+	struct uuid fsid;
+	/* file identifier */
+	compat_uptr_t f_handle;
+};
+
 extern void compat_exit_robust_list(struct task_struct *curr);
 
 asmlinkage long
@@ -355,6 +365,10 @@ asmlinkage long compat_sys_newfstatat(unsigned int dfd, char __user * filename,
 				      int flag);
 asmlinkage long compat_sys_openat(unsigned int dfd, const char __user *filename,
 				  int flags, int mode);
+asmlinkage long compat_sys_name_to_handle(const char __user *name,
+					struct compat_file_handle __user *uh);
+asmlinkage long compat_sys_open_by_handle(struct compat_file_handle __user *uh,
+					int flags);
 
 #endif /* CONFIG_COMPAT */
 #endif /* _LINUX_COMPAT_H */
-- 
1.7.0.4.360.g11766c


  parent reply	other threads:[~2010-04-23 11:39 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-04-23 11:38 [PATCH -V4] Generic name to handle and open by handle syscalls Aneesh Kumar K.V
2010-04-23 11:38 ` [PATCH -V4 1/6] exportfs: Return the minimum required handle size Aneesh Kumar K.V
2010-04-23 11:38 ` [PATCH -V4 2/6] vfs: Add name to file handle conversion support Aneesh Kumar K.V
2010-04-23 22:02   ` Andreas Dilger
2010-04-26  9:52     ` Christoph Hellwig
2010-04-26 10:14       ` Aneesh Kumar K. V
2010-04-26 10:12     ` Aneesh Kumar K. V
2010-04-26 17:57       ` J. Bruce Fields
2010-04-27  6:13         ` Aneesh Kumar K. V
2010-04-27 13:28           ` J. Bruce Fields
2010-04-23 11:38 ` [PATCH -V4 3/6] vfs: Add open by file handle support Aneesh Kumar K.V
2010-04-23 11:38 ` [PATCH -V4 4/6] ext4: Add get_fsid callback Aneesh Kumar K.V
2010-04-23 11:38 ` [PATCH -V4 5/6] x86: Add new syscalls for x86_32 Aneesh Kumar K.V
2010-04-23 11:38 ` Aneesh Kumar K.V [this message]
2010-04-23 22:09   ` [PATCH -V4 6/6] x86: Add new syscalls for x86_64 Andreas Dilger
2010-04-25 18:28     ` Aneesh Kumar K. V
2010-04-26  9:53       ` Christoph Hellwig
2010-04-26 17:59         ` Andreas Dilger
2010-04-27  6:25         ` Aneesh Kumar K. V

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1272022715-11716-7-git-send-email-aneesh.kumar@linux.vnet.ibm.com \
    --to=aneesh.kumar@linux.vnet.ibm.com \
    --cc=adilger@sun.com \
    --cc=corbet@lwn.net \
    --cc=hch@infradead.org \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=serue@us.ibm.com \
    --cc=sfrench@us.ibm.com \
    --cc=viro@zeniv.linux.org.uk \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).