r5102: This is a major simplification of the logic for controlling top level
[abartlet/samba.git/.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 #include "system/filesys.h"
24 #include "dlinklist.h"
25 #include "smb_server/smb_server.h"
26 #include "smbd/service_stream.h"
27
28
29 /****************************************************************************
30 init the tcon structures
31 ****************************************************************************/
32 void smbsrv_tcon_init(struct smbsrv_connection *smb_conn)
33 {
34         smb_conn->tree.idtree_tid = idr_init(smb_conn);
35 }
36
37 /****************************************************************************
38 find a tcon given a cnum
39 ****************************************************************************/
40 struct smbsrv_tcon *smbsrv_tcon_find(struct smbsrv_connection *smb_conn, uint_t tid)
41 {
42         return idr_find(smb_conn->tree.idtree_tid, tid);
43 }
44
45 /*
46   destroy a connection structure
47 */
48 static int smbsrv_tcon_destructor(void *ptr)
49 {
50         struct smbsrv_tcon *tcon = ptr;
51
52
53         DEBUG(3,("%s closed connection to service %s\n",
54                  socket_get_peer_addr(tcon->smb_conn->connection->socket, tcon),
55                  lp_servicename(SNUM(tcon))));
56
57         /* tell the ntvfs backend that we are disconnecting */
58         ntvfs_disconnect(tcon);
59
60         idr_remove(tcon->smb_conn->tree.idtree_tid, tcon->tid);
61         DLIST_REMOVE(tcon->smb_conn->tree.tcons, tcon);
62         return 0;
63 }
64
65 /*
66   find first available connection slot
67 */
68 struct smbsrv_tcon *smbsrv_tcon_new(struct smbsrv_connection *smb_conn)
69 {
70         struct smbsrv_tcon *tcon;
71         int i;
72
73         tcon = talloc_zero(smb_conn, struct smbsrv_tcon);
74         if (!tcon) return NULL;
75
76         i = idr_get_new(smb_conn->tree.idtree_tid, tcon, UINT16_MAX);
77         if (i == -1) {
78                 DEBUG(1,("ERROR! Out of connection structures\n"));            
79                 return NULL;
80         }
81
82         tcon->tid = i;
83         tcon->smb_conn = smb_conn;
84
85         talloc_set_destructor(tcon, smbsrv_tcon_destructor);
86
87         DLIST_ADD(smb_conn->tree.tcons, tcon);
88
89         return tcon;
90 }