aboutsummaryrefslogtreecommitdiff
path: root/src/util.h
blob: eaceeebf1572efcb84b3773b75f6ddc002167548 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/*
 * util.h - routeup/tlsdated utility functions
 * Copyright (c) 2012 The Chromium Authors. All rights reserved.
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#ifndef UTIL_H
#define UTIL_H

#include <errno.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>

#ifdef HAVE_PRCTL
#include <sys/prctl.h>
#ifndef PR_SET_NO_NEW_PRIVS
#  define PR_SET_NO_NEW_PRIVS 38
#endif
#ifndef PR_GET_NO_NEW_PRIVS
#  define PR_GET_NO_NEW_PRIVS 39
#endif
#endif

#include "src/rtc.h"

#ifdef TARGET_OS_HAIKU
#include <stdarg.h>
#endif

#define API __attribute__((visibility("default")))

extern const char *kTempSuffix;
#define IGNORE_EINTR(expr) ({ \
  typeof(expr) _r; \
  while ((_r = (expr)) == -1 && errno == EINTR); \
  _r; \
})

extern int verbose;
extern int verbose_debug;
void initalize_syslog (void);
void terminate_syslog (void);
void die (const char *fmt, ...);
void verb (const char *fmt, ...);
extern void logat (int isverbose, const char *fmt, ...);

#define verb_debug debug
#define debug(fmt, ...) if (verbose_debug) logat(1, fmt, ## __VA_ARGS__)
#define info(fmt, ...) logat(0, fmt, ## __VA_ARGS__)
#define pinfo(fmt, ...) logat(1, fmt ": %s", ## __VA_ARGS__, strerror(errno))
#define error(fmt, ...) logat(0, fmt, ## __VA_ARGS__)
#define perror(fmt, ...) logat(0, fmt ": %s", ## __VA_ARGS__, strerror(errno))
#define fatal(fmt, ...) do { logat(0, fmt, ## __VA_ARGS__); exit(1); } while (0)
#define pfatal(fmt, ...) do { \
  logat(0, fmt ": %s", ## __VA_ARGS__, strerror(errno)); \
  exit(1); \
} while (0)

static inline int min (int x, int y)
{
  return x < y ? x : y;
}

void drop_privs_to (const char *user, const char *group);
void no_new_privs (void);
const char *sync_type_str (int sync_type);

struct state;
enum event_id_t;
void trigger_event (struct state *state, enum event_id_t e, int sec);

struct platform {
	int (*rtc_open)(struct rtc_handle *);
	int (*rtc_write)(struct rtc_handle *, const struct timeval *tv);
	int (*rtc_read)(struct rtc_handle *, struct timeval *tv);
	int (*rtc_close)(struct rtc_handle *);

	int (*file_open)(const char *path, int write, int cloexec);
	int (*file_close)(int fd);
	/* Atomic file write and read */
	int (*file_write)(int fd, void *buf, size_t sz);
	int (*file_read)(int fd, void *buf, size_t sz);

	int (*time_get)(struct timeval *tv);

	int (*pgrp_enter)(void);
	int (*pgrp_kill)(void);

	int (*process_signal)(pid_t pid, int sig);
	int (*process_wait)(pid_t pid, int *status, int timeout);
};

extern struct platform *platform;

#endif /* !UTIL_H */