From: Peter Maydell <peter.maydell@linaro.org>
To: Lena Djokic <Lena.Djokic@rt-rk.com>
Cc: QEMU Developers <qemu-devel@nongnu.org>,
Riku Voipio <riku.voipio@iki.fi>
Subject: Re: [Qemu-devel] [PATCH v2 6/7] linux-user: Fix syslog
Date: Fri, 16 Dec 2016 14:38:12 +0000 [thread overview]
Message-ID: <CAFEAcA_s8NPptxdzsUXByA9uGFenF0++jF8P3TUVZUtQaOjABA@mail.gmail.com> (raw)
In-Reply-To: <1480003738-8754-7-git-send-email-Lena.Djokic@rt-rk.com>
On 24 November 2016 at 16:08, Lena Djokic <Lena.Djokic@rt-rk.com> wrote:
> Third argument represents lenght not second.
typo: "length"
> If second argument is NULL it should be passed without
> using lock_user function which would, in that case, return
> EFAULT, and system call supports passing NULL as second argument.
Looking at the kernel code, it doesn't support NULL as the
second argument for the three actions here (READ, READ_CLEAR,
READ_ALL) -- they all fail EINVAL. So what we're doing here
is just returning a better errno. I think we can do
this more simply by just changing the current
if (len < 0) {
goto fail;
}
to "if (!arg2 || len < 0) {" (which is what the kernel code does).
(I think it would also be reasonable to consistently use "len"
and never "arg3" (the existing code has an odd mix of both);
if you want to do that cleanup you could add an extra patch for
it, but you don't have to.)
> Signed-off-by: Lena Djokic <Lena.Djokic@rt-rk.com>
> ---
> linux-user/syscall.c | 16 ++++++++--------
> 1 file changed, 8 insertions(+), 8 deletions(-)
>
> diff --git a/linux-user/syscall.c b/linux-user/syscall.c
> index 61c4126..3faf4f0 100644
> --- a/linux-user/syscall.c
> +++ b/linux-user/syscall.c
> @@ -9426,7 +9426,7 @@ abi_long do_syscall(void *cpu_env, int num, abi_long arg1,
> #if defined(TARGET_NR_syslog)
> case TARGET_NR_syslog:
> {
> - int len = arg2;
> + int len = arg3;
>
> switch (arg1) {
> case TARGET_SYSLOG_ACTION_CLOSE: /* Close log */
> @@ -9450,13 +9450,13 @@ abi_long do_syscall(void *cpu_env, int num, abi_long arg1,
> goto fail;
> }
> ret = 0;
> - if (len == 0) {
> - break;
> - }
> - p = lock_user(VERIFY_WRITE, arg2, arg3, 0);
> - if (!p) {
> - ret = -TARGET_EFAULT;
> - goto fail;
> + p = NULL;
> + if (arg2) {
> + p = lock_user(VERIFY_WRITE, arg2, arg3, 0);
> + if (!p) {
> + ret = -TARGET_EFAULT;
> + goto fail;
> + }
> }
> ret = get_errno(sys_syslog((int)arg1, p, (int)arg3));
> unlock_user(p, arg2, arg3);
> --
> 2.7.4
thanks
-- PMM
next prev parent reply other threads:[~2016-12-16 14:38 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-11-24 16:08 [Qemu-devel] [PATCH v2 0/7] Improvements of qemu linux-user Lena Djokic
2016-11-24 16:08 ` [Qemu-devel] [PATCH v2 1/7] linux-user: Add fanotify implementation Lena Djokic
2016-12-16 16:43 ` Peter Maydell
2016-11-24 16:08 ` [Qemu-devel] [PATCH v2 2/7] linux-user: Fix inotify_init1 support Lena Djokic
2016-12-16 14:53 ` Peter Maydell
2017-01-05 12:13 ` Riku Voipio
2016-11-24 16:08 ` [Qemu-devel] [PATCH v2 3/7] linux-user: Fix flock definition for mips64 Lena Djokic
2016-12-16 14:51 ` Peter Maydell
2016-11-24 16:08 ` [Qemu-devel] [PATCH v2 4/7] linux-user: Fix fcnt Lena Djokic
2016-12-16 14:45 ` Peter Maydell
2016-11-24 16:08 ` [Qemu-devel] [PATCH v2 5/7] linux-user: Fix readahead Lena Djokic
2016-12-16 14:27 ` Peter Maydell
2017-01-05 12:14 ` Riku Voipio
2016-11-24 16:08 ` [Qemu-devel] [PATCH v2 6/7] linux-user: Fix syslog Lena Djokic
2016-12-16 14:38 ` Peter Maydell [this message]
2016-11-24 16:08 ` [Qemu-devel] [PATCH v2 7/7] linux-user: Fix mq_open Lena Djokic
2016-12-16 14:39 ` Peter Maydell
2017-01-05 12:14 ` Riku Voipio
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=CAFEAcA_s8NPptxdzsUXByA9uGFenF0++jF8P3TUVZUtQaOjABA@mail.gmail.com \
--to=peter.maydell@linaro.org \
--cc=Lena.Djokic@rt-rk.com \
--cc=qemu-devel@nongnu.org \
--cc=riku.voipio@iki.fi \
/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).