blob: 3ea4b9221fe020e02a60b5ac0eeb16a9db1fd553 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Server management functions.
3 *
4 * Copyright 2000-2006 Willy Tarreau <w@1wt.eu>
5 *
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 Tarreau8d5d7f22007-01-21 19:16:41 +010024#include <proto/hdr_idx.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020025#include <proto/session.h>
26#include <proto/queue.h>
27
28
29void **pool_session = NULL;
30
31/*
32 * frees the context associated to a session. It must have been removed first.
33 */
34void session_free(struct session *s)
35{
Willy Tarreau4dbc4a22007-03-03 16:23:22 +010036 struct http_txn *txn = &s->txn;
Willy Tarreau0f7562b2007-01-07 15:46:13 +010037
Willy Tarreaubaaee002006-06-26 02:48:02 +020038 if (s->pend_pos)
39 pendconn_free(s->pend_pos);
40 if (s->req)
41 pool_free(buffer, s->req);
42 if (s->rep)
43 pool_free(buffer, s->rep);
44
Willy Tarreau4dbc4a22007-03-03 16:23:22 +010045 if (txn->hdr_idx.v != NULL)
46 pool_free_to(s->fe->hdr_idx_pool, txn->hdr_idx.v);
Willy Tarreau41dff822007-01-01 23:32:30 +010047
Willy Tarreau4dbc4a22007-03-03 16:23:22 +010048 if (txn->rsp.cap != NULL) {
Willy Tarreaubaaee002006-06-26 02:48:02 +020049 struct cap_hdr *h;
Willy Tarreau830ff452006-12-17 19:31:23 +010050 for (h = s->fe->fiprm->rsp_cap; h; h = h->next) {
Willy Tarreau4dbc4a22007-03-03 16:23:22 +010051 if (txn->rsp.cap[h->index] != NULL)
52 pool_free_to(h->pool, txn->rsp.cap[h->index]);
Willy Tarreaubaaee002006-06-26 02:48:02 +020053 }
Willy Tarreau4dbc4a22007-03-03 16:23:22 +010054 pool_free_to(s->fe->fiprm->rsp_cap_pool, txn->rsp.cap);
Willy Tarreaubaaee002006-06-26 02:48:02 +020055 }
Willy Tarreau4dbc4a22007-03-03 16:23:22 +010056 if (txn->req.cap != NULL) {
Willy Tarreaubaaee002006-06-26 02:48:02 +020057 struct cap_hdr *h;
Willy Tarreau830ff452006-12-17 19:31:23 +010058 for (h = s->fe->fiprm->req_cap; h; h = h->next) {
Willy Tarreau4dbc4a22007-03-03 16:23:22 +010059 if (txn->req.cap[h->index] != NULL)
60 pool_free_to(h->pool, txn->req.cap[h->index]);
Willy Tarreaubaaee002006-06-26 02:48:02 +020061 }
Willy Tarreau4dbc4a22007-03-03 16:23:22 +010062 pool_free_to(s->fe->fiprm->req_cap_pool, txn->req.cap);
Willy Tarreaubaaee002006-06-26 02:48:02 +020063 }
64
Willy Tarreau3bac9ff2007-03-18 17:31:28 +010065 if (txn->uri)
66 pool_free(requri, txn->uri);
67 if (txn->cli_cookie)
68 pool_free(capture, txn->cli_cookie);
69 if (txn->srv_cookie)
70 pool_free(capture, txn->srv_cookie);
Willy Tarreaubaaee002006-06-26 02:48:02 +020071
72 pool_free(session, s);
73}
74
75
76/*
77 * Local variables:
78 * c-indent-level: 8
79 * c-basic-offset: 8
80 * End:
81 */