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 */
777
char *pluginhelperenv;
779
ret = asprintf(&pluginhelperenv, "MANDOSPLUGINHELPERDIR=%s",
780
pluginhelperdir != NULL ? pluginhelperdir : PHDIR);
782
bret = add_environment(getplugin(NULL), pluginhelperenv, true);
784
if(ret == -1 or not bret){
785
error(0, errno, "Failed to set MANDOSPLUGINHELPERDIR"
786
" environment variable to \"%s\" for all plugins\n",
787
pluginhelperdir != NULL ? pluginhelperdir : PHDIR);
790
free(pluginhelperenv);
795
765
for(plugin *p = plugin_list; p != NULL; p=p->next){
796
766
fprintf(stderr, "Plugin: %s has %d arguments\n",
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 */
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;
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 };
849
/* 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
/* Ignore dotfiles, backup files and other junk */
867
bool bad_name = false;
868
const char * const patterns[] = { ".*", "#*#", "*~",
869
"*.dpkg-new", "*.dpkg-old",
870
"*.dpkg-bak", "*.dpkg-divert",
873
873
#pragma GCC diagnostic push
874
874
#pragma GCC diagnostic ignored "-Wcast-qual"
876
for(const char **pat = (const char **)patterns;
877
*pat != NULL; pat++){
876
for(const char **pat = (const char **)patterns;
877
*pat != NULL; pat++){
879
879
#pragma GCC diagnostic pop
881
if(fnmatch(*pat, dirent->d_name, FNM_FILE_NAME | FNM_PERIOD)
881
if(fnmatch(*pat, dirst->d_name,
882
FNM_FILE_NAME | FNM_PERIOD) != FNM_NOMATCH){
884
884
fprintf(stderr, "Ignoring plugin dir entry \"%s\""
885
" matching pattern %s\n", dirent->d_name, *pat);
885
" matching pattern %s\n", dirst->d_name, *pat);
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;
904
/* 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);
896
int plugin_fd = openat(dir_fd, dirst->d_name, O_RDONLY |
899
#else /* not O_CLOEXEC */
901
#endif /* not O_CLOEXEC */
908
903
if(plugin_fd == -1){
909
904
error(0, errno, "Could not open plugin");
908
/* Set the FD_CLOEXEC flag on the plugin FD */
909
ret = set_cloexec_flag(plugin_fd);
911
error(0, errno, "set_cloexec_flag");
912
TEMP_FAILURE_RETRY(close(plugin_fd));
915
#endif /* O_CLOEXEC */
913
916
ret = (int)TEMP_FAILURE_RETRY(fstat(plugin_fd, &st));
915
918
error(0, errno, "stat");
919
TEMP_FAILURE_RETRY(close(plugin_fd));
921
923
/* Ignore non-executable files */
922
924
if(not S_ISREG(st.st_mode)
923
or (TEMP_FAILURE_RETRY(faccessat(dir_fd, direntries[i]->d_name,
925
or (TEMP_FAILURE_RETRY(faccessat(dir_fd, dirst->d_name, X_OK,
926
928
fprintf(stderr, "Ignoring plugin dir entry \"%s/%s\""
927
929
" with bad type or mode\n",
928
plugindir != NULL ? plugindir : PDIR,
929
direntries[i]->d_name);
930
plugindir != NULL ? plugindir : PDIR, dirst->d_name);
932
TEMP_FAILURE_RETRY(close(plugin_fd));
936
plugin *p = getplugin(direntries[i]->d_name);
936
plugin *p = getplugin(dirst->d_name);
938
938
error(0, errno, "getplugin");
939
TEMP_FAILURE_RETRY(close(plugin_fd));
945
944
fprintf(stderr, "Ignoring disabled plugin \"%s\"\n",
946
direntries[i]->d_name);
947
TEMP_FAILURE_RETRY(close(plugin_fd));
981
978
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
980
error(0, errno, "pipe");
987
981
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
984
/* Ask OS to automatic close the pipe on exec */
1002
985
ret = set_cloexec_flag(pipefd[0]);
1004
987
error(0, errno, "set_cloexec_flag");
1007
988
exitstatus = EX_OSERR;
1008
free(direntries[i]);
1011
991
ret = set_cloexec_flag(pipefd[1]);
1013
993
error(0, errno, "set_cloexec_flag");
1016
994
exitstatus = EX_OSERR;
1017
free(direntries[i]);
1020
#endif /* not O_CLOEXEC */
1021
997
/* Block SIGCHLD until process is safely in process list */
1022
998
ret = (int)TEMP_FAILURE_RETRY(sigprocmask(SIG_BLOCK,
1023
999
&sigchld_action.sa_mask,
1062
1032
_exit(EX_OSERR);
1036
/* If dir has no file descriptor, we could not set FD_CLOEXEC
1037
above and must now close it manually here. */
1065
1040
if(fexecve(plugin_fd, p->argv,
1066
1041
(p->environ[0] != NULL) ? p->environ : environ) < 0){
1067
1042
error(0, errno, "fexecve for %s/%s",
1068
plugindir != NULL ? plugindir : PDIR,
1069
direntries[i]->d_name);
1043
plugindir != NULL ? plugindir : PDIR, dirst->d_name);
1070
1044
_exit(EX_OSERR);
1072
1046
/* no return */
1074
1048
/* Parent process */
1075
close(pipefd[1]); /* Close unused write end of pipe */
1077
plugin *new_plugin = getplugin(direntries[i]->d_name);
1049
TEMP_FAILURE_RETRY(close(pipefd[1])); /* Close unused write end of
1051
TEMP_FAILURE_RETRY(close(plugin_fd));
1052
plugin *new_plugin = getplugin(dirst->d_name);
1078
1053
if(new_plugin == NULL){
1079
1054
error(0, errno, "getplugin");
1080
1055
ret = (int)(TEMP_FAILURE_RETRY
1106
FD_SET(new_plugin->fd, &rfds_all);
1079
#if defined (__GNUC__) and defined (__GLIBC__)
1080
#if not __GLIBC_PREREQ(2, 16)
1081
#pragma GCC diagnostic push
1082
#pragma GCC diagnostic ignored "-Wsign-conversion"
1085
FD_SET(new_plugin->fd, &rfds_all); /* Spurious warning from
1086
-Wconversion in GNU libc
1088
#if defined (__GNUC__) and defined (__GLIBC__)
1089
#if not __GLIBC_PREREQ(2, 16)
1090
#pragma GCC diagnostic pop
1108
1094
if(maxfd < new_plugin->fd){
1109
1095
maxfd = new_plugin->fd;
1099
TEMP_FAILURE_RETRY(closedir(dir));
1117
1101
free_plugin(getplugin(NULL));
1119
1103
for(plugin *p = plugin_list; p != NULL; p = p->next){
1158
1142
(intmax_t) (proc->pid),
1159
1143
WTERMSIG(proc->status),
1160
1144
strsignal(WTERMSIG(proc->status)));
1145
} else if(WCOREDUMP(proc->status)){
1146
fprintf(stderr, "Plugin %s [%" PRIdMAX "] dumped"
1147
" core\n", proc->name, (intmax_t) (proc->pid));
1164
1151
/* Remove the plugin */
1165
FD_CLR(proc->fd, &rfds_all);
1152
#if defined (__GNUC__) and defined (__GLIBC__)
1153
#if not __GLIBC_PREREQ(2, 16)
1154
#pragma GCC diagnostic push
1155
#pragma GCC diagnostic ignored "-Wsign-conversion"
1158
FD_CLR(proc->fd, &rfds_all); /* Spurious warning from
1159
-Wconversion in GNU libc
1161
#if defined (__GNUC__) and defined (__GLIBC__)
1162
#if not __GLIBC_PREREQ(2, 16)
1163
#pragma GCC diagnostic pop
1167
1167
/* Block signal while modifying process_list */
1168
1168
ret = (int)TEMP_FAILURE_RETRY(sigprocmask