From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56142) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dQgy4-0004Bj-1F for qemu-devel@nongnu.org; Thu, 29 Jun 2017 17:27:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dQgxz-0000tm-17 for qemu-devel@nongnu.org; Thu, 29 Jun 2017 17:27:16 -0400 Received: from mail-wr0-f176.google.com ([209.85.128.176]:35877) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dQgxy-0000sr-QG for qemu-devel@nongnu.org; Thu, 29 Jun 2017 17:27:10 -0400 Received: by mail-wr0-f176.google.com with SMTP id c11so195607482wrc.3 for ; Thu, 29 Jun 2017 14:27:09 -0700 (PDT) From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Golembiovsk=C3=BD?= Date: Thu, 29 Jun 2017 23:27:03 +0200 Message-Id: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PATCH v6 0/3] qemu-ga: add guest-get-osinfo command List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= , Eric Blake , Michael Roth , Vinzenz 'evilissimo' Feenstra Cc: qemu-devel@nongnu.org, =?UTF-8?q?Tom=C3=A1=C5=A1=20Golembiovsk=C3=BD?= v6: - fixed the documentation comment in schema - disguising os-release as key-value file (thanks Marc-André) - dropped dependency on gio - improved error handling - added test v5: - fixed build failure with older glib - fixed coding style issues - fixed one log string This is a continuation of the work started by Vinzenz Feenstra in the threads: https://lists.nongnu.org/archive/html/qemu-devel/2017-03/msg04154.html https://lists.nongnu.org/archive/html/qemu-devel/2017-03/msg04302.html https://lists.nongnu.org/archive/html/qemu-devel/2017-03/msg06262.html The idea is to report some basic information from uname and from os-release file, if it is present. On MS Windows, where neither uname nor os-release exist we fill the values based on the information we can get from the OS. The example output on Fedora is: { "return": { "kernel-version": "#1 SMP Mon May 8 18:46:06 UTC 2017", "kernel-release": "4.10.15-200.fc25.x86_64", "machine-hardware": "x86_64", "id": "fedora", "name": "Fedora", "pretty-name": "Fedora 25 (Server Edition)", "version": "25 (Server Edition)", "variant": "Server Edition", "version-id": "25", "variant-id": "server" } } The example output on MS Windows 10 is: { "return": { "kernel-version": "10.0", "kernel-release": "10240", "machine-hardware": "x86_64", "id": "mswindows", "name": "Microsoft Windows", "pretty-name": "Windows 10 Enterprise", "version": "Microsoft Windows 10", "version-id": "10", "variant": "client", "variant-id": "client" } } Tomas Golembiovsky Tomáš Golembiovský (3): qemu-ga: add guest-get-osinfo command test-qga: pass environemnt to qemu-ga test-qga: add test for guest-get-osinfo qga/commands-posix.c | 143 +++++++++++++++++++++++++++++++++++++++ qga/commands-win32.c | 185 +++++++++++++++++++++++++++++++++++++++++++++++++++ qga/qapi-schema.json | 65 ++++++++++++++++++ tests/test-qga.c | 61 +++++++++++++++-- 4 files changed, 450 insertions(+), 4 deletions(-) -- 2.13.1