| 1 | /* $Id: libmondo-string.c 3290 2014-05-06 08:24:16Z bruno $ */
|
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 | /**
|
|---|
| 5 | * @file
|
|---|
| 6 | * Functions for handling strings.
|
|---|
| 7 | */
|
|---|
| 8 |
|
|---|
| 9 | #include "my-stuff.h"
|
|---|
| 10 | #include "mr_mem.h"
|
|---|
| 11 | #include "mondostructures.h"
|
|---|
| 12 | #include "libmondo-string.h"
|
|---|
| 13 | #include "lib-common-externs.h"
|
|---|
| 14 | #include "libmondo-files-EXT.h"
|
|---|
| 15 | #include "libmondo-gui-EXT.h"
|
|---|
| 16 | #include "libmondo-tools-EXT.h"
|
|---|
| 17 |
|
|---|
| 18 | /*@unused@*/
|
|---|
| 19 | //static char cvsid[] = "$Id: libmondo-string.c 3290 2014-05-06 08:24:16Z bruno $";
|
|---|
| 20 |
|
|---|
| 21 | extern int g_current_media_number;
|
|---|
| 22 | extern long long g_tape_posK;
|
|---|
| 23 |
|
|---|
| 24 | /* Reference to global bkpinfo */
|
|---|
| 25 | extern struct s_bkpinfo *bkpinfo;
|
|---|
| 26 |
|
|---|
| 27 |
|
|---|
| 28 | /**
|
|---|
| 29 | * @addtogroup stringGroup
|
|---|
| 30 | * @{
|
|---|
| 31 | */
|
|---|
| 32 | /**
|
|---|
| 33 | * Build a partition name from a drive and a partition number.
|
|---|
| 34 | * @param drive The drive basename of the partition name (e.g. /dev/hda)
|
|---|
| 35 | * @param partno The partition number (e.g. 1)
|
|---|
| 36 | * @param partition Where to put the partition name (e.g. /dev/hda1)
|
|---|
| 37 | * @return @p partition.
|
|---|
| 38 | * @note If @p drive ends in a digit, then 'p' (on Linux) or 's' (on *BSD) is added before @p partno.
|
|---|
| 39 | */
|
|---|
| 40 | char *build_partition_name(char *partition, const char *drive, int partno)
|
|---|
| 41 | {
|
|---|
| 42 | char *p, *c;
|
|---|
| 43 |
|
|---|
| 44 | assert(partition != NULL);
|
|---|
| 45 | assert_string_is_neither_NULL_nor_zerolength(drive);
|
|---|
| 46 | assert(partno >= 0);
|
|---|
| 47 |
|
|---|
| 48 | p = strcpy(partition, drive);
|
|---|
| 49 | /* is this a devfs device path? */
|
|---|
| 50 | c = strrchr(partition, '/');
|
|---|
| 51 | if (c && strncmp(c, "/disc", 5) == 0) {
|
|---|
| 52 | /* yup it's devfs, return the "part" path */
|
|---|
| 53 | /* This strcpy is safe */
|
|---|
| 54 | strcpy(c + 1, "part");
|
|---|
| 55 | p = c + 5;
|
|---|
| 56 | } else {
|
|---|
| 57 | p += strlen(p);
|
|---|
| 58 | if (isdigit(p[-1])) {
|
|---|
| 59 | *p++ =
|
|---|
| 60 | #ifdef BSD
|
|---|
| 61 | 's';
|
|---|
| 62 | #else
|
|---|
| 63 | 'p';
|
|---|
| 64 | #endif
|
|---|
| 65 | }
|
|---|
| 66 | }
|
|---|
| 67 | sprintf(p, "%d", partno);
|
|---|
| 68 | return(partition);
|
|---|
| 69 | }
|
|---|
| 70 |
|
|---|
| 71 |
|
|---|
| 72 | /**
|
|---|
| 73 | * Pad a string on both sides so it appears centered.
|
|---|
| 74 | * @param in_out The string to be center-padded (modified).
|
|---|
| 75 | * @param width The width of the final result.
|
|---|
| 76 | */
|
|---|
| 77 | void center_string(char *in_out, int width)
|
|---|
| 78 | {
|
|---|
| 79 | char scratch[MAX_STR_LEN];
|
|---|
| 80 | char *p;
|
|---|
| 81 | int i; /* purpose */
|
|---|
| 82 | int len; /* purpose */
|
|---|
| 83 | int mid; /* purpose */
|
|---|
| 84 | int x; /* purpose */
|
|---|
| 85 |
|
|---|
| 86 | assert(in_out != NULL);
|
|---|
| 87 | assert(width > 2);
|
|---|
| 88 |
|
|---|
| 89 | if (strlen(in_out) == 0) {
|
|---|
| 90 | return;
|
|---|
| 91 | }
|
|---|
| 92 | for (p = in_out; *p == ' '; p++);
|
|---|
| 93 | strcpy(scratch, p);
|
|---|
| 94 | strip_spaces(scratch);
|
|---|
| 95 | len = (int) strlen(scratch);
|
|---|
| 96 | mid = width / 2;
|
|---|
| 97 | x = mid - len / 2;
|
|---|
| 98 | for (i = 0; i < x; i++) {
|
|---|
| 99 | in_out[i] = ' ';
|
|---|
| 100 | }
|
|---|
| 101 | in_out[i] = '\0';
|
|---|
| 102 | strcat(in_out, scratch);
|
|---|
| 103 | for (i = x + len ; i < width - 1; i++) {
|
|---|
| 104 | in_out[i] = ' ';
|
|---|
| 105 | }
|
|---|
| 106 | in_out[i] = '\0';
|
|---|
| 107 | }
|
|---|
| 108 |
|
|---|
| 109 |
|
|---|
| 110 | /**
|
|---|
| 111 | * Add commas every third place in @p input.
|
|---|
| 112 | * @param input The string to commarize.
|
|---|
| 113 | * @return The string with commas.
|
|---|
| 114 | * @note The returned string points to static storage that will be overwritten with each call.
|
|---|
| 115 | */
|
|---|
| 116 | char *commarize(char *input)
|
|---|
| 117 | {
|
|---|
| 118 | char pos_w_commas[MAX_STR_LEN];
|
|---|
| 119 | static char output[MAX_STR_LEN];
|
|---|
| 120 | char tmp[MAX_STR_LEN];
|
|---|
| 121 | int j;
|
|---|
| 122 |
|
|---|
| 123 | assert(input != NULL);
|
|---|
| 124 |
|
|---|
| 125 | strcpy(tmp, input);
|
|---|
| 126 | if (strlen(tmp) > 6) {
|
|---|
| 127 | strcpy(pos_w_commas, tmp);
|
|---|
| 128 | j = (int) strlen(pos_w_commas);
|
|---|
| 129 | tmp[j - 6] = ',';
|
|---|
| 130 | strcpy(tmp + j - 5, pos_w_commas + j - 6);
|
|---|
| 131 | strcpy(pos_w_commas, tmp);
|
|---|
| 132 | }
|
|---|
| 133 | if (strlen(tmp) > 3) {
|
|---|
| 134 | j = (int) strlen(tmp);
|
|---|
| 135 | strcpy(pos_w_commas, tmp);
|
|---|
| 136 | pos_w_commas[j - 3] = ',';
|
|---|
| 137 | strcpy(pos_w_commas + j - 2, tmp + j - 3);
|
|---|
| 138 | } else {
|
|---|
| 139 | strcpy(pos_w_commas, tmp);
|
|---|
| 140 | }
|
|---|
| 141 | strcpy(output, pos_w_commas);
|
|---|
| 142 | return (output);
|
|---|
| 143 | }
|
|---|
| 144 |
|
|---|
| 145 |
|
|---|
| 146 | /**
|
|---|
| 147 | * Turn an entry from the RAID editor's disklist into a GUI-friendly string.
|
|---|
| 148 | * The format is: the device left-aligned and padded to 24 places, followed by a space and the
|
|---|
| 149 | * index, right-aligned and padded to eight places. The total string length
|
|---|
| 150 | * is exactly 33.
|
|---|
| 151 | * @param disklist The disklist to operate on.
|
|---|
| 152 | * @param lino The line number from @p disklist to convert to a string.
|
|---|
| 153 | * @return The string form of the disklist entry.
|
|---|
| 154 | * @note The returned string points to static storage and will be overwritten with each call.
|
|---|
| 155 | */
|
|---|
| 156 | char *disklist_entry_to_string(struct list_of_disks *disklist, int lino)
|
|---|
| 157 | {
|
|---|
| 158 |
|
|---|
| 159 | /*@ buffers ********************************************************** */
|
|---|
| 160 | static char output[MAX_STR_LEN];
|
|---|
| 161 |
|
|---|
| 162 | assert(disklist != NULL);
|
|---|
| 163 |
|
|---|
| 164 | sprintf(output, "%-24s %8d", disklist->el[lino].device,
|
|---|
| 165 | disklist->el[lino].index);
|
|---|
| 166 | return (output);
|
|---|
| 167 | }
|
|---|
| 168 |
|
|---|
| 169 |
|
|---|
| 170 |
|
|---|
| 171 |
|
|---|
| 172 |
|
|---|
| 173 | /**
|
|---|
| 174 | * Turn a "friendly" sizestring into a number of megabytes.
|
|---|
| 175 | * Supports the suffixes 'k'/'K', 'm'/'M', and 'g'/'G'. Calls
|
|---|
| 176 | * fatal_error() if an unknown suffix is encountered.
|
|---|
| 177 | * @param incoming The sizestring to convert (e.g. "40m", "2g").
|
|---|
| 178 | * @return The size in megabytes.
|
|---|
| 179 | */
|
|---|
| 180 | long friendly_sizestr_to_sizelong(char *incoming)
|
|---|
| 181 | {
|
|---|
| 182 | long outval;
|
|---|
| 183 | int i;
|
|---|
| 184 | char *tmp = NULL;
|
|---|
| 185 | char ch;
|
|---|
| 186 |
|
|---|
| 187 | assert_string_is_neither_NULL_nor_zerolength(incoming);
|
|---|
| 188 |
|
|---|
| 189 | if (!incoming[0]) {
|
|---|
| 190 | return (0);
|
|---|
| 191 | }
|
|---|
| 192 | if (strchr(incoming, '.')) {
|
|---|
| 193 | fatal_error("Please use integers only. No decimal points.");
|
|---|
| 194 | }
|
|---|
| 195 |
|
|---|
| 196 | mr_asprintf(tmp, "%s", incoming);
|
|---|
| 197 | i = (int) strlen(tmp);
|
|---|
| 198 | if (tmp[i - 1] == 'B' || tmp[i - 1] == 'b') {
|
|---|
| 199 | tmp[i - 1] = '\0';
|
|---|
| 200 | }
|
|---|
| 201 | for (i = 0; i < (int) strlen(tmp) && isdigit(tmp[i]); i++);
|
|---|
| 202 | ch = tmp[i];
|
|---|
| 203 | tmp[i] = '\0';
|
|---|
| 204 | outval = atol(tmp);
|
|---|
| 205 | mr_free(tmp);
|
|---|
| 206 |
|
|---|
| 207 | if (ch == 'g' || ch == 'G') {
|
|---|
| 208 | outval = outval * 1024;
|
|---|
| 209 | } else if (ch == 'k' || ch == 'K') {
|
|---|
| 210 | outval = outval / 1024;
|
|---|
| 211 | } else if (ch == 't' || ch == 'T') // terabyte
|
|---|
| 212 | {
|
|---|
| 213 | outval *= 1048576;
|
|---|
| 214 | } else if (ch == 'Y' || ch == 'y') // yottabyte - the biggest measure in the info file
|
|---|
| 215 | {
|
|---|
| 216 | log_it
|
|---|
| 217 | ("Oh my gosh. You actually think a YOTTABYTE will get you anywhere? What're you going to do with 1,208,925,819,614,629,174,706,176 bytes of data?!?!");
|
|---|
| 218 | popup_and_OK
|
|---|
| 219 | ("That sizespec is more than 1,208,925,819,614,629,174,706,176 bytes. You have a shocking amount of data. Please send a screenshot to the list :-)");
|
|---|
| 220 | fatal_error("Integer overflow.");
|
|---|
| 221 | } else if (ch != 'm' && ch != 'M') {
|
|---|
| 222 | mr_asprintf(tmp, "Re: parameter '%s' - bad multiplier ('%c')", incoming, ch);
|
|---|
| 223 | fatal_error(tmp);
|
|---|
| 224 | }
|
|---|
| 225 | return (outval);
|
|---|
| 226 | }
|
|---|
| 227 |
|
|---|
| 228 |
|
|---|
| 229 |
|
|---|
| 230 | /**
|
|---|
| 231 | * Add spaces to the right of @p incoming to make it @p width characters wide.
|
|---|
| 232 | * @param incoming The string to left-pad.
|
|---|
| 233 | * @param width The width to pad it to.
|
|---|
| 234 | * @return The left-padded string.
|
|---|
| 235 | * @note The returned string points to static storage that will be overwritten with each call.
|
|---|
| 236 | * @bug Why does center_string() modify its argument but leftpad_string() returns a modified copy?
|
|---|
| 237 | */
|
|---|
| 238 | char *leftpad_string(char *incoming, int width)
|
|---|
| 239 | {
|
|---|
| 240 | /*@ buffers ***************************************************** */
|
|---|
| 241 | static char output[MAX_STR_LEN];
|
|---|
| 242 |
|
|---|
| 243 | /*@ ints ******************************************************** */
|
|---|
| 244 | int i;
|
|---|
| 245 |
|
|---|
| 246 | /*@ end vars **************************************************** */
|
|---|
| 247 | assert(incoming != NULL);
|
|---|
| 248 | assert(width > 2);
|
|---|
| 249 |
|
|---|
| 250 | strcpy(output, incoming);
|
|---|
| 251 | for (i = (int) strlen(output); i < width; i++) {
|
|---|
| 252 | output[i] = ' ';
|
|---|
| 253 | }
|
|---|
| 254 | output[i] = '\0';
|
|---|
| 255 | return (output);
|
|---|
| 256 | }
|
|---|
| 257 |
|
|---|
| 258 |
|
|---|
| 259 |
|
|---|
| 260 | /**
|
|---|
| 261 | * Turn a marker byte (e.g. BLK_START_OF_BACKUP) into a string (e.g. "BLK_START_OF_BACKUP").
|
|---|
| 262 | * Unknown markers are identified as "BLK_UNKNOWN (%d)" where %d is the decimal value.
|
|---|
| 263 | * @param marker The marker byte to stringify.
|
|---|
| 264 | * @return @p marker as a string.
|
|---|
| 265 | * @note The returned string points to static storage that will be overwritten with each call.
|
|---|
| 266 | */
|
|---|
| 267 | char *marker_to_string(int marker)
|
|---|
| 268 | {
|
|---|
| 269 | /*@ buffer ****************************************************** */
|
|---|
| 270 | static char outstr[MAX_STR_LEN];
|
|---|
| 271 |
|
|---|
| 272 |
|
|---|
| 273 | /*@ end vars *************************************************** */
|
|---|
| 274 |
|
|---|
| 275 | switch (marker) {
|
|---|
| 276 | case BLK_START_OF_BACKUP:
|
|---|
| 277 | strcpy(outstr, "BLK_START_OF_BACKUP");
|
|---|
| 278 | break;
|
|---|
| 279 | case BLK_START_OF_TAPE:
|
|---|
| 280 | strcpy(outstr, "BLK_START_OF_TAPE");
|
|---|
| 281 | break;
|
|---|
| 282 | case BLK_START_AN_AFIO_OR_SLICE:
|
|---|
| 283 | strcpy(outstr, "BLK_START_AN_AFIO_OR_SLICE");
|
|---|
| 284 | break;
|
|---|
| 285 | case BLK_STOP_AN_AFIO_OR_SLICE:
|
|---|
| 286 | strcpy(outstr, "BLK_STOP_AN_AFIO_OR_SLICE");
|
|---|
| 287 | break;
|
|---|
| 288 | case BLK_START_AFIOBALLS:
|
|---|
| 289 | strcpy(outstr, "BLK_START_AFIOBALLS");
|
|---|
| 290 | break;
|
|---|
| 291 | case BLK_STOP_AFIOBALLS:
|
|---|
| 292 | strcpy(outstr, "BLK_STOP_AFIOBALLS");
|
|---|
| 293 | break;
|
|---|
| 294 | case BLK_STOP_BIGGIEFILES:
|
|---|
| 295 | strcpy(outstr, "BLK_STOP_BIGGIEFILES");
|
|---|
| 296 | break;
|
|---|
| 297 | case BLK_START_A_NORMBIGGIE:
|
|---|
| 298 | strcpy(outstr, "BLK_START_A_NORMBIGGIE");
|
|---|
| 299 | break;
|
|---|
| 300 | case BLK_START_A_PIHBIGGIE:
|
|---|
| 301 | strcpy(outstr, "BLK_START_A_PIHBIGGIE");
|
|---|
| 302 | break;
|
|---|
| 303 | case BLK_START_EXTENDED_ATTRIBUTES:
|
|---|
| 304 | strcpy(outstr, "BLK_START_EXTENDED_ATTRIBUTES");
|
|---|
| 305 | break;
|
|---|
| 306 | case BLK_STOP_EXTENDED_ATTRIBUTES:
|
|---|
| 307 | strcpy(outstr, "BLK_STOP_EXTENDED_ATTRIBUTES");
|
|---|
| 308 | break;
|
|---|
| 309 | case BLK_START_EXAT_FILE:
|
|---|
| 310 | strcpy(outstr, "BLK_START_EXAT_FILE");
|
|---|
| 311 | break;
|
|---|
| 312 | case BLK_STOP_EXAT_FILE:
|
|---|
| 313 | strcpy(outstr, "BLK_STOP_EXAT_FILE");
|
|---|
| 314 | break;
|
|---|
| 315 | case BLK_START_BIGGIEFILES:
|
|---|
| 316 | strcpy(outstr, "BLK_START_BIGGIEFILES");
|
|---|
| 317 | break;
|
|---|
| 318 | case BLK_STOP_A_BIGGIE:
|
|---|
| 319 | strcpy(outstr, "BLK_STOP_A_BIGGIE");
|
|---|
| 320 | break;
|
|---|
| 321 | case BLK_END_OF_TAPE:
|
|---|
| 322 | strcpy(outstr, "BLK_END_OF_TAPE");
|
|---|
| 323 | break;
|
|---|
| 324 | case BLK_END_OF_BACKUP:
|
|---|
| 325 | strcpy(outstr, "BLK_END_OF_BACKUP");
|
|---|
| 326 | break;
|
|---|
| 327 | case BLK_ABORTED_BACKUP:
|
|---|
| 328 | strcpy(outstr, "BLK_ABORTED_BACKUP");
|
|---|
| 329 | break;
|
|---|
| 330 | case BLK_START_FILE:
|
|---|
| 331 | strcpy(outstr, "BLK_START_FILE");
|
|---|
| 332 | break;
|
|---|
| 333 | case BLK_STOP_FILE:
|
|---|
| 334 | strcpy(outstr, "BLK_STOP_FILE");
|
|---|
| 335 | break;
|
|---|
| 336 | default:
|
|---|
| 337 | sprintf(outstr, "BLK_UNKNOWN (%d)", marker);
|
|---|
| 338 | break;
|
|---|
| 339 | }
|
|---|
| 340 | return (outstr);
|
|---|
| 341 | }
|
|---|
| 342 |
|
|---|
| 343 |
|
|---|
| 344 |
|
|---|
| 345 |
|
|---|
| 346 | /**
|
|---|
| 347 | * Turn a line from the mountlist into a GUI-friendly string.
|
|---|
| 348 | * The format is as follows: the left-aligned @p device field padded to 24 places,
|
|---|
| 349 | * a space, the left-aligned @p mountpoint field again padded to 24 places, a space,
|
|---|
| 350 | * the left-aligned @p format field padded to 10 places, a space, and the right-aligned
|
|---|
| 351 | * @p size field (in MB) padded to 8 places. The total string length is exactly 69.
|
|---|
| 352 | * @param mountlist The mountlist to operate on.
|
|---|
| 353 | * @param lino The line number in @p mountlist to stringify.
|
|---|
| 354 | * @return The string form of <tt>mountlist</tt>-\>el[<tt>lino</tt>].
|
|---|
| 355 | * @note The returned string points to static storage and will be overwritten with each call.
|
|---|
| 356 | */
|
|---|
| 357 | char *mountlist_entry_to_string(struct mountlist_itself *mountlist,
|
|---|
| 358 | int lino)
|
|---|
| 359 | {
|
|---|
| 360 |
|
|---|
| 361 | /*@ buffer *********************************************************** */
|
|---|
| 362 | static char output[MAX_STR_LEN];
|
|---|
| 363 |
|
|---|
| 364 | assert(mountlist != NULL);
|
|---|
| 365 |
|
|---|
| 366 | sprintf(output, "%-24s %-24s %-10s %8lld", mountlist->el[lino].device,
|
|---|
| 367 | mountlist->el[lino].mountpoint, mountlist->el[lino].format,
|
|---|
| 368 | mountlist->el[lino].size / 1024L);
|
|---|
| 369 | return (output);
|
|---|
| 370 | }
|
|---|
| 371 |
|
|---|
| 372 |
|
|---|
| 373 |
|
|---|
| 374 |
|
|---|
| 375 |
|
|---|
| 376 |
|
|---|
| 377 | /**
|
|---|
| 378 | * Generate a friendly string containing "X blah blah disk(s)"
|
|---|
| 379 | * @param noof_disks The number of disks (the X).
|
|---|
| 380 | * @param label The "blah blah" part in the middle. If you leave this blank
|
|---|
| 381 | * there will be a weird double space in the middle, so pass *something*.
|
|---|
| 382 | * @return The string containing "X blah blah disk(s)".
|
|---|
| 383 | * @note The returned string is dynamically allocated and should be freed by caller
|
|---|
| 384 | */
|
|---|
| 385 | char *number_of_disks_as_string(int noof_disks, char *label)
|
|---|
| 386 | {
|
|---|
| 387 |
|
|---|
| 388 | /*@ buffers ********************************************************* */
|
|---|
| 389 | char *output = NULL;
|
|---|
| 390 |
|
|---|
| 391 | /*@ char ******************************************************** */
|
|---|
| 392 | char p;
|
|---|
| 393 |
|
|---|
| 394 | assert(label != NULL);
|
|---|
| 395 |
|
|---|
| 396 | if (noof_disks > 1) {
|
|---|
| 397 | p = 's';
|
|---|
| 398 | } else {
|
|---|
| 399 | p = ' ';
|
|---|
| 400 | }
|
|---|
| 401 | mr_asprintf(output, "%d %s disk%c", noof_disks, label, p);
|
|---|
| 402 | /* Useful ??
|
|---|
| 403 | while (strlen(output) < 14) {
|
|---|
| 404 | strcat(output, " ");
|
|---|
| 405 | }
|
|---|
| 406 | */
|
|---|
| 407 | return (output);
|
|---|
| 408 | }
|
|---|
| 409 |
|
|---|
| 410 |
|
|---|
| 411 |
|
|---|
| 412 | /**
|
|---|
| 413 | * Change @p i into a friendly string. If @p i is \<= 10 then write out the
|
|---|
| 414 | * number (e.g. "one", "two", ..., "nine", "ten", "11", ...).
|
|---|
| 415 | * @param i The number to stringify.
|
|---|
| 416 | * @return The string form of @p i.
|
|---|
| 417 | * @note The returned value points to static strorage that will be overwritten with each call.
|
|---|
| 418 | */
|
|---|
| 419 | char *number_to_text(int i)
|
|---|
| 420 | {
|
|---|
| 421 |
|
|---|
| 422 | /*@ buffers ***************************************************** */
|
|---|
| 423 | static char output[MAX_STR_LEN];
|
|---|
| 424 |
|
|---|
| 425 |
|
|---|
| 426 | /*@ end vars *************************************************** */
|
|---|
| 427 |
|
|---|
| 428 | switch (i) {
|
|---|
| 429 | case 0:
|
|---|
| 430 | strcpy(output, "zero");
|
|---|
| 431 | break;
|
|---|
| 432 | case 1:
|
|---|
| 433 | strcpy(output, "one");
|
|---|
| 434 | break;
|
|---|
| 435 | case 2:
|
|---|
| 436 | strcpy(output, "two");
|
|---|
| 437 | break;
|
|---|
| 438 | case 3:
|
|---|
| 439 | strcpy(output, "three");
|
|---|
| 440 | break;
|
|---|
| 441 | case 4:
|
|---|
| 442 | strcpy(output, "four");
|
|---|
| 443 | break;
|
|---|
| 444 | case 5:
|
|---|
| 445 | strcpy(output, "five");
|
|---|
| 446 | break;
|
|---|
| 447 | case 6:
|
|---|
| 448 | strcpy(output, "six");
|
|---|
| 449 | break;
|
|---|
| 450 | case 7:
|
|---|
| 451 | strcpy(output, "seven");
|
|---|
| 452 | break;
|
|---|
| 453 | case 8:
|
|---|
| 454 | strcpy(output, "eight");
|
|---|
| 455 | break;
|
|---|
| 456 | case 9:
|
|---|
| 457 | strcpy(output, "nine");
|
|---|
| 458 | case 10:
|
|---|
| 459 | strcpy(output, "ten");
|
|---|
| 460 | default:
|
|---|
| 461 | sprintf(output, "%d", i);
|
|---|
| 462 | }
|
|---|
| 463 | return (output);
|
|---|
| 464 | }
|
|---|
| 465 |
|
|---|
| 466 |
|
|---|
| 467 |
|
|---|
| 468 |
|
|---|
| 469 | /**
|
|---|
| 470 | * Replace all occurences of @p token with @p value while copying @p ip to @p output.
|
|---|
| 471 | * @param ip The input string containing zero or more <tt>token</tt>s.
|
|---|
| 472 | * @param output The output string written with the <tt>token</tt>s replaced by @p value.
|
|---|
| 473 | * @param token The token to be relaced with @p value.
|
|---|
| 474 | * @param value The value to replace @p token.
|
|---|
| 475 | */
|
|---|
| 476 |
|
|---|
| 477 | /* TODO: consider mr_strtok */
|
|---|
| 478 | void resolve_naff_tokens(char *output, char *ip, char *value, char *token)
|
|---|
| 479 | {
|
|---|
| 480 | /*@ buffers *** */
|
|---|
| 481 | char *input;
|
|---|
| 482 |
|
|---|
| 483 | /*@ pointers * */
|
|---|
| 484 | char *p;
|
|---|
| 485 |
|
|---|
| 486 | input = malloc(2000);
|
|---|
| 487 | assert(value != NULL);
|
|---|
| 488 |
|
|---|
| 489 | strcpy(output, ip); /* just in case the token doesn't appear in string at all */
|
|---|
| 490 | for (strcpy(input, ip); strstr(input, token); strcpy(input, output)) {
|
|---|
| 491 | strcpy(output, input);
|
|---|
| 492 | p = strstr(output, token);
|
|---|
| 493 | *p = '\0';
|
|---|
| 494 | strcat(output, value);
|
|---|
| 495 | p = strstr(input, token) + strlen(token);
|
|---|
| 496 | strcat(output, p);
|
|---|
| 497 | }
|
|---|
| 498 | paranoid_free(input);
|
|---|
| 499 | }
|
|---|
| 500 |
|
|---|
| 501 |
|
|---|
| 502 |
|
|---|
| 503 |
|
|---|
| 504 |
|
|---|
| 505 | /**
|
|---|
| 506 | * Generate the filename of slice @p sliceno of biggiefile @p bigfileno
|
|---|
| 507 | * in @p path with suffix @p s. The format is as follows: @p path, followed
|
|---|
| 508 | * by "/slice-" and @p bigfileno zero-padded to 7 places, followed by
|
|---|
| 509 | * a dot and @p sliceno zero-padded to 5 places, followed by ".dat" and the
|
|---|
| 510 | * suffix. The string is a minimum of 24 characters long.
|
|---|
| 511 | * @param bigfileno The biggiefile number. Starts from 0.
|
|---|
| 512 | * @param sliceno The slice number of biggiefile @p bigfileno. 0 is a "header"
|
|---|
| 513 | * slice (no suffix) containing the biggiestruct, then are the compressed
|
|---|
| 514 | * slices, then an empty uncompressed "trailer" slice.
|
|---|
| 515 | * @param path The path to append (with a / in the middle) to the slice filename.
|
|---|
| 516 | * @param s If not "" then add a "." and this to the end.
|
|---|
| 517 | * @return The slice filename.
|
|---|
| 518 | * @note The returned value points to static storage and will be overwritten with each call.
|
|---|
| 519 | */
|
|---|
| 520 | char *slice_fname(long bigfileno, long sliceno, char *path, char *s)
|
|---|
| 521 | {
|
|---|
| 522 |
|
|---|
| 523 | /*@ buffers **************************************************** */
|
|---|
| 524 | static char output[MAX_STR_LEN];
|
|---|
| 525 | char *suffix = NULL;
|
|---|
| 526 |
|
|---|
| 527 | /*@ end vars *************************************************** */
|
|---|
| 528 |
|
|---|
| 529 | assert_string_is_neither_NULL_nor_zerolength(path);
|
|---|
| 530 | if (s[0] != '\0') {
|
|---|
| 531 | mr_asprintf(suffix, ".%s", s);
|
|---|
| 532 | } else {
|
|---|
| 533 | mr_asprintf(suffix, "");
|
|---|
| 534 | }
|
|---|
| 535 | sprintf(output, "%s/slice-%07ld.%05ld.dat%s", path, bigfileno, sliceno, suffix);
|
|---|
| 536 | mr_free(suffix);
|
|---|
| 537 | return (output);
|
|---|
| 538 | }
|
|---|
| 539 |
|
|---|
| 540 |
|
|---|
| 541 | /**
|
|---|
| 542 | * Generate a spinning symbol based on integer @p i.
|
|---|
| 543 | * The symbol rotates through the characters / - \ | to form an ASCII "spinner"
|
|---|
| 544 | * if successively written to the same location on screen.
|
|---|
| 545 | * @param i The amount of progress or whatever else to use to determine the character
|
|---|
| 546 | * for this iteration of the spinner.
|
|---|
| 547 | * @return The character for this iteration.
|
|---|
| 548 | */
|
|---|
| 549 | int special_dot_char(int i)
|
|---|
| 550 | {
|
|---|
| 551 | switch (i % 4) {
|
|---|
| 552 | case 0:
|
|---|
| 553 | return ('/');
|
|---|
| 554 | case 1:
|
|---|
| 555 | return ('-');
|
|---|
| 556 | case 2:
|
|---|
| 557 | return ('\\');
|
|---|
| 558 | case 3:
|
|---|
| 559 | return ('|');
|
|---|
| 560 | default:
|
|---|
| 561 | return ('.');
|
|---|
| 562 | }
|
|---|
| 563 | return ('.');
|
|---|
| 564 | }
|
|---|
| 565 |
|
|---|
| 566 |
|
|---|
| 567 | /**
|
|---|
| 568 | * Compare @p stringA and @p stringB. This uses an ASCII sort for everything
|
|---|
| 569 | * up to the digits on the end but a numerical sort for the digits on the end.
|
|---|
| 570 | * @param stringA The first string to compare.
|
|---|
| 571 | * @param stringB The second string to compare.
|
|---|
| 572 | * @return The same as strcmp() - <0 if A<B, 0 if A=B, >0 if A>B.
|
|---|
| 573 | * @note This function only does a numerical sort on the @e last set of numbers. If
|
|---|
| 574 | * there are any in the middle those will be sorted ASCIIbetically.
|
|---|
| 575 | */
|
|---|
| 576 | int strcmp_inc_numbers(char *stringA, char *stringB)
|
|---|
| 577 | {
|
|---|
| 578 | /*@ int ********************************************************* */
|
|---|
| 579 | int i;
|
|---|
| 580 | int start_of_numbers_in_A;
|
|---|
| 581 | int start_of_numbers_in_B;
|
|---|
| 582 | int res;
|
|---|
| 583 |
|
|---|
| 584 | /*@ long ******************************************************* */
|
|---|
| 585 | long numA;
|
|---|
| 586 | long numB;
|
|---|
| 587 |
|
|---|
| 588 | /*@ end vars *************************************************** */
|
|---|
| 589 | assert(stringA != NULL);
|
|---|
| 590 | assert(stringB != NULL);
|
|---|
| 591 |
|
|---|
| 592 | if (strlen(stringA) == strlen(stringB)) {
|
|---|
| 593 | return (strcmp(stringA, stringB));
|
|---|
| 594 | }
|
|---|
| 595 | for (i = (int) strlen(stringA); i > 0 && isdigit(stringA[i - 1]); i--);
|
|---|
| 596 | if (i == (int) strlen(stringA)) {
|
|---|
| 597 | return (strcmp(stringA, stringB));
|
|---|
| 598 | }
|
|---|
| 599 | start_of_numbers_in_A = i;
|
|---|
| 600 | for (i = (int) strlen(stringB); i > 0 && isdigit(stringB[i - 1]); i--);
|
|---|
| 601 | if (i == (int) strlen(stringB)) {
|
|---|
| 602 | return (strcmp(stringA, stringB));
|
|---|
| 603 | }
|
|---|
| 604 | start_of_numbers_in_B = i;
|
|---|
| 605 | if (start_of_numbers_in_A != start_of_numbers_in_B) {
|
|---|
| 606 | return (strcmp(stringA, stringB));
|
|---|
| 607 | }
|
|---|
| 608 | res = strncmp(stringA, stringB, (size_t) i);
|
|---|
| 609 | if (res) {
|
|---|
| 610 | return (res);
|
|---|
| 611 | }
|
|---|
| 612 | numA = atol(stringA + start_of_numbers_in_A);
|
|---|
| 613 | numB = atol(stringB + start_of_numbers_in_B);
|
|---|
| 614 | return ((int) (numA - numB));
|
|---|
| 615 | }
|
|---|
| 616 |
|
|---|
| 617 |
|
|---|
| 618 |
|
|---|
| 619 | /**
|
|---|
| 620 | * Strip excess baggage from @p input, which should be a line from afio.
|
|---|
| 621 | * For now this copies the whole line unless it finds a set of quotes, in which case
|
|---|
| 622 | * it copies their contents only.
|
|---|
| 623 | * @param input The input line (presumably from afio).
|
|---|
| 624 | * @return The stripped line.
|
|---|
| 625 | * @note The returned string points to static storage that will be overwritten with each call.
|
|---|
| 626 | */
|
|---|
| 627 | char *strip_afio_output_line(char *input)
|
|---|
| 628 | {
|
|---|
| 629 | /*@ buffer ****************************************************** */
|
|---|
| 630 | static char output[MAX_STR_LEN];
|
|---|
| 631 |
|
|---|
| 632 | /*@ pointers **************************************************** */
|
|---|
| 633 | char *p;
|
|---|
| 634 | char *q;
|
|---|
| 635 | /*@ end vars *************************************************** */
|
|---|
| 636 |
|
|---|
| 637 | assert(input != NULL);
|
|---|
| 638 | strcpy(output, input);
|
|---|
| 639 | p = strchr(input, '\"');
|
|---|
| 640 | if (p) {
|
|---|
| 641 | q = strchr(++p, '\"');
|
|---|
| 642 | if (q) {
|
|---|
| 643 | strcpy(output, p);
|
|---|
| 644 | *(strchr(output, '\"')) = '\0';
|
|---|
| 645 | }
|
|---|
| 646 | }
|
|---|
| 647 | return (output);
|
|---|
| 648 | }
|
|---|
| 649 |
|
|---|
| 650 |
|
|---|
| 651 |
|
|---|
| 652 | /**
|
|---|
| 653 | * Remove all characters whose ASCII value is less than or equal to 32
|
|---|
| 654 | * (spaces and control characters) from both sides of @p in_out.
|
|---|
| 655 | * @param in_out The string to strip spaces/control characters from (modified).
|
|---|
| 656 | */
|
|---|
| 657 | void strip_spaces(char *in_out)
|
|---|
| 658 | {
|
|---|
| 659 | /*@ buffers ***************************************************** */
|
|---|
| 660 | char *tmp = NULL;
|
|---|
| 661 |
|
|---|
| 662 | /*@ int ******************************************************** */
|
|---|
| 663 | int i;
|
|---|
| 664 |
|
|---|
| 665 | /*@ end vars *************************************************** */
|
|---|
| 666 |
|
|---|
| 667 | assert(in_out != NULL);
|
|---|
| 668 | malloc_string(tmp);
|
|---|
| 669 | for (i = 0; in_out[i] <= ' ' && i < (int) strlen(in_out) -1; i++);
|
|---|
| 670 | strcpy(tmp, in_out + i);
|
|---|
| 671 | for (i = (int) strlen(tmp) -1; i >= 0 && tmp[i] <= ' '; i--);
|
|---|
| 672 | i++;
|
|---|
| 673 | tmp[i] = '\0';
|
|---|
| 674 |
|
|---|
| 675 | // Now tmp contains the stripped string
|
|---|
| 676 | strcpy(in_out,tmp);
|
|---|
| 677 | paranoid_free(tmp);
|
|---|
| 678 | }
|
|---|
| 679 |
|
|---|
| 680 | /**
|
|---|
| 681 | * Remove all characters whose ASCII value is less than or equal to 32
|
|---|
| 682 | * (spaces and control characters) from both sides of @p in_out.
|
|---|
| 683 | * @param in_out The string to strip spaces/control characters from (modified).
|
|---|
| 684 | */
|
|---|
| 685 | void strip_spaces2(char *in_out)
|
|---|
| 686 | {
|
|---|
| 687 | /*@ buffers ***************************************************** */
|
|---|
| 688 | char *tmp;
|
|---|
| 689 |
|
|---|
| 690 | /*@ pointers **************************************************** */
|
|---|
| 691 | char *p;
|
|---|
| 692 |
|
|---|
| 693 | /*@ int ******************************************************** */
|
|---|
| 694 | int i;
|
|---|
| 695 | int original_incoming_length;
|
|---|
| 696 |
|
|---|
| 697 | /*@ end vars *************************************************** */
|
|---|
| 698 |
|
|---|
| 699 | assert(in_out != NULL);
|
|---|
| 700 | malloc_string(tmp);
|
|---|
| 701 | original_incoming_length = (int) strlen(in_out);
|
|---|
| 702 | for (i = 0; in_out[i] <= ' ' && i < (int) strlen(in_out); i++);
|
|---|
| 703 | strcpy(tmp, in_out + i);
|
|---|
| 704 | for (i = (int) strlen(tmp); i > 0 && tmp[i - 1] <= 32; i--);
|
|---|
| 705 | tmp[i] = '\0';
|
|---|
| 706 | for (i = 0; i < original_incoming_length && MAX_STR_LEN; i++) {
|
|---|
| 707 | in_out[i] = ' ';
|
|---|
| 708 | }
|
|---|
| 709 | in_out[i] = '\0';
|
|---|
| 710 | i = 0;
|
|---|
| 711 | p = tmp;
|
|---|
| 712 | while (*p != '\0') {
|
|---|
| 713 | in_out[i] = *(p++);
|
|---|
| 714 | in_out[i + 1] = '\0';
|
|---|
| 715 | if (in_out[i] < 32 && i > 0) {
|
|---|
| 716 | if (in_out[i] == 8) {
|
|---|
| 717 | i--;
|
|---|
| 718 | } else if (in_out[i] == 9) {
|
|---|
| 719 | in_out[i++] = ' ';
|
|---|
| 720 | } else if (in_out[i] == '\r') // added 1st October 2003 -- FIXME
|
|---|
| 721 | {
|
|---|
| 722 | strcpy(tmp, in_out + i);
|
|---|
| 723 | strcpy(in_out, tmp);
|
|---|
| 724 | i = -1;
|
|---|
| 725 | continue;
|
|---|
| 726 | } else if (in_out[i] == '\t') {
|
|---|
| 727 | for (i++; i % 5; i++);
|
|---|
| 728 | } else if (in_out[i] >= 10 && in_out[i] <= 13) {
|
|---|
| 729 | break;
|
|---|
| 730 | } else {
|
|---|
| 731 | i--;
|
|---|
| 732 | }
|
|---|
| 733 | } else {
|
|---|
| 734 | i++;
|
|---|
| 735 | }
|
|---|
| 736 | }
|
|---|
| 737 | in_out[i] = '\0';
|
|---|
| 738 | paranoid_free(tmp);
|
|---|
| 739 | }
|
|---|
| 740 |
|
|---|
| 741 |
|
|---|
| 742 | /**
|
|---|
| 743 | * If there are double quotes "" around @p incoming then remove them.
|
|---|
| 744 | * This does not affect other quotes that may be embedded within the string.
|
|---|
| 745 | * @param incoming The string to trim quotes from (modified).
|
|---|
| 746 | * @return @p incoming.
|
|---|
| 747 | */
|
|---|
| 748 | char *trim_empty_quotes(char *incoming)
|
|---|
| 749 | {
|
|---|
| 750 | /*@ buffer ****************************************************** */
|
|---|
| 751 | static char outgoing[MAX_STR_LEN];
|
|---|
| 752 |
|
|---|
| 753 | /*@ end vars *************************************************** */
|
|---|
| 754 | assert(incoming != NULL);
|
|---|
| 755 |
|
|---|
| 756 | if (incoming[0] == '\"' && incoming[strlen(incoming) - 1] == '\"') {
|
|---|
| 757 | strcpy(outgoing, incoming + 1);
|
|---|
| 758 | outgoing[strlen(outgoing) - 1] = '\0';
|
|---|
| 759 | } else {
|
|---|
| 760 | strcpy(outgoing, incoming);
|
|---|
| 761 | }
|
|---|
| 762 | return (outgoing);
|
|---|
| 763 | }
|
|---|
| 764 |
|
|---|
| 765 |
|
|---|
| 766 |
|
|---|
| 767 |
|
|---|
| 768 | /**
|
|---|
| 769 | * Remove any partition info from @p partition, leaving just the drive name.
|
|---|
| 770 | * @param partition The partition name soon-to-become drive name. (modified)
|
|---|
| 771 | * @return @p partition.
|
|---|
| 772 | */
|
|---|
| 773 | char *truncate_to_drive_name(const char *partition)
|
|---|
| 774 | {
|
|---|
| 775 | int i = strlen(partition) - 1;
|
|---|
| 776 | char *c;
|
|---|
| 777 | char *trunc = NULL;
|
|---|
| 778 |
|
|---|
| 779 | assert_string_is_neither_NULL_nor_zerolength(partition);
|
|---|
| 780 | mr_asprintf(trunc, "%s", partition);
|
|---|
| 781 |
|
|---|
| 782 | #ifdef __FreeBSD__
|
|---|
| 783 |
|
|---|
| 784 | if (islower(trunc[i])) // BSD subpartition
|
|---|
| 785 | i--;
|
|---|
| 786 | if (trunc[i-1] == 's') {
|
|---|
| 787 | while (isdigit(trunc[i]))
|
|---|
| 788 | i--;
|
|---|
| 789 | i--;
|
|---|
| 790 | }
|
|---|
| 791 | trunc[i+1] = '\0';
|
|---|
| 792 |
|
|---|
| 793 | #else
|
|---|
| 794 |
|
|---|
| 795 | /* first see if it's a devfs style device */
|
|---|
| 796 | c = strrchr(trunc, '/');
|
|---|
| 797 | if (c && strncmp(c, "/part", 5) == 0) {
|
|---|
| 798 | /* yup it's devfs, return the "disc" path */
|
|---|
| 799 | strcpy(c + 1, "disc");
|
|---|
| 800 | return trunc;
|
|---|
| 801 | }
|
|---|
| 802 | /* then see if it's a dm style device */
|
|---|
| 803 | if (c && strncmp(c, "/dm-", 4) == 0) {
|
|---|
| 804 | /* yup it's dm, return the full path */
|
|---|
| 805 | return trunc;
|
|---|
| 806 | }
|
|---|
| 807 |
|
|---|
| 808 |
|
|---|
| 809 | for (i = strlen(trunc); isdigit(trunc[i-1]); i--)
|
|---|
| 810 | continue;
|
|---|
| 811 | if (trunc[i-1] == 'p' && isdigit(trunc[i-2])) {
|
|---|
| 812 | i--;
|
|---|
| 813 | } else {
|
|---|
| 814 | /* Some full devices like this /dev/mapper/mpath0
|
|---|
| 815 | /dev/cciss/c0d0 may be used as partition names */
|
|---|
| 816 | if ((strstr(trunc,"/dev/mapper/mpath") != NULL) ||
|
|---|
| 817 | (strstr(trunc,"/dev/cciss/c") != NULL) ||
|
|---|
| 818 | (strstr(trunc,"/dev/rd/") != NULL)) {
|
|---|
| 819 | return trunc;
|
|---|
| 820 | }
|
|---|
| 821 | }
|
|---|
| 822 | trunc[i] = '\0';
|
|---|
| 823 |
|
|---|
| 824 | #endif
|
|---|
| 825 |
|
|---|
| 826 | return trunc;
|
|---|
| 827 | }
|
|---|
| 828 |
|
|---|
| 829 |
|
|---|
| 830 |
|
|---|
| 831 |
|
|---|
| 832 |
|
|---|
| 833 | /**
|
|---|
| 834 | * Turn a RAID level number (-1 to 5) into a friendly string. The string
|
|---|
| 835 | * is either "Linear RAID" for -1, or " RAID %-2d " (%d = @p raid_level)
|
|---|
| 836 | * for anything else.
|
|---|
| 837 | * @param raid_level The RAID level to stringify.
|
|---|
| 838 | * @return The string form of @p raid_level.
|
|---|
| 839 | * @note The returned value points to static storage that will be overwritten with each call.
|
|---|
| 840 | */
|
|---|
| 841 | char *turn_raid_level_number_to_string(int raid_level)
|
|---|
| 842 | {
|
|---|
| 843 |
|
|---|
| 844 | /*@ buffer ********************************************************** */
|
|---|
| 845 | static char output[MAX_STR_LEN];
|
|---|
| 846 |
|
|---|
| 847 |
|
|---|
| 848 |
|
|---|
| 849 | if (raid_level >= 0) {
|
|---|
| 850 | sprintf(output, " RAID %-2d ", raid_level);
|
|---|
| 851 | } else {
|
|---|
| 852 | sprintf(output, "Linear RAID");
|
|---|
| 853 | }
|
|---|
| 854 | return (output);
|
|---|
| 855 | }
|
|---|
| 856 |
|
|---|
| 857 |
|
|---|
| 858 |
|
|---|
| 859 |
|
|---|
| 860 |
|
|---|
| 861 |
|
|---|
| 862 |
|
|---|
| 863 |
|
|---|
| 864 |
|
|---|
| 865 | /**
|
|---|
| 866 | * Determine the severity (1-3, 1 being low) of the fact that
|
|---|
| 867 | * @p fn changed in the live filesystem (verify/compare).
|
|---|
| 868 | * @param fn The filename that changed.
|
|---|
| 869 | * @param out_reason If non-NULL, a descriptive reason for the difference will be copied here.
|
|---|
| 870 | * @return The severity (1-3).
|
|---|
| 871 | */
|
|---|
| 872 | int severity_of_difference(char *fn, char **out_reason) {
|
|---|
| 873 |
|
|---|
| 874 | int sev = 3;
|
|---|
| 875 | char *reason = NULL;
|
|---|
| 876 | char *filename = NULL;
|
|---|
| 877 |
|
|---|
| 878 | // out_reason might be null on purpose, so don't bomb if it is :) OK?
|
|---|
| 879 | assert_string_is_neither_NULL_nor_zerolength(fn);
|
|---|
| 880 | if (!strncmp(fn, MNT_RESTORING, strlen(MNT_RESTORING))) {
|
|---|
| 881 | mr_asprintf(filename, "%s", fn + strlen(MNT_RESTORING));
|
|---|
| 882 | } else if (fn[0] != '/') {
|
|---|
| 883 | mr_asprintf(filename, "/%s", fn);
|
|---|
| 884 | } else {
|
|---|
| 885 | mr_asprintf(filename, "%s", fn);
|
|---|
| 886 | }
|
|---|
| 887 |
|
|---|
| 888 | mr_asprintf(reason, "Changed since backup. Consider running a differential backup in a day or two.");
|
|---|
| 889 |
|
|---|
| 890 | if (!strncmp(filename, "/var/", 5)) {
|
|---|
| 891 | sev = 2;
|
|---|
| 892 | mr_free(reason);
|
|---|
| 893 | mr_asprintf(reason, "/var's contents will change regularly, inevitably.");
|
|---|
| 894 | }
|
|---|
| 895 | if (!strncmp(filename, "/home", 5)) {
|
|---|
| 896 | sev = 2;
|
|---|
| 897 | mr_free(reason);
|
|---|
| 898 | mr_asprintf(reason, "It's in your /home directory. Therefore, it is important.");
|
|---|
| 899 | }
|
|---|
| 900 | if (!strncmp(filename, "/usr/", 5)) {
|
|---|
| 901 | sev = 3;
|
|---|
| 902 | mr_free(reason);
|
|---|
| 903 | mr_asprintf(reason, "You may have installed/removed software during the backup.");
|
|---|
| 904 | }
|
|---|
| 905 | if (!strncmp(filename, "/etc/", 5)) {
|
|---|
| 906 | sev = 3;
|
|---|
| 907 | mr_free(reason);
|
|---|
| 908 | mr_asprintf(reason, "Do not edit config files while backing up your PC.");
|
|---|
| 909 | }
|
|---|
| 910 | if (!strcmp(filename, "/etc/adjtime")
|
|---|
| 911 | || !strcmp(filename, "/etc/mtab")) {
|
|---|
| 912 | sev = 1;
|
|---|
| 913 | mr_free(reason);
|
|---|
| 914 | mr_asprintf(reason, "This file changes all the time. It's OK.");
|
|---|
| 915 | }
|
|---|
| 916 | if (!strncmp(filename, "/root/", 6)) {
|
|---|
| 917 | sev = 3;
|
|---|
| 918 | mr_free(reason);
|
|---|
| 919 | mr_asprintf(reason, "Were you compiling/editing something in /root?");
|
|---|
| 920 | }
|
|---|
| 921 | if (!strncmp(filename, "/root/.", 7)) {
|
|---|
| 922 | sev = 2;
|
|---|
| 923 | mr_free(reason);
|
|---|
| 924 | mr_asprintf(reason, "Temp or 'dot' files changed in /root.");
|
|---|
| 925 | }
|
|---|
| 926 | if (!strncmp(filename, "/var/lib/", 9)) {
|
|---|
| 927 | sev = 2;
|
|---|
| 928 | mr_free(reason);
|
|---|
| 929 | mr_asprintf(reason, "Did you add/remove software during backing?");
|
|---|
| 930 | }
|
|---|
| 931 | if (!strncmp(filename, "/var/lib/rpm", 12)) {
|
|---|
| 932 | sev = 3;
|
|---|
| 933 | mr_free(reason);
|
|---|
| 934 | mr_asprintf(reason, "Did you add/remove software during backing?");
|
|---|
| 935 | }
|
|---|
| 936 | if (!strncmp(filename, "/var/lib/slocate", 16)) {
|
|---|
| 937 | sev = 1;
|
|---|
| 938 | mr_free(reason);
|
|---|
| 939 | mr_asprintf(reason, "The 'update' daemon ran during backup. This does not affect the integrity of your backup.");
|
|---|
| 940 | }
|
|---|
| 941 | if (!strncmp(filename, "/var/log/", 9)
|
|---|
| 942 | || strstr(filename, "/.xsession")
|
|---|
| 943 | || !strcmp(filename + strlen(filename) - 4, ".log")) {
|
|---|
| 944 | sev = 1;
|
|---|
| 945 | mr_free(reason);
|
|---|
| 946 | mr_asprintf(reason, "Log files change frequently as the computer runs. Fret not.");
|
|---|
| 947 | }
|
|---|
| 948 | if (!strncmp(filename, "/var/spool", 10)) {
|
|---|
| 949 | sev = 1;
|
|---|
| 950 | mr_free(reason);
|
|---|
| 951 | mr_asprintf(reason, "Background processes or printers were active. This does not affect the integrity of your backup.");
|
|---|
| 952 | }
|
|---|
| 953 | if (!strncmp(filename, "/var/spool/mail", 10)) {
|
|---|
| 954 | sev = 2;
|
|---|
| 955 | mr_free(reason);
|
|---|
| 956 | mr_asprintf(reason, "Mail was sent/received during backup.");
|
|---|
| 957 | }
|
|---|
| 958 | if (filename[strlen(filename) - 1] == '~') {
|
|---|
| 959 | sev = 1;
|
|---|
| 960 | mr_free(reason);
|
|---|
| 961 | mr_asprintf(reason, "Backup copy of another file which was modified recently.");
|
|---|
| 962 | }
|
|---|
| 963 | if (strstr(filename, "cache")) {
|
|---|
| 964 | sev = 1;
|
|---|
| 965 | mr_free(reason);
|
|---|
| 966 | mr_asprintf(reason, "Part of a cache of data. Caches change from time to time. Don't worry.");
|
|---|
| 967 | }
|
|---|
| 968 | if (!strncmp(filename, "/var/run/", 9)
|
|---|
| 969 | || !strncmp(filename, "/var/lock", 8)
|
|---|
| 970 | || strstr(filename, "/.DCOPserver") || strstr(filename, "/.MCOP")
|
|---|
| 971 | || strstr(filename, "/.Xauthority")) {
|
|---|
| 972 | sev = 1;
|
|---|
| 973 | mr_free(reason);
|
|---|
| 974 | mr_asprintf(reason, "Temporary file (a lockfile, perhaps) used by software such as X or KDE to register its presence.");
|
|---|
| 975 | }
|
|---|
| 976 | if (out_reason) {
|
|---|
| 977 | strcpy(*out_reason, reason);
|
|---|
| 978 | }
|
|---|
| 979 | mr_free(filename);
|
|---|
| 980 | mr_free(reason);
|
|---|
| 981 | return (sev);
|
|---|
| 982 | }
|
|---|
| 983 |
|
|---|
| 984 |
|
|---|
| 985 |
|
|---|
| 986 | /**
|
|---|
| 987 | * Compare the filenames in two filelist entries (s_filelist_entry*) casted
|
|---|
| 988 | * to void*.
|
|---|
| 989 | * @param va The first filelist entry, cast as a @c void pointer.
|
|---|
| 990 | * @param vb The second filelist entry, cast as a @c void pointer.
|
|---|
| 991 | * @return The return value of strcmp().
|
|---|
| 992 | */
|
|---|
| 993 | int compare_two_filelist_entries(void *va, void *vb)
|
|---|
| 994 | {
|
|---|
| 995 | static int res;
|
|---|
| 996 | struct s_filelist_entry *fa, *fb;
|
|---|
| 997 |
|
|---|
| 998 | assert(va != NULL);
|
|---|
| 999 | assert(vb != NULL);
|
|---|
| 1000 | fa = (struct s_filelist_entry *) va;
|
|---|
| 1001 | fb = (struct s_filelist_entry *) vb;
|
|---|
| 1002 | res = strcmp(fa->filename, fb->filename);
|
|---|
| 1003 | return (res);
|
|---|
| 1004 | }
|
|---|
| 1005 |
|
|---|
| 1006 |
|
|---|
| 1007 |
|
|---|
| 1008 |
|
|---|
| 1009 |
|
|---|
| 1010 |
|
|---|
| 1011 |
|
|---|
| 1012 | /**
|
|---|
| 1013 | * Generate a line intended to be passed to update_evalcall_form(), indicating
|
|---|
| 1014 | * the current media fill percentage (or number of kilobytes if size is not known).
|
|---|
| 1015 | * @param bkpinfo The backup media structure. Fields used:
|
|---|
| 1016 | * - @c bkpinfo->backup_media_type
|
|---|
| 1017 | * - @c bkpinfo->media_size
|
|---|
| 1018 | * - @c bkpinfo->scratchdir
|
|---|
| 1019 | * @return The string indicating media fill.
|
|---|
| 1020 | * @note The returned string points to static storage that will be overwritten with each call.
|
|---|
| 1021 | */
|
|---|
| 1022 | char *percent_media_full_comment()
|
|---|
| 1023 | {
|
|---|
| 1024 | /*@ int *********************************************** */
|
|---|
| 1025 | int percentage;
|
|---|
| 1026 | int j;
|
|---|
| 1027 |
|
|---|
| 1028 | /*@ buffers ******************************************* */
|
|---|
| 1029 | char * outstr = NULL;
|
|---|
| 1030 | char *pos_w_commas = NULL;
|
|---|
| 1031 | char *mds = NULL;
|
|---|
| 1032 | char *tmp = NULL;
|
|---|
| 1033 |
|
|---|
| 1034 | assert(bkpinfo != NULL);
|
|---|
| 1035 |
|
|---|
| 1036 | if (bkpinfo->media_size <= 0) {
|
|---|
| 1037 | mr_asprintf(tmp, "%lld", g_tape_posK);
|
|---|
| 1038 | mr_asprintf(pos_w_commas, "%s", commarize(tmp));
|
|---|
| 1039 | mr_free(tmp);
|
|---|
| 1040 | mr_asprintf(outstr, "Volume %d: %s kilobytes archived so far", g_current_media_number, pos_w_commas);
|
|---|
| 1041 | mr_free(pos_w_commas);
|
|---|
| 1042 | return (outstr);
|
|---|
| 1043 | }
|
|---|
| 1044 |
|
|---|
| 1045 | /* update screen */
|
|---|
| 1046 | if (IS_THIS_A_STREAMING_BACKUP(bkpinfo->backup_media_type)) {
|
|---|
| 1047 | percentage = (int) (g_tape_posK / 10 / bkpinfo->media_size);
|
|---|
| 1048 | if (percentage > 100) {
|
|---|
| 1049 | percentage = 100;
|
|---|
| 1050 | }
|
|---|
| 1051 | mr_asprintf(outstr, "Volume %d: [", g_current_media_number);
|
|---|
| 1052 | } else {
|
|---|
| 1053 | percentage = (int) (space_occupied_by_cd(bkpinfo->scratchdir) * 100 / 1024 / bkpinfo->media_size);
|
|---|
| 1054 | mds = media_descriptor_string(bkpinfo->backup_media_type);
|
|---|
| 1055 | mr_asprintf(outstr, "%s %d: [", mds, g_current_media_number);
|
|---|
| 1056 | mr_free(mds);
|
|---|
| 1057 | }
|
|---|
| 1058 | for (j = 0; j < percentage; j += 5) {
|
|---|
| 1059 | mr_strcat(outstr, "*");
|
|---|
| 1060 | }
|
|---|
| 1061 | for (; j < 100; j += 5) {
|
|---|
| 1062 | mr_strcat(outstr, ".");
|
|---|
| 1063 | }
|
|---|
| 1064 | mr_strcat(outstr, "] %d%% used", percentage);
|
|---|
| 1065 | return (outstr);
|
|---|
| 1066 | }
|
|---|
| 1067 |
|
|---|
| 1068 |
|
|---|
| 1069 | /**
|
|---|
| 1070 | * Get a string form of @p type_of_bkp.
|
|---|
| 1071 | * @param type_of_bkp The backup type to stringify.
|
|---|
| 1072 | * @return The stringification of @p type_of_bkp.
|
|---|
| 1073 | * @note The returned string points to static storage that will be overwritten with each call.
|
|---|
| 1074 | */
|
|---|
| 1075 | char *media_descriptor_string(t_bkptype type_of_bkp) {
|
|---|
| 1076 |
|
|---|
| 1077 | char *type_of_backup = NULL;
|
|---|
| 1078 |
|
|---|
| 1079 | switch (type_of_bkp) {
|
|---|
| 1080 | case dvd:
|
|---|
| 1081 | mr_asprintf(type_of_backup, "DVD");
|
|---|
| 1082 | break;
|
|---|
| 1083 | case cdr:
|
|---|
| 1084 | mr_asprintf(type_of_backup, "CDR");
|
|---|
| 1085 | break;
|
|---|
| 1086 | case cdrw:
|
|---|
| 1087 | mr_asprintf(type_of_backup, "CDRW");
|
|---|
| 1088 | break;
|
|---|
| 1089 | case tape:
|
|---|
| 1090 | mr_asprintf(type_of_backup, "tape");
|
|---|
| 1091 | break;
|
|---|
| 1092 | case cdstream:
|
|---|
| 1093 | mr_asprintf(type_of_backup, "CDR");
|
|---|
| 1094 | break;
|
|---|
| 1095 | case udev:
|
|---|
| 1096 | mr_asprintf(type_of_backup, "udev");
|
|---|
| 1097 | break;
|
|---|
| 1098 | case iso:
|
|---|
| 1099 | mr_asprintf(type_of_backup, "ISO");
|
|---|
| 1100 | break;
|
|---|
| 1101 | case netfs:
|
|---|
| 1102 | mr_asprintf(type_of_backup, "%s", bkpinfo->netfs_proto);
|
|---|
| 1103 | break;
|
|---|
| 1104 | case usb:
|
|---|
| 1105 | mr_asprintf(type_of_backup, "USB");
|
|---|
| 1106 | break;
|
|---|
| 1107 | default:
|
|---|
| 1108 | mr_asprintf(type_of_backup, "ISO");
|
|---|
| 1109 | }
|
|---|
| 1110 | return (type_of_backup);
|
|---|
| 1111 | }
|
|---|