summaryrefslogtreecommitdiff
path: root/src/qmail-rspawn.c
diff options
context:
space:
mode:
authorJannis Hoffmann <jannis@fehcom.de>2024-07-03 15:52:39 +0200
committerJannis Hoffmann <jannis@fehcom.de>2024-07-03 15:52:39 +0200
commita6a7d6ce079cabdaf2fa502b2e2cf15e5428ac6f (patch)
treeb88cc7a8457658d67e0321718556ac807f6bccf3 /src/qmail-rspawn.c
parent00be7622c428f279872f84569f098ce16150f8a8 (diff)
format files
Diffstat (limited to 'src/qmail-rspawn.c')
-rw-r--r--src/qmail-rspawn.c82
1 files changed, 50 insertions, 32 deletions
diff --git a/src/qmail-rspawn.c b/src/qmail-rspawn.c
index 66a8b70..939488d 100644
--- a/src/qmail-rspawn.c
+++ b/src/qmail-rspawn.c
@@ -1,44 +1,61 @@
-#include <unistd.h>
#include <sys/stat.h>
-#include "fd.h"
-#include "wait.h"
+#include <unistd.h>
+
#include "buffer.h"
-#include "exit.h"
#include "error.h"
-#include "ipalloc.h"
-#include "tcpto.h"
-#include "auto_qmail.h"
+#include "exit.h"
+#include "fd.h"
#include "open.h"
#include "pathexec.h"
+#include "wait.h"
+
+#include "auto_qmail.h"
+#include "ipalloc.h"
+#include "tcpto.h"
-void initialize(int argc,char **argv) { tcpto_clean(); }
+void initialize(int argc, char **argv)
+{
+ tcpto_clean();
+}
int truncreport = 0;
-void report(buffer *log,int wstat,char *s,int len)
+void report(buffer *log, int wstat, char *s, int len)
{
int j;
int k;
int result;
int orr;
- if (wait_crashed(wstat)) { buffer_putsflush(log,"Zqmail-spawn: qmail-remote crashed.\n"); return; }
+ if (wait_crashed(wstat)) {
+ buffer_putsflush(log, "Zqmail-spawn: qmail-remote crashed.\n");
+ return;
+ }
switch (wait_exitcode(wstat)) {
- case 0: break;
- case 111: buffer_putsflush(log,"Zqmail-rspawn: Unable to run qmail-remote.\n"); break;
- default: buffer_putsflush(log,"Dqmail-rspawn: Unable to run qmail-remote. \n"); return;
+ case 0: break;
+ case 111: buffer_putsflush(log, "Zqmail-rspawn: Unable to run qmail-remote.\n"); break;
+ default: buffer_putsflush(log, "Dqmail-rspawn: Unable to run qmail-remote. \n"); return;
}
- if (!len) { buffer_putsflush(log,"Zqmail-rspawn: qmail-remote produced no output.\n"); return; }
+ if (!len) {
+ buffer_putsflush(log, "Zqmail-rspawn: qmail-remote produced no output.\n");
+ return;
+ }
result = -1;
j = 0;
for (k = 0; k < len; ++k)
if (!s[k]) {
- if (s[j] == 'K') { result = 1; break; }
- if (s[j] == 'Z') { result = 0; break; }
+ if (s[j] == 'K') {
+ result = 1;
+ break;
+ }
+ if (s[j] == 'Z') {
+ result = 0;
+ break;
+ }
if (s[j] == 'D') break;
j = k + 1;
}
@@ -51,34 +68,35 @@ void report(buffer *log,int wstat,char *s,int len)
}
switch (orr) {
- case 1: buffer_put(log,"K",1); break;
- case 0: buffer_put(log,"Z",1); break;
- case -1: buffer_put(log,"D",1); break;
+ case 1: buffer_put(log, "K", 1); break;
+ case 0: buffer_put(log, "Z", 1); break;
+ case -1: buffer_put(log, "D", 1); break;
}
for (k = 1; k < len;)
if (!s[k++]) {
- buffer_puts(log,s + 1);
+ buffer_puts(log, s + 1);
if (result <= orr)
- if (k < len)
- switch (s[k]) {
- case 'Z': case 'D': case 'K':
- buffer_puts(log,s + k + 1);
+ if (k < len) switch (s[k])
+ {
+ case 'Z':
+ case 'D':
+ case 'K': buffer_puts(log, s + k + 1);
}
- break;
- }
+ break;
+ }
}
-int spawn(int fdmess,int fdout,const char *s,char *r,const int at)
+int spawn(int fdmess, int fdout, const char *s, char *r, const int at)
{
int f;
char *(args[5]);
struct stat st;
if (chdir(auto_qmail) == -1) _exit(110);
- if (!stat("control/dkimdomains",&st))
+ if (!stat("control/dkimdomains", &st))
args[0] = "qmail-dksign";
- else
+ else
args[0] = "qmail-remote";
args[1] = r + at + 1;
args[2] = s;
@@ -88,9 +106,9 @@ int spawn(int fdmess,int fdout,const char *s,char *r,const int at)
if (chdir("queue/mess") == -1) _exit(110);
if (!(f = vfork())) {
- if (fd_move(0,fdmess) == -1) _exit(111);
- if (fd_move(1,fdout) == -1) _exit(111);
- if (fd_copy(2,1) == -1) _exit(111);
+ if (fd_move(0, fdmess) == -1) _exit(111);
+ if (fd_move(1, fdout) == -1) _exit(111);
+ if (fd_copy(2, 1) == -1) _exit(111);
pathexec(args);
if (errno) _exit(111);
_exit(100);