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(),
42
43
#include <sys/stat.h> /* struct stat, fstat(), S_ISREG() */
43
44
#include <iso646.h> /* and, or, not */
44
#include <dirent.h> /* struct dirent, scandirat() */
45
#include <dirent.h> /* DIR, struct dirent, fdopendir(),
46
readdir(), closedir(), dirfd() */
45
47
#include <unistd.h> /* fcntl(), F_GETFD, F_SETFD,
46
48
FD_CLOEXEC, write(), STDOUT_FILENO,
47
49
struct stat, fstat(), close(),
48
50
setgid(), setuid(), S_ISREG(),
49
faccessat() pipe2(), fork(),
51
faccessat() pipe(), fork(),
50
52
_exit(), dup2(), fexecve(), read()
52
54
#include <fcntl.h> /* fcntl(), F_GETFD, F_SETFD,
53
FD_CLOEXEC, openat(), scandirat(),
55
FD_CLOEXEC, openat() */
55
56
#include <string.h> /* strsep, strlen(), strsignal(),
56
57
strcmp(), strncmp() */
57
58
#include <errno.h> /* errno */
860
829
ret = set_cloexec_flag(dir_fd);
862
831
error(0, errno, "set_cloexec_flag");
832
TEMP_FAILURE_RETRY(close(dir_fd));
863
833
exitstatus = EX_OSERR;
866
836
#endif /* O_CLOEXEC */
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);
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;
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;
913
847
FD_ZERO(&rfds_all);
915
849
/* Read and execute any executable in the plugin directory*/
916
for(int i = 0; i < numplugins; i++){
918
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 */
919
934
if(plugin_fd == -1){
920
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 */
924
947
ret = (int)TEMP_FAILURE_RETRY(fstat(plugin_fd, &st));
926
949
error(0, errno, "stat");
950
TEMP_FAILURE_RETRY(close(plugin_fd));
932
954
/* Ignore non-executable files */
933
955
if(not S_ISREG(st.st_mode)
934
or (TEMP_FAILURE_RETRY(faccessat(dir_fd, direntries[i]->d_name,
956
or (TEMP_FAILURE_RETRY(faccessat(dir_fd, dirst->d_name, X_OK,
937
959
fprintf(stderr, "Ignoring plugin dir entry \"%s/%s\""
938
960
" with bad type or mode\n",
939
plugindir != NULL ? plugindir : PDIR,
940
direntries[i]->d_name);
961
plugindir != NULL ? plugindir : PDIR, dirst->d_name);
963
TEMP_FAILURE_RETRY(close(plugin_fd));
947
plugin *p = getplugin(direntries[i]->d_name);
967
plugin *p = getplugin(dirst->d_name);
949
969
error(0, errno, "getplugin");
970
TEMP_FAILURE_RETRY(close(plugin_fd));
956
975
fprintf(stderr, "Ignoring disabled plugin \"%s\"\n",
957
direntries[i]->d_name);
978
TEMP_FAILURE_RETRY(close(plugin_fd));
1073
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. */
1076
1071
if(fexecve(plugin_fd, p->argv,
1077
1072
(p->environ[0] != NULL) ? p->environ : environ) < 0){
1078
1073
error(0, errno, "fexecve for %s/%s",
1079
plugindir != NULL ? plugindir : PDIR,
1080
direntries[i]->d_name);
1074
plugindir != NULL ? plugindir : PDIR, dirst->d_name);
1081
1075
_exit(EX_OSERR);
1083
1077
/* no return */
1085
1079
/* Parent process */
1086
close(pipefd[1]); /* Close unused write end of pipe */
1088
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);
1089
1084
if(new_plugin == NULL){
1090
1085
error(0, errno, "getplugin");
1091
1086
ret = (int)(TEMP_FAILURE_RETRY