All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Kirill A. Shutemov" <k.shutemov@gmail.com>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [PATCH] mount syscall
Date: Mon, 12 Feb 2007 15:38:33 +0300	[thread overview]
Message-ID: <20070212123833.GA22486@localhost.localdomain> (raw)


[-- Attachment #1.1: Type: text/plain, Size: 54 bytes --]

Fixed(with lock_user_string) patch in the attachment.

[-- Attachment #1.2: 37_syscall_mount.patch --]
[-- Type: text/plain, Size: 934 bytes --]

Index: linux-user/syscall.c
===================================================================
RCS file: /sources/qemu/qemu/linux-user/syscall.c,v
retrieving revision 1.86
diff -u -r1.86 syscall.c
--- linux-user/syscall.c	11 Feb 2007 20:03:13 -0000	1.86
+++ linux-user/syscall.c	12 Feb 2007 10:49:07 -0000
@@ -2163,8 +2163,18 @@
         ret = get_errno(getpid());
         break;
     case TARGET_NR_mount:
-        /* need to look at the data field */
-        goto unimplemented;
+		{
+			/* need to look at the data field */
+			void *p2, *p3;
+			p = lock_user_string(arg1);
+			p2 = lock_user_string(arg2);
+			p3 = lock_user_string(arg3);
+			ret = get_errno(mount(p, p2, p3, (unsigned long)arg4, (const void *)arg5));
+			unlock_user(p, arg1, 0);
+			unlock_user(p2, arg2, 0);
+			unlock_user(p3, arg3, 0);
+			break;
+		}
     case TARGET_NR_umount:
         p = lock_user_string(arg1);
         ret = get_errno(umount(p));

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

             reply	other threads:[~2007-02-14 10:29 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-02-12 12:38 Kirill A. Shutemov [this message]
  -- strict thread matches above, loose matches on Subject: below --
2007-02-14  8:26 [Qemu-devel] [PATCH] mount syscall Kirill A. Shutemov
2007-02-22 18:08 ` Paul Brook
2007-02-12 11:17 Kirill A. Shutemov

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=20070212123833.GA22486@localhost.localdomain \
    --to=k.shutemov@gmail.com \
    --cc=qemu-devel@nongnu.org \
    /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 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.