]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/socket.h
man: Clarify man page with respect to automatic fstab dependencies
[thirdparty/systemd.git] / src / socket.h
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 #ifndef foosockethfoo
4 #define foosockethfoo
5
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
25 typedef struct Socket Socket;
26
27 #include "manager.h"
28 #include "unit.h"
29 #include "socket-util.h"
30 #include "mount.h"
31 #include "service.h"
32
33 typedef enum SocketState {
34 SOCKET_DEAD,
35 SOCKET_START_PRE,
36 SOCKET_START_POST,
37 SOCKET_LISTENING,
38 SOCKET_RUNNING,
39 SOCKET_STOP_PRE,
40 SOCKET_STOP_PRE_SIGTERM,
41 SOCKET_STOP_PRE_SIGKILL,
42 SOCKET_STOP_POST,
43 SOCKET_FINAL_SIGTERM,
44 SOCKET_FINAL_SIGKILL,
45 SOCKET_FAILED,
46 _SOCKET_STATE_MAX,
47 _SOCKET_STATE_INVALID = -1
48 } SocketState;
49
50 typedef enum SocketExecCommand {
51 SOCKET_EXEC_START_PRE,
52 SOCKET_EXEC_START_POST,
53 SOCKET_EXEC_STOP_PRE,
54 SOCKET_EXEC_STOP_POST,
55 _SOCKET_EXEC_COMMAND_MAX,
56 _SOCKET_EXEC_COMMAND_INVALID = -1
57 } SocketExecCommand;
58
59 typedef enum SocketType {
60 SOCKET_SOCKET,
61 SOCKET_FIFO,
62 SOCKET_SPECIAL,
63 SOCKET_MQUEUE,
64 _SOCKET_FIFO_MAX,
65 _SOCKET_FIFO_INVALID = -1
66 } SocketType;
67
68 typedef enum SocketResult {
69 SOCKET_SUCCESS,
70 SOCKET_FAILURE_RESOURCES,
71 SOCKET_FAILURE_TIMEOUT,
72 SOCKET_FAILURE_EXIT_CODE,
73 SOCKET_FAILURE_SIGNAL,
74 SOCKET_FAILURE_CORE_DUMP,
75 _SOCKET_RESULT_MAX,
76 _SOCKET_RESULT_INVALID = -1
77 } SocketResult;
78
79 typedef struct SocketPort {
80 SocketType type;
81 int fd;
82
83 SocketAddress address;
84 char *path;
85 Watch fd_watch;
86
87 LIST_FIELDS(struct SocketPort, port);
88 } SocketPort;
89
90 struct Socket {
91 Unit meta;
92
93 LIST_HEAD(SocketPort, ports);
94
95 unsigned n_accepted;
96 unsigned n_connections;
97 unsigned max_connections;
98
99 unsigned backlog;
100 usec_t timeout_usec;
101
102 ExecCommand* exec_command[_SOCKET_EXEC_COMMAND_MAX];
103 ExecContext exec_context;
104
105 /* For Accept=no sockets refers to the one service we'll
106 activate. For Accept=yes sockets is either NULL, or filled
107 when the next service we spawn. */
108 UnitRef service;
109
110 SocketState state, deserialized_state;
111
112 Watch timer_watch;
113
114 ExecCommand* control_command;
115 SocketExecCommand control_command_id;
116 pid_t control_pid;
117
118 mode_t directory_mode;
119 mode_t socket_mode;
120
121 SocketResult result;
122
123 bool accept;
124
125 /* Socket options */
126 bool keep_alive;
127 bool free_bind;
128 bool transparent;
129 bool broadcast;
130 bool pass_cred;
131 int priority;
132 int mark;
133 size_t receive_buffer;
134 size_t send_buffer;
135 int ip_tos;
136 int ip_ttl;
137 size_t pipe_size;
138 char *bind_to_device;
139 char *tcp_congestion;
140 long mq_maxmsg;
141 long mq_msgsize;
142
143 /* Only for INET6 sockets: issue IPV6_V6ONLY sockopt */
144 SocketAddressBindIPv6Only bind_ipv6_only;
145 };
146
147 /* Called from the service code when collecting fds */
148 int socket_collect_fds(Socket *s, int **fds, unsigned *n_fds);
149
150 /* Called from the service when it shut down */
151 void socket_notify_service_dead(Socket *s);
152
153 /* Called from the mount code figure out if a mount is a dependency of
154 * any of the sockets of this socket */
155 int socket_add_one_mount_link(Socket *s, Mount *m);
156
157 /* Called from the service code when a per-connection service ended */
158 void socket_connection_unref(Socket *s);
159
160 extern const UnitVTable socket_vtable;
161
162 const char* socket_state_to_string(SocketState i);
163 SocketState socket_state_from_string(const char *s);
164
165 const char* socket_exec_command_to_string(SocketExecCommand i);
166 SocketExecCommand socket_exec_command_from_string(const char *s);
167
168 const char* socket_result_to_string(SocketResult i);
169 SocketResult socket_result_from_string(const char *s);
170
171 #endif