2021-04-18 15:19:21 +02:00
|
|
|
#include "fastfetch.h"
|
2022-07-25 14:48:59 +02:00
|
|
|
#include "common/processing.h"
|
2023-01-28 12:40:12 +01:00
|
|
|
#include "common/io/io.h"
|
2023-07-10 16:14:04 +08:00
|
|
|
#include "common/time.h"
|
2021-04-18 15:19:21 +02:00
|
|
|
|
2022-06-18 14:25:31 +02:00
|
|
|
#include <stdlib.h>
|
2021-04-18 15:19:21 +02:00
|
|
|
#include <unistd.h>
|
2023-07-10 16:14:04 +08:00
|
|
|
#include <signal.h>
|
2023-07-11 11:10:10 +08:00
|
|
|
#include <poll.h>
|
2021-04-18 15:19:21 +02:00
|
|
|
|
2023-07-10 21:02:13 +08:00
|
|
|
const char* ffProcessAppendOutput(FFstrbuf* buffer, char* const argv[], bool useStdErr)
|
2023-07-10 09:36:33 +08:00
|
|
|
{
|
|
|
|
|
int pipes[2];
|
|
|
|
|
|
|
|
|
|
if(pipe(pipes) == -1)
|
|
|
|
|
return "pipe() failed";
|
|
|
|
|
|
|
|
|
|
pid_t childPid = fork();
|
|
|
|
|
if(childPid == -1)
|
|
|
|
|
return "fork() failed";
|
|
|
|
|
|
|
|
|
|
//Child
|
|
|
|
|
if(childPid == 0)
|
|
|
|
|
{
|
2023-07-10 21:02:13 +08:00
|
|
|
dup2(pipes[1], useStdErr ? STDERR_FILENO : STDOUT_FILENO);
|
2023-07-10 09:36:33 +08:00
|
|
|
close(pipes[0]);
|
|
|
|
|
close(pipes[1]);
|
2023-07-10 21:02:13 +08:00
|
|
|
close(useStdErr ? STDOUT_FILENO : STDERR_FILENO);
|
2023-07-10 09:36:33 +08:00
|
|
|
execvp(argv[0], argv);
|
|
|
|
|
exit(901);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//Parent
|
|
|
|
|
close(pipes[1]);
|
|
|
|
|
|
|
|
|
|
int FF_AUTO_CLOSE_FD childPipeFd = pipes[0];
|
2023-07-11 11:10:10 +08:00
|
|
|
if (instance.config.processingTimeout >= 0)
|
|
|
|
|
{
|
|
|
|
|
struct pollfd pollfd = { childPipeFd, POLLIN, 0 };
|
|
|
|
|
if (poll(&pollfd, 1, (int) instance.config.processingTimeout) == 0)
|
|
|
|
|
{
|
|
|
|
|
kill(childPid, SIGTERM);
|
|
|
|
|
return "poll(&pollfd, 1, (int) instance.config.processingTimeout) timeout";
|
|
|
|
|
}
|
|
|
|
|
else if (pollfd.revents & POLLERR)
|
|
|
|
|
{
|
|
|
|
|
kill(childPid, SIGTERM);
|
|
|
|
|
return "poll(&pollfd, 1, (int) instance.config.processingTimeout) error";
|
|
|
|
|
}
|
|
|
|
|
else if (pollfd.revents & POLLHUP)
|
|
|
|
|
{
|
2023-07-11 19:45:16 +08:00
|
|
|
return NULL;
|
2023-07-11 11:10:10 +08:00
|
|
|
}
|
|
|
|
|
}
|
2023-07-10 09:36:33 +08:00
|
|
|
|
2023-07-11 11:10:10 +08:00
|
|
|
// Note that we only know we have something to read here
|
|
|
|
|
// However the child process may still block later
|
2023-07-10 09:36:33 +08:00
|
|
|
if(!ffAppendFDBuffer(childPipeFd, buffer))
|
|
|
|
|
return "ffAppendFDBuffer(childPipeFd, buffer) failed";
|
|
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|