X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=TODO;h=2209619a47bad3b52f106b95e0fe7f8db693ceb1;hp=56fb094d2f3f1691d220531e1b0f451abc6f325b;hb=bda6cf75f259992bcba23c3c4c2339c50552f491;hpb=e55400960a6a06eb6dc16ea96f3c30ed580d3d3a diff --git a/TODO b/TODO index 56fb094..2209619 100644 --- a/TODO +++ b/TODO @@ -17,15 +17,6 @@ IDs and the host. It's not easy to automate this because you need extra details about the guest itself in order to get to its UID->username map (eg. /etc/passwd from the guest). -BufferIn --------- - -BufferIn should turn into and simple strings in other -languages that can handle 8 bit clean strings. - -Limit on transfers would still be 2MB for these types. - - then implement write-file properly - febootstrap / debootstrap inside appliance ------------------------------------------ @@ -212,16 +203,6 @@ ntfsclone Useful imaging tool: http://man.linux-ntfs.org/ntfsclone.8.html -Standard images ---------------- - -Equip guestfish with some standard images that it can load -quickly, eg: - - load ext2 - -Maybe it's better to create these on the fly? - virt-rescue pty --------------- @@ -270,4 +251,43 @@ List filesystems by UUID or label. Mount filesystems by UUID or label. (I'm not really sure if we can do this at the moment but we ought to be able to do it, and perhaps make -it easier by having a direct command). \ No newline at end of file +it easier by having a direct command). + +Map filesystems to disk blocks +------------------------------ + +Map files/filesystems/(any other object) to the actual disk +blocks they occupy. + +And vice versa. + +Is it even possible? + +Integration with host intrusion systems +--------------------------------------- + +Perfect way to monitor VMs from outside the VM. Look for file +hashes, log events, login/logout etc. + +http://www.ossec.net/ +http://la-samhna.de/samhain/ +http://sourceforge.net/projects/aide/ +http://osiris.shmoo.com/ +http://sourceforge.net/projects/tripwire/ + +Resizing, shrinking, specifying sizes in guestfish +-------------------------------------------------- + +Owing to an oversight we don't really supporting shrinking +filesystems. See: + +https://bugzilla.redhat.com/show_bug.cgi?id=585221 +https://bugzilla.redhat.com/show_bug.cgi?id=585222 +https://bugzilla.redhat.com/show_bug.cgi?id=585223 + +But a related problem is how to specify sizes to guestfish, ie. "100M" +or "1G". Currently the specific alloc and sparse functions contain +code to parse these size strings, but that cannot be used anywhere +else that would take a byte count. This is awkward because some +commands take units of megabytes (lvresize, sfdiskM) or sectors +(part-add), with no unifying theme.