1 | /* $Id: VBoxVolInfo.cpp 62485 2016-07-22 18:36:43Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * Apps - VBoxVolInfo, Volume information tool.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2012-2016 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | */
|
---|
17 |
|
---|
18 |
|
---|
19 |
|
---|
20 | /*********************************************************************************************************************************
|
---|
21 | * Header Files *
|
---|
22 | *********************************************************************************************************************************/
|
---|
23 | #include <dirent.h>
|
---|
24 | extern "C"
|
---|
25 | {
|
---|
26 | #define private privatekw
|
---|
27 | #include <libdevmapper.h>
|
---|
28 | }
|
---|
29 | #include <stdio.h>
|
---|
30 | #include <sys/types.h>
|
---|
31 | #include <sys/stat.h>
|
---|
32 | #include <unistd.h>
|
---|
33 |
|
---|
34 |
|
---|
35 | /*********************************************************************************************************************************
|
---|
36 | * Function Prototypes *
|
---|
37 | *********************************************************************************************************************************/
|
---|
38 | void print_dev_name(dev_t devid);
|
---|
39 |
|
---|
40 | /*
|
---|
41 | * Extracts logical volume dependencies via devmapper API and print them out.
|
---|
42 | */
|
---|
43 | int main(int argc, char **argv)
|
---|
44 | {
|
---|
45 | struct dm_task *dmtask;
|
---|
46 | struct dm_info dminfo;
|
---|
47 |
|
---|
48 | if (argc != 2)
|
---|
49 | {
|
---|
50 | fprintf(stderr, "USAGE: %s <volume_name>\n", argv[0]);
|
---|
51 | return 1;
|
---|
52 | }
|
---|
53 |
|
---|
54 | dmtask = dm_task_create(DM_DEVICE_DEPS);
|
---|
55 | if (!dmtask)
|
---|
56 | return 2;
|
---|
57 |
|
---|
58 | if (dm_task_set_name(dmtask, argv[1]))
|
---|
59 | if (dm_task_run(dmtask))
|
---|
60 | if (dm_task_get_info(dmtask, &dminfo))
|
---|
61 | {
|
---|
62 | struct dm_deps *dmdeps = dm_task_get_deps(dmtask);
|
---|
63 | if (dmdeps)
|
---|
64 | {
|
---|
65 | unsigned i;
|
---|
66 | for (i = 0; i < dmdeps->count; ++i)
|
---|
67 | print_dev_name(dmdeps->device[i]);
|
---|
68 | }
|
---|
69 | }
|
---|
70 |
|
---|
71 | dm_task_destroy(dmtask);
|
---|
72 | return 0;
|
---|
73 | }
|
---|
74 |
|
---|
75 | /*
|
---|
76 | * Looks up device name by id using /dev directory. Prints it to stdout.
|
---|
77 | */
|
---|
78 | void print_dev_name(dev_t devid)
|
---|
79 | {
|
---|
80 | char path[PATH_MAX];
|
---|
81 | struct dirent *de;
|
---|
82 | DIR *dir = opendir("/dev");
|
---|
83 |
|
---|
84 | while ((de = readdir(dir)) != NULL)
|
---|
85 | {
|
---|
86 | struct stat st;
|
---|
87 | snprintf(path, sizeof(path), "/dev/%s", de->d_name);
|
---|
88 | if (!stat(path, &st))
|
---|
89 | if (S_ISBLK(st.st_mode))
|
---|
90 | if (devid == st.st_rdev)
|
---|
91 | {
|
---|
92 | puts(de->d_name);
|
---|
93 | break;
|
---|
94 | }
|
---|
95 | }
|
---|
96 | closedir(dir);
|
---|
97 | }
|
---|