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
|
/* See LICENSE file for copyright and license details. */
#ifndef LIBSBUSD_H
#define LIBSBUSD_H
#include <sys/un.h>
#include <stdlib.h>
enum {
LIBSBUS_AFUNIX_FD,
LIBSBUS_AFUNIX_RANDOM,
LIBSBUS_AFUNIX_ABSTRACT,
LIBSBUS_AFUNIX_CONCRETE
};
#define DLLIST_ADD_BEFORE(NEW, OLD)\
((NEW)->next = (OLD),\
(NEW)->prev = (OLD)->prev,\
(OLD)->prev->next = (NEW),\
(OLD)->prev = (NEW))
#define DLLIST_ADD_AFTER(NEW, OLD)\
((NEW)->next = (OLD)->next,\
(NEW)->prev = (OLD),\
(OLD)->next->prev = (NEW),\
(OLD)->next = (NEW))
#define DLLIST_REMOVE(NODE)\
((NODE)->prev->next = (NODE)->next,\
(NODE)->next->prev = (NODE)->prev)
#ifndef eprintf
# define eprintf(...) (libsbusd_weprintf(__VA_ARGS__), exit(1))
#endif
void libsbusd_weprintf(const char *, ...);
#ifndef weprintf
# define weprintf libsbusd_weprintf
#endif
int libsbusd_who(int, char *, const char *);
int libsbusd_iscredok(int, const char *, const char *);
int libsbusd_checkuser(int, uid_t *, size_t);
int libsbusd_doessubmatch(const char *, const char *);
int libsbusd_issubed(char *const *, size_t, const char *);
void libsbusd_adduser(uid_t *, size_t *, const char *);
void libsbusd_daemonise(const char *, void (*)(int));
int libsbusd_afunix(struct sockaddr_un *, int *, const char *);
int libsbusd_mksocket(struct sockaddr_un *, const char *, int, mode_t);
void libsbusd_initalise(int, const char **, void (*)(int));
#endif
|