chiark / gitweb /
a7e1b8373e83b19a12a71c8c61a00c4eda7ee999
[chiark-utils.git] / cprogs / prefork.h
1 /* common stuff for cgi-fcgi-interp and prefork-interp */
2
3 #ifndef PREFORK_H
4 #define PREFORK_H
5
6 #include "common.h"
7
8 #include <stdio.h>
9 #include <stdlib.h>
10 #include <string.h>
11 #include <errno.h>
12 #include <stdbool.h>
13 #include <assert.h>
14 #include <limits.h>
15
16 #include <sys/types.h>
17 #include <sys/stat.h>
18 #include <sys/utsname.h>
19 #include <sys/socket.h>
20 #include <sys/un.h>
21 #include <sys/file.h>
22 #include <unistd.h>
23 #include <fcntl.h>
24 #include <pwd.h>
25 #include <time.h>
26 #include <signal.h>
27 #include <sys/wait.h>
28 #include <syslog.h>
29         
30 #include <nettle/sha.h>
31
32 #include "myopt.h"
33 #include "timespeccmp.h"
34
35 #define MINHEXHASH 33
36 #define STAGE2_VAR "CHIARKUTILS_CGIFCGIINTERP_STAGE2"
37
38 extern const char *interp, *ident;
39 extern int numservers, debugmode;
40 extern int check_interval;
41
42 extern struct sha256_ctx identsc;
43
44 extern const char our_name[];
45
46 extern uid_t us;
47 extern const char *run_base, *script, *socket_path, *lock_path;
48 extern const char *run_base_mkdir_p;
49 extern bool logging;
50
51 bool find_run_base_var_run(void);
52 void find_socket_path(void);
53
54 bool stab_isnewer(const struct stat *a, const struct stat *b);
55 void stab_mtimenow(struct stat *out);
56 int acquire_lock(void);
57 bool check_garbage_vs(const struct stat *started);
58 bool check_garbage(void);
59 void tidy_garbage(void);
60
61 extern const struct cmdinfo cmdinfos[];
62
63 // returns script pathname
64 const char *process_opts(int argc, const char *const *argv);
65
66 void vmsgcore(int estatus, int errnoval, const char *fmt, va_list al);
67
68 #define DEF_MSG(func, attrs, estatus, errnoval, after)  \
69   static void func(const char *fmt, ...)                \
70     __attribute__((unused, format(printf,1,2))) attrs;  \
71   static void func(const char *fmt, ...) {              \
72     va_list al;                                         \
73     va_start(al,fmt);                                   \
74     vmsgcore(estatus,errnoval,fmt,al);                  \
75     after                                               \
76   }
77
78 DEF_MSG(warninge, /*empty*/, 0, errno, { });
79 DEF_MSG(warning , /*empty*/, 0, 0,     { });
80
81 #define DEF_DIE(func, errnoval) \
82   DEF_MSG(func, __attribute__((noreturn)), 127, errnoval, { abort(); })
83
84 DEF_DIE(diee, errno)
85 DEF_DIE(die,  0)
86
87 #define MAX_OPTS 5
88
89 void fusagemessage(FILE *f);
90 void usagemessage(void);
91 void of_help(const struct cmdinfo *ci, const char *val);
92 void of_iassign(const struct cmdinfo *ci, const char *val);
93 void ident_addstring(const struct cmdinfo *ci, const char *string);
94 void off_ident_addenv(const struct cmdinfo *ci, const char *name);
95
96 #endif /*PREFORK_H*/