source: MondoRescue/branches/2.2.10/mondo/src/common/libmondo-mountlist.c@ 2291

Last change on this file since 2291 was 2291, checked in by Bruno Cornec, 15 years ago
  • Fix a printing error in mindi for the tar command
  • Fix all mr_asprintf which had no second param as a string

(report bug fix done originaly in 2.2.9)

  • Property svn:keywords set to Id
File size: 30.5 KB
Line 
1/* subroutines for handling mountlist
2 $Id: libmondo-mountlist.c 2291 2009-07-22 12:11:26Z bruno $
3*/
4
5
6/**
7 * @file
8 * Functions which manipulate the mountlist.
9 */
10
11#include "my-stuff.h"
12#include "mr_mem.h"
13#include "mondostructures.h"
14#include "libmondo-mountlist.h"
15#include "lib-common-externs.h"
16#include "libmondo-raid-EXT.h"
17#include "libmondo-devices-EXT.h"
18#include "libmondo-tools-EXT.h"
19#include "libmondo-string-EXT.h"
20#include "newt-specific-EXT.h"
21
22/*@unused@*/
23//static char cvsid[] = "$Id: libmondo-mountlist.c 2291 2009-07-22 12:11:26Z bruno $";
24
25/* Reference to global bkpinfo */
26extern struct s_bkpinfo *bkpinfo;
27
28/**
29 * @addtogroup mountlistGroup
30 * @{
31 */
32/**
33 * Evaluate a drive within the mountlist for flaws. For example, too many
34 * primary partitions, the first logical isn't 5, duplicate partitions,
35 * ovar-allocated or under-allocated, unsupported format, silly size, or
36 * silly mountpoint. Under FreeBSD, this checks the disklabel too, for the above-mentioned
37 * errors as well as too many BSD partitions (more than 'h').
38 * @param mountlist The mountlist to check.
39 * @param drive The drive to check (e.g. @c /dev/hda).
40 * @return The flaws string found (NULL for success) allocated to be freed
41 * @see evaluate_mountlist
42 */
43char *evaluate_drive_within_mountlist(struct mountlist_itself *mountlist, char *drive)
44#ifdef __FreeBSD__
45{
46// FreeBSD-specific version of evaluate_drive_within_mountlist()
47 /*@ int ************************************************************* */
48 int prev_part_no = 0;
49 int curr_part_no = 0;
50 int pos = 0, npos = 0;
51 int res = 0;
52 int mountpoint_copies = 0;
53 int device_copies = 0;
54 int i = 0;
55 int cur_sp_no = 0;
56 int prev_sp_no = 0;
57 int foundsome = FALSE;
58
59 /*@ buffers ******************************************************** */
60 char tmp = NULL;
61 char device[MAX_STR_LEN];
62 char mountpoint[MAX_STR_LEN];
63
64 char *flaws_str = NULL;
65
66 /*@ long *********************************************************** */
67 long physical_drive_size = 0;
68 long amount_allocated = 0;
69
70 /*@ pointers ******************************************************* */
71 char *part_table_fmt;
72
73 /*@ initialize ***************************************************** */
74 prev_part_no = 0;
75 mr_asprintf(&flaws_str, "%s", "");
76
77
78 physical_drive_size = get_phys_size_of_drive(drive);
79
80 if (physical_drive_size < 0) {
81 mr_asprintf(&tmp, " %s does not exist.", drive);
82 mr_strcat(flaws_str, "%s", tmp);
83 } else {
84 mr_asprintf(&tmp, "%s is %ld MB", drive, physical_drive_size);
85 }
86 log_it(tmp);
87 mr_free(tmp);
88
89
90 /* check DD */
91 for (cur_sp_no = 'a'; cur_sp_no < 'z'; ++cur_sp_no) {
92 sprintf(device, "%s%c", drive, cur_sp_no);
93 if (find_device_in_mountlist(mountlist, device) >= 0)
94 foundsome = TRUE;
95 }
96 if (foundsome) {
97 for (cur_sp_no = 'a'; cur_sp_no < 'z'; ++cur_sp_no) {
98 sprintf(device, "%s%c", drive, cur_sp_no);
99 pos = find_device_in_mountlist(mountlist, device);
100 if (pos < 0) {
101 continue;
102 }
103 strcpy(mountpoint, mountlist->el[pos].mountpoint);
104 /* is it too big? */
105 if (curr_part_no > 'h') {
106 mr_asprintf(&tmp, " Can only have up to 'h' in disklabel.");
107 log_it(tmp);
108 mr_strcat(flaws_str, tmp);
109 mr_free(tmp);
110 res++;
111 }
112 /* does partition /dev/adXsYZ exist more than once in the mountlist? */
113 for (i = 0, mountpoint_copies = 0, device_copies = 0;
114 i < mountlist->entries; i++) {
115 if (!strcmp(device, mountlist->el[i].device)) {
116 device_copies++;
117 }
118 }
119 if (device_copies > 1) {
120 mr_asprintf(&tmp, " %s %s's.", number_to_text(device_copies), device);
121 if (!strstr(flaws_str, tmp)) {
122 log_it(tmp);
123 mr_strcat(flaws_str, tmp);
124 res++;
125 }
126 mr_free(tmp);
127 }
128 /* silly partition size? */
129 if (mountlist->el[pos].size < 8192
130 && strcmp(mountlist->el[pos].mountpoint, "lvm")) {
131 mr_asprintf(&tmp, " %s is tiny!", device);
132 log_it(tmp);
133 mr_strcat(flaws_str, tmp);
134 mr_free(tmp);
135 res++;
136 }
137 /* mountpoint should begin with / unless it is swap, lvm or raid */
138 if (strcmp(mountlist->el[pos].mountpoint, "swap")
139 && strcmp(mountlist->el[pos].mountpoint, "lvm")
140 && strcmp(mountlist->el[pos].mountpoint, "raid")
141 && strcmp(mountlist->el[pos].mountpoint, "image")
142 && strcmp(mountlist->el[pos].mountpoint, "none")
143 && mountlist->el[pos].mountpoint[0] != '/') {
144 mr_asprintf(&tmp, " %s has a weird mountpoint.", device);
145 log_it(tmp);
146 mr_strcat(flaws_str, tmp);
147 mr_free(tmp);
148 res++;
149 }
150 /* is format sensible? */
151 if (!is_this_a_valid_disk_format(mountlist->el[pos].format)) {
152 mr_asprintf(&tmp, " %s has unsupported format %s.", device, mountlist->el[pos].format);
153 log_it(tmp);
154 mr_strcat(flaws_str, tmp);
155 mr_free(tmp);
156 res++;
157 }
158 amount_allocated += mountlist->el[pos].size / 1024L;
159 prev_sp_no = cur_sp_no;
160 }
161 }
162
163 npos = pos = 0;
164 for (curr_part_no = 1; curr_part_no < 99; curr_part_no++) {
165 build_partition_name(device, drive, curr_part_no);
166 pos = find_device_in_mountlist(mountlist, device);
167 npos = 0;
168 for (cur_sp_no = 'a'; cur_sp_no <= 'h'; cur_sp_no++) {
169 sprintf(device, "%ss%i%c", device, curr_part_no, cur_sp_no);
170 if (find_device_in_mountlist(mountlist, device) >= 0)
171 npos++;
172 }
173 if (((pos >= 0) || npos) && foundsome) {
174 mr_strcat(flaws_str, " %s has both DD and PC-style partitions.", drive);
175 return(flaws_str); // fatal error
176 }
177
178 build_partition_name(device, drive, curr_part_no);
179 strcpy(mountpoint, mountlist->el[pos].mountpoint);
180 if (pos > 0 && !npos) {
181 /* gap in the partition list? */
182 if (curr_part_no - prev_part_no > 1) {
183 if (prev_part_no == 0) {
184 mr_asprintf(&tmp, " Gap prior to %s.", device);
185 log_it(tmp);
186 mr_strcat(flaws_str, "%s", tmp);
187 mr_free(tmp);
188 res++;
189 } else if (curr_part_no > 5
190 || (curr_part_no <= 4 && prev_part_no > 0)) {
191 mr_asprintf(&tmp, " Gap between %ss%d and %d.", drive, prev_part_no, curr_part_no);
192 log_it(tmp);
193 mr_strcat(flaws_str, "%s", tmp);
194 mr_free(tmp);
195 res++;
196 }
197 }
198 /* GPT allows more than 4 primary partitions */
199 part_table_fmt = which_partition_format(drive);
200 /* no spare primary partitions to help accommodate the logical(s)? */
201 if ((curr_part_no >= 5 && prev_part_no == 4)
202 && (strcmp(part_table_fmt, "MBR") == 0)) {
203 mr_asprintf(&tmp, " Partition %ss4 is occupied.", drive);
204 log_it(tmp);
205 mr_strcat(flaws_str, "%s", tmp);
206 mr_free(tmp);
207 res++;
208 }
209 /* does partition /dev/adXsY exist more than once in the mountlist? */
210 for (i = 0, mountpoint_copies = 0, device_copies = 0;
211 i < mountlist->entries; i++) {
212 if (!strcmp(device, mountlist->el[i].device)) {
213 device_copies++;
214 }
215 }
216 if (device_copies > 1) {
217 mr_asprintf(&tmp, " %s %s's.", number_to_text(device_copies), device);
218 if (!strstr(flaws_str, "%s", tmp)) {
219 log_it(tmp);
220 mr_strcat(flaws_str, "%s", tmp);
221 res++;
222 }
223 mr_free(tmp);
224 }
225 /* silly partition size? */
226 if (mountlist->el[pos].size < 8192
227 && strcmp(mountlist->el[pos].mountpoint, "lvm")) {
228 mr_asprintf(&tmp, " %s is tiny!", device);
229 log_it(tmp);
230 mr_strcat(flaws_str, "%s", tmp);
231 mr_free(tmp);
232 res++;
233 }
234 /* mountpoint should begin with / unless it is swap, lvm or raid */
235 if (strcmp(mountlist->el[pos].mountpoint, "swap")
236 && strcmp(mountlist->el[pos].mountpoint, "lvm")
237 && strcmp(mountlist->el[pos].mountpoint, "raid")
238 && strcmp(mountlist->el[pos].mountpoint, "image")
239 && strcmp(mountlist->el[pos].mountpoint, "none")
240 && mountlist->el[pos].mountpoint[0] != '/') {
241 mr_asprintf(&tmp, " %s has a weird mountpoint.", device);
242 log_it(tmp);
243 mr_strcat(flaws_str, "%s", tmp);
244 mr_free(tmp);
245 res++;
246 }
247 /* is format sensible? */
248 if (!is_this_a_valid_disk_format(mountlist->el[pos].format)) {
249 mr_asprintf(&tmp, " %s has unsupported format %s.", device, mountlist->el[pos].format);
250 log_it(tmp);
251 mr_strcat(flaws_str, "%s", tmp);
252 mr_free(tmp);
253 res++;
254 }
255 } else {
256 /* Check subpartitions */
257 for (cur_sp_no = 'a'; cur_sp_no < 'z'; ++cur_sp_no) {
258 sprintf(device, "%ss%d%c", drive, curr_part_no, cur_sp_no);
259 pos = find_device_in_mountlist(mountlist, device);
260 if (pos < 0) {
261 continue;
262 }
263 strcpy(mountpoint, mountlist->el[pos].mountpoint);
264 /* is it too big? */
265 if (curr_part_no > 'h') {
266 mr_asprintf(&tmp, " Can only have up to 'h' in disklabel.");
267 log_it(tmp);
268 mr_strcat(flaws_str, "%s", tmp);
269 mr_free(tmp);
270 res++;
271 }
272 /* does partition /dev/adXsYZ exist more than once in the mountlist? */
273 for (i = 0, mountpoint_copies = 0, device_copies = 0;
274 i < mountlist->entries; i++) {
275 if (!strcmp(device, mountlist->el[i].device)) {
276 device_copies++;
277 }
278 }
279 if (device_copies > 1) {
280 mr_asprintf(&tmp, " %s %s's.", number_to_text(device_copies), device);
281 if (!strstr(flaws_str, tmp)) {
282 log_it(tmp);
283 mr_strcat(flaws_str, "%s", tmp);
284 res++;
285 }
286 mr_free(tmp);
287 }
288 /* silly partition size? */
289 if (mountlist->el[pos].size < 8192
290 && strcmp(mountlist->el[pos].mountpoint, "lvm")) {
291 mr_asprintf(&tmp, " %s is tiny!", device);
292 log_it(tmp);
293 mr_strcat(flaws_str, "%s", tmp);
294 mr_free(tmp);
295 res++;
296 }
297 /* mountpoint should begin with / unless it is swap, lvm or raid */
298 if (strcmp(mountlist->el[pos].mountpoint, "swap")
299 && strcmp(mountlist->el[pos].mountpoint, "lvm")
300 && strcmp(mountlist->el[pos].mountpoint, "raid")
301 && strcmp(mountlist->el[pos].mountpoint, "image")
302 && strcmp(mountlist->el[pos].mountpoint, "none")
303 && mountlist->el[pos].mountpoint[0] != '/') {
304 mr_asprintf(&tmp, " %s has a weird mountpoint.", device);
305 log_it(tmp);
306 mr_strcat(flaws_str, "%s", tmp);
307 mr_free(tmp);
308 res++;
309 }
310 /* is format sensible? */
311 if (!is_this_a_valid_disk_format
312 (mountlist->el[pos].format)) {
313 mr_asprintf(&tmp, " %s has unsupported format %s.", device, mountlist->el[pos].format);
314 log_it(tmp);
315 mr_strcat(flaws_str, "%s", tmp);
316 mr_free(tmp);
317 res++;
318 }
319 amount_allocated += mountlist->el[pos].size / 1024L;
320 prev_sp_no = cur_sp_no;
321 }
322 }
323
324 /* OK, continue with main loop */
325 amount_allocated += mountlist->el[pos].size / 1024L;
326 prev_part_no = curr_part_no;
327 }
328
329 /* Over-allocated the disk? Unallocated space on disk? */
330 if (amount_allocated > physical_drive_size) // Used to be +1, but what if you're 1 MB too high?
331 {
332 mr_asprintf(&tmp, " %ld MB over-allocated on %s.",
333 amount_allocated - physical_drive_size, drive);
334 log_it(tmp);
335 mr_strcat(flaws_str, "%s", tmp);
336 mr_free(tmp);
337 res++;
338 } else if (amount_allocated < physical_drive_size - 1) { /* NOT AN ERROR, JUST A WARNING :-) */
339 mr_asprintf(&tmp, " %ld MB unallocated on %s.",
340 physical_drive_size - amount_allocated, drive);
341 log_it(tmp);
342 mr_strcat(flaws_str, "%s", tmp);
343 mr_free(tmp);
344 }
345 if (res) {
346 return (NULL);
347 } else {
348 return (flaws_str);
349 }
350}
351
352#else
353// Linux-specific version of evaluate_drive_within_mountlist()
354{
355
356 /*@ int ************************************************************* */
357 int prev_part_no = 0;
358 int curr_part_no = 0;
359 int pos = 0;
360 int res = 0;
361 int mountpoint_copies = 0;
362 int device_copies = 0;
363 int i = 0;
364
365 /*@ buffers ******************************************************** */
366 char *tmp = NULL;
367 char *device = NULL;
368 char *flaws_str = NULL;
369
370 /*@ long *********************************************************** */
371 long physical_drive_size = 0L;
372 long amount_allocated = 0L;
373
374 /*@ pointers ******************************************************* */
375 char *part_table_fmt = NULL;
376
377 /*@ initialize ***************************************************** */
378 assert_string_is_neither_NULL_nor_zerolength(drive);
379 assert(mountlist != NULL);
380 mr_asprintf(&flaws_str, "%s", "");
381
382 malloc_string(device);
383 prev_part_no = 0;
384
385 physical_drive_size = get_phys_size_of_drive(drive);
386
387 if (physical_drive_size < 0) {
388 mr_asprintf(&tmp, " %s does not exist.", drive);
389 mr_strcat(flaws_str, "%s", tmp);
390 res++;
391 log_msg(1, tmp);
392 mr_free(tmp);
393 goto endoffunc;
394 } else {
395 mr_asprintf(&tmp, "%s is %ld MB", drive, physical_drive_size);
396 log_it(tmp);
397 mr_free(tmp);
398 }
399
400 for (curr_part_no = 1; curr_part_no < 99; curr_part_no++) {
401 build_partition_name(device, drive, curr_part_no);
402 pos = find_device_in_mountlist(mountlist, device);
403 if (pos < 0) {
404 continue;
405 }
406 /* gap in the partition list? */
407 if (curr_part_no - prev_part_no > 1) {
408 if (prev_part_no == 0) {
409 mr_asprintf(&tmp, " Gap prior to %s.", device);
410 log_it(tmp);
411 mr_strcat(flaws_str, "%s", tmp);
412 mr_free(tmp);
413 res++;
414 } else if (curr_part_no > 5
415 || (curr_part_no <= 4 && prev_part_no > 0)) {
416 mr_asprintf(&tmp, " Gap on %s between %d and %d.", drive,
417 prev_part_no, curr_part_no);
418 log_it(tmp);
419 mr_strcat(flaws_str, "%s", tmp);
420 mr_free(tmp);
421 res++;
422 }
423 }
424 /* GPT allows more than 4 primary partitions */
425 part_table_fmt = which_partition_format(drive);
426 /* no spare primary partitions to help accommodate the logical(s)? */
427 if ((curr_part_no >= 5 && prev_part_no == 4)
428 && (strcmp(part_table_fmt, "MBR") == 0)) {
429 mr_asprintf(&tmp, " Partition 4 of %s is occupied.", drive);
430 log_it(tmp);
431 mr_strcat(flaws_str, "%s", tmp);
432 mr_free(tmp);
433 res++;
434 }
435 /* does partition /dev/hdNX exist more than once in the mountlist? */
436 for (i = 0, mountpoint_copies = 0, device_copies = 0;
437 i < mountlist->entries; i++) {
438 if (!strcmp(device, mountlist->el[i].device)) {
439 device_copies++;
440 }
441 }
442 if (device_copies > 1) {
443 mr_asprintf(&tmp, " %s %s's.", number_to_text(device_copies),
444 device);
445 if (!strstr(flaws_str, tmp)) {
446 log_it(tmp);
447 mr_strcat(flaws_str, "%s", tmp);
448 res++;
449 }
450 mr_free(tmp);
451 }
452 /* silly partition size? */
453 if (mountlist->el[pos].size < 8192
454 && strcmp(mountlist->el[pos].mountpoint, "lvm")) {
455 mr_asprintf(&tmp, " %s is tiny!", device);
456 log_it(tmp);
457 mr_strcat(flaws_str, "%s", tmp);
458 mr_free(tmp);
459 res++;
460 }
461 /* mountpoint should begin with / unless it is swap, lvm or raid */
462 if (strcmp(mountlist->el[pos].mountpoint, "swap")
463 && strcmp(mountlist->el[pos].mountpoint, "lvm")
464 && strcmp(mountlist->el[pos].mountpoint, "raid")
465 && strcmp(mountlist->el[pos].mountpoint, "image")
466 && mountlist->el[pos].mountpoint[0] != '/') {
467 mr_asprintf(&tmp, " %s has a weird mountpoint.", device);
468 log_it(tmp);
469 mr_strcat(flaws_str, "%s", tmp);
470 mr_free(tmp);
471 res++;
472 }
473 /* is format sensible? */
474 if (!is_this_a_valid_disk_format(mountlist->el[pos].format)) {
475 mr_asprintf(&tmp, " %s has unsupported format %s.", device, mountlist->el[pos].format);
476 log_it(tmp);
477 mr_strcat(flaws_str, "%s", tmp);
478 mr_free(tmp);
479 res++;
480 }
481 /* OK, continue with main loop */
482 amount_allocated += mountlist->el[pos].size / 1024L;
483 prev_part_no = curr_part_no;
484 }
485
486 /* Over-allocated the disk? Unallocated space on disk? */
487 if (amount_allocated > physical_drive_size + 1) {
488 mr_asprintf(&tmp, " %ld MB over-allocated on %s.",
489 amount_allocated - physical_drive_size, drive);
490 log_it(tmp);
491 mr_strcat(flaws_str, "%s", tmp);
492 mr_free(tmp);
493 res++;
494 } else if (amount_allocated < physical_drive_size - 1) { /* NOT AN ERROR, JUST A WARNING :-) */
495 mr_asprintf(&tmp, " %ld MB unallocated on %s.",
496 physical_drive_size - amount_allocated, drive);
497 log_it(tmp);
498 mr_strcat(flaws_str, "%s", tmp);
499 mr_free(tmp);
500 }
501
502 endoffunc:
503 paranoid_free(device);
504
505 if (res) {
506 return (NULL);
507 } else {
508 return (flaws_str);
509 }
510}
511#endif
512
513
514/**
515 * Evaluate a whole mountlist for flaws. Calls evaluate_drive_within_mountlist()
516 * for each drive, and then spreads the flaws across three lines.
517 * @param mountlist The mountlist to evaluate.
518 * @param flaws_str_A Where to put the first line listing errors found.
519 * @param flaws_str_B Where to put the second line listing errors found.
520 * @param flaws_str_C Where to put the third line listing errors found.
521 * @return The number of flaws found (0 for success).
522 * @see evaluate_drive_within_mountlist
523 */
524int
525evaluate_mountlist(struct mountlist_itself *mountlist, char *flaws_str_A,
526 char *flaws_str_B, char *flaws_str_C)
527{
528
529 /*@ buffer *********************************************************** */
530 struct list_of_disks *drivelist;
531 char *tmp = NULL;
532 char *flaws_str = NULL;
533
534 /*@ int ************************************************************** */
535 int i = 0;
536 int res = 0;
537
538 /*@ initialize ******************************************************* */
539
540 drivelist = malloc(sizeof(struct list_of_disks));
541 assert(mountlist != NULL);
542 assert(flaws_str_A != NULL);
543 assert(flaws_str_B != NULL);
544 assert(flaws_str_C != NULL);
545
546 mr_asprintf(&flaws_str, "%s", "");
547
548 make_list_of_drives_in_mountlist(mountlist, drivelist);
549
550 log_it("Evaluating mountlist...");
551
552 for (i = 0; i < drivelist->entries; i++) {
553 if (strstr
554 (drivelist->el[i].device,
555 DONT_KNOW_HOW_TO_EVALUATE_THIS_DEVICE_TYPE)) {
556 mr_asprintf(&tmp, " Not evaluating %s (I don't know how yet)", drivelist->el[i].device);
557 log_it(tmp);
558 paranoid_free(tmp);
559 } else {
560 log_msg(8, "Evaluating drive #%d (%s) within mountlist", i, drivelist->el[i].device);
561 if ((tmp = evaluate_drive_within_mountlist(mountlist, drivelist->el[i].device)) == NULL) {
562 res++;
563 }
564 }
565 log_msg(8,"Entry: %d (%s)", i, drivelist->el[i].device);
566 /* BCO: tmp can be NULL as well as flaws_str */
567 if (tmp != NULL) {
568 log_msg(8,"Adding: %s to %s", tmp, flaws_str);
569 mr_strcat(flaws_str, "%s", tmp);
570 paranoid_free(tmp);
571 }
572 }
573 res += look_for_duplicate_mountpoints(mountlist, flaws_str);
574 res = spread_flaws_across_three_lines(flaws_str, flaws_str_A, flaws_str_B, flaws_str_C,res);
575 paranoid_free(flaws_str);
576 return(res);
577}
578
579
580/**
581 * Find the index number of @p device in the mountlist.
582 * The device given must match @p mountlist->el[N].device exactly, case-sensitive.
583 * @param mountlist The mountlist to search in.
584 * @param device The device to search for.
585 * @return The zero-based index of the device, or -1 if it could not be found.
586 */
587int
588find_device_in_mountlist(struct mountlist_itself *mountlist, char *device)
589{
590
591 /*@ int ************************************************************** */
592 int i = 0;
593
594 assert(mountlist != NULL);
595 assert_string_is_neither_NULL_nor_zerolength(device);
596 for (i = 0;
597 i < mountlist->entries
598 && strcmp(mountlist->el[i].device, device) != 0; i++);
599
600 if (i == mountlist->entries) {
601 return (-1);
602 } else {
603 return (i);
604 }
605}
606
607
608/**
609 * Look for duplicate mountpoints in @p mountlist.
610 * @param mountlist The mountlist to check.
611 * @param flaws_str The flaws string to append the results to.
612 * @return The number of mountpoints that have duplicates, or 0 for success.
613 */
614int
615look_for_duplicate_mountpoints(struct mountlist_itself *mountlist, char *flaws_str)
616{
617
618 /*@ int ************************************************************* */
619 int res = 0;
620 int currline = 0;
621 int i = 0;
622 int copies = 0;
623 int last_copy = 0;
624
625 /*@ buffetr ********************************************************* */
626 char *curr_mountpoint = NULL;
627 char *tmp = NULL;
628
629 assert(mountlist != NULL);
630 assert(flaws_str != NULL);
631
632 for (currline = 0; currline < mountlist->entries; currline++) {
633 mr_asprintf(&curr_mountpoint, "%s", mountlist->el[currline].mountpoint);
634 for (i = 0, copies = 0, last_copy = -1; i < mountlist->entries;
635 i++) {
636 if (!strcmp(mountlist->el[i].mountpoint, curr_mountpoint)
637 && strcmp(mountlist->el[i].mountpoint, "lvm")
638 && strcmp(mountlist->el[i].mountpoint, "swap")) {
639 last_copy = i;
640 copies++;
641 }
642 }
643 if (copies > 1 && last_copy == currline
644 && strcmp(curr_mountpoint, "raid")) {
645 mr_asprintf(&tmp, " %s %s's.", number_to_text(copies), curr_mountpoint);
646 mr_strcat(flaws_str, "%s", tmp);
647 log_it(tmp);
648 paranoid_free(tmp);
649 res++;
650 }
651 paranoid_free(curr_mountpoint);
652 }
653 return (res);
654}
655
656
657/**
658 * Make a list of the drives mentioned in the mountlist.
659 * @param mountlist The mountlist to examine.
660 * @param drivelist Where to put the list of drives found.
661 * @return The number of physical (non-RAID non-LVM) drives found, or \<= 0 for error.
662 */
663int
664make_list_of_drives_in_mountlist(struct mountlist_itself *mountlist,
665 struct list_of_disks *drivelist)
666{
667
668 /*@ int ************************************************************* */
669 int lino;
670 int noof_drives;
671 int j;
672
673 /*@ buffers ********************************************************* */
674 char *drive = NULL;
675 char *truncdrive = NULL;
676
677 long long size;
678
679 assert(mountlist != NULL);
680 assert(drivelist != NULL);
681 log_it("Making list of drives");
682 for (lino = 0, noof_drives = 0; lino < mountlist->entries; lino++) {
683
684 mr_asprintf(&drive, "%s", mountlist->el[lino].device);
685 if (!strncmp(drive, RAID_DEVICE_STUB, strlen(RAID_DEVICE_STUB))) {
686 log_msg(8, "Not putting %s in list of drives: it's a virtual drive", drive);
687 paranoid_free(drive);
688 continue;
689 }
690
691 size = mountlist->el[lino].size;
692 if (size == 0) {
693 log_msg(8, "Not putting %s in list of drives: it has zero size (maybe an LVM volume)", drive);
694 paranoid_free(drive);
695 continue;
696 }
697
698 log_msg(8, "Putting %s with size %lli in list of drives", drive, size);
699
700 /* memory allocation */
701 truncdrive = truncate_to_drive_name(drive);
702 paranoid_free(drive);
703
704 log_msg(8, "drive truncated to %s", truncdrive);
705
706 for (j = 0;
707 j < noof_drives
708 && strcmp(drivelist->el[j].device, truncdrive) != 0; j++) {
709 continue;
710 }
711 if (j == noof_drives) {
712 strncpy(drivelist->el[noof_drives].device, truncdrive, 63);
713 drivelist->el[noof_drives].device[63] = '\0';
714 log_msg(8,"Adding drive %s to list", drivelist->el[noof_drives].device);
715 noof_drives++;
716 }
717 paranoid_free(truncdrive);
718 if (noof_drives >= MAXIMUM_DISKS_PER_RAID_DEV) {
719 log_msg(0, "Unable to handle mountlist with more than %d lines", MAXIMUM_DISKS_PER_RAID_DEV);
720 log_to_screen("Unable to handle a so big mountlist");
721 finish(1);
722 }
723 }
724 drivelist->entries = noof_drives;
725 log_msg(8, "Made list of %d drives",noof_drives);
726
727 return (noof_drives);
728}
729
730
731/**
732 * Make a list of RAID partitions not currently associated with any RAID device.
733 * The user may add any of these partitions to the RAID device.
734 * @param output_list Where to put the list of unallocated RAID partitions.
735 * @param mountlist The mountlist to examine.
736 * @param raidlist The raidlist to examine.
737 */
738void make_list_of_unallocated_raid_partitions(struct mountlist_itself
739 *output_list,
740 struct mountlist_itself
741 *mountlist,
742 struct raidlist_itself
743 *raidlist)
744{
745
746 /*@ int ************************************************************* */
747 int items = 0;
748 int i = 0;
749 int used_by = 0;
750
751 /*@ buffers ********************************************************* */
752 char *tmp = NULL;
753
754 assert(output_list != NULL);
755 assert(mountlist != NULL);
756 assert(raidlist != NULL);
757 log_it("MLOURP -- starting");
758 items = 0;
759
760
761 for (i = 0; i < mountlist->entries; i++) {
762 if (strstr(mountlist->el[i].mountpoint, "raid")) {
763 used_by =
764 which_raid_device_is_using_this_partition(raidlist,
765 mountlist->el[i].
766 device);
767 if (used_by < 0) {
768 memcpy((void *) &output_list->el[items++],
769 (void *) &mountlist->el[i],
770 sizeof(struct mountlist_line));
771 mr_asprintf(&tmp, "%s is available; user may choose to add it to raid device", output_list->el[items - 1].device);
772 log_it(tmp);
773 paranoid_free(tmp);
774 }
775 }
776 }
777 output_list->entries = items;
778 log_it("MLUORP -- ending");
779}
780
781
782/**
783 * Get the size of a mountlist entry by the @c device field.
784 * @param mountlist The mountlist to search in.
785 * @param device The device to search for
786 * @return The size of the device (in KB), or -1 if it could not be found.
787 */
788long long
789size_of_specific_device_in_mountlist(struct mountlist_itself *mountlist,
790 char *device)
791{
792 /*@ int ************************************************************** */
793 int i = 0;
794
795
796 assert(mountlist != NULL);
797 assert_string_is_neither_NULL_nor_zerolength(device);
798
799 for (i = 0;
800 i < mountlist->entries && strcmp(mountlist->el[i].device, device);
801 i++);
802 if (i == mountlist->entries) {
803 return (-1);
804 } else {
805 return (mountlist->el[i].size);
806 }
807}
808
809
810/**
811 * Load a file on disk into @p mountlist.
812 * The file on disk should consist of multiple lines, each containing 4 or 5
813 * columns: the device, the mountpoint, the filesystem type, the size in kilobytes, and optionally the filesystem label.
814 * Comments begin with a '#' without any leading whitespace. Any duplicate
815 * entries are renamed.
816 * @param mountlist The mountlist to load into.
817 * @param fname The name of the file to load the mountlist from.
818 * @return 0 for success, 1 for failure.
819 */
820int load_mountlist(struct mountlist_itself *mountlist, char *fname)
821{
822 FILE *fin = NULL;
823 /* malloc ** */
824 char *incoming = NULL;
825 char *siz = NULL;
826 char *tmp = NULL;
827 char *p = NULL;
828
829 int items = 0;
830 int j = 0;
831 int res = 0;
832
833 assert(mountlist != NULL);
834 assert_string_is_neither_NULL_nor_zerolength(fname);
835
836 if (!(fin = fopen(fname, "r"))) {
837 log_it("Unable to open mountlist - '%s'", fname);
838 log_to_screen("Cannot open mountlist");
839 return (1);
840 }
841 malloc_string(incoming);
842 malloc_string(siz);
843 (void) fgets(incoming, MAX_STR_LEN - 1, fin);
844 log_it("Loading mountlist...");
845 while (!feof(fin)) {
846#if linux
847 res = sscanf(incoming,
848 "%s %s %s %s %s",
849 mountlist->el[items].device,
850 mountlist->el[items].mountpoint,
851 mountlist->el[items].format,
852 siz, mountlist->el[items].label);
853 if (res < 5) {
854 /* no label found */
855 log_msg(4, "no label found for %s",mountlist->el[items].device);
856 strcpy(mountlist->el[items].label,"");
857 }
858#elif __FreeBSD__
859 res = sscanf(incoming,
860 "%s %s %s %s",
861 mountlist->el[items].device,
862 mountlist->el[items].mountpoint,
863 mountlist->el[items].format, siz);
864 strcpy(mountlist->el[items].label,"");
865#endif
866
867 if (!strcmp(mountlist->el[items].device, "/proc") ||
868 !strcmp(mountlist->el[items].device, "proc") ||
869 !strcmp(mountlist->el[items].device, "/sys") ||
870 !strcmp(mountlist->el[items].device, "sys") ||
871 !strcmp(mountlist->el[items].device, "/devpts") ||
872 !strcmp(mountlist->el[items].device, "devpts")
873 ) {
874 log_msg(1,
875 "Ignoring %s in mountlist - not loading that line :) ",
876 mountlist->el[items].device);
877 (void) fgets(incoming, MAX_STR_LEN - 1, fin);
878 continue;
879 }
880 mountlist->el[items].size = atoll(siz);
881 if (mountlist->el[items].device[0] != '\0'
882 && mountlist->el[items].device[0] != '#') {
883 for (j = 0;
884 j < items
885 && strcmp(mountlist->el[j].device,
886 mountlist->el[items].device); j++);
887 if (j < items) {
888 strcat(mountlist->el[items].device, "_dup");
889 mr_asprintf(&tmp, "Duplicate entry in mountlist - renaming to %s", mountlist->el[items].device);
890 log_it(tmp);
891 paranoid_free(tmp);
892 }
893 mr_asprintf(&tmp, "%s", mountlist->el[items].device);
894 if (strstr(tmp, "/dev/md/")) {
895 log_it("format_device() --- Contracting %s", tmp);
896 p = strrchr(tmp, '/');
897 if (p) {
898 *p = *(p + 1);
899 *(p + 1) = *(p + 2);
900 *(p + 2) = *(p + 3);
901 }
902 log_it("It was %s; it is now %s",
903 mountlist->el[items].device, tmp);
904 strcpy(mountlist->el[items].device, tmp);
905 }
906 paranoid_free(tmp);
907
908 log_it("%s %s %s %lld %s",
909 mountlist->el[items].device,
910 mountlist->el[items].mountpoint,
911 mountlist->el[items].format,
912 mountlist->el[items].size,
913 mountlist->el[items].label);
914 items++;
915 if (items >= MAX_MOUNTLIST_ENTRIES) {
916 log_to_screen("Too many lines in mountlist.. ABORTING");
917 finish(1);
918 }
919 }
920 (void) fgets(incoming, MAX_STR_LEN - 1, fin);
921 }
922 paranoid_fclose(fin);
923 mountlist->entries = items;
924
925 log_it("Mountlist loaded successfully.");
926 log_it("%d entries in mountlist", items);
927
928 paranoid_free(incoming);
929 paranoid_free(siz);
930 return (0);
931}
932
933
934
935/**
936 * Save @p mountlist to a file on disk.
937 * @param mountlist The mountlist to save.
938 * @param fname The file to save it to.
939 * @return 0 for success, 1 for failure.
940 * @see load_mountlist
941 */
942int save_mountlist_to_disk(struct mountlist_itself *mountlist, char *fname)
943{
944 FILE *fout;
945 int i;
946
947 assert(mountlist != NULL);
948 assert_string_is_neither_NULL_nor_zerolength(fname);
949
950 log_it("save_mountlist_to_disk() --- saving to %s", fname);
951 if (!(fout = fopen(fname, "w"))) {
952 log_OS_error("WMTD - Cannot openout mountlist");
953 return (1);
954 }
955 for (i = 0; i < mountlist->entries; i++) {
956 fprintf(fout,
957 "%-15s %-15s %-15s %-15lld %-15s\n",
958 mountlist->el[i].device, mountlist->el[i].mountpoint,
959 mountlist->el[i].format, mountlist->el[i].size,
960 mountlist->el[i].label);
961 }
962 paranoid_fclose(fout);
963 return (0);
964}
965
966
967/**
968 * Sort the mountlist alphabetically by device.
969 * The sorting is done in-place.
970 * @param mountlist The mountlist to sort.
971 */
972void sort_mountlist_by_device(struct mountlist_itself *mountlist)
973{
974 int diff;
975 int lino = -999;
976
977 assert(mountlist != NULL);
978
979 while (lino < mountlist->entries) {
980 for (lino = 1; lino < mountlist->entries; lino++) {
981 diff =
982 strcmp_inc_numbers(mountlist->el[lino - 1].device,
983 mountlist->el[lino].device);
984 if (diff > 0) {
985 swap_mountlist_entries(mountlist, lino - 1, lino);
986 break;
987 }
988 }
989 }
990}
991
992
993/**
994 * Sort the mountlist alphabetically by mountpoint.
995 * The sorting is done in-place.
996 * @param mountlist The mountlist to sort.
997 * @param reverse If TRUE, then do a reverse sort.
998 */
999void
1000sort_mountlist_by_mountpoint(struct mountlist_itself *mountlist,
1001 bool reverse)
1002{
1003 int diff;
1004 int lino = -999;
1005
1006 assert(mountlist != NULL);
1007
1008 while (lino < mountlist->entries) {
1009 for (lino = 1; lino < mountlist->entries; lino++) {
1010 diff =
1011 strcmp(mountlist->el[lino - 1].mountpoint,
1012 mountlist->el[lino].mountpoint);
1013 if ((diff > 0 && !reverse) || ((diff < 0 && reverse))) {
1014 swap_mountlist_entries(mountlist, lino - 1, lino);
1015 break;
1016 }
1017 }
1018 }
1019}
1020
1021
1022/**
1023 * Swap two entries in the mountlist in-place.
1024 * @param mountlist The mountlist to swap the entries in.
1025 * @param a The index number of the first entry.
1026 * @param b The index number of the second entry.
1027 */
1028void
1029swap_mountlist_entries(struct mountlist_itself *mountlist, int a, int b)
1030{
1031 /*@ mallocs *** */
1032 char *device = NULL;
1033 char *mountpoint = NULL;
1034 char *format = NULL;
1035
1036 long long size;
1037
1038 assert(mountlist != NULL);
1039 assert(a >= 0);
1040 assert(b >= 0);
1041
1042 mr_asprintf(&device, "%s", mountlist->el[a].device);
1043 mr_asprintf(&mountpoint, "%s", mountlist->el[a].mountpoint);
1044 mr_asprintf(&format, "%s", mountlist->el[a].format);
1045
1046 size = mountlist->el[a].size;
1047
1048 strcpy(mountlist->el[a].device, mountlist->el[b].device);
1049 strcpy(mountlist->el[a].mountpoint, mountlist->el[b].mountpoint);
1050 strcpy(mountlist->el[a].format, mountlist->el[b].format);
1051
1052 mountlist->el[a].size = mountlist->el[b].size;
1053
1054 strcpy(mountlist->el[b].device, device);
1055 strcpy(mountlist->el[b].mountpoint, mountpoint);
1056 strcpy(mountlist->el[b].format, format);
1057
1058 mountlist->el[b].size = size;
1059 paranoid_free(device);
1060 paranoid_free(mountpoint);
1061 paranoid_free(format);
1062}
1063
1064/* @} - end of mountlistGroup */
Note: See TracBrowser for help on using the repository browser.