X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fsocket.h;h=6470d8b63e6f1119209e388ea6dbfc6dab17c60b;hb=b8b5e648cacc8d73c55fdffbb3466ecd8146131a;hp=de3e913f7cd787dc8826036bb9c10c3873bb939f;hpb=0213c3f8102bdc934c629d11a44ca0b408762287;p=elogind.git diff --git a/src/socket.h b/src/socket.h index de3e913f7..6470d8b63 100644 --- a/src/socket.h +++ b/src/socket.h @@ -1,4 +1,4 @@ -/*-*- Mode: C; c-basic-offset: 8 -*-*/ +/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/ #ifndef foosockethfoo #define foosockethfoo @@ -28,6 +28,7 @@ typedef struct Socket Socket; #include "unit.h" #include "socket-util.h" #include "mount.h" +#include "service.h" typedef enum SocketState { SOCKET_DEAD, @@ -41,7 +42,7 @@ typedef enum SocketState { SOCKET_STOP_POST, SOCKET_FINAL_SIGTERM, SOCKET_FINAL_SIGKILL, - SOCKET_MAINTENANCE, + SOCKET_FAILED, _SOCKET_STATE_MAX, _SOCKET_STATE_INVALID = -1 } SocketState; @@ -58,10 +59,24 @@ typedef enum SocketExecCommand { typedef enum SocketType { SOCKET_SOCKET, SOCKET_FIFO, + SOCKET_SPECIAL, + SOCKET_MQUEUE, _SOCKET_FIFO_MAX, _SOCKET_FIFO_INVALID = -1 } SocketType; +typedef enum SocketResult { + SOCKET_SUCCESS, + SOCKET_FAILURE_RESOURCES, + SOCKET_FAILURE_TIMEOUT, + SOCKET_FAILURE_EXIT_CODE, + SOCKET_FAILURE_SIGNAL, + SOCKET_FAILURE_CORE_DUMP, + SOCKET_FAILURE_SERVICE_FAILED_PERMANENT, + _SOCKET_RESULT_MAX, + _SOCKET_RESULT_INVALID = -1 +} SocketResult; + typedef struct SocketPort { SocketType type; int fd; @@ -74,52 +89,76 @@ typedef struct SocketPort { } SocketPort; struct Socket { - Meta meta; + Unit meta; LIST_HEAD(SocketPort, ports); - /* Only for INET6 sockets: issue IPV6_V6ONLY sockopt */ - SocketAddressBindIPv6Only bind_ipv6_only; - unsigned backlog; + unsigned n_accepted; + unsigned n_connections; + unsigned max_connections; + unsigned backlog; usec_t timeout_usec; ExecCommand* exec_command[_SOCKET_EXEC_COMMAND_MAX]; ExecContext exec_context; - Service *service; + /* For Accept=no sockets refers to the one service we'll + activate. For Accept=yes sockets is either NULL, or filled + when the next service we spawn. */ + UnitRef service; SocketState state, deserialized_state; - KillMode kill_mode; + Watch timer_watch; ExecCommand* control_command; SocketExecCommand control_command_id; pid_t control_pid; - char *bind_to_device; mode_t directory_mode; mode_t socket_mode; - char *tcpwrap_name; + SocketResult result; bool accept; - unsigned n_accepted; - bool failure; - Watch timer_watch; + /* Socket options */ + bool keep_alive; + bool free_bind; + bool transparent; + bool broadcast; + bool pass_cred; + bool pass_sec; + int priority; + int mark; + size_t receive_buffer; + size_t send_buffer; + int ip_tos; + int ip_ttl; + size_t pipe_size; + char *bind_to_device; + char *tcp_congestion; + long mq_maxmsg; + long mq_msgsize; + + /* Only for INET6 sockets: issue IPV6_V6ONLY sockopt */ + SocketAddressBindIPv6Only bind_ipv6_only; }; /* Called from the service code when collecting fds */ int socket_collect_fds(Socket *s, int **fds, unsigned *n_fds); /* Called from the service when it shut down */ -void socket_notify_service_dead(Socket *s); +void socket_notify_service_dead(Socket *s, bool failed_permanent); /* Called from the mount code figure out if a mount is a dependency of * any of the sockets of this socket */ int socket_add_one_mount_link(Socket *s, Mount *m); +/* Called from the service code when a per-connection service ended */ +void socket_connection_unref(Socket *s); + extern const UnitVTable socket_vtable; const char* socket_state_to_string(SocketState i); @@ -128,4 +167,7 @@ SocketState socket_state_from_string(const char *s); const char* socket_exec_command_to_string(SocketExecCommand i); SocketExecCommand socket_exec_command_from_string(const char *s); +const char* socket_result_to_string(SocketResult i); +SocketResult socket_result_from_string(const char *s); + #endif