All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 4/3] lutimesat: compat syscall and wire up on x86_64
@ 2007-02-26 16:50 Alexey Dobriyan
  2007-02-27  3:06 ` Stephen Rothwell
  0 siblings, 1 reply; 3+ messages in thread
From: Alexey Dobriyan @ 2007-02-26 16:50 UTC (permalink / raw)
  To: akpm; +Cc: linux-kernel, devel, ak, linux-arch

[Apply after:
 lutimesat-simplify-utime2.patch
 lutimesat-extend-do_utimes-with-flags.patch
 lutimesat-actual-syscall-and-wire-up-on-i386.patch

 Tweak compat syscall number to match normal syscall number if needed.]

Signed-off-by: Alexey Dobriyan <adobriyan@openvz.org>
---

 arch/x86_64/ia32/ia32entry.S |    1 +
 fs/compat.c                  |   14 ++++++++++++++
 fs/utimes.c                  |    2 +-
 include/linux/time.h         |    1 +
 4 files changed, 17 insertions(+), 1 deletion(-)

--- a/arch/x86_64/ia32/ia32entry.S
+++ b/arch/x86_64/ia32/ia32entry.S
@@ -719,4 +719,5 @@ #endif
 	.quad compat_sys_move_pages
 	.quad sys_getcpu
 	.quad sys_epoll_pwait
+	.quad compat_sys_lutimesat	/* 320 */
 ia32_syscall_end:		
--- a/fs/compat.c
+++ b/fs/compat.c
@@ -109,6 +109,20 @@ asmlinkage long compat_sys_utimes(char _
 	return compat_sys_futimesat(AT_FDCWD, filename, t);
 }
 
+asmlinkage long compat_sys_lutimesat(int dfd, char __user *filename, struct compat_timespec __user *utimes)
+{
+	struct timespec ts[2];
+
+	if (utimes) {
+		if (get_user(ts[0].tv_sec, &utimes[0].tv_sec) ||
+		    get_user(ts[0].tv_nsec, &utimes[0].tv_nsec) ||
+		    get_user(ts[1].tv_sec, &utimes[1].tv_sec) ||
+		    get_user(ts[1].tv_nsec, &utimes[1].tv_nsec))
+			return -EFAULT;
+	}
+	return do_utimes_nsec(dfd, filename, utimes ? ts : NULL, AT_SYMLINK_NOFOLLOW);
+}
+
 asmlinkage long compat_sys_newstat(char __user * filename,
 		struct compat_stat __user *statbuf)
 {
--- a/fs/utimes.c
+++ b/fs/utimes.c
@@ -40,7 +40,7 @@ #endif
  * must be owner or have write permission.
  * Else, update from *times, must be owner or super user.
  */
-static long do_utimes_nsec(int dfd, char __user *filename, struct timespec *times, int flags)
+long do_utimes_nsec(int dfd, char __user *filename, struct timespec *times, int flags)
 {
 	int error = -EINVAL;
 	struct nameidata nd;
--- a/include/linux/time.h
+++ b/include/linux/time.h
@@ -110,6 +110,7 @@ extern int do_settimeofday(struct timesp
 extern int do_sys_settimeofday(struct timespec *tv, struct timezone *tz);
 #define do_posix_clock_monotonic_gettime(ts) ktime_get_ts(ts)
 extern long do_utimes(int dfd, char __user *filename, struct timeval *times, int flags);
+extern long do_utimes_nsec(int dfd, char __user *filename, struct timespec *times, int flags);
 struct itimerval;
 extern int do_setitimer(int which, struct itimerval *value,
 			struct itimerval *ovalue);


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

* Re: [PATCH 4/3] lutimesat: compat syscall and wire up on x86_64
  2007-02-26 16:50 [PATCH 4/3] lutimesat: compat syscall and wire up on x86_64 Alexey Dobriyan
@ 2007-02-27  3:06 ` Stephen Rothwell
  2007-02-27 11:56   ` Alexey Dobriyan
  0 siblings, 1 reply; 3+ messages in thread
From: Stephen Rothwell @ 2007-02-27  3:06 UTC (permalink / raw)
  To: Alexey Dobriyan; +Cc: akpm, linux-kernel, devel, ak, linux-arch

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

On Mon, 26 Feb 2007 19:50:24 +0300 Alexey Dobriyan <adobriyan@openvz.org> wrote:
>
> +asmlinkage long compat_sys_lutimesat(int dfd, char __user *filename, struct compat_timespec __user *utimes)
> +{
> +	struct timespec ts[2];
> +
> +	if (utimes) {
> +		if (get_user(ts[0].tv_sec, &utimes[0].tv_sec) ||
> +		    get_user(ts[0].tv_nsec, &utimes[0].tv_nsec) ||
> +		    get_user(ts[1].tv_sec, &utimes[1].tv_sec) ||
> +		    get_user(ts[1].tv_nsec, &utimes[1].tv_nsec))
> +			return -EFAULT;

		if (get_compat_timespec(&ts[0], &utimes[0]) ||
		    get_compat_timespec(&ts[1], &utimes[1]))
			return -EFAULT;

--
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

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

* Re: [PATCH 4/3] lutimesat: compat syscall and wire up on x86_64
  2007-02-27  3:06 ` Stephen Rothwell
@ 2007-02-27 11:56   ` Alexey Dobriyan
  0 siblings, 0 replies; 3+ messages in thread
From: Alexey Dobriyan @ 2007-02-27 11:56 UTC (permalink / raw)
  To: Stephen Rothwell; +Cc: akpm, linux-kernel, devel, ak, linux-arch

On Tue, Feb 27, 2007 at 02:06:24PM +1100, Stephen Rothwell wrote:
> On Mon, 26 Feb 2007 19:50:24 +0300 Alexey Dobriyan <adobriyan@openvz.org> wrote:
> >
> > +asmlinkage long compat_sys_lutimesat(int dfd, char __user *filename, struct compat_timespec __user *utimes)
> > +{
> > +	struct timespec ts[2];
> > +
> > +	if (utimes) {
> > +		if (get_user(ts[0].tv_sec, &utimes[0].tv_sec) ||
> > +		    get_user(ts[0].tv_nsec, &utimes[0].tv_nsec) ||
> > +		    get_user(ts[1].tv_sec, &utimes[1].tv_sec) ||
> > +		    get_user(ts[1].tv_nsec, &utimes[1].tv_nsec))
> > +			return -EFAULT;
>
> 		if (get_compat_timespec(&ts[0], &utimes[0]) ||
> 		    get_compat_timespec(&ts[1], &utimes[1]))
> 			return -EFAULT;

We have it? Thank you!

[PATCH 4/3] lutimesat: compat syscall and wire up on x86_64

[Apply after:
 lutimesat-simplify-utime2.patch
 lutimesat-extend-do_utimes-with-flags.patch
 lutimesat-actual-syscall-and-wire-up-on-i386.patch

 Tweak compat syscall number to match normal syscall number if needed.]

Signed-off-by: Alexey Dobriyan <adobriyan@openvz.org>
---

 arch/x86_64/ia32/ia32entry.S |    1 +
 fs/compat.c                  |   12 ++++++++++++
 fs/utimes.c                  |    2 +-
 include/linux/time.h         |    1 +
 4 files changed, 15 insertions(+), 1 deletion(-)

--- a/arch/x86_64/ia32/ia32entry.S
+++ b/arch/x86_64/ia32/ia32entry.S
@@ -719,4 +719,5 @@ #endif
 	.quad compat_sys_move_pages
 	.quad sys_getcpu
 	.quad sys_epoll_pwait
+	.quad compat_sys_lutimesat	/* 320 */
 ia32_syscall_end:		
--- a/fs/compat.c
+++ b/fs/compat.c
@@ -109,6 +109,18 @@ asmlinkage long compat_sys_utimes(char _
 	return compat_sys_futimesat(AT_FDCWD, filename, t);
 }
 
+asmlinkage long compat_sys_lutimesat(int dfd, char __user *filename, struct compat_timespec __user *utimes)
+{
+	struct timespec ts[2];
+
+	if (utimes) {
+		if (get_compat_timespec(&ts[0], &utimes[0]) ||
+		    get_compat_timespec(&ts[1], &utimes[1]))
+			return -EFAULT;
+	}
+	return do_utimes_nsec(dfd, filename, utimes ? ts : NULL, AT_SYMLINK_NOFOLLOW);
+}
+
 asmlinkage long compat_sys_newstat(char __user * filename,
 		struct compat_stat __user *statbuf)
 {
--- a/fs/utimes.c
+++ b/fs/utimes.c
@@ -40,7 +40,7 @@ #endif
  * must be owner or have write permission.
  * Else, update from *times, must be owner or super user.
  */
-static long do_utimes_nsec(int dfd, char __user *filename, struct timespec *times, int flags)
+long do_utimes_nsec(int dfd, char __user *filename, struct timespec *times, int flags)
 {
 	int error = -EINVAL;
 	struct nameidata nd;
--- a/include/linux/time.h
+++ b/include/linux/time.h
@@ -110,6 +110,7 @@ extern int do_settimeofday(struct timesp
 extern int do_sys_settimeofday(struct timespec *tv, struct timezone *tz);
 #define do_posix_clock_monotonic_gettime(ts) ktime_get_ts(ts)
 extern long do_utimes(int dfd, char __user *filename, struct timeval *times, int flags);
+extern long do_utimes_nsec(int dfd, char __user *filename, struct timespec *times, int flags);
 struct itimerval;
 extern int do_setitimer(int which, struct itimerval *value,
 			struct itimerval *ovalue);


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

end of thread, other threads:[~2007-02-27 11:49 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-02-26 16:50 [PATCH 4/3] lutimesat: compat syscall and wire up on x86_64 Alexey Dobriyan
2007-02-27  3:06 ` Stephen Rothwell
2007-02-27 11:56   ` Alexey Dobriyan

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.