#include #include #include #include #include #include #include #include #include #include #include "run_part.h" #include "shadowlog_internal.h" int run_part (char *script_path, const char *name, const char *action) { int pid; int wait_status; int pid_status; char *args[] = { script_path, NULL }; pid=fork(); if (pid==-1) { perror ("Could not fork"); return 1; } if (pid==0) { setenv ("ACTION",action,1); setenv ("SUBJECT",name,1); execv (script_path,args); perror ("execv"); exit(1); } pid_status = wait (&wait_status); if (pid_status == pid) { return (wait_status); } perror ("waitpid"); return (1); } int run_parts (const char *directory, const char *name, const char *action) { struct dirent **namelist; int scanlist; int n; int execute_result = 0; scanlist = scandir (directory, &namelist, 0, alphasort); if (scanlist<=0) { return (0); } for (n=0; nd_name) + 2; char *s = (char*)malloc(path_length); if (!s) { printf ("could not allocate memory\n"); for (; nd_name); execute_result = 0; if (stat (s, &sb) == -1) { perror ("stat"); free (s); for (; nd_name); for (; n