s3:smbd: move max_recv to struct smbd_server_connection
[kai/samba.git] / source3 / smbd / globals.c
1 /*
2    Unix SMB/Netbios implementation.
3    smbd globals
4    Copyright (C) Stefan Metzmacher 2009
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 3 of the License, or
9    (at your option) any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #include "includes.h"
21 #include "smbd/globals.h"
22
23 #if defined(WITH_AIO)
24 struct aio_extra *aio_list_head = NULL;
25 struct tevent_signal *aio_signal_event = NULL;
26 int aio_pending_size = 0;
27 int outstanding_aio_calls = 0;
28 #endif
29
30 /* dlink list we store pending lock records on. */
31 struct blocking_lock_record *blocking_lock_queue = NULL;
32
33 /* dlink list we move cancelled lock records onto. */
34 struct blocking_lock_record *blocking_lock_cancelled_queue = NULL;
35
36 /* The event that makes us process our blocking lock queue */
37 struct timed_event *brl_timeout = NULL;
38
39 bool blocking_lock_unlock_state = false;
40 bool blocking_lock_cancel_state = false;
41
42 #ifdef USE_DMAPI
43 struct smbd_dmapi_context *dmapi_ctx = NULL;
44 #endif
45
46 connection_struct *Connections = NULL;
47 /* number of open connections */
48 struct bitmap *bmap = 0;
49 int num_open = 0;
50
51
52 bool dfree_broken = false;
53
54 struct bitmap *dptr_bmap = NULL;
55 struct dptr_struct *dirptrs = NULL;
56 int dirhandles_open = 0;
57
58 /* how many write cache buffers have been allocated */
59 unsigned int allocated_write_caches = 0;
60
61 int real_max_open_files = 0;
62 struct bitmap *file_bmap = NULL;
63 files_struct *Files = NULL;
64 int files_used = 0;
65 struct fsp_singleton_cache fsp_fi_cache = {
66         .fsp = NULL,
67         .id = {
68                 .devid = 0,
69                 .inode = 0,
70                 .extid = 0
71         }
72 };
73 unsigned long file_gen_counter = 0;
74 int first_file = 0;
75
76 const struct mangle_fns *mangle_fns = NULL;
77
78 unsigned char *chartest = NULL;
79 TDB_CONTEXT *tdb_mangled_cache = NULL;
80
81 /* these tables are used to provide fast tests for characters */
82 unsigned char char_flags[256];
83 /*
84   this determines how many characters are used from the original filename
85   in the 8.3 mangled name. A larger value leads to a weaker hash and more collisions.
86   The largest possible value is 6.
87 */
88 unsigned mangle_prefix = 0;
89 unsigned char base_reverse[256];
90
91 char *last_from = NULL;
92 char *last_to = NULL;
93
94 struct msg_state *smbd_msg_state = NULL;
95
96 bool logged_ioctl_message = false;
97
98 /* users from session setup */
99 char *session_userlist = NULL;
100 /* workgroup from session setup. */
101 char *session_workgroup = NULL;
102 /* this holds info on user ids that are already validated for this VC */
103 user_struct *validated_users = NULL;
104 uint16_t next_vuid = VUID_OFFSET;
105 int num_validated_vuids = 0;
106 #ifdef HAVE_NETGROUP
107 char *my_yp_domain = NULL;
108 #endif
109
110 bool already_got_session = false;
111
112 /*
113  * Size of data we can send to client. Set
114  *  by the client for all protocols above CORE.
115  *  Set by us for CORE protocol.
116  */
117 int max_send = BUFFER_SIZE;
118 uint16 last_session_tag = UID_FIELD_INVALID;
119 int trans_num = 0;
120 pid_t mypid = 0;
121 time_t last_smb_conf_reload_time = 0;
122 time_t last_printer_reload_time = 0;
123 /****************************************************************************
124  structure to hold a linked list of queued messages.
125  for processing.
126 ****************************************************************************/
127 struct pending_message_list *deferred_open_queue = NULL;
128 uint32_t common_flags2 = FLAGS2_LONG_PATH_COMPONENTS|FLAGS2_32_BIT_ERROR_CODES;
129
130 struct smb_srv_trans_enc_ctx *partial_srv_trans_enc_ctx = NULL;
131 struct smb_srv_trans_enc_ctx *srv_trans_enc_ctx = NULL;
132
133 /* A stack of security contexts.  We include the current context as being
134    the first one, so there is room for another MAX_SEC_CTX_DEPTH more. */
135 struct sec_ctx sec_ctx_stack[MAX_SEC_CTX_DEPTH + 1];
136 int sec_ctx_stack_ndx = 0;
137 bool become_uid_done = false;
138 bool become_gid_done = false;
139
140 connection_struct *last_conn = NULL;
141 uint16_t last_flags = 0;
142
143 struct db_context *session_db_ctx_ptr = NULL;
144
145 uint32_t global_client_caps = 0;
146 bool done_sesssetup = false;
147
148 uint16_t fnf_handle = 257;
149
150 /* A stack of current_user connection contexts. */
151 struct conn_ctx conn_ctx_stack[MAX_SEC_CTX_DEPTH];
152 int conn_ctx_stack_ndx = 0;
153
154 struct vfs_init_function_entry *backends = NULL;
155 char *sparse_buf = NULL;
156 char *LastDir = NULL;
157
158 /* Current number of oplocks we have outstanding. */
159 int32_t exclusive_oplocks_open = 0;
160 int32_t level_II_oplocks_open = 0;
161 bool global_client_failed_oplock_break = false;
162 struct kernel_oplocks *koplocks = NULL;
163
164 struct notify_mid_map *notify_changes_by_mid = NULL;
165
166 int am_parent = 1;
167 int server_fd = -1;
168 struct event_context *smbd_event_ctx = NULL;
169 struct messaging_context *smbd_msg_ctx = NULL;
170 struct memcache *smbd_memcache_ctx = NULL;
171 bool exit_firsttime = true;
172 struct child_pid *children = 0;
173 int num_children = 0;
174
175 struct smbd_server_connection *smbd_server_conn = NULL;
176
177 void smbd_init_globals(void)
178 {
179         ZERO_STRUCT(char_flags);
180         ZERO_STRUCT(base_reverse);
181
182         ZERO_STRUCT(conn_ctx_stack);
183
184         ZERO_STRUCT(sec_ctx_stack);
185 }