blob: 594f7df1fa3d17e85a9599cb0c3832f29d18ff4b [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Server management functions.
3 *
Willy Tarreauc6ca1a02007-05-13 19:43:47 +02004 * Copyright 2000-2007 Willy Tarreau <w@1wt.eu>
Willy Tarreaubaaee002006-06-26 02:48:02 +02005 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
13#include <stdlib.h>
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020014
15#include <common/config.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020016#include <common/memory.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020017
18#include <types/backend.h>
19#include <types/capture.h>
20#include <types/log.h>
21#include <types/proxy.h>
22#include <types/server.h>
23
Willy Tarreau7341d942007-05-13 19:56:02 +020024#include <proto/buffers.h>
Willy Tarreau8d5d7f22007-01-21 19:16:41 +010025#include <proto/hdr_idx.h>
Willy Tarreau332f8bf2007-05-13 21:36:56 +020026#include <proto/log.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020027#include <proto/session.h>
28#include <proto/queue.h>
29
30
Willy Tarreauc6ca1a02007-05-13 19:43:47 +020031struct pool_head *pool2_session;
Willy Tarreaubaaee002006-06-26 02:48:02 +020032
33/*
34 * frees the context associated to a session. It must have been removed first.
35 */
36void session_free(struct session *s)
37{
Willy Tarreau4dbc4a22007-03-03 16:23:22 +010038 struct http_txn *txn = &s->txn;
Willy Tarreau632f5a72007-07-11 10:42:35 +020039 struct proxy *fe = s->fe;
Willy Tarreau0f7562b2007-01-07 15:46:13 +010040
Willy Tarreaubaaee002006-06-26 02:48:02 +020041 if (s->pend_pos)
42 pendconn_free(s->pend_pos);
43 if (s->req)
Willy Tarreau7341d942007-05-13 19:56:02 +020044 pool_free2(pool2_buffer, s->req);
Willy Tarreaubaaee002006-06-26 02:48:02 +020045 if (s->rep)
Willy Tarreau7341d942007-05-13 19:56:02 +020046 pool_free2(pool2_buffer, s->rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +020047
Willy Tarreau92fb9832007-10-16 17:34:28 +020048 if (fe) {
49 if (txn->hdr_idx.v != NULL)
50 pool_free2(fe->hdr_idx_pool, txn->hdr_idx.v);
Willy Tarreau41dff822007-01-01 23:32:30 +010051
Willy Tarreau92fb9832007-10-16 17:34:28 +020052 if (txn->rsp.cap != NULL) {
53 struct cap_hdr *h;
54 for (h = fe->rsp_cap; h; h = h->next) {
55 if (txn->rsp.cap[h->index] != NULL)
56 pool_free2(h->pool, txn->rsp.cap[h->index]);
57 }
58 pool_free2(fe->rsp_cap_pool, txn->rsp.cap);
Willy Tarreaubaaee002006-06-26 02:48:02 +020059 }
Willy Tarreau92fb9832007-10-16 17:34:28 +020060 if (txn->req.cap != NULL) {
61 struct cap_hdr *h;
62 for (h = fe->req_cap; h; h = h->next) {
63 if (txn->req.cap[h->index] != NULL)
64 pool_free2(h->pool, txn->req.cap[h->index]);
65 }
66 pool_free2(fe->req_cap_pool, txn->req.cap);
Willy Tarreaubaaee002006-06-26 02:48:02 +020067 }
Willy Tarreaubaaee002006-06-26 02:48:02 +020068 }
Willy Tarreau3bac9ff2007-03-18 17:31:28 +010069 if (txn->uri)
Willy Tarreau332f8bf2007-05-13 21:36:56 +020070 pool_free2(pool2_requri, txn->uri);
Willy Tarreau3bac9ff2007-03-18 17:31:28 +010071 if (txn->cli_cookie)
Willy Tarreau086b3b42007-05-13 21:45:51 +020072 pool_free2(pool2_capture, txn->cli_cookie);
Willy Tarreau3bac9ff2007-03-18 17:31:28 +010073 if (txn->srv_cookie)
Willy Tarreau086b3b42007-05-13 21:45:51 +020074 pool_free2(pool2_capture, txn->srv_cookie);
Willy Tarreaubaaee002006-06-26 02:48:02 +020075
Willy Tarreauc6ca1a02007-05-13 19:43:47 +020076 pool_free2(pool2_session, s);
Willy Tarreau632f5a72007-07-11 10:42:35 +020077
78 /* We may want to free the maximum amount of pools if the proxy is stopping */
Willy Tarreau92fb9832007-10-16 17:34:28 +020079 if (fe && unlikely(fe->state == PR_STSTOPPED)) {
Willy Tarreau632f5a72007-07-11 10:42:35 +020080 if (pool2_buffer)
81 pool_flush2(pool2_buffer);
82 if (fe->hdr_idx_pool)
83 pool_flush2(fe->hdr_idx_pool);
84 if (pool2_requri)
85 pool_flush2(pool2_requri);
86 if (pool2_capture)
87 pool_flush2(pool2_capture);
88 if (pool2_session)
89 pool_flush2(pool2_session);
90 if (fe->req_cap_pool)
91 pool_flush2(fe->req_cap_pool);
92 if (fe->rsp_cap_pool)
93 pool_flush2(fe->rsp_cap_pool);
94 }
Willy Tarreauc6ca1a02007-05-13 19:43:47 +020095}
96
97
98/* perform minimal intializations, report 0 in case of error, 1 if OK. */
99int init_session()
100{
101 pool2_session = create_pool("session", sizeof(struct session), MEM_F_SHARED);
102 return pool2_session != NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200103}
104
Willy Tarreau30e71012007-11-26 20:15:35 +0100105void session_process_counters(struct session *s)
106{
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100107 unsigned long long bytes;
108
Willy Tarreau30e71012007-11-26 20:15:35 +0100109 if (s->req) {
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100110 bytes = s->req->total - s->logs.bytes_in;
Willy Tarreau30e71012007-11-26 20:15:35 +0100111 s->logs.bytes_in = s->req->total;
112 if (bytes) {
113 s->fe->bytes_in += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100114
Willy Tarreau30e71012007-11-26 20:15:35 +0100115 if (s->be != s->fe)
116 s->be->bytes_in += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100117
Willy Tarreau30e71012007-11-26 20:15:35 +0100118 if (s->srv)
119 s->srv->bytes_in += bytes;
120 }
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100121 }
122
Willy Tarreau30e71012007-11-26 20:15:35 +0100123 if (s->rep) {
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100124 bytes = s->rep->total - s->logs.bytes_out;
Willy Tarreau30e71012007-11-26 20:15:35 +0100125 s->logs.bytes_out = s->rep->total;
126 if (bytes) {
127 s->fe->bytes_out += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100128
Willy Tarreau30e71012007-11-26 20:15:35 +0100129 if (s->be != s->fe)
130 s->be->bytes_out += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100131
Willy Tarreau30e71012007-11-26 20:15:35 +0100132 if (s->srv)
133 s->srv->bytes_out += bytes;
134 }
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100135 }
136}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200137
138/*
139 * Local variables:
140 * c-indent-level: 8
141 * c-basic-offset: 8
142 * End:
143 */