2010-01-23 03:52:57 +03:00
/*-*- Mode: C; c-basic-offset: 8 -*-*/
# ifndef foosockethfoo
# define foosockethfoo
2010-02-03 15:03:47 +03:00
/***
This file is part of systemd .
Copyright 2010 Lennart Poettering
systemd is free software ; you can redistribute it and / or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation ; either version 2 of the License , or
( at your option ) any later version .
systemd is distributed in the hope that it will be useful , but
WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the GNU
General Public License for more details .
You should have received a copy of the GNU General Public License
along with systemd ; If not , see < http : //www.gnu.org/licenses/>.
* * */
2010-01-23 03:52:57 +03:00
typedef struct Socket Socket ;
2010-01-27 06:31:52 +03:00
# include "manager.h"
2010-01-26 23:39:06 +03:00
# include "unit.h"
2010-01-23 05:35:54 +03:00
# include "socket-util.h"
2010-01-23 03:52:57 +03:00
typedef enum SocketState {
SOCKET_DEAD ,
SOCKET_START_PRE ,
SOCKET_START_POST ,
SOCKET_LISTENING ,
SOCKET_RUNNING ,
SOCKET_STOP_PRE ,
2010-01-26 06:18:44 +03:00
SOCKET_STOP_PRE_SIGTERM ,
SOCKET_STOP_PRE_SIGKILL ,
2010-01-23 03:52:57 +03:00
SOCKET_STOP_POST ,
2010-04-13 04:06:27 +04:00
SOCKET_FINAL_SIGTERM ,
SOCKET_FINAL_SIGKILL ,
2010-01-23 03:52:57 +03:00
SOCKET_MAINTAINANCE ,
2010-04-10 19:53:17 +04:00
_SOCKET_STATE_MAX ,
_SOCKET_STATE_INVALID = - 1
2010-01-23 03:52:57 +03:00
} SocketState ;
typedef enum SocketExecCommand {
SOCKET_EXEC_START_PRE ,
SOCKET_EXEC_START_POST ,
SOCKET_EXEC_STOP_PRE ,
SOCKET_EXEC_STOP_POST ,
2010-04-10 19:53:17 +04:00
_SOCKET_EXEC_COMMAND_MAX ,
_SOCKET_EXEC_COMMAND_INVALID = - 1
2010-01-23 03:52:57 +03:00
} SocketExecCommand ;
2010-01-23 05:35:54 +03:00
typedef enum SocketType {
SOCKET_SOCKET ,
2010-04-10 19:53:17 +04:00
SOCKET_FIFO ,
_SOCKET_FIFO_MAX ,
_SOCKET_FIFO_INVALID = - 1
2010-01-23 05:35:54 +03:00
} SocketType ;
typedef struct SocketPort SocketPort ;
struct SocketPort {
SocketType type ;
SocketAddress address ;
char * path ;
int fd ;
2010-01-27 06:31:52 +03:00
Watch fd_watch ;
2010-01-23 05:35:54 +03:00
2010-01-26 06:18:44 +03:00
LIST_FIELDS ( SocketPort , port ) ;
2010-01-23 05:35:54 +03:00
} ;
2010-01-23 03:52:57 +03:00
struct Socket {
Meta meta ;
2010-01-23 05:35:54 +03:00
LIST_HEAD ( SocketPort , ports ) ;
/* Only for INET6 sockets: issue IPV6_V6ONLY sockopt */
bool bind_ipv6_only ;
unsigned backlog ;
2010-01-23 03:52:57 +03:00
2010-01-26 06:18:44 +03:00
usec_t timeout_usec ;
2010-04-10 19:53:17 +04:00
ExecCommand * exec_command [ _SOCKET_EXEC_COMMAND_MAX ] ;
2010-01-23 03:52:57 +03:00
ExecContext exec_context ;
2010-01-26 06:18:44 +03:00
Service * service ;
SocketState state ;
2010-04-08 02:52:14 +04:00
KillMode kill_mode ;
2010-01-26 06:18:44 +03:00
ExecCommand * control_command ;
2010-01-23 03:52:57 +03:00
pid_t control_pid ;
2010-01-27 06:31:52 +03:00
char * bind_to_device ;
2010-02-12 04:02:14 +03:00
mode_t directory_mode ;
mode_t socket_mode ;
2010-01-27 06:31:52 +03:00
2010-04-15 08:19:54 +04:00
bool accept ;
unsigned n_accepted ;
2010-01-26 06:18:44 +03:00
bool failure ;
2010-01-27 06:31:52 +03:00
Watch timer_watch ;
2010-01-23 03:52:57 +03:00
} ;
2010-01-26 09:02:51 +03:00
/* Called from the service code when collecting fds */
int socket_collect_fds ( Socket * s , int * * fds , unsigned * n_fds ) ;
2010-01-27 08:19:48 +03:00
/* Called from the service when it shut down */
void socket_notify_service_dead ( Socket * s ) ;
2010-01-26 23:39:06 +03:00
extern const UnitVTable socket_vtable ;
2010-01-23 03:52:57 +03:00
# endif