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