]> git.ipfire.org Git - people/ms/systemd.git/blame - socket.h
execute: typo fix
[people/ms/systemd.git] / 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"
5cb5a6ff
LP
30
31typedef enum SocketState {
32 SOCKET_DEAD,
33 SOCKET_START_PRE,
34 SOCKET_START_POST,
35 SOCKET_LISTENING,
36 SOCKET_RUNNING,
37 SOCKET_STOP_PRE,
034c6ed7
LP
38 SOCKET_STOP_PRE_SIGTERM,
39 SOCKET_STOP_PRE_SIGKILL,
5cb5a6ff 40 SOCKET_STOP_POST,
80876c20
LP
41 SOCKET_FINAL_SIGTERM,
42 SOCKET_FINAL_SIGKILL,
5cb5a6ff 43 SOCKET_MAINTAINANCE,
e537352b
LP
44 _SOCKET_STATE_MAX,
45 _SOCKET_STATE_INVALID = -1
5cb5a6ff
LP
46} SocketState;
47
48typedef enum SocketExecCommand {
49 SOCKET_EXEC_START_PRE,
50 SOCKET_EXEC_START_POST,
51 SOCKET_EXEC_STOP_PRE,
52 SOCKET_EXEC_STOP_POST,
e537352b
LP
53 _SOCKET_EXEC_COMMAND_MAX,
54 _SOCKET_EXEC_COMMAND_INVALID = -1
5cb5a6ff
LP
55} SocketExecCommand;
56
542563ba
LP
57typedef enum SocketType {
58 SOCKET_SOCKET,
e537352b
LP
59 SOCKET_FIFO,
60 _SOCKET_FIFO_MAX,
61 _SOCKET_FIFO_INVALID = -1
542563ba
LP
62} SocketType;
63
64typedef struct SocketPort SocketPort;
65
66struct SocketPort {
67 SocketType type;
9d58f1db 68 int fd;
542563ba
LP
69
70 SocketAddress address;
71 char *path;
72
acbb0225 73 Watch fd_watch;
542563ba 74
034c6ed7 75 LIST_FIELDS(SocketPort, port);
542563ba
LP
76};
77
5cb5a6ff
LP
78struct Socket {
79 Meta meta;
80
542563ba
LP
81 LIST_HEAD(SocketPort, ports);
82
83 /* Only for INET6 sockets: issue IPV6_V6ONLY sockopt */
84 bool bind_ipv6_only;
85 unsigned backlog;
5cb5a6ff 86
034c6ed7
LP
87 usec_t timeout_usec;
88
e537352b 89 ExecCommand* exec_command[_SOCKET_EXEC_COMMAND_MAX];
5cb5a6ff
LP
90 ExecContext exec_context;
91
034c6ed7
LP
92 Service *service;
93
a16e1123 94 SocketState state, deserialized_state;
034c6ed7 95
50159e6a
LP
96 KillMode kill_mode;
97
034c6ed7 98 ExecCommand* control_command;
a16e1123 99 SocketExecCommand control_command_id;
5cb5a6ff
LP
100 pid_t control_pid;
101
acbb0225 102 char *bind_to_device;
b5a0699f
LP
103 mode_t directory_mode;
104 mode_t socket_mode;
acbb0225 105
4f2d528d
LP
106 bool accept;
107 unsigned n_accepted;
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
87f0e418 119extern const UnitVTable socket_vtable;
5cb5a6ff 120
a16e1123
LP
121const char* socket_state_to_string(SocketState i);
122SocketState socket_state_from_string(const char *s);
123
124const char* socket_exec_command_to_string(SocketExecCommand i);
125SocketExecCommand socket_exec_command_from_string(const char *s);
126
5cb5a6ff 127#endif