source: MondoRescue/branches/2.2.10/mondo/src/common/libmondo-fork.c@ 2324

Last change on this file since 2324 was 2324, checked in by Bruno Cornec, 16 years ago

r3335@localhost: bruno | 2009-08-08 23:04:12 +0200

  • Change mr_asprintf to avoid the need of pointer and be consistent with the other mr_mem functions
  • Property svn:keywords set to Id
File size: 18.9 KB
RevLine 
[1]1/* libmondo-fork.c
[128]2 $Id: libmondo-fork.c 2324 2009-08-18 13:13:54Z bruno $
[1]3
4- subroutines for handling forking/pthreads/etc.
5*/
6
7
8#include "my-stuff.h"
[2224]9#include "mr_mem.h"
[1]10#include "mondostructures.h"
11#include "libmondo-fork.h"
12#include "libmondo-string-EXT.h"
[541]13#include "libmondo-gui-EXT.h"
[1]14#include "libmondo-files-EXT.h"
15#include "libmondo-tools-EXT.h"
[541]16#include "lib-common-externs.h"
[1]17
18/*@unused@*/
[128]19//static char cvsid[] = "$Id: libmondo-fork.c 2324 2009-08-18 13:13:54Z bruno $";
[1]20
21extern t_bkptype g_backup_media_type;
22extern bool g_text_mode;
[1316]23extern char *MONDO_LOGFILE;
[1645]24
25/* Reference to global bkpinfo */
26extern struct s_bkpinfo *bkpinfo;
[128]27pid_t g_buffer_pid = 0;
[1]28
29
30/**
31 * Call a program and retrieve its last line of output.
32 * @param call The program to run.
33 * @return The last line of its output.
34 * @note The returned value points to static storage that will be overwritten with each call.
35 */
[128]36char *call_program_and_get_last_line_of_output(char *call)
[1]37{
[128]38 /*@ buffers ***************************************************** */
39 static char result[512];
40 char *tmp;
[1]41
[128]42 /*@ pointers **************************************************** */
43 FILE *fin;
[1]44
[128]45 /*@ initialize data ********************************************* */
46 malloc_string(tmp);
47 result[0] = '\0';
48 tmp[0] = '\0';
[1]49
[128]50 /*@******************************************************************** */
[1]51
[128]52 assert_string_is_neither_NULL_nor_zerolength(call);
53 if ((fin = popen(call, "r"))) {
54 for (fgets(tmp, MAX_STR_LEN, fin); !feof(fin);
55 fgets(tmp, MAX_STR_LEN, fin)) {
56 if (strlen(tmp) > 1) {
57 strcpy(result, tmp);
58 }
59 }
60 paranoid_pclose(fin);
61 } else {
62 log_OS_error("Unable to popen call");
[1]63 }
[128]64 strip_spaces(result);
[1236]65 paranoid_free(tmp);
[128]66 return (result);
[1]67}
68
69
70
71
72
73
[541]74#define MONDO_POPMSG "Your PC will not retract the CD tray automatically. Please call mondoarchive with the -m (manual CD tray) flag."
[1]75
76/**
77 * Call mkisofs to create an ISO image.
78 * @param bkpinfo The backup information structure. Fields used:
79 * - @c bkpinfo->manual_cd_tray
80 * - @c bkpinfo->backup_media_type
81 * - @c bkpinfo->please_dont_eject_when_restoring
82 * @param basic_call The call to mkisofs. May contain tokens that will be resolved to actual data. The tokens are:
83 * - @c _ISO_ will become the ISO file (@p isofile)
84 * - @c _CD#_ becomes the CD number (@p cd_no)
85 * - @c _ERR_ becomes the logfile (@p g_logfile)
86 * @param isofile Replaces @c _ISO_ in @p basic_call. Should probably be the ISO image to create (-o parameter to mkisofs).
87 * @param cd_no Replaces @c _CD#_ in @p basic_call. Should probably be the CD number.
88 * @param logstub Unused.
89 * @param what_i_am_doing The action taking place (e.g. "Making ISO #1"). Used as the title of the progress dialog.
90 * @return Exit code of @c mkisofs (0 is success, anything else indicates failure).
91 * @bug @p logstub is unused.
92 */
93int
[1645]94eval_call_to_make_ISO(char *basic_call, char *isofile,
[128]95 int cd_no, char *logstub, char *what_i_am_doing)
[1]96{
97
[128]98 /*@ int's *** */
99 int retval = 0;
[1]100
101
[128]102 /*@ buffers *** */
[2315]103 char *midway_call = NULL;
104 char *ultimate_call = NULL;
105 char *tmp = NULL;
106 char *incoming, *old_stderr;
[2275]107
108 char *cd_number_str = NULL;
109 char *command = NULL;
[128]110 char *p;
[2224]111 char *tmp1 = NULL;
[2275]112 char *tmp2 = NULL;
[1]113
114/*@*********** End Variables ***************************************/
115
[128]116 log_msg(3, "Starting");
117 assert(bkpinfo != NULL);
118 assert_string_is_neither_NULL_nor_zerolength(isofile);
119 assert_string_is_neither_NULL_nor_zerolength(logstub);
120 malloc_string(incoming);
121 malloc_string(old_stderr);
[1]122
[128]123 incoming[0] = '\0';
124 old_stderr[0] = '\0';
[1]125
[2226]126 if (bkpinfo->nfs_user) {
[2323]127 mr_asprintf(tmp1, "su - %s -c \"%s\"", bkpinfo->nfs_user, basic_call);
[2224]128 } else {
[2323]129 mr_asprintf(tmp1, "%s", basic_call);
[2224]130 }
131
[2323]132 mr_asprintf(cd_number_str, "%d", cd_no);
[2315]133 log_msg(4, "basic call = '%s'", tmp1);
134 midway_call = resolve_naff_tokens(tmp1, isofile, "_ISO_");
135 mr_free(tmp1);
136
137 log_msg(4, "midway_call = '%s'", midway_call);
138 tmp = resolve_naff_tokens(midway_call, cd_number_str, "_CD#_");
[2275]139 mr_free(cd_number_str);
[2315]140 mr_free(midway_call);
[2275]141
[128]142 log_msg(4, "tmp = '%s'", tmp);
[2315]143 ultimate_call = resolve_naff_tokens(tmp, MONDO_LOGFILE, "_ERR_");
144 mr_free(tmp);
145
[128]146 log_msg(4, "ultimate call = '%s'", ultimate_call);
[2323]147 mr_asprintf(command, "%s >> %s", ultimate_call, MONDO_LOGFILE);
[2315]148 mr_free(ultimate_call);
[1]149
[128]150 log_to_screen
[541]151 ("Please be patient. Do not be alarmed by on-screen inactivity.");
[128]152 log_msg(4, "Calling open_evalcall_form() with what_i_am_doing='%s'",
153 what_i_am_doing);
154 if (bkpinfo->manual_cd_tray) {
[2323]155 mr_asprintf(tmp2, "%s", command);
[2275]156 p = strstr(tmp2, "2>>");
[128]157 if (p) {
[2275]158 *p++ = ' ';
159 *p++ = ' ';
160 *p++ = ' ';
[128]161 while (*p == ' ') {
162 p++;
163 }
[2275]164 for (; (*p != ' ') && (*p != '\0'); p++) {
[128]165 *p = ' ';
166 }
167 }
[2275]168 mr_free(command);
169 command = tmp2;
[1]170#ifndef _XWIN
[128]171 if (!g_text_mode) {
172 newtSuspend();
173 }
[1]174#endif
[128]175 log_msg(1, "command = '%s'", command);
176 retval += system(command);
177 if (!g_text_mode) {
178 newtResume();
179 }
180 if (retval) {
[2275]181 popup_and_OK("mkisofs and/or cdrecord returned an error. CD was not created");
[128]182 }
[1]183 }
[128]184 /* if text mode then do the above & RETURN; if not text mode, do this... */
185 else {
186 log_msg(3, "command = '%s'", command);
[2275]187 retval = run_external_binary_with_percentage_indicator_NEW(what_i_am_doing, command);
[128]188 }
[2275]189 mr_free(command);
[128]190 paranoid_free(incoming);
191 paranoid_free(old_stderr);
192 return (retval);
[1]193}
194
195
[1688]196/**
197 * Call copy of data to create an USB image.
198 * @param bkpinfo The backup information structure. Fields used:
199 * - @c bkpinfo->backup_media_type
200 * @return Exit code of @c copy (0 is success, anything else indicates failure).
201 */
202int
203eval_call_to_make_USB(char *command, char *what_i_am_doing) {
[1]204
[1688]205 /*@ int's *** */
206 int retval = 0;
[1]207
[1688]208
209/*@*********** End Variables ***************************************/
210
211 log_msg(3, "Starting");
212 assert(bkpinfo != NULL);
213
214 log_to_screen
215 ("Please be patient. Do not be alarmed by on-screen inactivity.");
216 log_msg(4, "Calling open_evalcall_form() with what_i_am_doing='%s'",
217 what_i_am_doing);
218
219 if (!g_text_mode) {
220 newtSuspend();
221 }
222 log_msg(1, "command = '%s'", command);
223 if (!g_text_mode) {
224 retval = run_external_binary_with_percentage_indicator_NEW
225 (what_i_am_doing, command);
226 } else {
227 retval += system(command);
228 }
229 if (!g_text_mode) {
230 newtResume();
231 }
232
233 return (retval);
234}
235
236
237
238
[1]239/**
240 * Run a program and log its output (stdout and stderr) to the logfile.
241 * @param program The program to run. Passed to the shell, so you can use pipes etc.
242 * @param debug_level If @p g_loglevel is higher than this, do not log the output.
243 * @return The exit code of @p program (depends on the command, but 0 almost always indicates success).
244 */
[128]245int run_program_and_log_output(char *program, int debug_level)
[1]246{
[128]247 /*@ buffer ****************************************************** */
[2275]248 char *callstr = NULL;
[128]249 char incoming[MAX_STR_LEN * 2];
[2275]250 char *tmp1 = NULL;
[1]251
[128]252 /*@ int ********************************************************* */
253 int res;
254 bool log_if_failure = FALSE;
255 bool log_if_success = FALSE;
[1]256
[128]257 /*@ pointers *************************************************** */
258 FILE *fin;
259 char *p;
[1]260
[128]261 /*@ end vars *************************************************** */
[1]262
[128]263 assert(program != NULL);
264 if (!program[0]) {
265 log_msg(2, "Warning - asked to run zerolength program");
266 return (1);
267 }
[1]268
[128]269 if (debug_level <= g_loglevel) {
270 log_if_success = TRUE;
271 log_if_failure = TRUE;
272 }
[2323]273 mr_asprintf(callstr, "%s > %s/mondo-run-prog-thing.tmp 2> %s/mondo-run-prog-thing.err", program, bkpinfo->tmpdir, bkpinfo->tmpdir);
[128]274 while ((p = strchr(callstr, '\r'))) {
275 *p = ' ';
276 }
277 while ((p = strchr(callstr, '\n'))) {
278 *p = ' ';
279 } /* single '=' is intentional */
[1]280
281
[128]282 res = system(callstr);
283 if (((res == 0) && log_if_success) || ((res != 0) && log_if_failure)) {
284 log_msg(0, "running: %s", callstr);
[2316]285 log_msg(0, "--------------------------------start of output-----------------------------");
[128]286 }
[2275]287 mr_free(callstr);
288
[2323]289 mr_asprintf(callstr, "cat %s/mondo-run-prog-thing.err >> %s/mondo-run-prog-thing.tmp 2> /dev/null", bkpinfo->tmpdir, bkpinfo->tmpdir);
[1644]290 if (log_if_failure && system(callstr)) {
[128]291 log_OS_error("Command failed");
292 }
[2275]293 mr_free(callstr);
294
[2323]295 mr_asprintf(tmp1, "%s/mondo-run-prog-thing.err", bkpinfo->tmpdir);
[2275]296 unlink(tmp1);
297 mr_free(tmp1);
298
[2323]299 mr_asprintf(tmp1, "%s/mondo-run-prog-thing.tmp", bkpinfo->tmpdir);
[2275]300 fin = fopen(tmp1, "r");
[128]301 if (fin) {
302 for (fgets(incoming, MAX_STR_LEN, fin); !feof(fin);
303 fgets(incoming, MAX_STR_LEN, fin)) {
304 p = incoming;
305 while (p && *p) {
306 if ((p = strchr(p, '%'))) {
307 memmove(p, p + 1, strlen(p) + 1);
308 p += 2;
309 }
310 }
311 strip_spaces(incoming);
312 if ((res == 0 && log_if_success)
313 || (res != 0 && log_if_failure)) {
314 log_msg(0, incoming);
315 }
[1]316 }
[128]317 paranoid_fclose(fin);
[1]318 }
[2275]319 unlink(tmp1);
320 mr_free(tmp1);
321
[128]322 if ((res == 0 && log_if_success) || (res != 0 && log_if_failure)) {
323 log_msg(0,
324 "--------------------------------end of output------------------------------");
325 if (res) {
326 log_msg(0, "...ran with res=%d", res);
327 } else {
328 log_msg(0, "...ran just fine. :-)");
329 }
330 }
331 return (res);
[1]332}
333
334
335
336/**
337 * Run a program and log its output to the screen.
338 * @param basic_call The program to run.
339 * @param what_i_am_doing The title of the evalcall form.
340 * @return The return value of the command (varies, but 0 almost always means success).
341 * @see run_program_and_log_output
342 * @see log_to_screen
343 */
[128]344int run_program_and_log_to_screen(char *basic_call, char *what_i_am_doing)
[1]345{
[128]346 /*@ int ******************************************************** */
347 int retval = 0;
348 int res = 0;
349 int i;
[1]350
[128]351 /*@ pointers **************************************************** */
352 FILE *fin;
[1]353
[128]354 /*@ buffers **************************************************** */
[2275]355 char *command = NULL;
356 char *lockfile = NULL;
357 char tmp1[MAX_STR_LEN *2];
[1]358
[128]359 /*@ end vars *************************************************** */
[1]360
[128]361 assert_string_is_neither_NULL_nor_zerolength(basic_call);
[1]362
[2323]363 mr_asprintf(lockfile, "%s/mojo-jojo.bla.bla", bkpinfo->tmpdir);
[1644]364
[2323]365 mr_asprintf(command, "echo hi > %s ; %s >> %s 2>> %s; res=$?; sleep 1; rm -f %s; exit $res", lockfile, basic_call, MONDO_LOGFILE, MONDO_LOGFILE, lockfile);
[128]366 open_evalcall_form(what_i_am_doing);
[2324]367 log_msg(2, "Executing %s", basic_call);
[2275]368
[128]369 if (!(fin = popen(command, "r"))) {
370 log_OS_error("Unable to popen-in command");
[2324]371 log_to_screen("Failed utterly to call '%s'", command);
[2275]372 mr_free(command);
373 mr_free(lockfile);
[128]374 return (1);
375 }
[2275]376 mr_free(command);
377
[128]378 if (!does_file_exist(lockfile)) {
[541]379 log_to_screen("Waiting for external binary to start");
[128]380 for (i = 0; i < 60 && !does_file_exist(lockfile); sleep(1), i++) {
381 log_msg(3, "Waiting for lockfile %s to exist", lockfile);
382 }
383 }
[1]384#ifdef _XWIN
[128]385 /* This only can update when newline goes into the file,
386 but it's *much* prettier/faster on Qt. */
387 while (does_file_exist(lockfile)) {
388 while (!feof(fin)) {
[2275]389 if (!fgets(tmp1, 512, fin))
[128]390 break;
[2275]391 log_to_screen(tmp1);
[128]392 }
393 usleep(500000);
394 }
[1]395#else
[128]396 /* This works on Newt, and it gives quicker updates. */
397 for (; does_file_exist(lockfile); sleep(1)) {
398 log_file_end_to_screen(MONDO_LOGFILE, "");
399 update_evalcall_form(1);
400 }
[1]401#endif
[154]402 /* Evaluate the status returned by pclose to get the exit code of the called program. */
403 errno = 0;
404 res = pclose(fin);
405 /* Log actual pclose errors. */
406 if (errno) log_msg(5, "pclose err: %d", errno);
407 /* Check if we have a valid status. If we do, extract the called program's exit code. */
408 /* If we don't, highlight this fact by returning -1. */
409 if (WIFEXITED(res)) {
410 retval = WEXITSTATUS(res);
411 } else {
412 retval = -1;
413 }
[128]414 close_evalcall_form();
415 unlink(lockfile);
[2275]416 mr_free(lockfile);
417
[128]418 return (retval);
[1]419}
420
421
422
423
424/**
425 * Apparently unused. @bug This has a purpose, but what?
426 */
427#define PIMP_START_SZ "STARTSTARTSTART9ff3kff9a82gv34r7fghbkaBBC2T231hc81h42vws8"
428#define PIMP_END_SZ "ENDENDEND0xBBC10xBBC2T231hc81h42vws89ff3kff9a82gv34r7fghbka"
429
430
431
[296]432
[128]433int copy_from_src_to_dest(FILE * f_orig, FILE * f_archived, char direction)
[1]434{
435// if dir=='w' then copy from orig to archived
436// if dir=='r' then copy from archived to orig
[2275]437 char *tmp = NULL;
438 char *tmp1 = NULL;
439 char *buf = NULL;
440 char *filestr = NULL;
[128]441 long int bytes_to_be_read, bytes_read_in, bytes_written_out =
442 0, bufcap, subsliceno = 0;
443 int retval = 0;
444 FILE *fin;
445 FILE *fout;
446 FILE *ftmp;
[2178]447 int tmpcap = 512;
[1]448
[128]449 log_msg(5, "Opening.");
[2275]450
[128]451 bufcap = 256L * 1024L;
452 if (!(buf = malloc(bufcap))) {
453 fatal_error("Failed to malloc() buf");
454 }
[1]455
[128]456 if (direction == 'w') {
457 fin = f_orig;
458 fout = f_archived;
[2323]459 mr_asprintf(tmp, "%-64s", PIMP_START_SZ);
[128]460 if (fwrite(tmp, 1, 64, fout) != 64) {
[2275]461 mr_free(tmp);
[128]462 fatal_error("Can't write the introductory block");
463 }
[2275]464 mr_free(tmp);
465
[128]466 while (1) {
467 bytes_to_be_read = bytes_read_in = fread(buf, 1, bufcap, fin);
468 if (bytes_read_in == 0) {
469 break;
470 }
[2323]471 mr_asprintf(tmp, "%-64ld", bytes_read_in);
[128]472 if (fwrite(tmp, 1, 64, fout) != 64) {
[2275]473 mr_free(tmp);
[128]474 fatal_error("Cannot write introductory block");
475 }
[2275]476 mr_free(tmp);
477
[128]478 log_msg(7,
479 "subslice #%ld --- I have read %ld of %ld bytes in from f_orig",
480 subsliceno, bytes_read_in, bytes_to_be_read);
481 bytes_written_out += fwrite(buf, 1, bytes_read_in, fout);
[2323]482 mr_asprintf(tmp, "%-64ld", subsliceno);
[128]483 if (fwrite(tmp, 1, 64, fout) != 64) {
[2275]484 mr_free(tmp);
[128]485 fatal_error("Cannot write post-thingy block");
486 }
[2275]487 mr_free(tmp);
[128]488 log_msg(7, "Subslice #%d written OK", subsliceno);
489 subsliceno++;
490 }
[2323]491 mr_asprintf(tmp, "%-64ld", 0L);
[128]492 if (fwrite(tmp, 1, 64L, fout) != 64L) {
[2275]493 mr_free(tmp);
[128]494 fatal_error("Cannot write final introductory block");
495 }
[2275]496 mr_free(tmp);
497
[2323]498 mr_asprintf(tmp, "%-64s", PIMP_END_SZ);
[2275]499 if (fwrite(tmp, 1, 64, fout) != 64) {
500 mr_free(tmp);
501 fatal_error("Can't write the final block");
502 }
503 mr_free(tmp);
[128]504 } else {
505 fin = f_archived;
506 fout = f_orig;
[2275]507 if (!(tmp1 = malloc(tmpcap))) {
508 fatal_error("Failed to malloc() tmp");
509 }
510 if (fread(tmp1, 1, 64L, fin) != 64L) {
511 mr_free(tmp1);
[128]512 fatal_error("Cannot read the introductory block");
513 }
[2275]514 log_msg(5, "tmp1 is %s", tmp1);
515 if (!strstr(tmp1, PIMP_START_SZ)) {
516 mr_free(tmp1);
[128]517 fatal_error("Can't find intro blk");
518 }
[2275]519 if (fread(tmp1, 1, 64L, fin) != 64L) {
520 mr_free(tmp1);
[128]521 fatal_error("Cannot read introductory blk");
522 }
[2275]523 bytes_to_be_read = atol(tmp1);
[128]524 while (bytes_to_be_read > 0) {
[2275]525 log_msg(7, "subslice#%ld, bytes=%ld", subsliceno, bytes_to_be_read);
[128]526 bytes_read_in = fread(buf, 1, bytes_to_be_read, fin);
527 if (bytes_read_in != bytes_to_be_read) {
[2275]528 mr_free(tmp1);
529 fatal_error("Danger, WIll Robinson. Failed to read whole subvol from archives.");
[128]530 }
531 bytes_written_out += fwrite(buf, 1, bytes_read_in, fout);
[2275]532 if (fread(tmp1, 1, 64, fin) != 64) {
533 mr_free(tmp1);
[128]534 fatal_error("Cannot read post-thingy block");
535 }
[2275]536 if (atol(tmp1) != subsliceno) {
537 log_msg(1, "Wanted subslice %ld but got %ld ('%s')", subsliceno, atol(tmp1), tmp1);
[128]538 }
539 log_msg(7, "Subslice #%ld read OK", subsliceno);
540 subsliceno++;
[2275]541 if (fread(tmp1, 1, 64, fin) != 64) {
542 mr_free(tmp1);
[128]543 fatal_error("Cannot read introductory block");
544 }
[2275]545 bytes_to_be_read = atol(tmp1);
[128]546 }
[2275]547 log_msg(1, "tmpA is %s", tmp1);
548 if (!strstr(tmp1, PIMP_END_SZ)) {
549 if (fread(tmp1, 1, 64, fin) != 64) {
550 mr_free(tmp1);
[128]551 fatal_error("Can't read the final block");
552 }
[2275]553 log_msg(5, "tmpB is %s", tmp1);
554 if (!strstr(tmp1, PIMP_END_SZ)) {
[2323]555 mr_asprintf(filestr, "%s/out.leftover", bkpinfo->tmpdir);
[1644]556 ftmp = fopen(filestr, "w");
[2275]557 mr_free(filestr);
558
559 bytes_read_in = fread(tmp1, 1, 64, fin);
[128]560 log_msg(1, "bytes_read_in = %ld", bytes_read_in);
[2275]561
562 fwrite(tmp1, 1, bytes_read_in, ftmp);
563 fread(tmp1, 1, tmpcap, fin);
564 log_msg(0, "tmp1 = '%s'", tmp1);
565 fwrite(tmp1, 1, tmpcap, ftmp);
[128]566 fclose(ftmp);
[2275]567 mr_free(tmp1);
[128]568 fatal_error("Missing terminating block");
569 }
570 }
[2275]571 mr_free(tmp1);
[128]572 }
[1]573
[128]574 paranoid_free(buf);
575 log_msg(3, "Successfully copied %ld bytes", bytes_written_out);
576 return (retval);
[1]577}
578
579
580
581
582/**
[296]583 * Feed @p input_device through ntfsclone to @p output_fname.
[1]584 * @param input_device The device to image.
585 * @param output_fname The file to write.
586 * @return 0 for success, nonzero for failure.
587 */
[296]588int feed_into_ntfsprog(char *input_device, char *output_fname)
[1]589{
590// BACKUP
[296]591 int res = -1;
[2275]592 char*command = NULL;
[1]593
[128]594 if (!does_file_exist(input_device)) {
595 fatal_error("input device does not exist");
596 }
[296]597 if ( !find_home_of_exe("ntfsclone")) {
598 fatal_error("ntfsclone not found");
[128]599 }
[2323]600 mr_asprintf(command, "ntfsclone --force --save-image --overwrite %s %s", output_fname, input_device);
[296]601 res = run_program_and_log_output(command, 5);
[2275]602 mr_free(command);
603
[411]604 unlink(output_fname);
[128]605 return (res);
[1]606}
607
608
[128]609void *run_prog_in_bkgd_then_exit(void *info)
[1]610{
[128]611 char *sz_command;
612 static int res = 4444;
[1]613
[128]614 res = 999;
615 sz_command = (char *) info;
616 log_msg(4, "sz_command = '%s'", sz_command);
617 res = system(sz_command);
618 if (res > 256 && res != 4444) {
619 res = res / 256;
620 }
621 log_msg(4, "child res = %d", res);
622 sz_command[0] = '\0';
623 pthread_exit((void *) (&res));
[1]624}
625
626
627
628
[128]629int run_external_binary_with_percentage_indicator_NEW(char *tt, char *cmd)
[1]630{
631
[128]632 /*@ int *************************************************************** */
633 int res = 0;
[1]634 int percentage = 0;
635 int maxpc = 100;
636 int pcno = 0;
637 int last_pcno = 0;
[128]638 int counter = 0;
[1]639
[128]640 /*@ buffers *********************************************************** */
[2275]641 char *command = NULL;
[128]642 char *title;
643 /*@ pointers ********************************************************** */
644 static int chldres = 0;
645 int *pchild_result;
646 pthread_t childthread;
[1]647
[128]648 pchild_result = &chldres;
649 assert_string_is_neither_NULL_nor_zerolength(cmd);
650 assert_string_is_neither_NULL_nor_zerolength(tt);
651 *pchild_result = 999;
[1]652
[128]653 malloc_string(title);
654 strcpy(title, tt);
[2323]655 mr_asprintf(command, "%s 2>> %s", cmd, MONDO_LOGFILE);
[128]656 log_msg(3, "command = '%s'", command);
[2275]657 if ((res = pthread_create(&childthread, NULL, run_prog_in_bkgd_then_exit, (void *) command))) {
[128]658 fatal_error("Unable to create an archival thread");
659 }
[1]660
[128]661 log_msg(8, "Parent running");
662 open_evalcall_form(title);
663 for (sleep(1); command[0] != '\0'; sleep(1)) {
664 pcno = grab_percentage_from_last_line_of_file(MONDO_LOGFILE);
665 if (pcno <= 0 || pcno > 100) {
666 log_msg(8, "Weird pc#");
667 continue;
668 }
669 percentage = pcno * 100 / maxpc;
670 if (pcno <= 5 && last_pcno >= 40) {
671 close_evalcall_form();
[541]672 strcpy(title, "Verifying...");
[128]673 open_evalcall_form(title);
674 }
675 if (counter++ >= 5) {
676 counter = 0;
677 log_file_end_to_screen(MONDO_LOGFILE, "");
678 }
679 last_pcno = pcno;
680 update_evalcall_form(percentage);
[1]681 }
[2275]682 mr_free(command);
683
[128]684 log_file_end_to_screen(MONDO_LOGFILE, "");
685 close_evalcall_form();
686 pthread_join(childthread, (void *) (&pchild_result));
687 if (pchild_result) {
688 res = *pchild_result;
689 } else {
690 res = 666;
[1]691 }
[128]692 log_msg(3, "Parent res = %d", res);
693 paranoid_free(title);
694 return (res);
[1]695}
696
697
698
699
700/**
[296]701 * Feed @p input_fifo through ntfsclone (restore) to @p output_device.
702 * @param input_fifo The ntfsclone file to read.
[1]703 * @param output_device Where to put the output.
[296]704 * @return The return value of ntfsclone (0 for success).
[1]705 */
[296]706int feed_outfrom_ntfsprog(char *output_device, char *input_fifo)
[1]707{
708// RESTORE
[296]709 int res = -1;
[2275]710 char *command = NULL;
[1]711
[296]712 if ( !find_home_of_exe("ntfsclone")) {
713 fatal_error("ntfsclone not found");
[128]714 }
[2323]715 mr_asprintf(command, "ntfsclone --force --restore-image --overwrite %s %s", output_device, input_fifo);
[296]716 res = run_program_and_log_output(command, 5);
[2275]717 mr_free(command);
[128]718 return (res);
[1]719}
Note: See TracBrowser for help on using the repository browser.