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> /* DIR, fdopendir(), fstat(), struct
34
stat, waitpid(), WIFEXITED(),
35
WEXITSTATUS(), wait(), pid_t,
36
uid_t, gid_t, getuid(), getgid(),
33
#include <sys/types.h> /* fstat(), struct stat, waitpid(),
34
WIFEXITED(), WEXITSTATUS(), wait(),
35
pid_t, uid_t, gid_t, getuid(),
38
37
#include <sys/select.h> /* fd_set, select(), FD_ZERO(),
39
38
FD_SET(), FD_ISSET(), FD_CLR */
40
39
#include <sys/wait.h> /* wait(), waitpid(), WIFEXITED(),
43
42
#include <sys/stat.h> /* struct stat, fstat(), S_ISREG() */
44
43
#include <iso646.h> /* and, or, not */
45
#include <dirent.h> /* DIR, struct dirent, fdopendir(),
46
readdir(), closedir(), dirfd() */
44
#include <dirent.h> /* struct dirent, scandirat() */
47
45
#include <unistd.h> /* fcntl(), F_GETFD, F_SETFD,
48
46
FD_CLOEXEC, write(), STDOUT_FILENO,
49
47
struct stat, fstat(), close(),
50
48
setgid(), setuid(), S_ISREG(),
51
faccessat() pipe(), fork(),
49
faccessat() pipe2(), fork(),
52
50
_exit(), dup2(), fexecve(), read()
54
52
#include <fcntl.h> /* fcntl(), F_GETFD, F_SETFD,
55
FD_CLOEXEC, openat() */
53
FD_CLOEXEC, openat(), scandirat(),
56
55
#include <string.h> /* strsep, strlen(), strsignal(),
57
56
strcmp(), strncmp() */
58
57
#include <errno.h> /* errno */
829
860
ret = set_cloexec_flag(dir_fd);
831
862
error(0, errno, "set_cloexec_flag");
832
TEMP_FAILURE_RETRY(close(dir_fd));
833
863
exitstatus = EX_OSERR;
836
866
#endif /* O_CLOEXEC */
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;
869
int good_name(const struct dirent * const dirent){
870
const char * const patterns[] = { ".*", "#*#", "*~", "*.dpkg-new",
871
"*.dpkg-old", "*.dpkg-bak",
872
"*.dpkg-divert", NULL };
874
#pragma GCC diagnostic push
875
#pragma GCC diagnostic ignored "-Wcast-qual"
877
for(const char **pat = (const char **)patterns;
878
*pat != NULL; pat++){
880
#pragma GCC diagnostic pop
882
if(fnmatch(*pat, dirent->d_name, FNM_FILE_NAME | FNM_PERIOD)
885
fprintf(stderr, "Ignoring plugin dir entry \"%s\""
886
" matching pattern %s\n", dirent->d_name, *pat);
895
#if __GLIBC_PREREQ(2, 15)
896
int numplugins = scandirat(dir_fd, ".", &direntries, good_name,
898
#else /* not __GLIBC_PREREQ(2, 15) */
899
int numplugins = scandir(plugindir != NULL ? plugindir : PDIR,
900
&direntries, good_name, alphasort);
901
#endif /* not __GLIBC_PREREQ(2, 15) */
902
#else /* not __GLIBC__ */
903
int numplugins = scandir(plugindir != NULL ? plugindir : PDIR,
904
&direntries, good_name, alphasort);
905
#endif /* not __GLIBC__ */
906
if(numplugins == -1){
907
error(0, errno, "Could not scan plugin dir");
909
exitstatus = EX_OSERR;
847
913
FD_ZERO(&rfds_all);
849
915
/* Read and execute any executable in the plugin directory*/
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 */
916
for(int i = 0; i < numplugins; i++){
918
int plugin_fd = openat(dir_fd, direntries[i]->d_name, O_RDONLY);
934
919
if(plugin_fd == -1){
935
920
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 */
947
924
ret = (int)TEMP_FAILURE_RETRY(fstat(plugin_fd, &st));
949
926
error(0, errno, "stat");
950
TEMP_FAILURE_RETRY(close(plugin_fd));
954
932
/* Ignore non-executable files */
955
933
if(not S_ISREG(st.st_mode)
956
or (TEMP_FAILURE_RETRY(faccessat(dir_fd, dirst->d_name, X_OK,
934
or (TEMP_FAILURE_RETRY(faccessat(dir_fd, direntries[i]->d_name,
959
937
fprintf(stderr, "Ignoring plugin dir entry \"%s/%s\""
960
938
" with bad type or mode\n",
961
plugindir != NULL ? plugindir : PDIR, dirst->d_name);
939
plugindir != NULL ? plugindir : PDIR,
940
direntries[i]->d_name);
963
TEMP_FAILURE_RETRY(close(plugin_fd));
967
plugin *p = getplugin(dirst->d_name);
947
plugin *p = getplugin(direntries[i]->d_name);
969
949
error(0, errno, "getplugin");
970
TEMP_FAILURE_RETRY(close(plugin_fd));
975
956
fprintf(stderr, "Ignoring disabled plugin \"%s\"\n",
957
direntries[i]->d_name);
978
TEMP_FAILURE_RETRY(close(plugin_fd));
1063
1073
_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. */
1071
1076
if(fexecve(plugin_fd, p->argv,
1072
1077
(p->environ[0] != NULL) ? p->environ : environ) < 0){
1073
1078
error(0, errno, "fexecve for %s/%s",
1074
plugindir != NULL ? plugindir : PDIR, dirst->d_name);
1079
plugindir != NULL ? plugindir : PDIR,
1080
direntries[i]->d_name);
1075
1081
_exit(EX_OSERR);
1077
1083
/* no return */
1079
1085
/* Parent process */
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);
1086
close(pipefd[1]); /* Close unused write end of pipe */
1088
plugin *new_plugin = getplugin(direntries[i]->d_name);
1084
1089
if(new_plugin == NULL){
1085
1090
error(0, errno, "getplugin");
1086
1091
ret = (int)(TEMP_FAILURE_RETRY