summaryrefslogtreecommitdiffhomepage
path: root/src/nxt_process_chan.c
blob: 4fcc1a15e103bc5a44f066e0129c8edf69eed45f (plain) (blame)
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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263

/*
 * Copyright (C) Igor Sysoev
 * Copyright (C) NGINX, Inc.
 */

#include <nxt_main.h>
#include <nxt_cycle.h>
#include <nxt_process_chan.h>


static void nxt_process_chan_handler(nxt_thread_t *thr,
    nxt_chan_recv_msg_t *msg);
static void nxt_process_new_chan_buf_completion(nxt_thread_t *thr, void *obj,
    void *data);


void
nxt_process_chan_create(nxt_thread_t *thr, nxt_process_chan_t *proc,
    nxt_process_chan_handler_t *handlers)
{
    proc->pid = nxt_pid;
    proc->engine = thr->engine->id;
    proc->chan->handler = nxt_process_chan_handler;
    proc->chan->data = handlers;

    nxt_chan_write_close(proc->chan);
    nxt_chan_read_enable(thr, proc->chan);
}


void
nxt_process_chan_write(nxt_cycle_t *cycle, nxt_uint_t type, nxt_fd_t fd,
    uint32_t stream, nxt_buf_t *b)
{
    nxt_uint_t          i, n;
    nxt_process_chan_t  *proc;

    proc = cycle->processes->elts;
    n = cycle->processes->nelts;

    for (i = 0; i < n; i++) {
        if (nxt_pid != proc[i].pid) {
            (void) nxt_chan_write(proc[i].chan, type, fd, stream, b);
        }
    }
}


static void
nxt_process_chan_handler(nxt_thread_t *thr, nxt_chan_recv_msg_t *msg)
{
    nxt_process_chan_handler_t  *handlers;

    if (nxt_fast_path(msg->type <= NXT_CHAN_MSG_MAX)) {

        nxt_log_debug(thr->log, "chan %d: message type:%uD",
                      msg->chan->socket.fd, msg->type);

        handlers = msg->chan->data;
        handlers[msg->type](thr, msg);

        return;
    }

    nxt_log_alert(thr->log, "chan %d: unknown message type:%uD",
                  msg->chan->socket.fd, msg->type);
}


void
nxt_process_chan_quit_handler(nxt_thread_t *thr, nxt_chan_recv_msg_t *msg)
{
    nxt_cycle_quit(thr, NULL);
}


void
nxt_process_new_chan(nxt_cycle_t *cycle, nxt_process_chan_t *proc)
{
    nxt_buf_t                *b;
    nxt_uint_t               i, n;
    nxt_process_chan_t       *p;
    nxt_proc_msg_new_chan_t  *new_chan;

    n = cycle->processes->nelts;
    if (n == 0) {
        return;
    }

    nxt_thread_log_debug("new chan %d for process %PI engine %uD",
                         proc->chan->socket.fd, proc->pid, proc->engine);

    p = cycle->processes->elts;

    for (i = 0; i < n; i++) {

        if (proc->pid == p[i].pid || nxt_pid == p[i].pid || p[i].engine != 0) {
            continue;
        }

        b = nxt_buf_mem_alloc(p[i].chan->mem_pool,
                              sizeof(nxt_process_chan_data_t), 0);

        if (nxt_slow_path(b == NULL)) {
            continue;
        }

        b->data = p[i].chan;
        b->completion_handler = nxt_process_new_chan_buf_completion;
        b->mem.free += sizeof(nxt_proc_msg_new_chan_t);
        new_chan = (nxt_proc_msg_new_chan_t *) b->mem.pos;

        new_chan->pid = proc->pid;
        new_chan->engine = proc->engine;
        new_chan->max_size = p[i].chan->max_size;
        new_chan->max_share = p[i].chan->max_share;

        (void) nxt_chan_write(p[i].chan, NXT_CHAN_MSG_NEW_CHAN,
                              proc->chan->socket.fd, 0, b);
    }
}


static void
nxt_process_new_chan_buf_completion(nxt_thread_t *thr, void *obj, void *data)
{
    nxt_buf_t   *b;
    nxt_chan_t  *chan;

    b = obj;
    chan = b->data;

    /* TODO: b->mem.pos */

    nxt_buf_free(chan->mem_pool, b);
}


void
nxt_process_chan_new_handler(nxt_thread_t *thr, nxt_chan_recv_msg_t *msg)
{
    nxt_chan_t               *chan;
    nxt_cycle_t              *cycle;
    nxt_process_chan_t       *proc;
    nxt_proc_msg_new_chan_t  *new_chan;

    cycle = nxt_thread_cycle();

    proc = nxt_array_add(cycle->processes);
    if (nxt_slow_path(proc == NULL)) {
        return;
    }

    chan = nxt_chan_alloc();
    if (nxt_slow_path(chan == NULL)) {
        return;
    }

    proc->chan = chan;

    new_chan = (nxt_proc_msg_new_chan_t *) msg->buf->mem.pos;
    msg->buf->mem.pos = msg->buf->mem.free;

    nxt_log_debug(thr->log, "new chan %d received for process %PI engine %uD",
                  msg->fd, new_chan->pid, new_chan->engine);

    proc->pid = new_chan->pid;
    proc->engine = new_chan->engine;
    chan->pair[1] = msg->fd;
    chan->max_size = new_chan->max_size;
    chan->max_share = new_chan->max_share;

    /* A read chan is not passed at all. */
    nxt_chan_write_enable(thr, chan);
}


void
nxt_process_chan_change_log_file(nxt_cycle_t *cycle, nxt_uint_t slot,
    nxt_fd_t fd)
{
    nxt_buf_t           *b;
    nxt_uint_t          i, n;
    nxt_process_chan_t  *p;

    n = cycle->processes->nelts;
    if (n == 0) {
        return;
    }

    nxt_thread_log_debug("change log file #%ui fd:%FD", slot, fd);

    p = cycle->processes->elts;

    /* p[0] is master process. */

    for (i = 1; i < n; i++) {
        b = nxt_buf_mem_alloc(p[i].chan->mem_pool,
                              sizeof(nxt_process_chan_data_t), 0);

        if (nxt_slow_path(b == NULL)) {
            continue;
        }

        *(nxt_uint_t *) b->mem.pos = slot;
        b->mem.free += sizeof(nxt_uint_t);

        (void) nxt_chan_write(p[i].chan, NXT_CHAN_MSG_CHANGE_FILE, fd, 0, b);
    }
}


void
nxt_process_chan_change_log_file_handler(nxt_thread_t *thr,
    nxt_chan_recv_msg_t *msg)
{
    nxt_buf_t    *b;
    nxt_uint_t   slot;
    nxt_file_t   *log_file;
    nxt_cycle_t  *cycle;

    cycle = nxt_thread_cycle();

    b = msg->buf;
    slot = *(nxt_uint_t *) b->mem.pos;

    log_file = nxt_list_elt(cycle->log_files, slot);

    nxt_log_debug(thr->log, "change log file %FD:%FD", msg->fd, log_file->fd);

    /*
     * The old log file descriptor must be closed at the moment when no
     * other threads use it.  dup2() allows to use the old file descriptor
     * for new log file.  This change is performed atomically in the kernel.
     */
    if (nxt_file_redirect(log_file, msg->fd) == NXT_OK) {

        if (slot == 0) {
            (void) nxt_file_stderr(log_file);
        }
    }
}


void
nxt_process_chan_data_handler(nxt_thread_t *thr, nxt_chan_recv_msg_t *msg)
{
    nxt_buf_t  *b;

    b = msg->buf;

    nxt_log_debug(thr->log, "data: %*s", b->mem.free - b->mem.pos, b->mem.pos);

    b->mem.pos = b->mem.free;
}


void
nxt_process_chan_empty_handler(nxt_thread_t *thr, nxt_chan_recv_msg_t *msg)
{
    nxt_log_debug(thr->log, "chan empty handler");
}