summaryrefslogtreecommitdiff
path: root/src/server/client.c
blob: 29ee1973f3e35e32fe2404c62f8c6c4d2749f6e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
/* ISC license. */

#include <errno.h>
#include <string.h>
#include <stdint.h>
#include <unistd.h>

#include <skalibs/alloc.h>
#include <skalibs/error.h>
#include <skalibs/strerr2.h>
#include <skalibs/tai.h>
#include <skalibs/djbunix.h>
#include <skalibs/iopause.h>
#include <skalibs/textmessage.h>

#include <s6-rc/connection-common.h>
#include "command.h"
#include "main.h"
#include "client.h"

 /*
    We can't use gensetdyn for client storage, because
    c->connection.in has a pointer to c->connection.inbuf
    and gensetdyn can relocate the whole thing on realloc;
    also, having a sentinel is too costly (client_t is big).
    So we use an OG linked list, with all the boundary value
    problems it brings.
 */

tain_t client_answer_tto = TAIN_INFINITE ;
client_t *client_head = 0 ;
uint32_t client_connections = 0 ;
uint32_t client_monitors = 0 ;

static inline int ismonitored (client_t *c)
{
  return textmessage_sender_fd(&c->monitor) >= 0 ;
}

static inline void client_free (client_t *c)
{
  monitor_finish(c) ;
  fd_close(textmessage_sender_fd(&c->connection.out)) ;
  textmessage_sender_free(&c->connection.out) ;
  textmessage_receiver_free(&c->connection.in) ;
  alloc_free(c) ;
}

void client_yoink (client_t **c)
{
  client_t *prev = (*c)->prev ;
  if (prev) prev->next = (*c)->next ; else client_head = (*c)->next ;
  if ((*c)->next) (*c)->next->prev = prev ;
  if (ismonitored(*c)) client_monitors-- ;
  client_free(*c) ;
  *c = prev ;
  client_connections-- ;
}

int client_prepare_iopause (client_t *c, tain_t *deadline, iopause_fd *x, uint32_t *j)
{
  if (!textmessage_sender_isempty(&c->connection.out) || !textmessage_receiver_isempty(&c->connection.in) || (!flags.lameduck && !textmessage_receiver_isfull(&c->connection.in)))
  {
    x[*j].fd = textmessage_sender_fd(&c->connection.out) ;
    x[*j].events = (!textmessage_receiver_isempty(&c->connection.in) || (!flags.lameduck && !textmessage_receiver_isfull(&c->connection.in)) ? IOPAUSE_READ : 0) | (!textmessage_sender_isempty(&c->connection.out) ? IOPAUSE_WRITE : 0) ;
    c->xindex[0] = (*j)++ ;
  }
  else c->xindex[0] = 0 ;
  if (ismonitored(c) && !textmessage_sender_isempty(&c->monitor))
  {
    x[*j].fd = textmessage_sender_fd(&c->monitor) ;
    x[*j].events = IOPAUSE_WRITE ;
    c->xindex[1] = (*j)++ ;
  }
  else c->xindex[1] = 0 ;
  if (!textmessage_sender_isempty(&c->connection.out) || (ismonitored(c) && !textmessage_sender_isempty(&c->monitor)))
  {
    tain_t foo ;
    tain_add_g(&foo, &client_answer_tto) ;
    if (tain_less(&foo, deadline)) *deadline = foo ;
  }
  return !!c->xindex[0] || !!c->xindex[1] ;
}

int client_add (int fd, uint8_t perms)
{
  client_t *c = alloc(sizeof(client_t)) ;
  if (!c) return 0 ;
  c->xindex[0] = c->xindex[1] = 0 ;
  c->perms = perms ;
  c->monitor = textmessage_sender_zero ;
  textmessage_sender_init(&c->connection.out, fd) ;
  textmessage_receiver_init(&c->connection.in, fd, &c->connection.inbuf, S6RC_CONNECTION_BUFSIZE) ;
  c->prev = 0 ;
  c->next = client_head ;
  if (c->next) c->next->prev = c ;
  client_head = c ;
  client_connections++ ;
  return 1 ;
}

int client_flush (client_t *c, iopause_fd const *x)
{
  int ok = 1 ;
  if (c->xindex[0] && (x[c->xindex[0]].revents & IOPAUSE_WRITE))
  {
    if (!textmessage_sender_flush(&c->connection.out) && !error_isagain(errno))
      ok = 0 ;
  }
  if (ismonitored(c) && c->xindex[1] && (x[c->xindex[1]].revents & IOPAUSE_WRITE))
  {
    if (!textmessage_sender_flush(&c->monitor) && !error_isagain(errno))
      monitor_finish(c) ;
  }
  return ok ;
}

int client_read (client_t *c, iopause_fd const *x)
{
  return !textmessage_receiver_isempty(&c->connection.in) || (c->xindex[0] && (x[c->xindex[0]].revents & IOPAUSE_READ)) ?
    textmessage_handle(&c->connection.in, command_handle, c) > 0 : 1 ;
}

void monitor_finish (client_t *c)
{
  if (!ismonitored(c)) return ;
  fd_close(textmessage_sender_fd(&c->monitor)) ;
  textmessage_sender_free(&c->monitor) ;
  c->monitor = textmessage_sender_zero ;
  client_monitors-- ;
}

void monitor_put (uint32_t v, char const *s, size_t len)
{
  if (!client_monitors) return ;
  for (client_t *c = client_head ; c ; c = c->next)
    if (ismonitored(c) && v >= c->monitor_verbosity)
      if (!textmessage_put(&c->monitor, s, len))
        strerr_diefu1sys("queue message to monitor") ;
}

void monitor_announce (uint32_t id, uint8_t state)
{
  char pack[6] = "E" ;
  if (!client_monitors) return ;
  uint32_pack_big(pack + 1, id) ;
  pack[5] = state ;
  for (client_t *c = client_head ; c ; c = c->next)
    if (ismonitored(c) && bitarray_peek(c->monitor_filter, id))
      if (!textmessage_put(&c->monitor, pack, 6))
        strerr_diefu1sys("queue message to monitor") ;
}