Samba 3: added Samba 3.0.24 sources
[tomato.git] / release / src / router / samba3 / source / smbd / conn.c
blobc79f76415226446a0c66060693cedd4b74ac0d6b
1 /*
2 Unix SMB/CIFS implementation.
3 Manage connections_struct structures
4 Copyright (C) Andrew Tridgell 1998
5 Copyright (C) Alexander Bokovoy 2002
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.
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.
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.
22 #include "includes.h"
24 /* The connections bitmap is expanded in increments of BITMAP_BLOCK_SZ. The
25 * maximum size of the bitmap is the largest positive integer, but you will hit
26 * the "max connections" limit, looong before that.
28 #define BITMAP_BLOCK_SZ 128
30 static connection_struct *Connections;
32 /* number of open connections */
33 static struct bitmap *bmap;
34 static int num_open;
36 /****************************************************************************
37 init the conn structures
38 ****************************************************************************/
39 void conn_init(void)
41 bmap = bitmap_allocate(BITMAP_BLOCK_SZ);
44 /****************************************************************************
45 return the number of open connections
46 ****************************************************************************/
47 int conn_num_open(void)
49 return num_open;
53 /****************************************************************************
54 check if a snum is in use
55 ****************************************************************************/
56 BOOL conn_snum_used(int snum)
58 connection_struct *conn;
59 for (conn=Connections;conn;conn=conn->next) {
60 if (conn->service == snum) {
61 return(True);
64 return(False);
68 /****************************************************************************
69 find a conn given a cnum
70 ****************************************************************************/
71 connection_struct *conn_find(unsigned cnum)
73 int count=0;
74 connection_struct *conn;
76 for (conn=Connections;conn;conn=conn->next,count++) {
77 if (conn->cnum == cnum) {
78 if (count > 10) {
79 DLIST_PROMOTE(Connections, conn);
81 return conn;
85 return NULL;
89 /****************************************************************************
90 find first available connection slot, starting from a random position.
91 The randomisation stops problems with the server dieing and clients
92 thinking the server is still available.
93 ****************************************************************************/
94 connection_struct *conn_new(void)
96 TALLOC_CTX *mem_ctx;
97 connection_struct *conn;
98 int i;
99 int find_offset = 1;
101 find_again:
102 i = bitmap_find(bmap, find_offset);
104 if (i == -1) {
105 /* Expand the connections bitmap. */
106 int oldsz = bmap->n;
107 int newsz = bmap->n + BITMAP_BLOCK_SZ;
108 struct bitmap * nbmap;
110 if (newsz <= 0) {
111 /* Integer wrap. */
112 DEBUG(0,("ERROR! Out of connection structures\n"));
113 return NULL;
116 DEBUG(4,("resizing connections bitmap from %d to %d\n",
117 oldsz, newsz));
119 nbmap = bitmap_allocate(newsz);
120 if (!nbmap) {
121 DEBUG(0,("ERROR! malloc fail.\n"));
122 return NULL;
125 bitmap_copy(nbmap, bmap);
126 bitmap_free(bmap);
128 bmap = nbmap;
129 find_offset = oldsz; /* Start next search in the new portion. */
131 goto find_again;
134 if ((mem_ctx=talloc_init("connection_struct"))==NULL) {
135 DEBUG(0,("talloc_init(connection_struct) failed!\n"));
136 return NULL;
139 if ((conn=TALLOC_ZERO_P(mem_ctx, connection_struct))==NULL) {
140 DEBUG(0,("talloc_zero() failed!\n"));
141 return NULL;
143 conn->mem_ctx = mem_ctx;
144 conn->cnum = i;
146 bitmap_set(bmap, i);
148 num_open++;
150 string_set(&conn->user,"");
151 string_set(&conn->dirpath,"");
152 string_set(&conn->connectpath,"");
153 string_set(&conn->origpath,"");
155 DLIST_ADD(Connections, conn);
157 return conn;
160 /****************************************************************************
161 Close all conn structures.
162 ****************************************************************************/
164 void conn_close_all(void)
166 connection_struct *conn, *next;
167 for (conn=Connections;conn;conn=next) {
168 next=conn->next;
169 set_current_service(conn, 0, True);
170 close_cnum(conn, conn->vuid);
174 /****************************************************************************
175 Idle inactive connections.
176 ****************************************************************************/
178 BOOL conn_idle_all(time_t t, int deadtime)
180 pipes_struct *plist = NULL;
181 BOOL allidle = True;
182 connection_struct *conn, *next;
184 for (conn=Connections;conn;conn=next) {
185 next=conn->next;
187 /* Update if connection wasn't idle. */
188 if (conn->lastused != conn->lastused_count) {
189 conn->lastused = t;
190 conn->lastused_count = t;
193 /* close dirptrs on connections that are idle */
194 if ((t-conn->lastused) > DPTR_IDLE_TIMEOUT) {
195 dptr_idlecnum(conn);
198 if (conn->num_files_open > 0 || (t-conn->lastused)<deadtime) {
199 allidle = False;
204 * Check all pipes for any open handles. We cannot
205 * idle with a handle open.
208 for (plist = get_first_internal_pipe(); plist; plist = get_next_internal_pipe(plist))
209 if (plist->pipe_handles && plist->pipe_handles->count)
210 allidle = False;
212 return allidle;
215 /****************************************************************************
216 Clear a vuid out of the validity cache, and as the 'owner' of a connection.
217 ****************************************************************************/
219 void conn_clear_vuid_cache(uint16 vuid)
221 connection_struct *conn;
222 unsigned int i;
224 for (conn=Connections;conn;conn=conn->next) {
225 if (conn->vuid == vuid) {
226 conn->vuid = UID_FIELD_INVALID;
229 for (i=0;i<conn->vuid_cache.entries && i< VUID_CACHE_SIZE;i++) {
230 if (conn->vuid_cache.array[i].vuid == vuid) {
231 struct vuid_cache_entry *ent = &conn->vuid_cache.array[i];
232 ent->vuid = UID_FIELD_INVALID;
233 ent->read_only = False;
234 ent->admin_user = False;
240 /****************************************************************************
241 Free a conn structure - internal part.
242 ****************************************************************************/
244 void conn_free_internal(connection_struct *conn)
246 vfs_handle_struct *handle = NULL, *thandle = NULL;
247 TALLOC_CTX *mem_ctx = NULL;
249 /* Free vfs_connection_struct */
250 handle = conn->vfs_handles;
251 while(handle) {
252 DLIST_REMOVE(conn->vfs_handles, handle);
253 thandle = handle->next;
254 if (handle->free_data)
255 handle->free_data(&handle->data);
256 handle = thandle;
259 if (conn->ngroups && conn->groups) {
260 SAFE_FREE(conn->groups);
261 conn->ngroups = 0;
264 if (conn->nt_user_token) {
265 TALLOC_FREE(conn->nt_user_token);
268 free_namearray(conn->veto_list);
269 free_namearray(conn->hide_list);
270 free_namearray(conn->veto_oplock_list);
271 free_namearray(conn->aio_write_behind_list);
273 string_free(&conn->user);
274 string_free(&conn->dirpath);
275 string_free(&conn->connectpath);
276 string_free(&conn->origpath);
278 mem_ctx = conn->mem_ctx;
279 ZERO_STRUCTP(conn);
280 talloc_destroy(mem_ctx);
283 /****************************************************************************
284 Free a conn structure.
285 ****************************************************************************/
287 void conn_free(connection_struct *conn)
289 DLIST_REMOVE(Connections, conn);
291 bitmap_clear(bmap, conn->cnum);
292 num_open--;
294 conn_free_internal(conn);
297 /****************************************************************************
298 receive a smbcontrol message to forcibly unmount a share
299 the message contains just a share name and all instances of that
300 share are unmounted
301 the special sharename '*' forces unmount of all shares
302 ****************************************************************************/
303 void msg_force_tdis(int msg_type, struct process_id pid, void *buf, size_t len)
305 connection_struct *conn, *next;
306 fstring sharename;
308 fstrcpy(sharename, (const char *)buf);
310 if (strcmp(sharename, "*") == 0) {
311 DEBUG(1,("Forcing close of all shares\n"));
312 conn_close_all();
313 return;
316 for (conn=Connections;conn;conn=next) {
317 next=conn->next;
318 if (strequal(lp_servicename(conn->service), sharename)) {
319 DEBUG(1,("Forcing close of share %s cnum=%d\n",
320 sharename, conn->cnum));
321 close_cnum(conn, (uint16)-1);