]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/lib/bpipe.c
Remove files with x bit
[bacula/bacula] / bacula / src / lib / bpipe.c
1 /*
2  *   bpipe.c bi-directional pipe
3  * 
4  *    Kern Sibbald, November MMII
5  *
6  *   Version $Id$
7  */
8
9 /*
10    Copyright (C) 2000, 2001, 2002 Kern Sibbald and John Walker
11
12    This program is free software; you can redistribute it and/or
13    modify it under the terms of the GNU General Public License as
14    published by the Free Software Foundation; either version 2 of
15    the License, or (at your option) any later version.
16
17    This program is distributed in the hope that it will be useful,
18    but WITHOUT ANY WARRANTY; without even the implied warranty of
19    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20    General Public License for more details.
21
22    You should have received a copy of the GNU General Public
23    License along with this program; if not, write to the Free
24    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
25    MA 02111-1307, USA.
26
27  */
28
29 #include "bacula.h"
30 #include "jcr.h"
31
32
33 #define MAX_ARGV 100
34 static void build_argc_argv(char *cmd, int *bargc, char *bargv[], int max_arg);
35
36
37
38 /*
39  * Run an external program. Optionally wait a specified number
40  *   of seconds. Program killed if wait exceeded. We open
41  *   a bi-directional pipe so that the user can read from and
42  *   write to the program. 
43  */
44 BPIPE *open_bpipe(char *prog, int wait, const char *mode)
45 {
46    char *bargv[MAX_ARGV];
47    int bargc, i;
48    int readp[2], writep[2];
49    POOLMEM *tprog;
50    int mode_read, mode_write;
51    BPIPE *bpipe;
52
53    bpipe = (BPIPE *)malloc(sizeof(BPIPE));
54    memset(bpipe, 0, sizeof(BPIPE));
55    mode_read = (mode[0] == 'r');
56    mode_write = (mode[0] == 'w' || mode[1] == 'w');
57    /* Build arguments for running program. */
58    tprog = get_pool_memory(PM_FNAME);
59    pm_strcpy(&tprog, prog);
60    build_argc_argv(mp_chr(tprog), &bargc, bargv, MAX_ARGV);
61 #ifdef  xxxxxx
62    printf("argc=%d\n", bargc);
63    for (i=0; i<bargc; i++) {
64       printf("argc=%d argv=%s:\n", i, bargv[i]);
65    }
66 #endif
67    free_pool_memory(tprog);
68
69    /* Each pipe is one way, write one end, read the other, so we need two */
70    if (mode_write && pipe(writep) == -1) {
71       free(bpipe);
72       return NULL;
73    }
74    if (mode_read && pipe(readp) == -1) {
75       if (mode_write) {
76          close(writep[0]);
77          close(writep[1]);
78       }
79       free(bpipe);
80       return NULL;
81    }
82    /* Start worker process */
83    switch (bpipe->worker_pid = fork()) {
84    case -1:                           /* error */
85       if (mode_write) {
86          close(writep[0]);
87          close(writep[1]);
88       }
89       if (mode_read) {
90          close(readp[0]);
91          close(readp[1]);
92       }
93       free(bpipe);
94       return NULL;
95
96    case 0:                            /* child */
97       if (mode_write) {
98          close(writep[1]);
99          dup2(writep[0], 0);          /* Dup our write to his stdin */
100       }
101       if (mode_read) {
102          close(readp[0]);             /* Close unused child fds */
103          dup2(readp[1], 1);           /* dup our read to his stdout */
104          dup2(readp[1], 2);           /*   and his stderr */
105       }
106       closelog();                     /* close syslog if open */
107       for (i=3; i<=32; i++) {         /* close any open file descriptors */
108          close(i);
109       }
110       execvp(bargv[0], bargv);        /* call the program */
111       exit(errno);                    /* shouldn't get here */
112
113    default:                           /* parent */
114       break;
115    }
116    if (mode_read) {
117       close(readp[1]);                /* close unused parent fds */
118       bpipe->rfd = fdopen(readp[0], "r"); /* open file descriptor */
119    }
120    if (mode_write) {
121       close(writep[0]);
122       bpipe->wfd = fdopen(writep[1], "w");
123    }
124    bpipe->worker_stime = time(NULL);
125    bpipe->wait = wait;
126    if (wait > 0) {
127       bpipe->timer_id = start_child_timer(bpipe->worker_pid, wait);
128    }
129    return bpipe;
130 }
131
132 /* Close the write pipe only */
133 int close_wpipe(BPIPE *bpipe)
134 {
135    int stat = 1;
136
137    if (bpipe->wfd) {
138       fflush(bpipe->wfd);
139       if (fclose(bpipe->wfd) != 0) {
140          stat = 0;
141       }
142       bpipe->wfd = NULL;
143    }
144    return stat;
145 }
146
147 /* 
148  * Close both pipes and free resources   
149  *
150  *  Returns: 0 on success
151  *           errno on failure
152  */
153 int close_bpipe(BPIPE *bpipe) 
154 {
155    int chldstatus = 0;
156    int stat = 0;    
157    int wait_option;
158    int remaining_wait;
159    pid_t wpid = 0;
160
161
162    /* Close pipes */
163    if (bpipe->rfd) {
164       fclose(bpipe->rfd);
165       bpipe->rfd = NULL;
166    }
167    if (bpipe->wfd) {
168       fclose(bpipe->wfd);
169       bpipe->wfd = NULL;
170    }
171
172    if (bpipe->wait == 0) {
173       wait_option = 0;                /* wait indefinitely */
174    } else {
175       wait_option = WNOHANG;          /* don't hang */
176    }
177    remaining_wait = bpipe->wait;
178
179    /* wait for worker child to exit */
180    for ( ;; ) {
181       Dmsg2(200, "Wait for %d opt=%d\n", bpipe->worker_pid, wait_option);
182       do {
183          wpid = waitpid(bpipe->worker_pid, &chldstatus, wait_option);
184       } while (wpid == -1 && (errno == EINTR || errno == EAGAIN));
185       if (wpid == bpipe->worker_pid || wpid == -1) {
186          Dmsg3(200, "Got break wpid=%d status=%d ERR=%s\n", wpid, chldstatus,
187             wpid==-1?strerror(errno):"none");
188          break;
189       }
190       Dmsg3(200, "Got wpid=%d status=%d ERR=%s\n", wpid, chldstatus,
191             wpid==-1?strerror(errno):"none");
192       if (remaining_wait > 0) {
193          bmicrosleep(1, 0);            /* wait one second */
194          remaining_wait--;
195       } else {
196          stat = ETIME;                /* set error status */
197          wpid = -1;
198          break;                       /* don't wait any longer */
199       }
200    }
201    if (wpid > 0) {
202       if (WIFEXITED(chldstatus)) {           /* process exit()ed */
203          stat = WEXITSTATUS(chldstatus);
204          if (stat != 0) {
205             stat = ECHILD;
206          }
207          Dmsg1(200, "child status=%d\n", stat);
208       } else if (WIFSIGNALED(chldstatus)) {  /* process died */
209          stat = ECHILD;
210          Dmsg0(200, "Signaled\n");
211       }
212    }  
213    if (bpipe->timer_id) {
214       stop_child_timer(bpipe->timer_id);
215    }
216    free(bpipe);
217    Dmsg1(200, "returning stat = %d\n", stat);
218    return stat;
219 }
220
221
222 /*
223  * Run an external program. Optionally wait a specified number
224  *   of seconds. Program killed if wait exceeded. Optionally
225  *   return the output from the program (normally a single line).
226  *
227  * Contrary to my normal calling conventions, this program 
228  *
229  *  Returns: 0 on success
230  *           non-zero on error == errno
231  */
232 int run_program(char *prog, int wait, POOLMEM *results)
233 {
234    BPIPE *bpipe;
235    int stat1, stat2;
236    char *mode;
237
238    mode = (char *)(results != NULL ? "r" : "");
239    bpipe = open_bpipe(prog, wait, mode);
240    if (!bpipe) {
241       return ENOENT;
242    }
243    if (results) {
244       mp_chr(results)[0] = 0;
245       fgets(mp_chr(results), sizeof_pool_memory(results), bpipe->rfd);        
246       if (feof(bpipe->rfd)) {
247          stat1 = 0;
248       } else {
249          stat1 = ferror(bpipe->rfd);
250       }
251       if (stat1 < 0) {
252          Dmsg2(100, "Run program fgets stat=%d ERR=%s\n", stat1, strerror(errno));
253       } else if (stat1 != 0) {
254          Dmsg1(100, "Run program fgets stat=%d\n", stat1);
255       }
256    } else {
257       stat1 = 0;
258    }
259    stat2 = close_bpipe(bpipe);
260    stat1 = stat2 != 0 ? stat2 : stat1;
261    Dmsg1(100, "Run program returning %d\n", stat1);
262    return stat1;
263 }
264
265
266 /*
267  * Build argc and argv from a string
268  */
269 static void build_argc_argv(char *cmd, int *bargc, char *bargv[], int max_argv)
270 {
271    int i;       
272    char *p, *q, quote;
273    int argc = 0;
274
275    argc = 0;
276    for (i=0; i<max_argv; i++)
277       bargv[i] = NULL;
278
279    p = cmd;
280    quote = 0;
281    while  (*p && (*p == ' ' || *p == '\t'))
282       p++;
283    if (*p == '\"' || *p == '\'') {
284       quote = *p;
285       p++;
286    }
287    if (*p) {
288       while (*p && argc < MAX_ARGV) {
289          q = p;
290          if (quote) {
291             while (*q && *q != quote)
292             q++;
293             quote = 0;
294          } else {
295             while (*q && *q != ' ')
296             q++;
297          }
298          if (*q)
299             *(q++) = '\0';
300          bargv[argc++] = p;
301          p = q;
302          while (*p && (*p == ' ' || *p == '\t'))
303             p++;
304          if (*p == '\"' || *p == '\'') {
305             quote = *p;
306             p++;
307          }
308       }
309    }
310    *bargc = argc;
311 }