forked from neomutt/neomutt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsystem.c
92 lines (79 loc) · 2.24 KB
/
system.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/**
* @file
* Execute external programs
*
* @authors
* Copyright (C) 1996-2000,2013 Michael R. Elkins <[email protected]>
*
* @copyright
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation, either version 2 of the License, or (at your option) any later
* version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along with
* this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "config.h"
#include <limits.h>
#include <signal.h>
#include <stdlib.h>
#include <unistd.h>
#include "mutt.h"
#include "protos.h"
#ifdef USE_IMAP
#include "imap/imap.h"
#endif
#include <sys/types.h>
#include <sys/wait.h>
int mutt_system(const char *cmd)
{
int rc = -1;
struct sigaction act;
struct sigaction oldtstp;
struct sigaction oldcont;
pid_t thepid;
if (!cmd || !*cmd)
return 0;
/* must ignore SIGINT and SIGQUIT */
mutt_block_signals_system();
act.sa_handler = SIG_DFL;
/* we want to restart the waitpid() below */
#ifdef SA_RESTART
act.sa_flags = SA_RESTART;
#endif
sigemptyset(&act.sa_mask);
sigaction(SIGTSTP, &act, &oldtstp);
sigaction(SIGCONT, &act, &oldcont);
if ((thepid = fork()) == 0)
{
act.sa_flags = 0;
/* reset signals for the child; not really needed, but... */
mutt_unblock_signals_system(0);
act.sa_handler = SIG_DFL;
act.sa_flags = 0;
sigemptyset(&act.sa_mask);
sigaction(SIGTERM, &act, NULL);
sigaction(SIGTSTP, &act, NULL);
sigaction(SIGCONT, &act, NULL);
execle(EXECSHELL, "sh", "-c", cmd, NULL, mutt_envlist());
_exit(127); /* execl error */
}
else if (thepid != -1)
{
#ifdef USE_IMAP
rc = imap_wait_keepalive(thepid);
#endif
}
sigaction(SIGCONT, &oldcont, NULL);
sigaction(SIGTSTP, &oldtstp, NULL);
/* reset SIGINT, SIGQUIT and SIGCHLD */
mutt_unblock_signals_system(1);
rc = (thepid != -1) ? (WIFEXITED(rc) ? WEXITSTATUS(rc) : -1) : -1;
return rc;
}