2 Unix SMB/CIFS implementation.
3 Manage connections_struct structures
4 Copyright (C) Andrew Tridgell 1998
5 Copyright (C) Alexander Bokovoy 2002
6 Copyright (C) Jeremy Allison 2010
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
23 #include "smbd/globals.h"
25 /* The connections bitmap is expanded in increments of BITMAP_BLOCK_SZ. The
26 * maximum size of the bitmap is the largest positive integer, but you will hit
27 * the "max connections" limit, looong before that.
30 #define BITMAP_BLOCK_SZ 128
32 /****************************************************************************
33 Init the conn structures.
34 ****************************************************************************/
36 void conn_init(struct smbd_server_connection
*sconn
)
38 sconn
->smb1
.tcons
.Connections
= NULL
;
39 sconn
->smb1
.tcons
.bmap
= bitmap_talloc(sconn
, BITMAP_BLOCK_SZ
);
42 /****************************************************************************
43 Return the number of open connections.
44 ****************************************************************************/
46 int conn_num_open(struct smbd_server_connection
*sconn
)
48 return sconn
->num_tcons_open
;
51 /****************************************************************************
52 Check if a snum is in use.
53 ****************************************************************************/
55 bool conn_snum_used(int snum
)
57 struct smbd_server_connection
*sconn
= smbd_server_conn
;
59 if (sconn
->using_smb2
) {
61 struct smbd_smb2_session
*sess
;
62 for (sess
= sconn
->smb2
.sessions
.list
; sess
; sess
= sess
->next
) {
63 struct smbd_smb2_tcon
*ptcon
;
65 for (ptcon
= sess
->tcons
.list
; ptcon
; ptcon
= ptcon
->next
) {
66 if (ptcon
->compat_conn
&&
67 ptcon
->compat_conn
->params
&&
68 (ptcon
->compat_conn
->params
->service
= snum
)) {
75 connection_struct
*conn
;
76 for (conn
=sconn
->smb1
.tcons
.Connections
;conn
;conn
=conn
->next
) {
77 if (conn
->params
->service
== snum
) {
85 /****************************************************************************
86 Find a conn given a cnum.
87 ****************************************************************************/
89 connection_struct
*conn_find(struct smbd_server_connection
*sconn
,unsigned cnum
)
91 if (sconn
->using_smb2
) {
93 struct smbd_smb2_session
*sess
;
94 for (sess
= sconn
->smb2
.sessions
.list
; sess
; sess
= sess
->next
) {
95 struct smbd_smb2_tcon
*ptcon
;
97 for (ptcon
= sess
->tcons
.list
; ptcon
; ptcon
= ptcon
->next
) {
98 if (ptcon
->compat_conn
&&
99 ptcon
->compat_conn
->cnum
== cnum
) {
100 return ptcon
->compat_conn
;
107 connection_struct
*conn
;
108 for (conn
=sconn
->smb1
.tcons
.Connections
;conn
;conn
=conn
->next
,count
++) {
109 if (conn
->cnum
== cnum
) {
111 DLIST_PROMOTE(sconn
->smb1
.tcons
.Connections
,
122 /****************************************************************************
123 Find first available connection slot, starting from a random position.
124 The randomisation stops problems with the server dieing and clients
125 thinking the server is still available.
126 ****************************************************************************/
128 connection_struct
*conn_new(struct smbd_server_connection
*sconn
)
130 connection_struct
*conn
;
134 if (sconn
->using_smb2
) {
136 if (!(conn
=TALLOC_ZERO_P(NULL
, connection_struct
)) ||
137 !(conn
->params
= TALLOC_P(conn
, struct share_params
))) {
138 DEBUG(0,("TALLOC_ZERO() failed!\n"));
148 i
= bitmap_find(sconn
->smb1
.tcons
.bmap
, find_offset
);
151 /* Expand the connections bitmap. */
152 int oldsz
= sconn
->smb1
.tcons
.bmap
->n
;
153 int newsz
= sconn
->smb1
.tcons
.bmap
->n
+
155 struct bitmap
* nbmap
;
157 if (newsz
<= oldsz
) {
159 DEBUG(0,("ERROR! Out of connection structures\n"));
163 DEBUG(4,("resizing connections bitmap from %d to %d\n",
166 nbmap
= bitmap_talloc(sconn
, newsz
);
168 DEBUG(0,("ERROR! malloc fail.\n"));
172 bitmap_copy(nbmap
, sconn
->smb1
.tcons
.bmap
);
173 TALLOC_FREE(sconn
->smb1
.tcons
.bmap
);
175 sconn
->smb1
.tcons
.bmap
= nbmap
;
176 find_offset
= oldsz
; /* Start next search in the new portion. */
181 /* The bitmap position is used below as the connection number
182 * conn->cnum). This ends up as the TID field in the SMB header,
183 * which is limited to 16 bits (we skip 0xffff which is the
187 DEBUG(0, ("Maximum connection limit reached\n"));
191 if (!(conn
=TALLOC_ZERO_P(NULL
, connection_struct
)) ||
192 !(conn
->params
= TALLOC_P(conn
, struct share_params
))) {
193 DEBUG(0,("TALLOC_ZERO() failed!\n"));
199 conn
->force_group_gid
= (gid_t
)-1;
201 bitmap_set(sconn
->smb1
.tcons
.bmap
, i
);
203 sconn
->num_tcons_open
++;
205 string_set(&conn
->connectpath
,"");
206 string_set(&conn
->origpath
,"");
208 DLIST_ADD(sconn
->smb1
.tcons
.Connections
, conn
);
213 /****************************************************************************
214 Close all conn structures.
215 Return true if any were closed.
216 ****************************************************************************/
218 bool conn_close_all(struct smbd_server_connection
*sconn
)
221 if (sconn
->using_smb2
) {
223 struct smbd_smb2_session
*sess
;
224 for (sess
= sconn
->smb2
.sessions
.list
; sess
; sess
= sess
->next
) {
225 struct smbd_smb2_tcon
*tcon
, *tc_next
;
227 for (tcon
= sess
->tcons
.list
; tcon
; tcon
= tc_next
) {
228 tc_next
= tcon
->next
;
235 connection_struct
*conn
, *next
;
237 for (conn
=sconn
->smb1
.tcons
.Connections
;conn
;conn
=next
) {
239 set_current_service(conn
, 0, True
);
240 close_cnum(conn
, conn
->vuid
);
247 /****************************************************************************
248 Update last used timestamps.
249 ****************************************************************************/
251 static void conn_lastused_update(struct smbd_server_connection
*sconn
,time_t t
)
253 if (sconn
->using_smb2
) {
255 struct smbd_smb2_session
*sess
;
256 for (sess
= sconn
->smb2
.sessions
.list
; sess
; sess
= sess
->next
) {
257 struct smbd_smb2_tcon
*ptcon
;
259 for (ptcon
= sess
->tcons
.list
; ptcon
; ptcon
= ptcon
->next
) {
260 connection_struct
*conn
= ptcon
->compat_conn
;
261 /* Update if connection wasn't idle. */
262 if (conn
&& conn
->lastused
!= conn
->lastused_count
) {
264 conn
->lastused_count
= t
;
270 connection_struct
*conn
;
271 for (conn
=sconn
->smb1
.tcons
.Connections
;conn
;conn
=conn
->next
) {
272 /* Update if connection wasn't idle. */
273 if (conn
->lastused
!= conn
->lastused_count
) {
275 conn
->lastused_count
= t
;
281 /****************************************************************************
282 Idle inactive connections.
283 ****************************************************************************/
285 bool conn_idle_all(struct smbd_server_connection
*sconn
, time_t t
)
287 int deadtime
= lp_deadtime()*60;
289 conn_lastused_update(sconn
, t
);
292 deadtime
= DEFAULT_SMBD_TIMEOUT
;
295 if (sconn
->using_smb2
) {
297 struct smbd_smb2_session
*sess
;
298 for (sess
= sconn
->smb2
.sessions
.list
; sess
; sess
= sess
->next
) {
299 struct smbd_smb2_tcon
*ptcon
;
301 for (ptcon
= sess
->tcons
.list
; ptcon
; ptcon
= ptcon
->next
) {
303 connection_struct
*conn
= ptcon
->compat_conn
;
309 age
= t
- conn
->lastused
;
310 /* close dirptrs on connections that are idle */
311 if (age
> DPTR_IDLE_TIMEOUT
) {
315 if (conn
->num_files_open
> 0 || age
< deadtime
) {
322 connection_struct
*conn
;
323 for (conn
=sconn
->smb1
.tcons
.Connections
;conn
;conn
=conn
->next
) {
324 time_t age
= t
- conn
->lastused
;
326 /* close dirptrs on connections that are idle */
327 if (age
> DPTR_IDLE_TIMEOUT
) {
331 if (conn
->num_files_open
> 0 || age
< deadtime
) {
338 * Check all pipes for any open handles. We cannot
339 * idle with a handle open.
341 if (check_open_pipes()) {
348 /****************************************************************************
349 Clear a vuid out of the validity cache, and as the 'owner' of a connection.
350 ****************************************************************************/
352 void conn_clear_vuid_caches(struct smbd_server_connection
*sconn
,uint16_t vuid
)
354 connection_struct
*conn
;
356 if (sconn
->using_smb2
) {
358 struct smbd_smb2_session
*sess
;
359 for (sess
= sconn
->smb2
.sessions
.list
; sess
; sess
= sess
->next
) {
360 struct smbd_smb2_tcon
*ptcon
;
362 for (ptcon
= sess
->tcons
.list
; ptcon
; ptcon
= ptcon
->next
) {
363 if (ptcon
->compat_conn
) {
364 if (ptcon
->compat_conn
->vuid
== vuid
) {
365 ptcon
->compat_conn
->vuid
= UID_FIELD_INVALID
;
367 conn_clear_vuid_cache(ptcon
->compat_conn
, vuid
);
373 for (conn
=sconn
->smb1
.tcons
.Connections
;conn
;conn
=conn
->next
) {
374 if (conn
->vuid
== vuid
) {
375 conn
->vuid
= UID_FIELD_INVALID
;
377 conn_clear_vuid_cache(conn
, vuid
);
382 /****************************************************************************
383 Free a conn structure - internal part.
384 ****************************************************************************/
386 static void conn_free_internal(connection_struct
*conn
)
388 vfs_handle_struct
*handle
= NULL
, *thandle
= NULL
;
389 struct trans_state
*state
= NULL
;
391 /* Free vfs_connection_struct */
392 handle
= conn
->vfs_handles
;
394 thandle
= handle
->next
;
395 DLIST_REMOVE(conn
->vfs_handles
, handle
);
396 if (handle
->free_data
)
397 handle
->free_data(&handle
->data
);
401 /* Free any pending transactions stored on this conn. */
402 for (state
= conn
->pending_trans
; state
; state
= state
->next
) {
403 /* state->setup is a talloc child of state. */
404 SAFE_FREE(state
->param
);
405 SAFE_FREE(state
->data
);
408 free_namearray(conn
->veto_list
);
409 free_namearray(conn
->hide_list
);
410 free_namearray(conn
->veto_oplock_list
);
411 free_namearray(conn
->aio_write_behind_list
);
413 string_free(&conn
->connectpath
);
414 string_free(&conn
->origpath
);
417 talloc_destroy(conn
);
420 /****************************************************************************
421 Free a conn structure.
422 ****************************************************************************/
424 void conn_free(connection_struct
*conn
)
426 if (conn
->sconn
== NULL
) {
427 conn_free_internal(conn
);
431 if (conn
->sconn
->using_smb2
) {
433 conn_free_internal(conn
);
438 DLIST_REMOVE(conn
->sconn
->smb1
.tcons
.Connections
, conn
);
440 if (conn
->sconn
->smb1
.tcons
.bmap
!= NULL
) {
442 * Can be NULL for fake connections created by
443 * create_conn_struct()
445 bitmap_clear(conn
->sconn
->smb1
.tcons
.bmap
, conn
->cnum
);
448 SMB_ASSERT(conn
->sconn
->num_tcons_open
> 0);
449 conn
->sconn
->num_tcons_open
--;
451 conn_free_internal(conn
);
454 /****************************************************************************
455 Receive a smbcontrol message to forcibly unmount a share.
456 The message contains just a share name and all instances of that
458 The special sharename '*' forces unmount of all shares.
459 ****************************************************************************/
461 void msg_force_tdis(struct messaging_context
*msg
,
464 struct server_id server_id
,
467 struct smbd_server_connection
*sconn
;
468 connection_struct
*conn
, *next
;
471 sconn
= msg_ctx_to_sconn(msg
);
473 DEBUG(1, ("could not find sconn\n"));
477 fstrcpy(sharename
, (const char *)data
->data
);
479 if (strcmp(sharename
, "*") == 0) {
480 DEBUG(1,("Forcing close of all shares\n"));
481 conn_close_all(sconn
);
485 if (sconn
->using_smb2
) {
487 struct smbd_smb2_session
*sess
;
488 for (sess
= sconn
->smb2
.sessions
.list
; sess
; sess
= sess
->next
) {
489 struct smbd_smb2_tcon
*tcon
, *tc_next
;
491 for (tcon
= sess
->tcons
.list
; tcon
; tcon
= tc_next
) {
492 tc_next
= tcon
->next
;
493 if (tcon
->compat_conn
&&
494 strequal(lp_servicename(SNUM(tcon
->compat_conn
)),
496 DEBUG(1,("Forcing close of share %s cnum=%d\n",
497 sharename
, tcon
->compat_conn
->cnum
));
504 for (conn
=sconn
->smb1
.tcons
.Connections
;conn
;conn
=next
) {
506 if (strequal(lp_servicename(SNUM(conn
)), sharename
)) {
507 DEBUG(1,("Forcing close of share %s cnum=%d\n",
508 sharename
, conn
->cnum
));
509 close_cnum(conn
, (uint16
)-1);