]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/core/socket.h
Merge pull request #2495 from heftig/master
[thirdparty/systemd.git] / src / core / socket.h
CommitLineData
c2f1db8f 1#pragma once
5cb5a6ff 2
a7334b09
LP
3/***
4 This file is part of systemd.
5
6 Copyright 2010 Lennart Poettering
7
8 systemd is free software; you can redistribute it and/or modify it
5430f7f2
LP
9 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
a7334b09
LP
11 (at your option) any later version.
12
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
5430f7f2 16 Lesser General Public License for more details.
a7334b09 17
5430f7f2 18 You should have received a copy of the GNU Lesser General Public License
a7334b09
LP
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
20***/
21
5cb5a6ff
LP
22typedef struct Socket Socket;
23
6e2ef85b 24#include "mount.h"
57020a3a 25#include "service.h"
71d35b6b 26#include "socket-util.h"
5cb5a6ff 27
5cb5a6ff
LP
28typedef enum SocketExecCommand {
29 SOCKET_EXEC_START_PRE,
3900e5fd 30 SOCKET_EXEC_START_CHOWN,
5cb5a6ff
LP
31 SOCKET_EXEC_START_POST,
32 SOCKET_EXEC_STOP_PRE,
33 SOCKET_EXEC_STOP_POST,
e537352b
LP
34 _SOCKET_EXEC_COMMAND_MAX,
35 _SOCKET_EXEC_COMMAND_INVALID = -1
5cb5a6ff
LP
36} SocketExecCommand;
37
542563ba
LP
38typedef enum SocketType {
39 SOCKET_SOCKET,
e537352b 40 SOCKET_FIFO,
b0a3f2bc 41 SOCKET_SPECIAL,
916abb21 42 SOCKET_MQUEUE,
60252446 43 SOCKET_USB_FUNCTION,
e537352b
LP
44 _SOCKET_FIFO_MAX,
45 _SOCKET_FIFO_INVALID = -1
542563ba
LP
46} SocketType;
47
cfc4eb4c
LP
48typedef enum SocketResult {
49 SOCKET_SUCCESS,
50 SOCKET_FAILURE_RESOURCES,
51 SOCKET_FAILURE_TIMEOUT,
52 SOCKET_FAILURE_EXIT_CODE,
53 SOCKET_FAILURE_SIGNAL,
54 SOCKET_FAILURE_CORE_DUMP,
6bf0f408 55 SOCKET_FAILURE_SERVICE_START_LIMIT_HIT,
cfc4eb4c
LP
56 _SOCKET_RESULT_MAX,
57 _SOCKET_RESULT_INVALID = -1
58} SocketResult;
59
01f78473 60typedef struct SocketPort {
718db961
LP
61 Socket *socket;
62
542563ba 63 SocketType type;
9d58f1db 64 int fd;
15087cdb
PS
65 int *auxiliary_fds;
66 int n_auxiliary_fds;
542563ba
LP
67
68 SocketAddress address;
69 char *path;
718db961 70 sd_event_source *event_source;
542563ba 71
01f78473
LP
72 LIST_FIELDS(struct SocketPort, port);
73} SocketPort;
542563ba 74
5cb5a6ff 75struct Socket {
ac155bb8 76 Unit meta;
5cb5a6ff 77
542563ba
LP
78 LIST_HEAD(SocketPort, ports);
79
7fab9d01
LP
80 unsigned n_accepted;
81 unsigned n_connections;
82 unsigned max_connections;
83
542563ba 84 unsigned backlog;
209e9dcd 85 unsigned keep_alive_cnt;
034c6ed7 86 usec_t timeout_usec;
209e9dcd
SS
87 usec_t keep_alive_time;
88 usec_t keep_alive_interval;
cc567c9b 89 usec_t defer_accept;
034c6ed7 90
e537352b 91 ExecCommand* exec_command[_SOCKET_EXEC_COMMAND_MAX];
5cb5a6ff 92 ExecContext exec_context;
4819ff03 93 KillContext kill_context;
4ad49000 94 CGroupContext cgroup_context;
613b411c 95 ExecRuntime *exec_runtime;
5cb5a6ff 96
b15bdda8
LP
97 /* For Accept=no sockets refers to the one service we'll
98 activate. For Accept=yes sockets is either NULL, or filled
99 when the next service we spawn. */
57020a3a 100 UnitRef service;
034c6ed7 101
a16e1123 102 SocketState state, deserialized_state;
034c6ed7 103
718db961 104 sd_event_source *timer_event_source;
7fab9d01 105
034c6ed7 106 ExecCommand* control_command;
a16e1123 107 SocketExecCommand control_command_id;
5cb5a6ff
LP
108 pid_t control_pid;
109
7fab9d01
LP
110 mode_t directory_mode;
111 mode_t socket_mode;
4f2d528d 112
cfc4eb4c 113 SocketResult result;
7fab9d01 114
811ba7a0
LP
115 char **symlinks;
116
7fab9d01 117 bool accept;
bd1fe7c7 118 bool remove_on_stop;
55301ec0 119 bool writable;
4fd5948e 120
74bb646e
SS
121 int socket_protocol;
122
4fd5948e
LP
123 /* Socket options */
124 bool keep_alive;
4427c3f4 125 bool no_delay;
7fab9d01 126 bool free_bind;
6b6d2dee 127 bool transparent;
ec6370a2 128 bool broadcast;
d68af586 129 bool pass_cred;
54ecda32 130 bool pass_sec;
68667801
ZJS
131
132 /* Only for INET6 sockets: issue IPV6_V6ONLY sockopt */
133 SocketAddressBindIPv6Only bind_ipv6_only;
134
4fd5948e 135 int priority;
7fab9d01 136 int mark;
4fd5948e
LP
137 size_t receive_buffer;
138 size_t send_buffer;
139 int ip_tos;
140 int ip_ttl;
141 size_t pipe_size;
4fd5948e 142 char *bind_to_device;
cebf8b20 143 char *tcp_congestion;
718db961 144 bool reuse_port;
916abb21
LP
145 long mq_maxmsg;
146 long mq_msgsize;
57020a3a 147
0eb59ccf
AK
148 char *smack;
149 char *smack_ip_in;
150 char *smack_ip_out;
3900e5fd 151
16115b0a
MS
152 bool selinux_context_from_net;
153
3900e5fd 154 char *user, *group;
5ad096b3
LP
155
156 bool reset_cpu_usage:1;
8dd4c05b
LP
157
158 char *fdname;
5cb5a6ff
LP
159};
160
44d8db9e 161/* Called from the service code when collecting fds */
79c7626d 162int socket_collect_fds(Socket *s, int **fds);
44d8db9e 163
6cf6bbc2
LP
164/* Called from the service code when a per-connection service ended */
165void socket_connection_unref(Socket *s);
166
74051b9b
LP
167void socket_free_ports(Socket *s);
168
8dd4c05b
LP
169int socket_instantiate_service(Socket *s);
170
171char *socket_fdname(Socket *s);
172
87f0e418 173extern const UnitVTable socket_vtable;
5cb5a6ff 174
44a6b1b6
ZJS
175const char* socket_exec_command_to_string(SocketExecCommand i) _const_;
176SocketExecCommand socket_exec_command_from_string(const char *s) _pure_;
a16e1123 177
44a6b1b6
ZJS
178const char* socket_result_to_string(SocketResult i) _const_;
179SocketResult socket_result_from_string(const char *s) _pure_;
67419600 180
44a6b1b6 181const char* socket_port_type_to_string(SocketPort *p) _pure_;