source: branches/samba-3.0/source/smbd/conn.c

Last change on this file was 165, checked in by Paul Smedley, 16 years ago

Add 'missing' 3.0.34 diffs

File size: 9.5 KB
Line 
1/*
2 Unix SMB/CIFS implementation.
3 Manage connections_struct 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/* 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.
27 */
28#define BITMAP_BLOCK_SZ 128
29
30static connection_struct *Connections;
31
32/* number of open connections */
33static struct bitmap *bmap;
34static int num_open;
35
36/****************************************************************************
37init the conn structures
38****************************************************************************/
39void conn_init(void)
40{
41 bmap = bitmap_allocate(BITMAP_BLOCK_SZ);
42}
43
44/****************************************************************************
45return the number of open connections
46****************************************************************************/
47int conn_num_open(void)
48{
49 return num_open;
50}
51
52
53/****************************************************************************
54check if a snum is in use
55****************************************************************************/
56BOOL conn_snum_used(int snum)
57{
58 connection_struct *conn;
59 for (conn=Connections;conn;conn=conn->next) {
60 if (conn->params->service == snum) {
61 return(True);
62 }
63 }
64 return(False);
65}
66
67/****************************************************************************
68 Find a conn given a cnum.
69****************************************************************************/
70
71connection_struct *conn_find(unsigned cnum)
72{
73 int count=0;
74 connection_struct *conn;
75
76 for (conn=Connections;conn;conn=conn->next,count++) {
77 if (conn->cnum == cnum) {
78 if (count > 10) {
79 DLIST_PROMOTE(Connections, conn);
80 }
81 return conn;
82 }
83 }
84
85 return NULL;
86}
87
88/****************************************************************************
89 find first available connection slot, starting from a random position.
90The randomisation stops problems with the server dieing and clients
91thinking the server is still available.
92****************************************************************************/
93connection_struct *conn_new(void)
94{
95 TALLOC_CTX *mem_ctx;
96 connection_struct *conn;
97 int i;
98 int find_offset = 1;
99
100find_again:
101 i = bitmap_find(bmap, find_offset);
102
103 if (i == -1) {
104 /* Expand the connections bitmap. */
105 int oldsz = bmap->n;
106 int newsz = bmap->n + BITMAP_BLOCK_SZ;
107 struct bitmap * nbmap;
108
109 if (newsz <= oldsz) {
110 /* Integer wrap. */
111 DEBUG(0,("ERROR! Out of connection structures\n"));
112 return NULL;
113 }
114
115 DEBUG(4,("resizing connections bitmap from %d to %d\n",
116 oldsz, newsz));
117
118 nbmap = bitmap_allocate(newsz);
119 if (!nbmap) {
120 DEBUG(0,("ERROR! malloc fail.\n"));
121 return NULL;
122 }
123
124 bitmap_copy(nbmap, bmap);
125 bitmap_free(bmap);
126
127 bmap = nbmap;
128 find_offset = oldsz; /* Start next search in the new portion. */
129
130 goto find_again;
131 }
132
133 /* The bitmap position is used below as the connection number
134 * conn->cnum). This ends up as the TID field in the SMB header,
135 * which is limited to 16 bits (we skip 0xffff which is the
136 * NULL TID).
137 */
138 if (i > 65534) {
139 DEBUG(0, ("Maximum connection limit reached\n"));
140 return NULL;
141 }
142
143 if ((mem_ctx=talloc_init("connection_struct"))==NULL) {
144 DEBUG(0,("talloc_init(connection_struct) failed!\n"));
145 return NULL;
146 }
147
148 if (!(conn=TALLOC_ZERO_P(mem_ctx, connection_struct)) ||
149 !(conn->params = TALLOC_P(mem_ctx, struct share_params))) {
150 DEBUG(0,("TALLOC_ZERO() failed!\n"));
151 TALLOC_FREE(mem_ctx);
152 return NULL;
153 }
154 conn->mem_ctx = mem_ctx;
155 conn->cnum = i;
156
157 bitmap_set(bmap, i);
158
159 num_open++;
160
161 string_set(&conn->user,"");
162 string_set(&conn->dirpath,"");
163 string_set(&conn->connectpath,"");
164 string_set(&conn->origpath,"");
165
166 DLIST_ADD(Connections, conn);
167
168 return conn;
169}
170
171/****************************************************************************
172 Close all conn structures.
173****************************************************************************/
174
175void conn_close_all(void)
176{
177 connection_struct *conn, *next;
178 for (conn=Connections;conn;conn=next) {
179 next=conn->next;
180 set_current_service(conn, 0, True);
181 close_cnum(conn, conn->vuid);
182 }
183}
184
185/****************************************************************************
186 Idle inactive connections.
187****************************************************************************/
188
189BOOL conn_idle_all(time_t t, int deadtime)
190{
191 pipes_struct *plist = NULL;
192 BOOL allidle = True;
193 connection_struct *conn, *next;
194
195 for (conn=Connections;conn;conn=next) {
196 next=conn->next;
197
198 /* Update if connection wasn't idle. */
199 if (conn->lastused != conn->lastused_count) {
200 conn->lastused = t;
201 conn->lastused_count = t;
202 }
203
204 /* close dirptrs on connections that are idle */
205 if ((t-conn->lastused) > DPTR_IDLE_TIMEOUT) {
206 dptr_idlecnum(conn);
207 }
208
209 if (conn->num_files_open > 0 || (t-conn->lastused)<deadtime) {
210 allidle = False;
211 }
212 }
213
214 /*
215 * Check all pipes for any open handles. We cannot
216 * idle with a handle open.
217 */
218
219 for (plist = get_first_internal_pipe(); plist; plist = get_next_internal_pipe(plist))
220 if (plist->pipe_handles && plist->pipe_handles->count)
221 allidle = False;
222
223 return allidle;
224}
225
226/****************************************************************************
227 Clear a vuid out of the validity cache, and as the 'owner' of a connection.
228****************************************************************************/
229
230void conn_clear_vuid_cache(uint16 vuid)
231{
232 connection_struct *conn;
233 unsigned int i;
234
235 for (conn=Connections;conn;conn=conn->next) {
236 if (conn->vuid == vuid) {
237 conn->vuid = UID_FIELD_INVALID;
238 }
239
240 for (i=0;i<conn->vuid_cache.entries && i< VUID_CACHE_SIZE;i++) {
241 if (conn->vuid_cache.array[i].vuid == vuid) {
242 struct vuid_cache_entry *ent = &conn->vuid_cache.array[i];
243 ent->vuid = UID_FIELD_INVALID;
244 ent->read_only = False;
245 ent->admin_user = False;
246 }
247 }
248 }
249}
250
251/****************************************************************************
252 Free a conn structure - internal part.
253****************************************************************************/
254
255void conn_free_internal(connection_struct *conn)
256{
257 vfs_handle_struct *handle = NULL, *thandle = NULL;
258 TALLOC_CTX *mem_ctx = NULL;
259 struct trans_state *state = NULL;
260
261 /* Free vfs_connection_struct */
262 handle = conn->vfs_handles;
263 while(handle) {
264 thandle = handle->next;
265 DLIST_REMOVE(conn->vfs_handles, handle);
266 if (handle->free_data)
267 handle->free_data(&handle->data);
268 handle = thandle;
269 }
270
271 /* Free any pending transactions stored on this conn. */
272 for (state = conn->pending_trans; state; state = state->next) {
273 /* state->setup is a talloc child of state. */
274 SAFE_FREE(state->param);
275 SAFE_FREE(state->data);
276 }
277
278 free_namearray(conn->veto_list);
279 free_namearray(conn->hide_list);
280 free_namearray(conn->veto_oplock_list);
281 free_namearray(conn->aio_write_behind_list);
282
283 string_free(&conn->user);
284 string_free(&conn->dirpath);
285 string_free(&conn->connectpath);
286 string_free(&conn->origpath);
287
288 mem_ctx = conn->mem_ctx;
289 ZERO_STRUCTP(conn);
290 talloc_destroy(mem_ctx);
291}
292
293/****************************************************************************
294 Free a conn structure.
295****************************************************************************/
296
297void conn_free(connection_struct *conn)
298{
299 DLIST_REMOVE(Connections, conn);
300
301 bitmap_clear(bmap, conn->cnum);
302 num_open--;
303
304 conn_free_internal(conn);
305}
306
307/****************************************************************************
308receive a smbcontrol message to forcibly unmount a share
309the message contains just a share name and all instances of that
310share are unmounted
311the special sharename '*' forces unmount of all shares
312****************************************************************************/
313void msg_force_tdis(int msg_type, struct process_id pid, void *buf, size_t len,
314 void *private_data)
315{
316 connection_struct *conn, *next;
317 fstring sharename;
318
319 fstrcpy(sharename, (const char *)buf);
320
321 if (strcmp(sharename, "*") == 0) {
322 DEBUG(1,("Forcing close of all shares\n"));
323 conn_close_all();
324 return;
325 }
326
327 for (conn=Connections;conn;conn=next) {
328 next=conn->next;
329 if (strequal(lp_servicename(SNUM(conn)), sharename)) {
330 DEBUG(1,("Forcing close of share %s cnum=%d\n",
331 sharename, conn->cnum));
332 close_cnum(conn, (uint16)-1);
333 }
334 }
335}
Note: See TracBrowser for help on using the repository browser.