source: MondoRescue/branches/2.2.10/mondo/src/common/libmondo-fifo.c@ 2323

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

r3334@localhost: bruno | 2009-08-08 12:17:37 +0200

  • Change mr_asprintf interface to pass only the char * (makes bkpinfo usage more easy)
  • Property svn:keywords set to Id
File size: 4.4 KB
RevLine 
[2030]1/*
[128]2 $Id: libmondo-fifo.c 2323 2009-08-18 13:05:43Z bruno $
[1]3*/
4
5/**
6 * @file
7 * Functions to handle buffering of tape archives as they are read/written.
8 * This used the external program @c buffer mostly.
9 */
10
11#include <unistd.h>
12#include <stdio.h>
13#include <signal.h>
[128]14#include <fcntl.h>
[1]15#include <stdio.h>
[128]16
[1]17#include <errno.h>
18#include <sys/types.h>
19#include <sys/stat.h>
20#include <sys/ipc.h>
21
22#include "my-stuff.h"
[2217]23#include "mr_mem.h"
[1]24#include "mondostructures.h"
25#include "libmondo.h"
26
27/**
28 * @addtogroup globalGroup
29 * @{
30 */
31/**
32 * The SIGPIPE handler sets this to TRUE.
33 */
[128]34bool g_sigpipe = FALSE;
[1]35
36/**
37 * PID of the "main" process.
38 */
[128]39pid_t g_mastermind_pid = 0;
[1]40
41
42
43/**
44 * Command line with which @c buffer was invoked.
45 */
46char g_sz_call_to_buffer[MAX_STR_LEN];
47
48/**
49 * Size of the buffer used with @c buffer.
50 */
[128]51int g_tape_buffer_size_MB = 0;
[1]52
53/* @} - end of globalGroup */
54
[792]55extern char *ps_options;
[928]56extern char *ps_proc_id;
[1316]57extern char *MONDO_LOGFILE;
[1]58
59/**
60 * @addtogroup fifoGroup
61 * @{
62 */
63/**
64 * Open a pipe to/from @c buffer.
65 * If buffer does not work at all, we use `dd'.
66 * @param device The device to read from/write to.
67 * @param direction @c 'r' (reading) or @c 'w' (writing).
68 * @return A file pointer to/from the @c buffer process.
69 */
[128]70FILE *open_device_via_buffer(char *device, char direction,
71 long internal_tape_block_size)
[1]72{
[128]73 char keych;
[2263]74 char *sz_dir = NULL;
75 char *tmp = NULL;
76 char *command = NULL;
[128]77 FILE *fres;
78 int bufsize; // in megabytes
79 int res;
80 int wise_upper_limit;
81 int wise_lower_limit;
[1]82
[128]83 assert_string_is_neither_NULL_nor_zerolength(device);
84 assert(direction == 'w' || direction == 'r');
85 wise_upper_limit = (am_I_in_disaster_recovery_mode()? 8 : 32);
86 wise_lower_limit = 1; // wise_upper_limit/2 + 1;
87 paranoid_system("sync");
88 for (bufsize = wise_upper_limit, res = -1;
89 res != 0 && bufsize >= wise_lower_limit; bufsize--) {
[2323]90 mr_asprintf(tmp, "dd if=/dev/zero bs=1024 count=16k 2> /dev/null | buffer -o /dev/null -s %ld -m %d%c", internal_tape_block_size, bufsize, 'm');
[128]91 res = run_program_and_log_output(tmp, 2);
[2263]92 mr_free(tmp);
[128]93 }
94 if (!res) {
95 bufsize++;
[2323]96 mr_asprintf(tmp, "Negotiated max buffer of %d MB ", bufsize);
[128]97 log_to_screen(tmp);
[2263]98 mr_free(tmp);
[128]99 } else {
100 bufsize = 0;
101 res = 0;
102 log_to_screen
[541]103 ("Cannot negotiate a buffer of ANY size. Using dd instead.");
[128]104 }
105 if (direction == 'r') {
106 keych = 'i';
107 } else {
108 keych = 'o';
109 }
110 if (bufsize) {
111 sprintf(g_sz_call_to_buffer,
112 "buffer -m %d%c -p%d -B -s%ld -%c %s 2>> %s", bufsize, 'm',
113 (direction == 'r') ? 20 : 75, internal_tape_block_size,
114 keych, device, MONDO_LOGFILE);
115 } else {
116 sprintf(g_sz_call_to_buffer, "dd bs=%ld %cf=%s",
117 internal_tape_block_size, keych, device);
118 }
119 log_msg(2, "Calling buffer --- command = '%s'", g_sz_call_to_buffer);
[2323]120 mr_asprintf(sz_dir, "%c", direction);
[128]121 fres = popen(g_sz_call_to_buffer, sz_dir);
[2263]122 mr_free(sz_dir);
123
[128]124 if (fres) {
125 log_msg(2, "Successfully opened ('%c') tape device %s", direction,
126 device);
127 } else {
128 log_msg(2, "Failed to open ('%c') tape device %s", direction,
129 device);
130 }
131 sleep(2);
[2323]132 mr_asprintf(tmp, "ps %s | grep \"%s\"", ps_options, g_sz_call_to_buffer);
[128]133 if (run_program_and_log_output(tmp, 2)) {
134 log_msg(2, "Warning - I think I failed to open tape, actually.");
135 }
[2263]136 mr_free(tmp);
[128]137 g_tape_buffer_size_MB = bufsize;
[2323]138 mr_asprintf(command, "ps %s | grep buffer | grep -v grep", ps_options);
[128]139 if (run_program_and_log_output(command, 1)) {
140 fres = NULL;
[541]141 log_to_screen("Failed to open tape streamer. Buffer error.");
[128]142 } else {
[541]143 log_to_screen("Buffer successfully started.");
[128]144 }
[2263]145 mr_free(command);
[1]146
[128]147 return (fres);
[1]148}
149
150
151/**
152 * Kill @c buffer processes.
[928]153 * Only called in mondoarchive
[1]154 */
155void kill_buffer()
156{
[2214]157 char *tmp = NULL;
158 char *command = NULL;
[1]159
[941]160 if (g_sz_call_to_buffer == NULL) {
161 return;
162 }
163 if (strcmp(g_sz_call_to_buffer,"") == 0) {
164 return;
165 }
[128]166 paranoid_system("sync");
[2323]167 mr_asprintf(command, "ps %s | grep -F \"%s\" | grep -Fv grep | awk '{print $2;}' | grep -v PID | head -1", ps_options, g_sz_call_to_buffer);
[128]168 log_msg(2, "kill_buffer() --- command = %s", command);
[2323]169 mr_asprintf(tmp, "%s", call_program_and_get_last_line_of_output(command));
[2214]170 mr_free(command);
171
[2323]172 mr_asprintf(command, "kill %s", tmp);
[128]173 log_msg(2, "kill_buffer() --- command = %s", command);
174 if (strlen(tmp) > 0) {
175 run_program_and_log_output(command, TRUE);
176 }
[2214]177 mr_free(tmp);
178 mr_free(command);
[1]179}
180
181
182
183
184
185/**
186 * Handler for SIGPIPE.
187 * @param sig The signal that occurred (hopefully SIGPIPE).
188 */
189void sigpipe_occurred(int sig)
190{
[128]191 g_sigpipe = TRUE;
[1]192}
193
194/* @} - end of fifoGroup */
Note: See TracBrowser for help on using the repository browser.