Displaying 20 results from an estimated 10000 matches similar to: "[hivex PATCH 0/5] Fix various uninitialized data problems in hivex."
2010 Jan 28
14
[PATCH 0/13 v2] Prepare for adding write support to hivex (Windows registry) library
This series of patches, now up to 13 parts, contains lots of bug fixes
and groundwork required before we add write support to the hivex
library.
Rich.
--
Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones
Read my programming blog: http://rwmj.wordpress.com
Fedora now supports 80 OCaml packages (the OPEN alternative to F#)
2010 Nov 10
7
[PATCH 0/7] Add libvirt domain to core API
This series of patches aim to make adding disks from libvirt domains
easy through the core API.
These two new APIs allow you to add the disks from a libvirt domain.
The higher level add-domain API takes the name of the libvirt domain
as a string and connects to libvirt itself. The lower level
add-libvirt-dom API relies on the program to connect to libvirt and
pass the virDomainPtr into the API
2010 Aug 20
8
[PATCH febootstrap 0/8] Add support for building an ext2-based appliance
This patch series adds support for outputing an ext2-based appliance
from febootstrap-supermin-helper. The usage is very simple, you just
add '-f ext2' flag and the name of the appliance file that you want to
write to.
The implementation uses libext2fs, which is a very low level way to
create ext2 filesystems from scratch. We'd like to use libguestfs,
but that's an obvious
2009 Nov 30
5
[PATCH 0/5] 5 conservative changes to errno handling
These patches are a distillation of the good patches from the previous
large / for-discussion-only error handling patch. See:
https://www.redhat.com/archives/libguestfs/2009-November/msg00298.html
Rich.
--
Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones
virt-df lists disk usage of guests without needing to install any
software inside the virtual machine.
2010 Jan 19
7
[PATCH 0/7] Prepare for adding write support to hivex (windows registry) library
This series of patches prepares the way for a later series which will
add write support for Windows Registry 'hive' files to our 'hivex'
mini library.
About hivex:
http://libguestfs.org/hivex.3.html
About the Windows Registry:
Forget it - there are no reliable references. However the Wikipedia
page explains some of the top level concepts:
2011 Jan 28
10
[PATCH 0/8 v2 DISCUSSION ONLY] Connecting to live virtual machines
NOTE: This is HIGHLY EXPERIMENTAL and can eat babies ...
Modify the guest libvirt XML to add the virtio-serial channel:
<channel type='unix'>
<source mode='bind' path='/tmp/socket'/>
<target type='virtio' name='org.libguestfs.channel.0'/>
</channel>
In the guest, compile guestfsd and run it like this:
sudo
2010 Apr 10
9
[PATCH 0/9] Enhance virt-resize so it can really expand Linux and Windows guests
This is a set of bugfixes and enhancements to allow virt-resize to
really expand Linux and Windows guests. Previously there were lots of
bugs. This version has been tested on a variety of guests
successfully.
Rich.
--
Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones
libguestfs lets you edit virtual machines. Supports shell scripting,
bindings from many languages.
2010 Feb 03
12
[PATCH 0/12] Add support for writing to hive files
This patch series adds support for some simple operations on hive
files, and I've now tested and verified that those operations work
correctly.
All except for the last patch (12/12) are ready to be committed. The
last patch is WIP.
Rich.
--
Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones
virt-df lists disk usage of guests without needing to install any
2009 Oct 19
4
[PATCH 1/3] Add guestfs_find0 API call which doesn't have limits
The current guestfs_find API call contains an undocumented limit: It
needs to marshall the whole list of filenames into a single protocol
message.
Unfortunately just about any Linux guest breaks this limit if you try
'guestfs_find ("/")' so this isn't much use.
These patches add a new API call (find0) which breaks this limit by
using a FileOut parameter. It's slightly
2010 Dec 01
5
[PATCH 0/5] Add progress notification to upload APIs
--
Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones
virt-top is 'top' for virtual machines. Tiny program with many
powerful monitoring features, net stats, disk stats, logging, etc.
http://et.redhat.com/~rjones/virt-top
2011 Jul 15
8
[PATCH 0/8] Implement user cancellation
This patch series implements user cancellation. What this means is
that the "user" (or any library caller) can cancel certain
long-running operations. Currently it is only possible to cancel
upload and download operations (ie. anything in the generator which
uses FileIn and FileOut).
The mechanism in the protocol to implement cancellation already
exists, and it is already used to
2009 Sep 23
3
[PATCH 0/3] Three code cleanups
As suggested by Jim in this earlier message:
https://www.redhat.com/archives/libguestfs/2009-September/msg00152.html
Rich.
--
Richard Jones, Emerging Technologies, Red Hat http://et.redhat.com/~rjones
New in Fedora 11: Fedora Windows cross-compiler. Compile Windows
programs, test, and build Windows installers. Over 70 libraries supprt'd
http://fedoraproject.org/wiki/MinGW
2009 Nov 04
3
[PATCH x 3] Three small fixes for Debian
These small fixes are required to fix the build and tests on Debian
(using the debootstrap/debirf appliance).
There is currently another bug in the Debian tests which I'm looking
into. hexdump always fails as follows:
libguestfs: error: hexdump: hexdump: /test123: hexdump: /sysroot/test123: Bad file descriptor
Rich.
--
Richard Jones, Virtualization Group, Red Hat
2009 Oct 26
3
[PATCH 0/3] Handle NTFS 3g case sensitive Windows paths in the daemon
In the current Perl library we have a function called
resolve_windows_path which handles the useful [for Windows guests]
case where we need to resolve the true, case-sensitive path behind a
case-insensitive Windows path.
For example, a Windows path like "C:\Windows\System32" can be
presented to Linux by NTFS 3g in a variety of ways, eg:
/WINDOWS/system32
/WINDOWS/SYSTEM32
2010 Sep 26
2
[PATCH 0/2] Add pwrite-device API call
These two very simple patches add a pwrite-device API call. I have
been conservative and not yet added the equivalent pread-device call,
although that could be added in future.
The motivation for this is in virt-resize: We need a way to zap the
partition table cleanly[1], and obviously parted isn't working out for
us[2]. Using this call we can zap MBR and GPT partition tables by
overwriting
2009 Nov 20
6
[PATCH 0/6] Simple fixes for cross-compiling the daemon
As outlined here:
https://www.redhat.com/archives/libguestfs/2009-November/msg00171.html
These patches fix some of the simpler things. Some of the things (the
missing headers) are genuine bugs.
Note in order to cross-compile at all you have to comment out the
section in the daemon/configure.ac where it detects custom format
specifiers.
Rich.
--
Richard Jones, Virtualization Group, Red Hat
2011 Jan 27
5
[PATCH 0/5 REVIEW ONLY] Implement attach-method to attach to existing daemons
I've only done limited testing, but it does let you connect to an
existing guestfsd running inside a guest, over virtio-serial.
This is not ready to be applied.
One thing I've not thought about is how well this fits in with plans
to use this mechanism as an alternate way to launch the appliance via
libvirt.
Rich.
--
Richard Jones, Virtualization Group, Red Hat
2009 Nov 03
1
[PATCH libguestfs] hivex: fail upon integer overflow
This is probably only theoretical, but just the same...
>From 29edcca195d2998ca4a54aacec261752a3bdeb3d Mon Sep 17 00:00:00 2001
From: Jim Meyering <meyering at redhat.com>
Date: Tue, 3 Nov 2009 18:50:23 +0100
Subject: [PATCH libguestfs] hivex: fail upon integer overflow
* hivex/hivex.c (windows_utf16_to_utf8): Avoid overflow and a
potential infloop.
---
hivex/hivex.c | 3 +++
1
2010 Apr 03
1
hivex: Bug: RPATH in Perl SO
Whilst cleaning up the lintian reports in preparation for the
Debian/Ubuntu hivex package one of the issues is:
E: libhivex-perl: binary-or-shlib-defines-rpath
./usr/lib/perl/5.10.1/auto/Win/Hivex/Hivex.so
/tmp/buildd/hivex-1.2.1/perl/../lib/.libs
I've temporarily dealt with this by using chrpath in the build and a
rule to delete the RPATH from "auto/Win/Hivex/Hivex.so".
I wonder
2011 Sep 02
1
[PATCH 5/7] hivex: Add offset-&-length function for long value data
This patch adds value_data_cell_offset to the hivex ABI, to report the
hive space used for long value data.
Signed-off-by: Alex Nelson <ajnelson at cs.ucsc.edu>
---
generator/generator.ml | 11 +++++++++++
lib/hivex.c | 45 +++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 56 insertions(+), 0 deletions(-)
diff --git a/generator/generator.ml