source: MondoRescue/branches/3.3/mondo/src/common/libmondo-fork.c@ 3641

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