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

Last change on this file since 2334 was 2331, checked in by Bruno Cornec, 15 years ago

r3342@localhost: bruno | 2009-08-14 00:46:51 +0200

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