]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/socket.h
core: rename struct timestamp to dual_timestamp to avoid name clash with IP system...
[thirdparty/systemd.git] / src / socket.h
CommitLineData
5cb5a6ff
LP
1/*-*- Mode: C; c-basic-offset: 8 -*-*/
2
3#ifndef foosockethfoo
4#define foosockethfoo
5
a7334b09
LP
6/***
7 This file is part of systemd.
8
9 Copyright 2010 Lennart Poettering
10
11 systemd is free software; you can redistribute it and/or modify it
12 under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 2 of the License, or
14 (at your option) any later version.
15
16 systemd is distributed in the hope that it will be useful, but
17 WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 General Public License for more details.
20
21 You should have received a copy of the GNU General Public License
22 along with systemd; If not, see <http://www.gnu.org/licenses/>.
23***/
24
5cb5a6ff
LP
25typedef struct Socket Socket;
26
acbb0225 27#include "manager.h"
87f0e418 28#include "unit.h"
542563ba 29#include "socket-util.h"
6e2ef85b 30#include "mount.h"
5cb5a6ff
LP
31
32typedef enum SocketState {
33 SOCKET_DEAD,
34 SOCKET_START_PRE,
35 SOCKET_START_POST,
36 SOCKET_LISTENING,
37 SOCKET_RUNNING,
38 SOCKET_STOP_PRE,
034c6ed7
LP
39 SOCKET_STOP_PRE_SIGTERM,
40 SOCKET_STOP_PRE_SIGKILL,
5cb5a6ff 41 SOCKET_STOP_POST,
80876c20
LP
42 SOCKET_FINAL_SIGTERM,
43 SOCKET_FINAL_SIGKILL,
18c78fb1 44 SOCKET_MAINTENANCE,
e537352b
LP
45 _SOCKET_STATE_MAX,
46 _SOCKET_STATE_INVALID = -1
5cb5a6ff
LP
47} SocketState;
48
49typedef enum SocketExecCommand {
50 SOCKET_EXEC_START_PRE,
51 SOCKET_EXEC_START_POST,
52 SOCKET_EXEC_STOP_PRE,
53 SOCKET_EXEC_STOP_POST,
e537352b
LP
54 _SOCKET_EXEC_COMMAND_MAX,
55 _SOCKET_EXEC_COMMAND_INVALID = -1
5cb5a6ff
LP
56} SocketExecCommand;
57
542563ba
LP
58typedef enum SocketType {
59 SOCKET_SOCKET,
e537352b
LP
60 SOCKET_FIFO,
61 _SOCKET_FIFO_MAX,
62 _SOCKET_FIFO_INVALID = -1
542563ba
LP
63} SocketType;
64
01f78473 65typedef struct SocketPort {
542563ba 66 SocketType type;
9d58f1db 67 int fd;
542563ba
LP
68
69 SocketAddress address;
70 char *path;
acbb0225 71 Watch fd_watch;
542563ba 72
01f78473
LP
73 LIST_FIELDS(struct SocketPort, port);
74} SocketPort;
542563ba 75
5cb5a6ff
LP
76struct Socket {
77 Meta meta;
78
542563ba
LP
79 LIST_HEAD(SocketPort, ports);
80
81 /* Only for INET6 sockets: issue IPV6_V6ONLY sockopt */
c0120d99 82 SocketAddressBindIPv6Only bind_ipv6_only;
542563ba 83 unsigned backlog;
5cb5a6ff 84
034c6ed7
LP
85 usec_t timeout_usec;
86
e537352b 87 ExecCommand* exec_command[_SOCKET_EXEC_COMMAND_MAX];
5cb5a6ff
LP
88 ExecContext exec_context;
89
034c6ed7
LP
90 Service *service;
91
a16e1123 92 SocketState state, deserialized_state;
034c6ed7 93
50159e6a
LP
94 KillMode kill_mode;
95
034c6ed7 96 ExecCommand* control_command;
a16e1123 97 SocketExecCommand control_command_id;
5cb5a6ff
LP
98 pid_t control_pid;
99
acbb0225 100 char *bind_to_device;
b5a0699f
LP
101 mode_t directory_mode;
102 mode_t socket_mode;
acbb0225 103
4f2d528d
LP
104 bool accept;
105 unsigned n_accepted;
6cf6bbc2
LP
106 unsigned n_connections;
107 unsigned max_connections;
4f2d528d 108
034c6ed7 109 bool failure;
acbb0225 110 Watch timer_watch;
5cb5a6ff
LP
111};
112
44d8db9e
LP
113/* Called from the service code when collecting fds */
114int socket_collect_fds(Socket *s, int **fds, unsigned *n_fds);
115
ceee3d82
LP
116/* Called from the service when it shut down */
117void socket_notify_service_dead(Socket *s);
118
6e2ef85b
LP
119/* Called from the mount code figure out if a mount is a dependency of
120 * any of the sockets of this socket */
121int socket_add_one_mount_link(Socket *s, Mount *m);
122
6cf6bbc2
LP
123/* Called from the service code when a per-connection service ended */
124void socket_connection_unref(Socket *s);
125
87f0e418 126extern const UnitVTable socket_vtable;
5cb5a6ff 127
a16e1123
LP
128const char* socket_state_to_string(SocketState i);
129SocketState socket_state_from_string(const char *s);
130
131const char* socket_exec_command_to_string(SocketExecCommand i);
132SocketExecCommand socket_exec_command_from_string(const char *s);
133
5cb5a6ff 134#endif