catsit/daemon.h

85 lines
2.2 KiB
C
Raw Normal View History

2020-08-14 18:15:03 +02:00
/* Copyright (C) 2020 C. McEnroe <june@causal.agency>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
2020-08-14 18:52:51 +02:00
#include <grp.h>
#include <pwd.h>
2020-08-14 18:15:03 +02:00
#include <stdint.h>
2020-08-14 21:56:10 +02:00
#include <stdlib.h>
#include <string.h>
2020-08-14 18:15:03 +02:00
typedef unsigned char byte;
2020-08-14 21:56:10 +02:00
extern struct Prepend {
size_t cap, len;
char **commands;
} prepend;
static inline void prependClear(void) {
for (size_t i = 0; i < prepend.len; ++i) {
free(prepend.commands[i]);
}
prepend.len = 0;
}
static inline int prependAdd(const char *command) {
if (prepend.len == prepend.cap) {
size_t cap = (prepend.cap ? prepend.cap * 2 : 8);
void *ptr = realloc(prepend.commands, sizeof(*prepend.commands) * cap);
if (!ptr) return -1;
prepend.cap = cap;
prepend.commands = ptr;
}
prepend.commands[prepend.len] = strdup(command);
if (!prepend.commands[prepend.len]) return -1;
prepend.len++;
return 0;
}
extern const char *serviceDir;
extern struct passwd *serviceUser;
extern struct group *serviceGroup;
struct Service {
char *name;
char *command;
// TODO: And many other things...
};
extern struct Services {
size_t cap, len;
struct Service *ptr;
} services;
int serviceAdd(const char *name, const char *command);
extern char configError[];
int configParse(const char *path);
2020-08-14 18:15:03 +02:00
struct Set256 {
uint32_t bits[8];
};
static inline void setClear(struct Set256 *set) {
for (int i = 0; i < 8; ++i) set->bits[i] = 0;
}
static inline void setAdd(struct Set256 *set, byte x) {
set->bits[x / 32] |= 1 << (uint32_t)(x & 31);
}
static inline uint32_t setTest(const struct Set256 *set, byte x) {
return set->bits[x / 32] & (1 << (uint32_t)(x & 31));
}
extern int restartInterval;
extern struct Set256 stopExits;