From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54266) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YcrdM-0000aW-BW for qemu-devel@nongnu.org; Tue, 31 Mar 2015 04:34:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YcrdJ-0004Dp-29 for qemu-devel@nongnu.org; Tue, 31 Mar 2015 04:34:52 -0400 Received: from mail-wi0-x22e.google.com ([2a00:1450:400c:c05::22e]:37809) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YcrdI-0004Di-SL for qemu-devel@nongnu.org; Tue, 31 Mar 2015 04:34:49 -0400 Received: by wiaa2 with SMTP id a2so16425856wia.0 for ; Tue, 31 Mar 2015 01:34:47 -0700 (PDT) From: itamar.tal4@gmail.com Date: Tue, 31 Mar 2015 11:34:33 +0300 Message-Id: <1427790877-14544-1-git-send-email-itamar@guardicore.com> Subject: [Qemu-devel] [PATCH 0/4] qga added functionality List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: ori@guardicore.com, ariel@guardicore.com, mdroth@linux.vnet.ibm.com, pavel@guardicore.com, Itamar Tal From: Itamar Tal This bundle of patches adds support for some more functionality in the qemu-guest-agent, both for Windows and Linux. Main added features are: - Process list enumeration - Network connections enumeration - File removal and attributes - File hashing - System information such as uptime and hostname Itamar, Guardicore itamar@guardicore.com Itamar Tal (4): added qga hash file command (win/linux) addedd missing file commands (attributes, deletion) added qga system uptime and hostname commands added qga processes and connections enumeration commands (win/linux) qga/Makefile.objs | 2 +- qga/commands-posix.c | 644 ++++++++++++++++++++++++++++++++++++++++++++++++ qga/commands-win32.c | 561 +++++++++++++++++++++++++++++++++++++++++ qga/commands.c | 69 ++++++ qga/guest-agent-core.h | 8 + qga/main.c | 5 + qga/qapi-schema.json | 179 ++++++++++++++ qga/sha256.c | 171 +++++++++++++ qga/sha256.h | 40 +++ qga/win32-definitions.h | 110 +++++++++ qga/win32-iptypes.h | 412 +++++++++++++++++++++++++++++++ 11 files changed, 2200 insertions(+), 1 deletion(-) create mode 100644 qga/sha256.c create mode 100644 qga/sha256.h create mode 100644 qga/win32-definitions.h create mode 100644 qga/win32-iptypes.h -- 2.3.4