Trivial Comment fix: Supply a missing word in a comment
[Samba/gebeck_regimport.git] / source3 / include / smb.h
blobd93f30d48355eefda0f4c09b612e13fc79d85719
1 /*
2 Unix SMB/CIFS implementation.
3 SMB parameters and setup, plus a whole lot more.
5 Copyright (C) Andrew Tridgell 1992-2000
6 Copyright (C) John H Terpstra 1996-2002
7 Copyright (C) Luke Kenneth Casson Leighton 1996-2000
8 Copyright (C) Paul Ashton 1998-2000
9 Copyright (C) Simo Sorce 2001-2002
10 Copyright (C) Martin Pool 2002
12 This program is free software; you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
14 the Free Software Foundation; either version 3 of the License, or
15 (at your option) any later version.
17 This program is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
22 You should have received a copy of the GNU General Public License
23 along with this program. If not, see <http://www.gnu.org/licenses/>.
26 #ifndef _SMB_H
27 #define _SMB_H
29 #include "libcli/smb/smb_common.h"
30 #include "libds/common/roles.h"
32 /* logged when starting the various Samba daemons */
33 #define COPYRIGHT_STARTUP_MESSAGE "Copyright Andrew Tridgell and the Samba Team 1992-2012"
36 #if defined(LARGE_SMB_OFF_T)
37 #define BUFFER_SIZE (128*1024)
38 #else /* no large readwrite possible */
39 #define BUFFER_SIZE (0xFFFF)
40 #endif
42 #define SAFETY_MARGIN 1024
43 #define LARGE_WRITEX_HDR_SIZE 65
45 #define NMB_PORT 137
46 #define DGRAM_PORT 138
47 #define NBT_SMB_PORT 139 /* Port for SMB over NBT transport (IETF STD#19). */
48 #define TCP_SMB_PORT 445 /* Port for SMB over naked TCP transport. */
49 #define SMB_PORTS "445 139"
51 #define Undefined (-1)
52 #define False false
53 #define True true
54 #define Auto (2)
55 #define Required (3)
57 #define SIZEOFWORD 2
59 #ifndef DEF_CREATE_MASK
60 #define DEF_CREATE_MASK (0755)
61 #endif
63 /* string manipulation flags - see clistr.c and srvstr.c */
64 #define STR_TERMINATE 1
65 #define STR_UPPER 2
66 #define STR_ASCII 4
67 #define STR_UNICODE 8
68 #define STR_NOALIGN 16
69 #define STR_TERMINATE_ASCII 128
71 /* how long to wait for secondary SMB packets (milli-seconds) */
72 #define SMB_SECONDARY_WAIT (60*1000)
74 #define DIR_STRUCT_SIZE 43
76 /* deny modes */
77 #define DENY_DOS 0
78 #define DENY_ALL 1
79 #define DENY_WRITE 2
80 #define DENY_READ 3
81 #define DENY_NONE 4
82 #define DENY_FCB 7
84 /* open modes */
85 #define DOS_OPEN_RDONLY 0
86 #define DOS_OPEN_WRONLY 1
87 #define DOS_OPEN_RDWR 2
88 #define DOS_OPEN_EXEC 3
89 #define DOS_OPEN_FCB 0xF
91 /* define shifts and masks for share and open modes. */
92 #define OPENX_MODE_MASK 0xF
93 #define DENY_MODE_SHIFT 4
94 #define DENY_MODE_MASK 0x7
95 #define GET_OPENX_MODE(x) ((x) & OPENX_MODE_MASK)
96 #define SET_OPENX_MODE(x) ((x) & OPENX_MODE_MASK)
97 #define GET_DENY_MODE(x) (((x)>>DENY_MODE_SHIFT) & DENY_MODE_MASK)
98 #define SET_DENY_MODE(x) (((x) & DENY_MODE_MASK) <<DENY_MODE_SHIFT)
100 /* Sync on open file (not sure if used anymore... ?) */
101 #define FILE_SYNC_OPENMODE (1<<14)
102 #define GET_FILE_SYNC_OPENMODE(x) (((x) & FILE_SYNC_OPENMODE) ? True : False)
104 /* open disposition values */
105 #define OPENX_FILE_EXISTS_FAIL 0
106 #define OPENX_FILE_EXISTS_OPEN 1
107 #define OPENX_FILE_EXISTS_TRUNCATE 2
109 /* mask for open disposition. */
110 #define OPENX_FILE_OPEN_MASK 0x3
112 #define GET_FILE_OPENX_DISPOSITION(x) ((x) & FILE_OPEN_MASK)
113 #define SET_FILE_OPENX_DISPOSITION(x) ((x) & FILE_OPEN_MASK)
115 /* The above can be OR'ed with... */
116 #define OPENX_FILE_CREATE_IF_NOT_EXIST 0x10
117 #define OPENX_FILE_FAIL_IF_NOT_EXIST 0
119 typedef union unid_t {
120 uid_t uid;
121 gid_t gid;
122 } unid_t;
124 /* pipe string names */
126 #ifndef MAXSUBAUTHS
127 #define MAXSUBAUTHS 15 /* max sub authorities in a SID */
128 #endif
130 #define SID_MAX_SIZE ((size_t)(8+(MAXSUBAUTHS*4)))
132 #include "librpc/gen_ndr/security.h"
134 typedef struct write_cache {
135 SMB_OFF_T file_size;
136 SMB_OFF_T offset;
137 size_t alloc_size;
138 size_t data_size;
139 char *data;
140 } write_cache;
142 struct fd_handle {
143 size_t ref_count;
144 int fd;
145 uint64_t position_information;
146 SMB_OFF_T pos;
147 uint32 private_options; /* NT Create options, but we only look at
148 * NTCREATEX_OPTIONS_PRIVATE_DENY_DOS and
149 * NTCREATEX_OPTIONS_PRIVATE_DENY_FCB and
150 * NTCREATEX_OPTIONS_PRIVATE_DELETE_ON_CLOSE
151 * for print files *only*, where
152 * DELETE_ON_CLOSE is not stored in the share
153 * mode database.
155 unsigned long gen_id;
158 struct idle_event;
159 struct share_mode_entry;
160 struct uuid;
161 struct named_mutex;
162 struct wb_context;
163 struct rpc_cli_smbd_conn;
164 struct fncall_context;
166 struct share_mode_lock {
167 struct share_mode_data *data;
170 struct vfs_fsp_data {
171 struct vfs_fsp_data *next;
172 struct vfs_handle_struct *owner;
173 void (*destroy)(void *p_data);
174 void *_dummy_;
175 /* NOTE: This structure contains four pointers so that we can guarantee
176 * that the end of the structure is always both 4-byte and 8-byte aligned.
180 /* the basic packet size, assuming no words or bytes */
181 #define smb_size 39
183 struct notify_change {
184 uint32_t action;
185 const char *name;
188 struct notify_mid_map;
189 struct notify_entry;
190 struct notify_event;
191 struct notify_change_request;
192 struct sys_notify_backend;
193 struct sys_notify_context {
194 struct event_context *ev;
195 struct connection_struct *conn;
196 void *private_data; /* For use by the system backend */
199 struct notify_change_buf {
201 * If no requests are pending, changes are queued here. Simple array,
202 * we only append.
206 * num_changes == -1 means that we have got a catch-all change, when
207 * asked we just return NT_STATUS_OK without specific changes.
209 int num_changes;
210 struct notify_change *changes;
213 * If no changes are around requests are queued here. Using a linked
214 * list, because we have to append at the end and delete from the top.
216 struct notify_change_request *requests;
219 struct print_file_data {
220 char *svcname;
221 char *docname;
222 char *filename;
223 struct policy_handle handle;
224 uint32_t jobid;
225 uint16 rap_jobid;
228 typedef struct files_struct {
229 struct files_struct *next, *prev;
230 int fnum;
231 struct connection_struct *conn;
232 struct fd_handle *fh;
233 unsigned int num_smb_operations;
234 struct file_id file_id;
235 uint64_t initial_allocation_size; /* Faked up initial allocation on disk. */
236 uint16 file_pid;
237 uint16 vuid;
238 write_cache *wcp;
239 struct timeval open_time;
240 uint32 access_mask; /* NTCreateX access bits (FILE_READ_DATA etc.) */
241 uint32 share_access; /* NTCreateX share constants (FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE). */
243 bool update_write_time_triggered;
244 struct timed_event *update_write_time_event;
245 bool update_write_time_on_close;
246 struct timespec close_write_time;
247 bool write_time_forced;
249 int oplock_type;
250 int sent_oplock_break;
251 struct timed_event *oplock_timeout;
252 struct lock_struct last_lock_failure;
253 int current_lock_count; /* Count the number of outstanding locks and pending locks. */
255 struct share_mode_entry *pending_break_messages;
256 int num_pending_break_messages;
258 bool can_lock;
259 bool can_read;
260 bool can_write;
261 bool modified;
262 bool is_directory;
263 bool aio_write_behind;
264 bool lockdb_clean;
265 bool initial_delete_on_close; /* Only set at NTCreateX if file was created. */
266 bool delete_on_close;
267 bool posix_open;
268 bool is_sparse;
269 struct smb_filename *fsp_name;
270 uint32_t name_hash; /* Jenkins hash of full pathname. */
272 struct vfs_fsp_data *vfs_extension;
273 struct fake_file_handle *fake_file_handle;
275 struct notify_change_buf *notify;
277 struct files_struct *base_fsp; /* placeholder for delete on close */
280 * Read-only cached brlock record, thrown away when the
281 * brlock.tdb seqnum changes. This avoids fetching data from
282 * the brlock.tdb on every read/write call.
284 int brlock_seqnum;
285 struct byte_range_lock *brlock_rec;
287 struct dptr_struct *dptr;
289 /* if not NULL, means this is a print file */
290 struct print_file_data *print_file;
292 } files_struct;
294 #include "ntquotas.h"
295 #include "sysquotas.h"
297 struct vuid_cache_entry {
298 struct auth_session_info *session_info;
299 uint16_t vuid;
300 bool read_only;
303 struct vuid_cache {
304 unsigned int next_entry;
305 struct vuid_cache_entry array[VUID_CACHE_SIZE];
308 typedef struct {
309 char *name;
310 bool is_wild;
311 } name_compare_entry;
313 struct trans_state {
314 struct trans_state *next, *prev;
315 uint16 vuid;
316 uint64_t mid;
318 uint32 max_param_return;
319 uint32 max_data_return;
320 uint32 max_setup_return;
322 uint8 cmd; /* SMBtrans or SMBtrans2 */
324 char *name; /* for trans requests */
325 uint16 call; /* for trans2 and nttrans requests */
327 bool close_on_completion;
328 bool one_way;
330 unsigned int setup_count;
331 uint16 *setup;
333 size_t received_data;
334 size_t received_param;
336 size_t total_param;
337 char *param;
339 size_t total_data;
340 char *data;
344 * Info about an alternate data stream
347 struct stream_struct {
348 SMB_OFF_T size;
349 SMB_OFF_T alloc_size;
350 char *name;
353 /* Include VFS stuff */
355 #include "smb_acls.h"
356 #include "vfs.h"
358 struct dfree_cached_info {
359 time_t last_dfree_time;
360 uint64_t dfree_ret;
361 uint64_t bsize;
362 uint64_t dfree;
363 uint64_t dsize;
366 struct dptr_struct;
368 struct share_params {
369 int service;
372 typedef struct connection_struct {
373 struct connection_struct *next, *prev;
374 struct smbd_server_connection *sconn; /* can be NULL */
375 unsigned cnum; /* an index passed over the wire */
376 struct share_params *params;
377 bool force_user;
378 struct vuid_cache vuid_cache;
379 bool printer;
380 bool ipc;
381 bool read_only; /* Attributes for the current user of the share. */
382 uint32_t share_access;
383 /* Does this filesystem honor
384 sub second timestamps on files
385 and directories when setting time ? */
386 enum timestamp_set_resolution ts_res;
387 char *connectpath;
388 char *origpath;
390 struct vfs_handle_struct *vfs_handles; /* for the new plugins */
393 * This represents the user information on this connection. Depending
394 * on the vuid using this tid, this might change per SMB request.
396 struct auth_session_info *session_info;
399 * If the "force group" parameter is set, this is the primary gid that
400 * may be used in the users token, depending on the vuid using this tid.
402 gid_t force_group_gid;
404 uint16 vuid; /* vuid of user who *opened* this connection, or UID_FIELD_INVALID */
406 time_t lastused;
407 time_t lastused_count;
408 bool used;
409 int num_files_open;
410 unsigned int num_smb_operations; /* Count of smb operations on this tree. */
411 int encrypt_level;
412 bool encrypted_tid;
414 /* Semantics requested by the client or forced by the server config. */
415 bool case_sensitive;
416 bool case_preserve;
417 bool short_case_preserve;
419 /* Semantics provided by the underlying filesystem. */
420 int fs_capabilities;
421 /* Device number of the directory of the share mount.
422 Used to ensure unique FileIndex returns. */
423 SMB_DEV_T base_share_dev;
425 name_compare_entry *hide_list; /* Per-share list of files to return as hidden. */
426 name_compare_entry *veto_list; /* Per-share list of files to veto (never show). */
427 name_compare_entry *veto_oplock_list; /* Per-share list of files to refuse oplocks on. */
428 name_compare_entry *aio_write_behind_list; /* Per-share list of files to use aio write behind on. */
429 struct dfree_cached_info *dfree_info;
430 struct trans_state *pending_trans;
431 struct notify_context *notify_ctx;
433 struct rpc_pipe_client *spoolss_pipe;
435 } connection_struct;
437 struct current_user {
438 connection_struct *conn;
439 uint16 vuid;
440 struct security_unix_token ut;
441 struct security_token *nt_user_token;
444 struct smbd_smb2_request;
445 struct privilege_paths;
447 struct smb_request {
448 uint8_t cmd;
449 uint16 flags2;
450 uint16 smbpid;
451 uint64_t mid; /* For compatibility with SMB2. */
452 uint32_t seqnum;
453 uint16 vuid;
454 uint16 tid;
455 uint8 wct;
456 const uint16_t *vwv;
457 uint16_t buflen;
458 const uint8_t *buf;
459 const uint8 *inbuf;
462 * Async handling in the main smb processing loop is directed by
463 * outbuf: reply_xxx routines indicate sync behaviour by putting their
464 * reply into "outbuf". If they leave it as NULL, they take care of it
465 * themselves, possibly later.
467 * If async handling is wanted, the reply_xxx routine must make sure
468 * that it talloc_move()s the smb_req somewhere else.
470 uint8 *outbuf;
472 size_t unread_bytes;
473 bool encrypted;
474 connection_struct *conn;
475 struct smbd_server_connection *sconn;
476 struct smb_perfcount_data pcd;
479 * Chained request handling
481 struct files_struct *chain_fsp;
484 * Here we collect the outbufs from the chain handlers
486 uint8_t *chain_outbuf;
489 * state information for async smb handling
491 void *async_priv;
493 bool done;
496 * Back pointer to smb2 request.
498 struct smbd_smb2_request *smb2req;
501 * Pathnames used if request done
502 * under privilege.
504 struct privilege_paths *priv_paths;
507 /* Defines for the sent_oplock_break field above. */
508 #define NO_BREAK_SENT 0
509 #define BREAK_TO_NONE_SENT 1
510 #define LEVEL_II_BREAK_SENT 2
512 typedef struct {
513 fstring smb_name; /* user name from the client */
514 fstring unix_name; /* unix user name of a validated user */
515 fstring domain; /* domain that the client specified */
516 } userdom_struct;
518 /* used for network interfaces */
519 struct interface {
520 struct interface *next, *prev;
521 char *name;
522 int flags;
523 struct sockaddr_storage ip;
524 struct sockaddr_storage netmask;
525 struct sockaddr_storage bcast;
528 #define SHARE_MODE_FLAG_POSIX_OPEN 0x1
530 #include "librpc/gen_ndr/server_id.h"
532 /* oplock break message definition - linearization of share_mode_entry.
534 Offset Data length.
535 0 struct server_id pid 4
536 4 uint16 op_mid 8
537 12 uint16 op_type 2
538 14 uint32 access_mask 4
539 18 uint32 share_access 4
540 22 uint32 private_options 4
541 26 uint32 time sec 4
542 30 uint32 time usec 4
543 34 uint64 dev 8 bytes
544 42 uint64 inode 8 bytes
545 50 uint64 extid 8 bytes
546 58 unsigned long file_id 4 bytes
547 62 uint32 uid 4 bytes
548 66 uint16 flags 2 bytes
549 68 uint32 name_hash 4 bytes
554 #define OP_BREAK_MSG_PID_OFFSET 0
555 #define OP_BREAK_MSG_MID_OFFSET 4
556 #define OP_BREAK_MSG_OP_TYPE_OFFSET 12
557 #define OP_BREAK_MSG_ACCESS_MASK_OFFSET 14
558 #define OP_BREAK_MSG_SHARE_ACCESS_OFFSET 18
559 #define OP_BREAK_MSG_PRIV_OFFSET 22
560 #define OP_BREAK_MSG_TIME_SEC_OFFSET 26
561 #define OP_BREAK_MSG_TIME_USEC_OFFSET 30
562 #define OP_BREAK_MSG_DEV_OFFSET 34
563 #define OP_BREAK_MSG_INO_OFFSET 42
564 #define OP_BREAK_MSG_EXTID_OFFSET 50
565 #define OP_BREAK_MSG_FILE_ID_OFFSET 58
566 #define OP_BREAK_MSG_UID_OFFSET 62
567 #define OP_BREAK_MSG_FLAGS_OFFSET 66
568 #define OP_BREAK_MSG_NAME_HASH_OFFSET 68
570 #define OP_BREAK_MSG_VNN_OFFSET 72
571 #define MSG_SMB_SHARE_MODE_ENTRY_SIZE 76
573 #define NT_HASH_LEN 16
574 #define LM_HASH_LEN 16
576 /* key and data in the connections database - used in smbstatus and smbd */
577 struct connections_key {
578 struct server_id pid;
579 int cnum;
580 fstring name;
583 struct connections_data {
584 int magic;
585 struct server_id pid;
586 int cnum;
587 uid_t uid;
588 gid_t gid;
589 char servicename[FSTRING_LEN];
590 char addr[24];
591 char machine[FSTRING_LEN];
592 time_t start;
595 * This field used to hold the msg_flags. For compatibility reasons,
596 * keep the data structure in the tdb file the same.
598 uint32 unused_compatitibility_field;
601 /* offsets into message for common items */
602 #define smb_com (NBT_HDR_SIZE+HDR_COM)
603 #define smb_rcls (NBT_HDR_SIZE+HDR_RCLS)
604 #define smb_reh (NBT_HDR_SIZE+HDR_REH)
605 #define smb_err (NBT_HDR_SIZE+HDR_ERR)
606 #define smb_flg (NBT_HDR_SIZE+HDR_FLG)
607 #define smb_flg2 (NBT_HDR_SIZE+HDR_FLG2)
608 #define smb_pidhigh (NBT_HDR_SIZE+HDR_PIDHIGH)
609 #define smb_ss_field (NBT_HDR_SIZE+HDR_SS_FIELD)
610 #define smb_tid (NBT_HDR_SIZE+HDR_TID)
611 #define smb_pid (NBT_HDR_SIZE+HDR_PID)
612 #define smb_uid (NBT_HDR_SIZE+HDR_UID)
613 #define smb_mid (NBT_HDR_SIZE+HDR_MID)
614 #define smb_wct (NBT_HDR_SIZE+HDR_WCT)
615 #define smb_vwv (NBT_HDR_SIZE+HDR_VWV)
616 #define smb_vwv0 (smb_vwv+( 0*2))
617 #define smb_vwv1 (smb_vwv+( 1*2))
618 #define smb_vwv2 (smb_vwv+( 2*2))
619 #define smb_vwv3 (smb_vwv+( 3*2))
620 #define smb_vwv4 (smb_vwv+( 4*2))
621 #define smb_vwv5 (smb_vwv+( 5*2))
622 #define smb_vwv6 (smb_vwv+( 6*2))
623 #define smb_vwv7 (smb_vwv+( 7*2))
624 #define smb_vwv8 (smb_vwv+( 8*2))
625 #define smb_vwv9 (smb_vwv+( 9*2))
626 #define smb_vwv10 (smb_vwv+(10*2))
627 #define smb_vwv11 (smb_vwv+(11*2))
628 #define smb_vwv12 (smb_vwv+(12*2))
629 #define smb_vwv13 (smb_vwv+(13*2))
630 #define smb_vwv14 (smb_vwv+(14*2))
631 #define smb_vwv15 (smb_vwv+(15*2))
632 #define smb_vwv16 (smb_vwv+(16*2))
633 #define smb_vwv17 (smb_vwv+(17*2))
635 /* These are the trans subcommands */
636 #define TRANSACT_SETNAMEDPIPEHANDLESTATE 0x01
637 #define TRANSACT_DCERPCCMD 0x26
638 #define TRANSACT_WAITNAMEDPIPEHANDLESTATE 0x53
640 /* These are the TRANS2 sub commands */
641 #define TRANSACT2_OPEN 0x00
642 #define TRANSACT2_FINDFIRST 0x01
643 #define TRANSACT2_FINDNEXT 0x02
644 #define TRANSACT2_QFSINFO 0x03
645 #define TRANSACT2_SETFSINFO 0x04
646 #define TRANSACT2_QPATHINFO 0x05
647 #define TRANSACT2_SETPATHINFO 0x06
648 #define TRANSACT2_QFILEINFO 0x07
649 #define TRANSACT2_SETFILEINFO 0x08
650 #define TRANSACT2_FSCTL 0x09
651 #define TRANSACT2_IOCTL 0x0A
652 #define TRANSACT2_FINDNOTIFYFIRST 0x0B
653 #define TRANSACT2_FINDNOTIFYNEXT 0x0C
654 #define TRANSACT2_MKDIR 0x0D
655 #define TRANSACT2_SESSION_SETUP 0x0E
656 #define TRANSACT2_GET_DFS_REFERRAL 0x10
657 #define TRANSACT2_REPORT_DFS_INCONSISTANCY 0x11
659 /* These are the NT transact sub commands. */
660 #define NT_TRANSACT_CREATE 1
661 #define NT_TRANSACT_IOCTL 2
662 #define NT_TRANSACT_SET_SECURITY_DESC 3
663 #define NT_TRANSACT_NOTIFY_CHANGE 4
664 #define NT_TRANSACT_RENAME 5
665 #define NT_TRANSACT_QUERY_SECURITY_DESC 6
666 #define NT_TRANSACT_GET_USER_QUOTA 7
667 #define NT_TRANSACT_SET_USER_QUOTA 8
669 /* These are the NT transact_get_user_quota sub commands */
670 #define TRANSACT_GET_USER_QUOTA_LIST_CONTINUE 0x0000
671 #define TRANSACT_GET_USER_QUOTA_LIST_START 0x0100
672 #define TRANSACT_GET_USER_QUOTA_FOR_SID 0x0101
674 /* Relevant IOCTL codes */
675 #define IOCTL_QUERY_JOB_INFO 0x530060
677 /* these are the trans2 sub fields for primary requests */
678 #define smb_tpscnt smb_vwv0
679 #define smb_tdscnt smb_vwv1
680 #define smb_mprcnt smb_vwv2
681 #define smb_mdrcnt smb_vwv3
682 #define smb_msrcnt smb_vwv4
683 #define smb_flags smb_vwv5
684 #define smb_timeout smb_vwv6
685 #define smb_pscnt smb_vwv9
686 #define smb_psoff smb_vwv10
687 #define smb_dscnt smb_vwv11
688 #define smb_dsoff smb_vwv12
689 #define smb_suwcnt smb_vwv13
690 #define smb_setup smb_vwv14
691 #define smb_setup0 smb_setup
692 #define smb_setup1 (smb_setup+2)
693 #define smb_setup2 (smb_setup+4)
695 /* these are for the secondary requests */
696 #define smb_spscnt smb_vwv2
697 #define smb_spsoff smb_vwv3
698 #define smb_spsdisp smb_vwv4
699 #define smb_sdscnt smb_vwv5
700 #define smb_sdsoff smb_vwv6
701 #define smb_sdsdisp smb_vwv7
702 #define smb_sfid smb_vwv8
704 /* and these for responses */
705 #define smb_tprcnt smb_vwv0
706 #define smb_tdrcnt smb_vwv1
707 #define smb_prcnt smb_vwv3
708 #define smb_proff smb_vwv4
709 #define smb_prdisp smb_vwv5
710 #define smb_drcnt smb_vwv6
711 #define smb_droff smb_vwv7
712 #define smb_drdisp smb_vwv8
714 /* these are for the NT trans primary request. */
715 #define smb_nt_MaxSetupCount smb_vwv0
716 #define smb_nt_Flags (smb_vwv0 + 1)
717 #define smb_nt_TotalParameterCount (smb_vwv0 + 3)
718 #define smb_nt_TotalDataCount (smb_vwv0 + 7)
719 #define smb_nt_MaxParameterCount (smb_vwv0 + 11)
720 #define smb_nt_MaxDataCount (smb_vwv0 + 15)
721 #define smb_nt_ParameterCount (smb_vwv0 + 19)
722 #define smb_nt_ParameterOffset (smb_vwv0 + 23)
723 #define smb_nt_DataCount (smb_vwv0 + 27)
724 #define smb_nt_DataOffset (smb_vwv0 + 31)
725 #define smb_nt_SetupCount (smb_vwv0 + 35)
726 #define smb_nt_Function (smb_vwv0 + 36)
727 #define smb_nt_SetupStart (smb_vwv0 + 38)
729 /* these are for the NT trans secondary request. */
730 #define smb_nts_TotalParameterCount (smb_vwv0 + 3)
731 #define smb_nts_TotalDataCount (smb_vwv0 + 7)
732 #define smb_nts_ParameterCount (smb_vwv0 + 11)
733 #define smb_nts_ParameterOffset (smb_vwv0 + 15)
734 #define smb_nts_ParameterDisplacement (smb_vwv0 + 19)
735 #define smb_nts_DataCount (smb_vwv0 + 23)
736 #define smb_nts_DataOffset (smb_vwv0 + 27)
737 #define smb_nts_DataDisplacement (smb_vwv0 + 31)
739 /* these are for the NT trans reply. */
740 #define smb_ntr_TotalParameterCount (smb_vwv0 + 3)
741 #define smb_ntr_TotalDataCount (smb_vwv0 + 7)
742 #define smb_ntr_ParameterCount (smb_vwv0 + 11)
743 #define smb_ntr_ParameterOffset (smb_vwv0 + 15)
744 #define smb_ntr_ParameterDisplacement (smb_vwv0 + 19)
745 #define smb_ntr_DataCount (smb_vwv0 + 23)
746 #define smb_ntr_DataOffset (smb_vwv0 + 27)
747 #define smb_ntr_DataDisplacement (smb_vwv0 + 31)
749 /* these are for the NT create_and_X */
750 #define smb_ntcreate_NameLength (smb_vwv0 + 5)
751 #define smb_ntcreate_Flags (smb_vwv0 + 7)
752 #define smb_ntcreate_RootDirectoryFid (smb_vwv0 + 11)
753 #define smb_ntcreate_DesiredAccess (smb_vwv0 + 15)
754 #define smb_ntcreate_AllocationSize (smb_vwv0 + 19)
755 #define smb_ntcreate_FileAttributes (smb_vwv0 + 27)
756 #define smb_ntcreate_ShareAccess (smb_vwv0 + 31)
757 #define smb_ntcreate_CreateDisposition (smb_vwv0 + 35)
758 #define smb_ntcreate_CreateOptions (smb_vwv0 + 39)
759 #define smb_ntcreate_ImpersonationLevel (smb_vwv0 + 43)
760 #define smb_ntcreate_SecurityFlags (smb_vwv0 + 47)
762 /* this is used on a TConX. I'm not sure the name is very helpful though */
763 #define SMB_SUPPORT_SEARCH_BITS 0x0001
764 #define SMB_SHARE_IN_DFS 0x0002
766 /* Named pipe write mode flags. Used in writeX calls. */
767 #define PIPE_RAW_MODE 0x4
768 #define PIPE_START_MESSAGE 0x8
770 /* the desired access to use when opening a pipe */
771 #define DESIRED_ACCESS_PIPE 0x2019f
773 /* Mapping of access rights to UNIX perms. */
774 #define UNIX_ACCESS_RWX FILE_GENERIC_ALL
775 #define UNIX_ACCESS_R FILE_GENERIC_READ
776 #define UNIX_ACCESS_W FILE_GENERIC_WRITE
777 #define UNIX_ACCESS_X FILE_GENERIC_EXECUTE
779 /* Mapping of access rights to UNIX perms. for a UNIX directory. */
780 #define UNIX_DIRECTORY_ACCESS_RWX FILE_GENERIC_ALL
781 #define UNIX_DIRECTORY_ACCESS_R FILE_GENERIC_READ
782 #define UNIX_DIRECTORY_ACCESS_W (FILE_GENERIC_WRITE|FILE_DELETE_CHILD)
783 #define UNIX_DIRECTORY_ACCESS_X FILE_GENERIC_EXECUTE
785 #if 0
787 * This is the old mapping we used to use. To get W2KSP2 profiles
788 * working we need to map to the canonical file perms.
790 #define UNIX_ACCESS_RWX (UNIX_ACCESS_R|UNIX_ACCESS_W|UNIX_ACCESS_X)
791 #define UNIX_ACCESS_R (READ_CONTROL_ACCESS|SYNCHRONIZE_ACCESS|\
792 FILE_READ_ATTRIBUTES|FILE_READ_EA|FILE_READ_DATA)
793 #define UNIX_ACCESS_W (READ_CONTROL_ACCESS|SYNCHRONIZE_ACCESS|\
794 FILE_WRITE_ATTRIBUTES|FILE_WRITE_EA|\
795 FILE_APPEND_DATA|FILE_WRITE_DATA)
796 #define UNIX_ACCESS_X (READ_CONTROL_ACCESS|SYNCHRONIZE_ACCESS|\
797 FILE_EXECUTE|FILE_READ_ATTRIBUTES)
798 #endif
800 #define UNIX_ACCESS_NONE (WRITE_OWNER_ACCESS)
802 /* Flags field. */
803 #define REQUEST_OPLOCK 2
804 #define REQUEST_BATCH_OPLOCK 4
805 #define OPEN_DIRECTORY 8
806 #define EXTENDED_RESPONSE_REQUIRED 0x10
808 /* ShareAccess field. */
809 #define FILE_SHARE_NONE 0 /* Cannot be used in bitmask. */
810 #define FILE_SHARE_READ 1
811 #define FILE_SHARE_WRITE 2
812 #define FILE_SHARE_DELETE 4
814 /* Flags - combined with attributes. */
815 #define FILE_FLAG_WRITE_THROUGH 0x80000000L
816 #define FILE_FLAG_NO_BUFFERING 0x20000000L
817 #define FILE_FLAG_RANDOM_ACCESS 0x10000000L
818 #define FILE_FLAG_SEQUENTIAL_SCAN 0x08000000L
819 #define FILE_FLAG_DELETE_ON_CLOSE 0x04000000L
820 #define FILE_FLAG_BACKUP_SEMANTICS 0x02000000L
821 #define FILE_FLAG_POSIX_SEMANTICS 0x01000000L
823 /* CreateDisposition field. */
824 #define FILE_SUPERSEDE 0 /* File exists overwrite/supersede. File not exist create. */
825 #define FILE_OPEN 1 /* File exists open. File not exist fail. */
826 #define FILE_CREATE 2 /* File exists fail. File not exist create. */
827 #define FILE_OPEN_IF 3 /* File exists open. File not exist create. */
828 #define FILE_OVERWRITE 4 /* File exists overwrite. File not exist fail. */
829 #define FILE_OVERWRITE_IF 5 /* File exists overwrite. File not exist create. */
831 /* CreateOptions field. */
832 #define FILE_DIRECTORY_FILE 0x0001
833 #define FILE_WRITE_THROUGH 0x0002
834 #define FILE_SEQUENTIAL_ONLY 0x0004
835 #define FILE_NO_INTERMEDIATE_BUFFERING 0x0008
836 #define FILE_SYNCHRONOUS_IO_ALERT 0x0010 /* may be ignored */
837 #define FILE_SYNCHRONOUS_IO_NONALERT 0x0020 /* may be ignored */
838 #define FILE_NON_DIRECTORY_FILE 0x0040
839 #define FILE_CREATE_TREE_CONNECTION 0x0080 /* ignore, should be zero */
840 #define FILE_COMPLETE_IF_OPLOCKED 0x0100 /* ignore, should be zero */
841 #define FILE_NO_EA_KNOWLEDGE 0x0200
842 #define FILE_EIGHT_DOT_THREE_ONLY 0x0400 /* aka OPEN_FOR_RECOVERY: ignore, should be zero */
843 #define FILE_RANDOM_ACCESS 0x0800
844 #define FILE_DELETE_ON_CLOSE 0x1000
845 #define FILE_OPEN_BY_FILE_ID 0x2000
846 #define FILE_OPEN_FOR_BACKUP_INTENT 0x4000
847 #define FILE_NO_COMPRESSION 0x8000
848 #define FILE_RESERVER_OPFILTER 0x00100000 /* ignore, should be zero */
849 #define FILE_OPEN_REPARSE_POINT 0x00200000
850 #define FILE_OPEN_NO_RECALL 0x00400000
851 #define FILE_OPEN_FOR_FREE_SPACE_QUERY 0x00800000 /* ignore should be zero */
853 #define NTCREATEX_OPTIONS_MUST_IGNORE_MASK (0x008F0480)
855 #define NTCREATEX_OPTIONS_INVALID_PARAM_MASK (0xFF100030)
858 * Private create options used by the ntcreatex processing code. From Samba4.
859 * We reuse some ignored flags for private use. Passed in the private_flags
860 * argument.
862 #define NTCREATEX_OPTIONS_PRIVATE_DENY_DOS 0x0001
863 #define NTCREATEX_OPTIONS_PRIVATE_DENY_FCB 0x0002
865 /* Private options for streams support */
866 #define NTCREATEX_OPTIONS_PRIVATE_STREAM_DELETE 0x0004
868 /* Private options for printer support */
869 #define NTCREATEX_OPTIONS_PRIVATE_DELETE_ON_CLOSE 0x0008
871 /* Responses when opening a file. */
872 #define FILE_WAS_SUPERSEDED 0
873 #define FILE_WAS_OPENED 1
874 #define FILE_WAS_CREATED 2
875 #define FILE_WAS_OVERWRITTEN 3
877 /* Flag for NT transact rename call. */
878 #define RENAME_REPLACE_IF_EXISTS 1
880 /* flags for SMBntrename call (from Samba4) */
881 #define RENAME_FLAG_MOVE_CLUSTER_INFORMATION 0x102 /* ???? */
882 #define RENAME_FLAG_HARD_LINK 0x103
883 #define RENAME_FLAG_RENAME 0x104
884 #define RENAME_FLAG_COPY 0x105
886 /* Filesystem Attributes. */
887 #define FILE_CASE_SENSITIVE_SEARCH 0x00000001
888 #define FILE_CASE_PRESERVED_NAMES 0x00000002
889 #define FILE_UNICODE_ON_DISK 0x00000004
890 /* According to cifs9f, this is 4, not 8 */
891 /* Acconding to testing, this actually sets the security attribute! */
892 #define FILE_PERSISTENT_ACLS 0x00000008
893 #define FILE_FILE_COMPRESSION 0x00000010
894 #define FILE_VOLUME_QUOTAS 0x00000020
895 #define FILE_SUPPORTS_SPARSE_FILES 0x00000040
896 #define FILE_SUPPORTS_REPARSE_POINTS 0x00000080
897 #define FILE_SUPPORTS_REMOTE_STORAGE 0x00000100
898 #define FS_LFN_APIS 0x00004000
899 #define FILE_VOLUME_IS_COMPRESSED 0x00008000
900 #define FILE_SUPPORTS_OBJECT_IDS 0x00010000
901 #define FILE_SUPPORTS_ENCRYPTION 0x00020000
902 #define FILE_NAMED_STREAMS 0x00040000
903 #define FILE_READ_ONLY_VOLUME 0x00080000
905 /* ChangeNotify flags. */
906 #define FILE_NOTIFY_CHANGE_FILE_NAME 0x001
907 #define FILE_NOTIFY_CHANGE_DIR_NAME 0x002
908 #define FILE_NOTIFY_CHANGE_ATTRIBUTES 0x004
909 #define FILE_NOTIFY_CHANGE_SIZE 0x008
910 #define FILE_NOTIFY_CHANGE_LAST_WRITE 0x010
911 #define FILE_NOTIFY_CHANGE_LAST_ACCESS 0x020
912 #define FILE_NOTIFY_CHANGE_CREATION 0x040
913 #define FILE_NOTIFY_CHANGE_EA 0x080
914 #define FILE_NOTIFY_CHANGE_SECURITY 0x100
915 #define FILE_NOTIFY_CHANGE_STREAM_NAME 0x00000200
916 #define FILE_NOTIFY_CHANGE_STREAM_SIZE 0x00000400
917 #define FILE_NOTIFY_CHANGE_STREAM_WRITE 0x00000800
919 #define FILE_NOTIFY_CHANGE_NAME \
920 (FILE_NOTIFY_CHANGE_FILE_NAME|FILE_NOTIFY_CHANGE_DIR_NAME)
922 /* change notify action results */
923 #define NOTIFY_ACTION_ADDED 1
924 #define NOTIFY_ACTION_REMOVED 2
925 #define NOTIFY_ACTION_MODIFIED 3
926 #define NOTIFY_ACTION_OLD_NAME 4
927 #define NOTIFY_ACTION_NEW_NAME 5
928 #define NOTIFY_ACTION_ADDED_STREAM 6
929 #define NOTIFY_ACTION_REMOVED_STREAM 7
930 #define NOTIFY_ACTION_MODIFIED_STREAM 8
933 /* where to find the base of the SMB packet proper */
934 #define smb_base(buf) (((const char *)(buf))+4)
936 /* we don't allow server strings to be longer than 48 characters as
937 otherwise NT will not honour the announce packets */
938 #define MAX_SERVER_STRING_LENGTH 48
941 #define SMB_SUCCESS 0 /* The request was successful. */
943 #ifdef WITH_DFS
944 void dfs_unlogin(void);
945 extern int dcelogin_atmost_once;
946 #endif
948 #ifdef NOSTRDUP
949 char *strdup(char *s);
950 #endif
952 #ifndef SELECT_CAST
953 #define SELECT_CAST
954 #endif
956 /* This was set by JHT in liaison with Jeremy Allison early 1997
957 * History:
958 * Version 4.0 - never made public
959 * Version 4.10 - New to 1.9.16p2, lost in space 1.9.16p3 to 1.9.16p9
960 * - Reappeared in 1.9.16p11 with fixed smbd services
961 * Version 4.20 - To indicate that nmbd and browsing now works better
962 * Version 4.50 - Set at release of samba-2.2.0 by JHT
964 * Note: In the presence of NT4.X do not set above 4.9
965 * Setting this above 4.9 can have undesired side-effects.
966 * This may change again in Samba-3.0 after further testing. JHT
969 #define SAMBA_MAJOR_NBT_ANNOUNCE_VERSION 0x04
970 #define SAMBA_MINOR_NBT_ANNOUNCE_VERSION 0x09
972 /* Browser Election Values */
973 #define BROWSER_ELECTION_VERSION 0x010f
974 #define BROWSER_CONSTANT 0xaa55
976 /* TCONX Flag (smb_vwv2). */
977 #define TCONX_FLAG_EXTENDED_RESPONSE 0x8
979 /* File Status Flags. See:
981 http://msdn.microsoft.com/en-us/library/cc246334(PROT.13).aspx
984 #define NO_EAS 0x1
985 #define NO_SUBSTREAMS 0x2
986 #define NO_REPARSETAG 0x4
988 /* printing types */
989 enum printing_types {PRINT_BSD,PRINT_SYSV,PRINT_AIX,PRINT_HPUX,
990 PRINT_QNX,PRINT_PLP,PRINT_LPRNG,PRINT_SOFTQ,
991 PRINT_CUPS,PRINT_LPRNT,PRINT_LPROS2,PRINT_IPRINT
992 #if defined(DEVELOPER) || defined(ENABLE_BUILD_FARM_HACKS)
993 ,PRINT_TEST,PRINT_VLP
994 #endif /* DEVELOPER */
997 /* LDAP SSL options */
998 enum ldap_ssl_types {LDAP_SSL_OFF, LDAP_SSL_START_TLS};
1000 /* LDAP PASSWD SYNC methods */
1001 enum ldap_passwd_sync_types {LDAP_PASSWD_SYNC_ON, LDAP_PASSWD_SYNC_OFF, LDAP_PASSWD_SYNC_ONLY};
1004 * This should be under the HAVE_KRB5 flag but since they're used
1005 * in lp_kerberos_method(), they ned to be always available
1006 * If you add any entries to KERBEROS_VERIFY defines, please modify USE.*KEYTAB macros
1007 * so they remain accurate.
1010 #define KERBEROS_VERIFY_SECRETS 0
1011 #define KERBEROS_VERIFY_SYSTEM_KEYTAB 1
1012 #define KERBEROS_VERIFY_DEDICATED_KEYTAB 2
1013 #define KERBEROS_VERIFY_SECRETS_AND_KEYTAB 3
1015 /* Remote architectures we know about. */
1016 enum remote_arch_types {RA_UNKNOWN, RA_WFWG, RA_OS2, RA_WIN95, RA_WINNT,
1017 RA_WIN2K, RA_WINXP, RA_WIN2K3, RA_VISTA,
1018 RA_SAMBA, RA_CIFSFS, RA_WINXP64, RA_OSX};
1020 /* case handling */
1021 enum case_handling {CASE_LOWER,CASE_UPPER};
1023 /* ACL compatibility */
1024 enum acl_compatibility {ACL_COMPAT_AUTO, ACL_COMPAT_WINNT, ACL_COMPAT_WIN2K};
1026 * Global value meaing that the smb_uid field should be
1027 * ingored (in share level security and protocol level == CORE)
1030 #define UID_FIELD_INVALID 0
1031 #define VUID_OFFSET 100 /* Amount to bias returned vuid numbers */
1034 * Size of buffer to use when moving files across filesystems.
1036 #define COPYBUF_SIZE (8*1024)
1039 * Map the Core and Extended Oplock requesst bits down
1040 * to common bits (EXCLUSIVE_OPLOCK & BATCH_OPLOCK).
1044 * Core protocol.
1046 #define CORE_OPLOCK_REQUEST(inbuf) \
1047 ((CVAL(inbuf,smb_flg)&(FLAG_REQUEST_OPLOCK|FLAG_REQUEST_BATCH_OPLOCK))>>5)
1050 * Extended protocol.
1052 #define EXTENDED_OPLOCK_REQUEST(inbuf) ((SVAL(inbuf,smb_vwv2)&((1<<1)|(1<<2)))>>1)
1055 * Bits we test with.
1056 * Note these must fit into 16-bits.
1059 #define NO_OPLOCK OPLOCK_NONE
1060 #define EXCLUSIVE_OPLOCK OPLOCK_EXCLUSIVE
1061 #define BATCH_OPLOCK OPLOCK_BATCH
1062 #define LEVEL_II_OPLOCK OPLOCK_LEVEL_II
1064 /* The following are Samba-private. */
1065 #define INTERNAL_OPEN_ONLY 0x8
1066 #define FAKE_LEVEL_II_OPLOCK 0x10 /* Client requested no_oplock, but we have to
1067 * inform potential level2 holders on
1068 * write. */
1069 #define DEFERRED_OPEN_ENTRY 0x20
1070 /* #define UNUSED_SHARE_MODE_ENTRY 0x40 */ /* Not used anymore */
1071 #define FORCE_OPLOCK_BREAK_TO_NONE 0x80
1073 /* None of the following should ever appear in fsp->oplock_request. */
1074 #define SAMBA_PRIVATE_OPLOCK_MASK (INTERNAL_OPEN_ONLY|DEFERRED_OPEN_ENTRY|FORCE_OPLOCK_BREAK_TO_NONE)
1076 #define EXCLUSIVE_OPLOCK_TYPE(lck) ((lck) & ((unsigned int)EXCLUSIVE_OPLOCK|(unsigned int)BATCH_OPLOCK))
1077 #define BATCH_OPLOCK_TYPE(lck) ((lck) & (unsigned int)BATCH_OPLOCK)
1078 #define LEVEL_II_OPLOCK_TYPE(lck) ((lck) & ((unsigned int)LEVEL_II_OPLOCK|(unsigned int)FAKE_LEVEL_II_OPLOCK))
1080 /* kernel_oplock_message definition.
1082 struct kernel_oplock_message {
1083 uint64_t dev;
1084 uint64_t inode;
1085 unit64_t extid;
1086 unsigned long file_id;
1089 Offset Data length.
1090 0 uint64_t dev 8 bytes
1091 8 uint64_t inode 8 bytes
1092 16 uint64_t extid 8 bytes
1093 24 unsigned long file_id 4 bytes
1097 #define MSG_SMB_KERNEL_BREAK_SIZE 28
1099 /* file_renamed_message definition.
1101 struct file_renamed_message {
1102 uint64_t dev;
1103 uint64_t inode;
1104 char names[1]; A variable area containing sharepath and filename.
1107 Offset Data length.
1108 0 uint64_t dev 8 bytes
1109 8 uint64_t inode 8 bytes
1110 16 unit64_t extid 8 bytes
1111 24 char [] name zero terminated namelen bytes
1112 minimum length == 24.
1116 #define MSG_FILE_RENAMED_MIN_SIZE 24
1119 * On the wire return values for oplock types.
1122 #define CORE_OPLOCK_GRANTED (1<<5)
1123 #define EXTENDED_OPLOCK_GRANTED (1<<15)
1125 #define NO_OPLOCK_RETURN 0
1126 #define EXCLUSIVE_OPLOCK_RETURN 1
1127 #define BATCH_OPLOCK_RETURN 2
1128 #define LEVEL_II_OPLOCK_RETURN 3
1130 /* Oplock levels */
1131 #define OPLOCKLEVEL_NONE 0
1132 #define OPLOCKLEVEL_II 1
1135 * Capabilities abstracted for different systems.
1138 enum smbd_capability {
1139 KERNEL_OPLOCK_CAPABILITY,
1140 DMAPI_ACCESS_CAPABILITY,
1141 LEASE_CAPABILITY
1145 * Kernel oplocks capability flags.
1148 /* Level 2 oplocks are supported natively by kernel oplocks. */
1149 #define KOPLOCKS_LEVEL2_SUPPORTED 0x1
1151 /* The kernel notifies deferred openers when they can retry the open. */
1152 #define KOPLOCKS_DEFERRED_OPEN_NOTIFICATION 0x2
1154 /* The kernel notifies smbds when an oplock break times out. */
1155 #define KOPLOCKS_TIMEOUT_NOTIFICATION 0x4
1157 /* The kernel notifies smbds when an oplock is broken. */
1158 #define KOPLOCKS_OPLOCK_BROKEN_NOTIFICATION 0x8
1160 struct kernel_oplocks_ops;
1161 struct kernel_oplocks {
1162 const struct kernel_oplocks_ops *ops;
1163 uint32_t flags;
1164 void *private_data;
1167 enum level2_contention_type {
1168 LEVEL2_CONTEND_ALLOC_SHRINK,
1169 LEVEL2_CONTEND_ALLOC_GROW,
1170 LEVEL2_CONTEND_SET_FILE_LEN,
1171 LEVEL2_CONTEND_FILL_SPARSE,
1172 LEVEL2_CONTEND_WRITE,
1173 LEVEL2_CONTEND_WINDOWS_BRL,
1174 LEVEL2_CONTEND_POSIX_BRL
1177 /* if a kernel does support oplocks then a structure of the following
1178 typee is used to describe how to interact with the kernel */
1179 struct kernel_oplocks_ops {
1180 bool (*set_oplock)(struct kernel_oplocks *ctx,
1181 files_struct *fsp, int oplock_type);
1182 void (*release_oplock)(struct kernel_oplocks *ctx,
1183 files_struct *fsp, int oplock_type);
1184 void (*contend_level2_oplocks_begin)(files_struct *fsp,
1185 enum level2_contention_type type);
1186 void (*contend_level2_oplocks_end)(files_struct *fsp,
1187 enum level2_contention_type type);
1190 #include "smb_macros.h"
1192 #define MAX_NETBIOSNAME_LEN 16
1193 /* DOS character, NetBIOS namestring. Type used on the wire. */
1194 typedef char nstring[MAX_NETBIOSNAME_LEN];
1195 /* Unix character, NetBIOS namestring. Type used to manipulate name in nmbd. */
1196 typedef char unstring[MAX_NETBIOSNAME_LEN*4];
1198 /* A netbios name structure. */
1199 struct nmb_name {
1200 nstring name;
1201 char scope[64];
1202 unsigned int name_type;
1205 /* A netbios node status array element. */
1206 struct node_status {
1207 nstring name;
1208 unsigned char type;
1209 unsigned char flags;
1212 /* The extra info from a NetBIOS node status query */
1213 struct node_status_extra {
1214 unsigned char mac_addr[6];
1215 /* There really is more here ... */
1218 typedef struct user_struct {
1219 struct user_struct *next, *prev;
1220 uint16 vuid; /* Tag for this entry. */
1222 char *session_keystr; /* used by utmp and pam session code.
1223 TDB key string */
1224 int homes_snum;
1226 struct auth_session_info *session_info;
1228 struct gensec_security *gensec_security;
1229 } user_struct;
1232 Do you want session setups at user level security with a invalid
1233 password to be rejected or allowed in as guest? WinNT rejects them
1234 but it can be a pain as it means "net view" needs to use a password
1236 You have 3 choices in the setting of map_to_guest:
1238 "NEVER_MAP_TO_GUEST" means session setups with an invalid password
1239 are rejected. This is the default.
1241 "MAP_TO_GUEST_ON_BAD_USER" means session setups with an invalid password
1242 are rejected, unless the username does not exist, in which case it
1243 is treated as a guest login
1245 "MAP_TO_GUEST_ON_BAD_PASSWORD" means session setups with an invalid password
1246 are treated as a guest login
1248 Note that map_to_guest only has an effect in user or server
1249 level security.
1252 #define NEVER_MAP_TO_GUEST 0
1253 #define MAP_TO_GUEST_ON_BAD_USER 1
1254 #define MAP_TO_GUEST_ON_BAD_PASSWORD 2
1255 #define MAP_TO_GUEST_ON_BAD_UID 3
1257 #define SAFE_NETBIOS_CHARS ". -_"
1259 /* The maximum length of a trust account password.
1260 Used when we randomly create it, 15 char passwords
1261 exceed NT4's max password length */
1263 #define DEFAULT_TRUST_ACCOUNT_PASSWORD_LENGTH 14
1265 #define PORT_NONE 0
1266 #ifndef LDAP_PORT
1267 #define LDAP_PORT 389
1268 #endif
1269 #define LDAP_GC_PORT 3268
1271 /* used by the IP comparison function */
1272 struct ip_service {
1273 struct sockaddr_storage ss;
1274 unsigned port;
1277 struct ea_struct {
1278 uint8 flags;
1279 char *name;
1280 DATA_BLOB value;
1283 struct ea_list {
1284 struct ea_list *next, *prev;
1285 struct ea_struct ea;
1288 /* EA names used internally in Samba. KEEP UP TO DATE with prohibited_ea_names in trans2.c !. */
1289 #define SAMBA_POSIX_INHERITANCE_EA_NAME "user.SAMBA_PAI"
1290 /* EA to use for DOS attributes */
1291 #define SAMBA_XATTR_DOS_ATTRIB "user.DOSATTRIB"
1292 /* Prefix for DosStreams in the vfs_streams_xattr module */
1293 #define SAMBA_XATTR_DOSSTREAM_PREFIX "user.DosStream."
1294 /* Prefix for xattrs storing streams. */
1295 #define SAMBA_XATTR_MARKER "user.SAMBA_STREAMS"
1297 /* map readonly options */
1298 enum mapreadonly_options {MAP_READONLY_NO, MAP_READONLY_YES, MAP_READONLY_PERMISSIONS};
1300 /* usershare error codes. */
1301 enum usershare_err {
1302 USERSHARE_OK=0,
1303 USERSHARE_MALFORMED_FILE,
1304 USERSHARE_BAD_VERSION,
1305 USERSHARE_MALFORMED_PATH,
1306 USERSHARE_MALFORMED_COMMENT_DEF,
1307 USERSHARE_MALFORMED_ACL_DEF,
1308 USERSHARE_ACL_ERR,
1309 USERSHARE_PATH_NOT_ABSOLUTE,
1310 USERSHARE_PATH_IS_DENIED,
1311 USERSHARE_PATH_NOT_ALLOWED,
1312 USERSHARE_PATH_NOT_DIRECTORY,
1313 USERSHARE_POSIX_ERR,
1314 USERSHARE_MALFORMED_SHARENAME_DEF,
1315 USERSHARE_BAD_SHARENAME
1318 /* Different reasons for closing a file. */
1319 enum file_close_type {NORMAL_CLOSE=0,SHUTDOWN_CLOSE,ERROR_CLOSE};
1321 /* Used in SMB_FS_OBJECTID_INFORMATION requests. Must be exactly 48 bytes. */
1322 #define SAMBA_EXTENDED_INFO_MAGIC 0x536d4261 /* "SmBa" */
1323 #define SAMBA_EXTENDED_INFO_VERSION_STRING_LENGTH 28
1324 struct smb_extended_info {
1325 uint32 samba_magic; /* Always SAMBA_EXTRA_INFO_MAGIC */
1326 uint32 samba_version; /* Major/Minor/Release/Revision */
1327 uint32 samba_subversion; /* Prerelease/RC/Vendor patch */
1328 NTTIME samba_gitcommitdate;
1329 char samba_version_string[SAMBA_EXTENDED_INFO_VERSION_STRING_LENGTH];
1332 /* time info */
1333 struct smb_file_time {
1334 struct timespec mtime;
1335 struct timespec atime;
1336 struct timespec ctime;
1337 struct timespec create_time;
1341 * unix_convert_flags
1343 #define UCF_SAVE_LCOMP 0x00000001
1344 #define UCF_ALWAYS_ALLOW_WCARD_LCOMP 0x00000002
1345 #define UCF_COND_ALLOW_WCARD_LCOMP 0x00000004
1346 #define UCF_POSIX_PATHNAMES 0x00000008
1347 #define UCF_UNIX_NAME_LOOKUP 0x00000010
1350 * smb_filename
1352 struct smb_filename {
1353 char *base_name;
1354 char *stream_name;
1355 char *original_lcomp;
1356 SMB_STRUCT_STAT st;
1360 * Pathnames used if request done
1361 * under privilege.
1363 struct privilege_paths {
1364 struct smb_filename parent_name;
1365 struct smb_filename file_name;
1368 /* Used to keep track of deferred opens. */
1369 struct deferred_open_record;
1371 /* Used inside aio code. */
1372 struct aio_extra;
1375 * Reasons for cache flush.
1378 enum flush_reason_enum {
1379 SEEK_FLUSH,
1380 READ_FLUSH,
1381 WRITE_FLUSH,
1382 READRAW_FLUSH,
1383 OPLOCK_RELEASE_FLUSH,
1384 CLOSE_FLUSH,
1385 SYNC_FLUSH,
1386 SIZECHANGE_FLUSH,
1387 /* NUM_FLUSH_REASONS must remain the last value in the enumeration. */
1388 NUM_FLUSH_REASONS};
1390 #endif /* _SMB_H */