4 * Copyright (C) 2002-2004 Sistina Software, Inc. All rights reserved.
5 * Copyright (C) 2004-2007 Red Hat, Inc. All rights reserved.
7 * This file is part of LVM2.
9 * This copyrighted material is made available to anyone wishing to use,
10 * modify, copy, or redistribute it subject to the terms and conditions
11 * of the GNU Lesser General Public License v.2.1.
13 * You should have received a copy of the GNU Lesser General Public License
14 * along with this program; if not, write to the Free Software Foundation,
15 * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 * 05/02/2002 - First drop [HM]
32 static int _get_max_dev_name_len(struct dev_filter
*filter
)
36 struct dev_iter
*iter
;
39 if (!(iter
= dev_iter_create(filter
, 1))) {
40 log_error("dev_iter_create failed");
45 for (dev
= dev_iter_get(iter
); dev
; dev
= dev_iter_get(iter
)) {
46 len
= strlen(dev_name(dev
));
50 dev_iter_destroy(iter
);
55 static void _count(struct device
*dev
, int *disks
, int *parts
)
57 int c
= dev_name(dev
)[strlen(dev_name(dev
)) - 1];
65 static void _print(struct cmd_context
*cmd
, const struct device
*dev
,
66 uint64_t size
, const char *what
)
68 log_print("%-*s [%15s] %s", max_len
, dev_name(dev
),
69 display_size(cmd
, size
), what
? : "");
72 static int _check_device(struct cmd_context
*cmd
, struct device
*dev
)
80 if (!dev_read(dev
, UINT64_C(0), (size_t) 1, &buffer
)) {
84 if (!dev_get_size(dev
, &size
)) {
85 log_error("Couldn't get size of \"%s\"", dev_name(dev
));
87 _print(cmd
, dev
, size
, NULL
);
88 _count(dev
, &disks_found
, &parts_found
);
89 if (!dev_close(dev
)) {
90 log_error("dev_close on \"%s\" failed", dev_name(dev
));
96 int lvmdiskscan(struct cmd_context
*cmd
, int argc
__attribute((unused
)),
97 char **argv
__attribute((unused
)))
100 struct dev_iter
*iter
;
104 /* initialise these here to avoid problems with the lvm shell */
110 if (arg_count(cmd
, lvmpartition_ARG
))
111 log_warn("WARNING: only considering LVM devices");
113 max_len
= _get_max_dev_name_len(cmd
->filter
);
115 if (!(iter
= dev_iter_create(cmd
->filter
, 0))) {
116 log_error("dev_iter_create failed");
121 for (dev
= dev_iter_get(iter
); dev
; dev
= dev_iter_get(iter
)) {
122 /* Try if it is a PV first */
123 if ((label_read(dev
, &label
, UINT64_C(0)))) {
124 if (!dev_get_size(dev
, &size
)) {
125 log_error("Couldn't get size of \"%s\"",
129 _print(cmd
, dev
, size
, "LVM physical volume");
130 _count(dev
, &pv_disks_found
, &pv_parts_found
);
133 /* If user just wants PVs we are done */
134 if (arg_count(cmd
, lvmpartition_ARG
))
137 /* What other device is it? */
138 if (!_check_device(cmd
, dev
))
141 dev_iter_destroy(iter
);
144 if (!arg_count(cmd
, lvmpartition_ARG
)) {
145 log_print("%d disk%s",
146 disks_found
, disks_found
== 1 ? "" : "s");
147 log_print("%d partition%s",
148 parts_found
, parts_found
== 1 ? "" : "s");
150 log_print("%d LVM physical volume whole disk%s",
151 pv_disks_found
, pv_disks_found
== 1 ? "" : "s");
152 log_print("%d LVM physical volume%s",
153 pv_parts_found
, pv_parts_found
== 1 ? "" : "s");
155 return ECMD_PROCESSED
;