25
25
#define _GNU_SOURCE /* TEMP_FAILURE_RETRY(), getline(),
27
27
#include <stddef.h> /* size_t, NULL */
28
28
#include <stdlib.h> /* malloc(), exit(), EXIT_SUCCESS,
30
30
#include <stdbool.h> /* bool, true, false */
31
31
#include <stdio.h> /* fileno(), fprintf(),
32
32
stderr, STDOUT_FILENO, fclose() */
33
#include <sys/types.h> /* fstat(), struct stat, waitpid(),
34
WIFEXITED(), WEXITSTATUS(), wait(),
35
pid_t, uid_t, gid_t, getuid(),
33
#include <sys/types.h> /* DIR, fdopendir(), fstat(), struct
34
stat, waitpid(), WIFEXITED(),
35
WEXITSTATUS(), wait(), pid_t,
36
uid_t, gid_t, getuid(), getgid(),
37
38
#include <sys/select.h> /* fd_set, select(), FD_ZERO(),
38
39
FD_SET(), FD_ISSET(), FD_CLR */
39
40
#include <sys/wait.h> /* wait(), waitpid(), WIFEXITED(),
40
WEXITSTATUS(), WTERMSIG() */
41
WEXITSTATUS(), WTERMSIG(),
41
43
#include <sys/stat.h> /* struct stat, fstat(), S_ISREG() */
42
44
#include <iso646.h> /* and, or, not */
43
#include <dirent.h> /* struct dirent, scandirat() */
45
#include <dirent.h> /* DIR, struct dirent, fdopendir(),
46
readdir(), closedir(), dirfd() */
44
47
#include <unistd.h> /* fcntl(), F_GETFD, F_SETFD,
45
48
FD_CLOEXEC, write(), STDOUT_FILENO,
46
49
struct stat, fstat(), close(),
47
50
setgid(), setuid(), S_ISREG(),
48
faccessat() pipe2(), fork(),
51
faccessat() pipe(), fork(),
49
52
_exit(), dup2(), fexecve(), read()
51
54
#include <fcntl.h> /* fcntl(), F_GETFD, F_SETFD,
52
FD_CLOEXEC, openat(), scandirat(),
55
FD_CLOEXEC, openat() */
54
56
#include <string.h> /* strsep, strlen(), strsignal(),
55
57
strcmp(), strncmp() */
56
58
#include <errno.h> /* errno */
859
829
ret = set_cloexec_flag(dir_fd);
861
831
error(0, errno, "set_cloexec_flag");
832
TEMP_FAILURE_RETRY(close(dir_fd));
862
833
exitstatus = EX_OSERR;
865
836
#endif /* O_CLOEXEC */
868
int good_name(const struct dirent * const dirent){
869
const char * const patterns[] = { ".*", "#*#", "*~", "*.dpkg-new",
870
"*.dpkg-old", "*.dpkg-bak",
871
"*.dpkg-divert", NULL };
873
#pragma GCC diagnostic push
874
#pragma GCC diagnostic ignored "-Wcast-qual"
876
for(const char **pat = (const char **)patterns;
877
*pat != NULL; pat++){
879
#pragma GCC diagnostic pop
881
if(fnmatch(*pat, dirent->d_name, FNM_FILE_NAME | FNM_PERIOD)
884
fprintf(stderr, "Ignoring plugin dir entry \"%s\""
885
" matching pattern %s\n", dirent->d_name, *pat);
838
dir = fdopendir(dir_fd);
840
error(0, errno, "Could not open plugin dir");
841
TEMP_FAILURE_RETRY(close(dir_fd));
842
exitstatus = EX_OSERR;
893
int numplugins = scandirat(dir_fd, ".", &direntries, good_name,
895
if(numplugins == -1){
896
error(0, errno, "Could not scan plugin dir");
898
exitstatus = EX_OSERR;
902
847
FD_ZERO(&rfds_all);
904
849
/* Read and execute any executable in the plugin directory*/
905
for(int i = 0; i < numplugins; i++){
907
int plugin_fd = openat(dir_fd, direntries[i]->d_name, O_RDONLY);
852
dirst = readdir(dir);
853
} while(dirst == NULL and errno == EINTR);
855
/* All directory entries have been processed */
858
error(0, errno, "readdir");
859
exitstatus = EX_IOERR;
865
d_name_len = strlen(dirst->d_name);
867
/* Ignore dotfiles, backup files and other junk */
869
bool bad_name = false;
871
const char * const bad_prefixes[] = { ".", "#", NULL };
873
const char * const bad_suffixes[] = { "~", "#", ".dpkg-new",
876
".dpkg-divert", NULL };
878
#pragma GCC diagnostic push
879
#pragma GCC diagnostic ignored "-Wcast-qual"
881
for(const char **pre = (const char **)bad_prefixes;
882
*pre != NULL; pre++){
884
#pragma GCC diagnostic pop
886
size_t pre_len = strlen(*pre);
887
if((d_name_len >= pre_len)
888
and strncmp((dirst->d_name), *pre, pre_len) == 0){
890
fprintf(stderr, "Ignoring plugin dir entry \"%s\""
891
" with bad prefix %s\n", dirst->d_name, *pre);
901
#pragma GCC diagnostic push
902
#pragma GCC diagnostic ignored "-Wcast-qual"
904
for(const char **suf = (const char **)bad_suffixes;
905
*suf != NULL; suf++){
907
#pragma GCC diagnostic pop
909
size_t suf_len = strlen(*suf);
910
if((d_name_len >= suf_len)
911
and (strcmp((dirst->d_name) + d_name_len-suf_len, *suf)
914
fprintf(stderr, "Ignoring plugin dir entry \"%s\""
915
" with bad suffix %s\n", dirst->d_name, *suf);
927
int plugin_fd = openat(dir_fd, dirst->d_name, O_RDONLY |
930
#else /* not O_CLOEXEC */
932
#endif /* not O_CLOEXEC */
908
934
if(plugin_fd == -1){
909
935
error(0, errno, "Could not open plugin");
939
/* Set the FD_CLOEXEC flag on the plugin FD */
940
ret = set_cloexec_flag(plugin_fd);
942
error(0, errno, "set_cloexec_flag");
943
TEMP_FAILURE_RETRY(close(plugin_fd));
946
#endif /* O_CLOEXEC */
913
947
ret = (int)TEMP_FAILURE_RETRY(fstat(plugin_fd, &st));
915
949
error(0, errno, "stat");
950
TEMP_FAILURE_RETRY(close(plugin_fd));
921
954
/* Ignore non-executable files */
922
955
if(not S_ISREG(st.st_mode)
923
or (TEMP_FAILURE_RETRY(faccessat(dir_fd, direntries[i]->d_name,
956
or (TEMP_FAILURE_RETRY(faccessat(dir_fd, dirst->d_name, X_OK,
926
959
fprintf(stderr, "Ignoring plugin dir entry \"%s/%s\""
927
960
" with bad type or mode\n",
928
plugindir != NULL ? plugindir : PDIR,
929
direntries[i]->d_name);
961
plugindir != NULL ? plugindir : PDIR, dirst->d_name);
963
TEMP_FAILURE_RETRY(close(plugin_fd));
936
plugin *p = getplugin(direntries[i]->d_name);
967
plugin *p = getplugin(dirst->d_name);
938
969
error(0, errno, "getplugin");
970
TEMP_FAILURE_RETRY(close(plugin_fd));
945
975
fprintf(stderr, "Ignoring disabled plugin \"%s\"\n",
946
direntries[i]->d_name);
978
TEMP_FAILURE_RETRY(close(plugin_fd));
981
1009
ret = (int)TEMP_FAILURE_RETRY(pipe(pipefd));
982
#else /* O_CLOEXEC */
983
ret = (int)TEMP_FAILURE_RETRY(pipe2(pipefd, O_CLOEXEC));
984
#endif /* O_CLOEXEC */
986
1011
error(0, errno, "pipe");
987
1012
exitstatus = EX_OSERR;
991
if(pipefd[0] >= FD_SETSIZE){
992
fprintf(stderr, "pipe()[0] (%d) >= FD_SETSIZE (%d)", pipefd[0],
996
exitstatus = EX_OSERR;
1001
1015
/* Ask OS to automatic close the pipe on exec */
1002
1016
ret = set_cloexec_flag(pipefd[0]);
1004
1018
error(0, errno, "set_cloexec_flag");
1007
1019
exitstatus = EX_OSERR;
1008
free(direntries[i]);
1011
1022
ret = set_cloexec_flag(pipefd[1]);
1013
1024
error(0, errno, "set_cloexec_flag");
1016
1025
exitstatus = EX_OSERR;
1017
free(direntries[i]);
1020
#endif /* not O_CLOEXEC */
1021
1028
/* Block SIGCHLD until process is safely in process list */
1022
1029
ret = (int)TEMP_FAILURE_RETRY(sigprocmask(SIG_BLOCK,
1023
1030
&sigchld_action.sa_mask,
1062
1063
_exit(EX_OSERR);
1067
/* If dir has no file descriptor, we could not set FD_CLOEXEC
1068
above and must now close it manually here. */
1065
1071
if(fexecve(plugin_fd, p->argv,
1066
1072
(p->environ[0] != NULL) ? p->environ : environ) < 0){
1067
1073
error(0, errno, "fexecve for %s/%s",
1068
plugindir != NULL ? plugindir : PDIR,
1069
direntries[i]->d_name);
1074
plugindir != NULL ? plugindir : PDIR, dirst->d_name);
1070
1075
_exit(EX_OSERR);
1072
1077
/* no return */
1074
1079
/* Parent process */
1075
close(pipefd[1]); /* Close unused write end of pipe */
1077
plugin *new_plugin = getplugin(direntries[i]->d_name);
1080
TEMP_FAILURE_RETRY(close(pipefd[1])); /* Close unused write end of
1082
TEMP_FAILURE_RETRY(close(plugin_fd));
1083
plugin *new_plugin = getplugin(dirst->d_name);
1078
1084
if(new_plugin == NULL){
1079
1085
error(0, errno, "getplugin");
1080
1086
ret = (int)(TEMP_FAILURE_RETRY
1158
1173
(intmax_t) (proc->pid),
1159
1174
WTERMSIG(proc->status),
1160
1175
strsignal(WTERMSIG(proc->status)));
1176
} else if(WCOREDUMP(proc->status)){
1177
fprintf(stderr, "Plugin %s [%" PRIdMAX "] dumped"
1178
" core\n", proc->name, (intmax_t) (proc->pid));
1164
1182
/* Remove the plugin */
1165
FD_CLR(proc->fd, &rfds_all);
1183
#if defined (__GNUC__) and defined (__GLIBC__)
1184
#if not __GLIBC_PREREQ(2, 16)
1185
#pragma GCC diagnostic push
1186
#pragma GCC diagnostic ignored "-Wsign-conversion"
1189
FD_CLR(proc->fd, &rfds_all); /* Spurious warning from
1190
-Wconversion in GNU libc
1192
#if defined (__GNUC__) and defined (__GLIBC__)
1193
#if not __GLIBC_PREREQ(2, 16)
1194
#pragma GCC diagnostic pop
1167
1198
/* Block signal while modifying process_list */
1168
1199
ret = (int)TEMP_FAILURE_RETRY(sigprocmask