search for: filesystem_walk0

Displaying 4 results from an estimated 4 matches for "filesystem_walk0".

Did you mean: filesystem_walk
2016 Mar 30
0
Re: [PATCH 0/2] added filesystem_walk0 low level API
On Wednesday 30 March 2016 13:45:15 NoxDaFox wrote: > Thanks for the comments, just few notes and questions. Just remember to keep the list in the loop. > 2016-03-30 12:24 GMT+03:00 Pino Toscano <ptoscano@redhat.com>: > > > Hi, > > > > while reviewing the new series of tsk-related changes, I'm noticing > > common mistakes in all of them: I'll list
2016 Mar 29
0
[PATCH 1/2] added filesystem_walk0 API
...OT_AVAILABLE + +#endif + static int file_out (const char *cmd); static guestfs_int_tsk_node* parse_ffind (const char *out, int64_t inode); @@ -226,3 +246,169 @@ file_out (const char *cmd) return 0; } + +#ifdef HAVE_LIBTSK + + +int optgroup_libtsk_available(void) +{ + return 1; +} + +int do_filesystem_walk0(const mountable_t *mountable) +{ + int ret = 0; + TSK_FS_INFO *fs = NULL; + TSK_IMG_INFO *img = NULL; + int flags = TSK_FS_DIR_WALK_FLAG_ALLOC | TSK_FS_DIR_WALK_FLAG_UNALLOC | + TSK_FS_DIR_WALK_FLAG_RECURSE | TSK_FS_DIR_WALK_FLAG_NOORPHAN; + + if (open_filesystem(mountable->device, &...
2016 Mar 29
5
[PATCH 0/2] added filesystem_walk0 low level API
The filesystem_walk0 API parses the FS internals of a partition and returns a list of all the files and directories contained within. It list deleted files and directories as well. For each node, it reports its relative path, its inode and its allocation status. The output is serialised in XDR format and written to t...
2016 Apr 03
7
[PATCH v2 0/5] Added filesystem_walk command
v2: - Increased the amount of collected information from the FS content. - Moved filesystem_walk0 as internal command. - Code improvement based on comments. - Adhere to project's coding style. - Better command documentation. - More robust tests. Patch ready for review, code available at: https://github.com/noxdafox/libguestfs/tree/filesystem_walk Matteo Cafasso (5): generator:...