r3059: completely get rid of the MAX_CONNECTIONS limit, as a idle tree
[gd/samba-autobuild/.git] / source4 / smb_server / conn.c
1 /* 
2    Unix SMB/CIFS implementation.
3    Manage smbsrv_tcon structures
4    Copyright (C) Andrew Tridgell 1998
5    Copyright (C) Alexander Bokovoy 2002
6    
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11    
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16    
17    You should have received a copy of the GNU General Public License
18    along with this program; if not, write to the Free Software
19    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
21
22 #include "includes.h"
23
24 /****************************************************************************
25 init the tcon structures
26 ****************************************************************************/
27 void conn_init(struct smbsrv_connection *smb_conn)
28 {
29         smb_conn->tree.idtree_tid = idr_init(smb_conn);
30 }
31
32 /****************************************************************************
33 find a tcon given a cnum
34 ****************************************************************************/
35 struct smbsrv_tcon *conn_find(struct smbsrv_connection *smb_conn, uint_t cnum)
36 {
37         return idr_find(smb_conn->tree.idtree_tid, cnum);
38 }
39
40 /*
41   destroy a connection structure
42 */
43 static int conn_destructor(void *ptr)
44 {
45         struct smbsrv_tcon *tcon = ptr;
46         idr_remove(tcon->smb_conn->tree.idtree_tid, tcon->cnum);
47         DLIST_REMOVE(tcon->smb_conn->tree.tcons, tcon);
48         return 0;
49 }
50
51 /*
52   find first available connection slot
53 */
54 struct smbsrv_tcon *conn_new(struct smbsrv_connection *smb_conn)
55 {
56         struct smbsrv_tcon *tcon;
57         int i;
58
59         tcon = talloc_zero_p(smb_conn, struct smbsrv_tcon);
60         if (!tcon) return NULL;
61
62         i = idr_get_new(smb_conn->tree.idtree_tid, tcon, 0x10000);      
63         if (i == -1) {
64                 DEBUG(1,("ERROR! Out of connection structures\n"));            
65                 return NULL;
66         }
67
68         tcon->cnum = i;
69         tcon->smb_conn = smb_conn;
70
71         talloc_set_destructor(tcon, conn_destructor);
72
73         DLIST_ADD(smb_conn->tree.tcons, tcon);
74
75         return tcon;
76 }
77
78 /****************************************************************************
79 close all tcon structures
80 ****************************************************************************/
81 void conn_close_all(struct smbsrv_connection *smb_conn)
82 {
83         struct smbsrv_tcon *tcon, *next;
84         for (tcon=smb_conn->tree.tcons;tcon;tcon=next) {
85                 next=tcon->next;
86                 close_cnum(tcon);
87         }
88 }
89
90
91 /****************************************************************************
92  Free a tcon structure.
93 ****************************************************************************/
94 void conn_free(struct smbsrv_connection *smb_conn, struct smbsrv_tcon *tcon)
95 {
96         talloc_free(tcon);
97 }
98