chiark / gitweb /
logind: create private subdirectory for X11 socket
[elogind.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
32 typedef enum SocketState {
33         SOCKET_DEAD,
34         SOCKET_START_PRE,
35         SOCKET_START_POST,
36         SOCKET_LISTENING,
37         SOCKET_RUNNING,
38         SOCKET_STOP_PRE,
39         SOCKET_STOP_PRE_SIGTERM,
40         SOCKET_STOP_PRE_SIGKILL,
41         SOCKET_STOP_POST,
42         SOCKET_FINAL_SIGTERM,
43         SOCKET_FINAL_SIGKILL,
44         SOCKET_FAILED,
45         _SOCKET_STATE_MAX,
46         _SOCKET_STATE_INVALID = -1
47 } SocketState;
48
49 typedef enum SocketExecCommand {
50         SOCKET_EXEC_START_PRE,
51         SOCKET_EXEC_START_POST,
52         SOCKET_EXEC_STOP_PRE,
53         SOCKET_EXEC_STOP_POST,
54         _SOCKET_EXEC_COMMAND_MAX,
55         _SOCKET_EXEC_COMMAND_INVALID = -1
56 } SocketExecCommand;
57
58 typedef enum SocketType {
59         SOCKET_SOCKET,
60         SOCKET_FIFO,
61         SOCKET_SPECIAL,
62         SOCKET_MQUEUE,
63         _SOCKET_FIFO_MAX,
64         _SOCKET_FIFO_INVALID = -1
65 } SocketType;
66
67 typedef struct SocketPort {
68         SocketType type;
69         int fd;
70
71         SocketAddress address;
72         char *path;
73         Watch fd_watch;
74
75         LIST_FIELDS(struct SocketPort, port);
76 } SocketPort;
77
78 struct Socket {
79         Meta meta;
80
81         LIST_HEAD(SocketPort, ports);
82
83         unsigned n_accepted;
84         unsigned n_connections;
85         unsigned max_connections;
86
87         unsigned backlog;
88         usec_t timeout_usec;
89
90         ExecCommand* exec_command[_SOCKET_EXEC_COMMAND_MAX];
91         ExecContext exec_context;
92
93         /* For Accept=no sockets refers to the one service we'll
94         activate. For Accept=yes sockets is either NULL, or filled
95         when the next service we spawn. */
96         Service *service;
97
98         SocketState state, deserialized_state;
99
100         Watch timer_watch;
101
102         ExecCommand* control_command;
103         SocketExecCommand control_command_id;
104         pid_t control_pid;
105
106         /* Only for INET6 sockets: issue IPV6_V6ONLY sockopt */
107         SocketAddressBindIPv6Only bind_ipv6_only;
108
109         mode_t directory_mode;
110         mode_t socket_mode;
111
112         bool failure;
113
114         bool accept;
115
116         /* Socket options */
117         bool keep_alive;
118         bool free_bind;
119         bool transparent;
120         bool broadcast;
121         int priority;
122         int mark;
123         size_t receive_buffer;
124         size_t send_buffer;
125         int ip_tos;
126         int ip_ttl;
127         size_t pipe_size;
128         char *bind_to_device;
129         char *tcp_congestion;
130         long mq_maxmsg;
131         long mq_msgsize;
132 };
133
134 /* Called from the service code when collecting fds */
135 int socket_collect_fds(Socket *s, int **fds, unsigned *n_fds);
136
137 /* Called from the service when it shut down */
138 void socket_notify_service_dead(Socket *s);
139
140 /* Called from the mount code figure out if a mount is a dependency of
141  * any of the sockets of this socket */
142 int socket_add_one_mount_link(Socket *s, Mount *m);
143
144 /* Called from the service code when a per-connection service ended */
145 void socket_connection_unref(Socket *s);
146
147 extern const UnitVTable socket_vtable;
148
149 const char* socket_state_to_string(SocketState i);
150 SocketState socket_state_from_string(const char *s);
151
152 const char* socket_exec_command_to_string(SocketExecCommand i);
153 SocketExecCommand socket_exec_command_from_string(const char *s);
154
155 #endif