diff options
author | Richard W.M. Jones <rjones@redhat.com> | 2009-07-15 22:25:51 +0100 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2009-07-15 22:25:51 +0100 |
commit | 7fc3faabc71621a9d8b429d15327955f20757080 (patch) | |
tree | cca1624403bd4e48bb4a1f7c23bd3f0d4cedc034 | |
parent | dbbbc753043aca5a32a96fa391851cc394e2ceea (diff) | |
download | libguestfs-7fc3faabc71621a9d8b429d15327955f20757080.tar.gz libguestfs-7fc3faabc71621a9d8b429d15327955f20757080.tar.xz libguestfs-7fc3faabc71621a9d8b429d15327955f20757080.zip |
New command: 'mountpoints' which returns a hash of device -> mountpoint.
-rw-r--r-- | daemon/mount.c | 31 | ||||
-rw-r--r-- | src/MAX_PROC_NR | 2 | ||||
-rwxr-xr-x | src/generator.ml | 12 |
3 files changed, 41 insertions, 4 deletions
diff --git a/daemon/mount.c b/daemon/mount.c index 1820f8a8..5bbbc67a 100644 --- a/daemon/mount.c +++ b/daemon/mount.c @@ -142,14 +142,15 @@ do_umount (char *pathordevice) return 0; } -char ** -do_mounts (void) +static char ** +mounts_or_mountpoints (int mp) { char *out, *err; int r; char **ret = NULL; int size = 0, alloc = 0; char *p, *pend, *p2; + int len; r = command (&out, &err, "mount", NULL); if (r == -1) { @@ -179,6 +180,20 @@ do_mounts (void) free (out); return NULL; } + if (mp) { + p2 += 12; /* skip " on /sysroot" */ + len = strcspn (p2, " "); + + if (len == 0) /* .. just /sysroot, so we turn it into "/" */ + p2 = (char *) "/"; + else + p2[len] = '\0'; + + if (add_string (&ret, &size, &alloc, p2) == -1) { + free (out); + return NULL; + } + } } p = pend; @@ -192,6 +207,18 @@ do_mounts (void) return ret; } +char ** +do_mounts (void) +{ + return mounts_or_mountpoints (0); +} + +char ** +do_mountpoints (void) +{ + return mounts_or_mountpoints (1); +} + /* Unmount everything mounted under /sysroot. * * We have to unmount in the correct order, so we sort the paths by diff --git a/src/MAX_PROC_NR b/src/MAX_PROC_NR index 878d5a02..c748b568 100644 --- a/src/MAX_PROC_NR +++ b/src/MAX_PROC_NR @@ -1 +1 @@ -146 +147 diff --git a/src/generator.ml b/src/generator.ml index c163b3ab..381e0ea7 100755 --- a/src/generator.ml +++ b/src/generator.ml @@ -1371,7 +1371,9 @@ contains the filesystem."); This returns the list of currently mounted filesystems. It returns the list of devices (eg. C</dev/sda1>, C</dev/VG/LV>). -Some internal mounts are not shown."); +Some internal mounts are not shown. + +See also: C<guestfs_mountpoints>"); ("umount_all", (RErr, []), 47, [FishAlias "unmount-all"], [InitBasicFS, Always, TestOutputList ( @@ -2927,6 +2929,14 @@ This is the same as C<guestfs_removexattr>, but if C<path> is a symbolic link, then it removes an extended attribute of the link itself."); + ("mountpoints", (RHashtable "mps", []), 147, [], + [], + "show mountpoints", + "\ +This call is similar to C<guestfs_mounts>. That call returns +a list of devices. This one returns a hash table (map) of +device name to directory where the device is mounted."); + ] let all_functions = non_daemon_functions @ daemon_functions |