chiark / gitweb /
34e74b518e2b0f863681b282631718d9f6c1cf73
[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
37 extern const char *interp, *ident, *script, *socket_path, *lock_path;
38 extern bool logging;
39 extern struct sha256_ctx identsc;
40 extern const char *run_base;
41
42 extern const char our_name[];
43
44 bool find_run_base_var_run(void);
45 void find_socket_path(void);
46
47 int acquire_lock(void);
48 int flock_file(const char *lock_path);
49
50 extern const struct cmdinfo cmdinfos[];
51 #define PREFORK_CMDINFOS \
52   { "help",   0, .call=of_help                                         }, \
53   { 0, 'g',   1,                    .sassignto= &ident                 }, \
54   { 0, 'G',   1, .call= off_ident_addstring                            }, \
55   { 0, 'E',   1, .call= off_ident_addenv                               },
56
57 void process_opts(const char *const **argv_io);
58
59 void vmsgcore(int estatus, int errnoval, const char *fmt, va_list al);
60
61 #define DEF_MSG(func, attrs, estatus, errnoval, after)  \
62   static void func(const char *fmt, ...)                \
63     __attribute__((unused, format(printf,1,2))) attrs;  \
64   static void func(const char *fmt, ...) {              \
65     va_list al;                                         \
66     va_start(al,fmt);                                   \
67     vmsgcore(estatus,errnoval,fmt,al);                  \
68     after                                               \
69   }
70
71 DEF_MSG(warninge, /*empty*/, 0, errno, { });
72 DEF_MSG(warning , /*empty*/, 0, -1,    { });
73
74 #define DEF_DIE(func, errnoval) \
75   DEF_MSG(func, __attribute__((noreturn)), 127, errnoval, { abort(); })
76
77 DEF_DIE(diee, errno)
78 DEF_DIE(die,  -1)
79
80 #define MAX_OPTS 5
81
82 void fusagemessage(FILE *f);
83 void usagemessage(void);
84 void of_help(const struct cmdinfo *ci, const char *val);
85 void of_iassign(const struct cmdinfo *ci, const char *val);
86 void ident_addinit(void);
87 bool stabs_same_inode(struct stat *a, struct stat *b);
88 void ident_addstring(char key, const char *string);
89
90 void off_ident_addstring(const struct cmdinfo *ci, const char *name);
91 void off_ident_addenv(const struct cmdinfo *ci, const char *name);
92
93 void ident_add_key_byte(char key);
94
95 #define IDENT_ADD_OBJ(key, obj) do{                             \
96     ident_add_key_byte(key);                                    \
97     sha256_update(&identsc, sizeof((obj)), (void*)&obj);        \
98   }while(0)
99
100 #endif /*PREFORK_H*/