62700aace3c26096648c71f8a851e523b96de8bd
[samba.git] / source3 / include / local.h
1 /* Copyright (C) 1995-1998 Samba-Team */
2 /* Copyright (C) 1998 John H Terpstra <jht@aquasoft.com.au> */
3
4 /* local definitions for file server */
5 #ifndef _LOCAL_H
6 #define _LOCAL_H
7
8 /* Yves Gaige <yvesg@hptnodur.grenoble.hp.com> requested this set this       */
9 /* to a maximum of 8 if old smb clients break because of long printer names. */
10 #define MAXPRINTERLEN 15
11
12 /* max number of directories open at once */
13 /* note that with the new directory code this no longer requires a
14    file handle per directory, but large numbers do use more memory */
15 #define MAX_OPEN_DIRECTORIES 256
16
17 /* max number of directory handles */
18 /* As this now uses the bitmap code this can be
19    quite large. */
20 #define MAX_DIRECTORY_HANDLES 2048
21
22 /* maximum number of file caches per smbd */
23 #define MAX_WRITE_CACHES 10
24
25 /*
26  * Fudgefactor required for open tdb's, etc.
27  */
28
29 #ifndef MAX_OPEN_FUDGEFACTOR
30 #define MAX_OPEN_FUDGEFACTOR 40
31 #endif
32
33 /*
34  * Minimum number of open files needed for Windows7 to
35  * work correctly. A little conservative but better that
36  * than run out of fd's.
37  */
38
39 #ifndef MIN_OPEN_FILES_WINDOWS
40 #define MIN_OPEN_FILES_WINDOWS 16384
41 #endif
42
43 /*
44  * Default number of maximum open files per smbd. This is
45  * also limited by the maximum available file descriptors
46  * per process and can also be set in smb.conf as "max open files"
47  * in the [global] section.
48  */
49
50 #ifndef MAX_OPEN_FILES
51 #define MAX_OPEN_FILES (MIN_OPEN_FILES_WINDOWS + MAX_OPEN_FUDGEFACTOR)
52 #endif
53
54 #define WORDMAX 0xFFFF
55
56 /* the maximum password length before we declare a likely attack */
57 #define MAX_PASS_LEN 200
58
59 /* separators for lists */
60 #define LIST_SEP " \t,;\n\r"
61
62 /* wchar separators for lists */
63 #define LIST_SEP_W wchar_list_sep
64
65 /* this is where browse lists are kept in the lock dir */
66 #define SERVER_LIST "browse.dat"
67
68 /* shall filenames with illegal chars in them get mangled in long
69    filename listings? */
70 #define MANGLE_LONG_FILENAMES 
71
72 /* define this if you want to stop spoofing with .. and soft links
73    NOTE: This also slows down the server considerably */
74 #define REDUCE_PATHS
75
76 /* the size of the directory cache */
77 #define DIRCACHESIZE 20
78
79 /* what default type of filesystem do we want this to show up as in a
80    NT file manager window? */
81 #define FSTYPE_STRING "NTFS"
82
83 /* user to test password server with as invalid in security=server mode. */
84 #ifndef INVALID_USER_PREFIX
85 #define INVALID_USER_PREFIX "sambatest"
86 #endif
87
88 /* the default pager to use for the client "more" command. Users can
89    override this with the PAGER environment variable */
90 #ifndef PAGER
91 #define PAGER "more"
92 #endif
93
94 /* the size of the uid cache used to reduce valid user checks */
95 #define VUID_CACHE_SIZE 32
96
97 /* the following control timings of various actions. Don't change 
98    them unless you know what you are doing. These are all in seconds */
99 #define SMBD_RELOAD_CHECK (180)
100 #define IDLE_CLOSED_TIMEOUT (60)
101 #define DPTR_IDLE_TIMEOUT (120)
102 #define SMBD_SELECT_TIMEOUT (60)
103 #define NMBD_SELECT_LOOP (10)
104 #define BROWSE_INTERVAL (60)
105 #define REGISTRATION_INTERVAL (10*60)
106 #define NMBD_INETD_TIMEOUT (120)
107 #define NMBD_MAX_TTL (24*60*60)
108 #define LPQ_LOCK_TIMEOUT (5)
109 #define NMBD_INTERFACES_RELOAD (120)
110 #define NMBD_UNEXPECTED_TIMEOUT (15)
111 #define SMBD_HOUSEKEEPING_INTERVAL SMBD_SELECT_TIMEOUT
112
113 /* the following are in milliseconds */
114 #define LOCK_RETRY_TIMEOUT (100)
115
116 /* do you want to dump core (carefully!) when an internal error is
117    encountered? Samba will be careful to make the core file only
118    accessible to root */
119 #define DUMP_CORE 1
120
121 /* shall we support browse requests via a FIFO to nmbd? */
122 #define ENABLE_FIFO 1
123
124 /* how long (in miliseconds) to wait for a socket connect to happen */
125 #define LONG_CONNECT_TIMEOUT 30000
126 #define SHORT_CONNECT_TIMEOUT 5000
127
128 /* the default netbios keepalive timeout */
129 #define DEFAULT_KEEPALIVE 300
130
131 /* the directory to sit in when idle */
132 /* #define IDLE_DIR "/" */
133
134 /* Timout (in seconds) to wait for an oplock break
135    message to return from the client. */
136
137 #define OPLOCK_BREAK_TIMEOUT 30
138
139 /* Timout (in seconds) to add to the oplock break timeout
140    to wait for the smbd to smbd message to return. */
141
142 #define OPLOCK_BREAK_TIMEOUT_FUDGEFACTOR 2
143
144 /* the read preciction code has been disabled until some problems with
145    it are worked out */
146 #define USE_READ_PREDICTION 0
147
148 /* Minimum length of allowed password when changing UNIX password. */
149 #define MINPASSWDLENGTH 5
150
151 /* the maximum age in seconds of a password. Should be a lp_ parameter */
152 #define MAX_PASSWORD_AGE (21*24*60*60)
153
154 /* Default allocation roundup. */
155 #define SMB_ROUNDUP_ALLOCATION_SIZE 0x100000
156
157 /* shall we deny oplocks to clients that get timeouts? */
158 #define FASCIST_OPLOCK_BACKOFF 1
159
160 /* this enables the "rabbit pellet" fix for SMBwritebraw */
161 #define RABBIT_PELLET_FIX 1
162
163 /* Max number of open RPC pipes. */
164 #define MAX_OPEN_PIPES 2048
165
166 /* Tuning for server auth mutex. */
167 #define CLI_AUTH_TIMEOUT 5000 /* In milli-seconds. */
168 #define NUM_CLI_AUTH_CONNECT_RETRIES 3
169 /* Number in seconds to wait for the mutex. This must be less than 30 seconds. */
170 #define SERVER_MUTEX_WAIT_TIME ( ((NUM_CLI_AUTH_CONNECT_RETRIES) * ((CLI_AUTH_TIMEOUT)/1000)) + 5)
171 /* Number in seconds for winbindd to wait for the mutex. Make this 2 * smbd wait time. */
172 #define WINBIND_SERVER_MUTEX_WAIT_TIME (( ((NUM_CLI_AUTH_CONNECT_RETRIES) * ((CLI_AUTH_TIMEOUT)/1000)) + 5)*2)
173
174 /* size of listen() backlog in smbd */
175 #define SMBD_LISTEN_BACKLOG 50
176
177 /* Number of microseconds to wait before a sharing violation. */
178 #define SHARING_VIOLATION_USEC_WAIT 950000
179
180 /* Number of microseconds to wait before a updating the write time (2 secs). */
181 #define WRITE_TIME_UPDATE_USEC_DELAY 2000000
182
183 #define MAX_LDAP_REPLICATION_SLEEP_TIME 5000 /* In milliseconds. */
184
185 /* tdb hash size for the open database. */
186 #define SMB_OPEN_DATABASE_TDB_HASH_SIZE 10007
187
188 /* Characters we disallow in sharenames. */
189 #define INVALID_SHARENAME_CHARS "%<>*?|/\\+=;:\","
190
191 /* Seconds between connection attempts to a remote server. */
192 #define FAILED_CONNECTION_CACHE_TIMEOUT (LONG_CONNECT_TIMEOUT * 2 / 1000)
193
194 /* Default hash size for the winbindd cache. */
195 #define WINBINDD_CACHE_TDB_DEFAULT_HASH_SIZE 5000
196
197 /* Windows minimum lock resolution timeout in ms */
198 #define WINDOWS_MINIMUM_LOCK_TIMEOUT_MS 200
199
200 /* Maximum size of RPC data we will accept for one call. */
201 #define MAX_RPC_DATA_SIZE (15*1024*1024)
202
203 /* A guestimate of how many domains winbindd will be contacting */
204 #ifndef WINBIND_MAX_DOMAINS_HINT
205 #define WINBIND_MAX_DOMAINS_HINT 10
206 #endif
207 #endif