From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:51646) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ri6Wl-0001Zt-4V for qemu-devel@nongnu.org; Tue, 03 Jan 2012 10:43:52 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Ri6Wj-0008Cu-My for qemu-devel@nongnu.org; Tue, 03 Jan 2012 10:43:50 -0500 Received: from mail-ww0-f53.google.com ([74.125.82.53]:59541) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ri6Wj-0008Ck-Ik for qemu-devel@nongnu.org; Tue, 03 Jan 2012 10:43:49 -0500 Received: by wgbds1 with SMTP id ds1so25458206wgb.10 for ; Tue, 03 Jan 2012 07:43:48 -0800 (PST) Sender: Fabio Erculiani From: Fabio Erculiani Date: Tue, 3 Jan 2012 16:43:28 +0100 Message-Id: <1325605408-16401-1-git-send-email-lxnay@sabayon.org> Subject: [Qemu-devel] [PATCH] linux-user: improve fake /proc/self/stat making `ps` not segfault. List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: riku.voipio@iki.fi Cc: Fabio Erculiani , qemu-devel@nongnu.org, agraf@suse.de With the current fake /proc/self/stat implementation `ps` is segfaulting because it expects to read PID and argv[0] as first and second field respectively, with the latter being enclosed between backets. Reproducing is as easy as running: `ps` inside qemu-user chroot with /proc mounted. Signed-off-by: Fabio Erculiani --- linux-user/syscall.c | 20 +++++++++++++++----- 1 files changed, 15 insertions(+), 5 deletions(-) diff --git a/linux-user/syscall.c b/linux-user/syscall.c index 9ba51bf..f2af5d5 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -4678,14 +4678,24 @@ static int open_self_stat(void *cpu_env, int fd) int len; uint64_t val = 0; - if (i == 27) { - /* stack bottom */ - val = start_stack; + if (i == 0) { + /* pid */ + snprintf(buf, sizeof(buf), "%"PRId64 " ", getpid()); + } else if (i == 1) { + /* app name */ + snprintf(buf, sizeof(buf), "(%s) ", ts->bprm->argv[0]); + } else if (i == 27) { + /* stack bottom */ + val = start_stack; + snprintf(buf, sizeof(buf), "%"PRId64 " ", val); + } else { + /* for the rest, there is MasterCard */ + snprintf(buf, sizeof(buf), "0%c", i == 43 ? '\n' : ' '); } - snprintf(buf, sizeof(buf), "%"PRId64 "%c", val, i == 43 ? '\n' : ' '); + len = strlen(buf); if (write(fd, buf, len) != len) { - return -1; + return -1; } } -- 1.7.7