include/smb.h

説明を見る。
00001 /* 
00002    Unix SMB/CIFS implementation.
00003    SMB parameters and setup, plus a whole lot more.
00004    
00005    Copyright (C) Andrew Tridgell              1992-2000
00006    Copyright (C) John H Terpstra              1996-2002
00007    Copyright (C) Luke Kenneth Casson Leighton 1996-2000
00008    Copyright (C) Paul Ashton                  1998-2000
00009    Copyright (C) Simo Sorce                   2001-2002
00010    Copyright (C) Martin Pool                  2002
00011    
00012    This program is free software; you can redistribute it and/or modify
00013    it under the terms of the GNU General Public License as published by
00014    the Free Software Foundation; either version 2 of the License, or
00015    (at your option) any later version.
00016    
00017    This program is distributed in the hope that it will be useful,
00018    but WITHOUT ANY WARRANTY; without even the implied warranty of
00019    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00020    GNU General Public License for more details.
00021    
00022    You should have received a copy of the GNU General Public License
00023    along with this program; if not, write to the Free Software
00024    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
00025 */
00026 
00027 #ifndef _SMB_H
00028 #define _SMB_H
00029 
00030 /* logged when starting the various Samba daemons */
00031 #define COPYRIGHT_STARTUP_MESSAGE       "Copyright Andrew Tridgell and the Samba Team 1992-2008"
00032 
00033 
00034 #if defined(LARGE_SMB_OFF_T)
00035 #define BUFFER_SIZE (128*1024)
00036 #else /* no large readwrite possible */
00037 #define BUFFER_SIZE (0xFFFF)
00038 #endif
00039 
00040 #define SAFETY_MARGIN 1024
00041 #define LARGE_WRITEX_HDR_SIZE 65
00042 
00043 #define NMB_PORT 137
00044 #define DGRAM_PORT 138
00045 #define SMB_PORT1 445
00046 #define SMB_PORT2 139
00047 #define SMB_PORTS "445 139"
00048 
00049 #define Undefined (-1)
00050 #define False (0)
00051 #define True (1)
00052 #define Auto (2)
00053 #define Required (3)
00054 
00055 #define SIZEOFWORD 2
00056 
00057 #ifndef DEF_CREATE_MASK
00058 #define DEF_CREATE_MASK (0755)
00059 #endif
00060 
00061 /* string manipulation flags - see clistr.c and srvstr.c */
00062 #define STR_TERMINATE 1
00063 #define STR_UPPER 2
00064 #define STR_ASCII 4
00065 #define STR_UNICODE 8
00066 #define STR_NOALIGN 16
00067 #define STR_TERMINATE_ASCII 128
00068 
00069 /* how long to wait for secondary SMB packets (milli-seconds) */
00070 #define SMB_SECONDARY_WAIT (60*1000)
00071 
00072 /* Debugging stuff */
00073 #include "debug.h"
00074 
00075 /* this defines the error codes that receive_smb can put in smb_read_error */
00076 #define READ_TIMEOUT 1
00077 #define READ_EOF 2
00078 #define READ_ERROR 3
00079 #define WRITE_ERROR 4 /* This error code can go into the client smb_rw_error. */
00080 #define READ_BAD_SIG 5
00081 #define DO_NOT_DO_TDIS 6 /* cli_close_connection() check for this when smbfs wants to keep tree connected */
00082 
00083 #define DIR_STRUCT_SIZE 43
00084 
00085 /* these define the attribute byte as seen by DOS */
00086 #define aRONLY (1L<<0)          /* 0x01 */
00087 #define aHIDDEN (1L<<1)         /* 0x02 */
00088 #define aSYSTEM (1L<<2)         /* 0x04 */
00089 #define aVOLID (1L<<3)          /* 0x08 */
00090 #define aDIR (1L<<4)            /* 0x10 */
00091 #define aARCH (1L<<5)           /* 0x20 */
00092 
00093 /* deny modes */
00094 #define DENY_DOS 0
00095 #define DENY_ALL 1
00096 #define DENY_WRITE 2
00097 #define DENY_READ 3
00098 #define DENY_NONE 4
00099 #define DENY_FCB 7
00100 
00101 /* open modes */
00102 #define DOS_OPEN_RDONLY 0
00103 #define DOS_OPEN_WRONLY 1
00104 #define DOS_OPEN_RDWR 2
00105 #define DOS_OPEN_EXEC 3
00106 #define DOS_OPEN_FCB 0xF
00107 
00108 /* define shifts and masks for share and open modes. */
00109 #define OPENX_MODE_MASK 0xF
00110 #define DENY_MODE_SHIFT 4
00111 #define DENY_MODE_MASK 0x7
00112 #define GET_OPENX_MODE(x) ((x) & OPENX_MODE_MASK)
00113 #define SET_OPENX_MODE(x) ((x) & OPENX_MODE_MASK)
00114 #define GET_DENY_MODE(x) (((x)>>DENY_MODE_SHIFT) & DENY_MODE_MASK)
00115 #define SET_DENY_MODE(x) (((x) & DENY_MODE_MASK) <<DENY_MODE_SHIFT)
00116 
00117 /* Sync on open file (not sure if used anymore... ?) */
00118 #define FILE_SYNC_OPENMODE (1<<14)
00119 #define GET_FILE_SYNC_OPENMODE(x) (((x) & FILE_SYNC_OPENMODE) ? True : False)
00120 
00121 /* open disposition values */
00122 #define OPENX_FILE_EXISTS_FAIL 0
00123 #define OPENX_FILE_EXISTS_OPEN 1
00124 #define OPENX_FILE_EXISTS_TRUNCATE 2
00125 
00126 /* mask for open disposition. */
00127 #define OPENX_FILE_OPEN_MASK 0x3
00128 
00129 #define GET_FILE_OPENX_DISPOSITION(x) ((x) & FILE_OPEN_MASK)
00130 #define SET_FILE_OPENX_DISPOSITION(x) ((x) & FILE_OPEN_MASK)
00131 
00132 /* The above can be OR'ed with... */
00133 #define OPENX_FILE_CREATE_IF_NOT_EXIST 0x10
00134 #define OPENX_FILE_FAIL_IF_NOT_EXIST 0
00135 
00136 #include "doserr.h"
00137 
00138 typedef union unid_t {
00139         uid_t uid;
00140         gid_t gid;
00141 } unid_t;
00142 
00143 /*
00144  * SMB UCS2 (16-bit unicode) internal type.
00145  * smb_ucs2_t is *always* in little endian format.
00146  */
00147 
00148 typedef uint16 smb_ucs2_t;
00149 
00150 /* ucs2 string types. */
00151 typedef smb_ucs2_t wpstring[PSTRING_LEN];
00152 typedef smb_ucs2_t wfstring[FSTRING_LEN];
00153 
00154 #ifdef WORDS_BIGENDIAN
00155 #define UCS2_SHIFT 8
00156 #else
00157 #define UCS2_SHIFT 0
00158 #endif
00159 
00160 /* turn a 7 bit character into a ucs2 character */
00161 #define UCS2_CHAR(c) ((c) << UCS2_SHIFT)
00162 
00163 /* return an ascii version of a ucs2 character */
00164 #define UCS2_TO_CHAR(c) (((c) >> UCS2_SHIFT) & 0xff)
00165 
00166 /* Copy into a smb_ucs2_t from a possibly unaligned buffer. Return the copied smb_ucs2_t */
00167 #define COPY_UCS2_CHAR(dest,src) (((unsigned char *)(dest))[0] = ((unsigned char *)(src))[0],\
00168                                 ((unsigned char *)(dest))[1] = ((unsigned char *)(src))[1], (dest))
00169 
00170 /* Large data type for manipulating uint32 unicode codepoints */
00171 typedef uint32 codepoint_t;
00172 #define INVALID_CODEPOINT ((codepoint_t)-1)
00173 
00174 /* pipe string names */
00175 #define PIPE_LANMAN   "\\PIPE\\LANMAN"
00176 #define PIPE_SRVSVC   "\\PIPE\\srvsvc"
00177 #define PIPE_SAMR     "\\PIPE\\samr"
00178 #define PIPE_WINREG   "\\PIPE\\winreg"
00179 #define PIPE_WKSSVC   "\\PIPE\\wkssvc"
00180 #define PIPE_NETLOGON "\\PIPE\\NETLOGON"
00181 #define PIPE_NTLSA    "\\PIPE\\ntlsa"
00182 #define PIPE_NTSVCS   "\\PIPE\\ntsvcs"
00183 #define PIPE_LSASS    "\\PIPE\\lsass"
00184 #define PIPE_LSARPC   "\\PIPE\\lsarpc"
00185 #define PIPE_SPOOLSS  "\\PIPE\\spoolss"
00186 #define PIPE_NETDFS   "\\PIPE\\netdfs"
00187 #define PIPE_ECHO     "\\PIPE\\rpcecho"
00188 #define PIPE_SHUTDOWN "\\PIPE\\initshutdown"
00189 #define PIPE_EPM      "\\PIPE\\epmapper"
00190 #define PIPE_SVCCTL   "\\PIPE\\svcctl"
00191 #define PIPE_EVENTLOG "\\PIPE\\eventlog"
00192 
00193 #define PIPE_NETLOGON_PLAIN "\\NETLOGON"
00194 
00195 #define PI_LSARPC               0
00196 #define PI_LSARPC_DS            1
00197 #define PI_SAMR                 2
00198 #define PI_NETLOGON             3
00199 #define PI_SRVSVC               4
00200 #define PI_WKSSVC               5
00201 #define PI_WINREG               6
00202 #define PI_SPOOLSS              7
00203 #define PI_NETDFS               8
00204 #define PI_ECHO                 9
00205 #define PI_SHUTDOWN             10
00206 #define PI_SVCCTL               11
00207 #define PI_EVENTLOG             12
00208 #define PI_NTSVCS               13
00209 #define PI_MAX_PIPES            14
00210 
00211 /* 64 bit time (100usec) since ????? - cifs6.txt, section 3.5, page 30 */
00212 typedef uint64_t NTTIME;
00213 
00214 
00215 /* Allowable account control bits */
00216 #define ACB_DISABLED                    0x00000001  /* 1 = User account disabled */
00217 #define ACB_HOMDIRREQ                   0x00000002  /* 1 = Home directory required */
00218 #define ACB_PWNOTREQ                    0x00000004  /* 1 = User password not required */
00219 #define ACB_TEMPDUP                     0x00000008  /* 1 = Temporary duplicate account */
00220 #define ACB_NORMAL                      0x00000010  /* 1 = Normal user account */
00221 #define ACB_MNS                         0x00000020  /* 1 = MNS logon user account */
00222 #define ACB_DOMTRUST                    0x00000040  /* 1 = Interdomain trust account */
00223 #define ACB_WSTRUST                     0x00000080  /* 1 = Workstation trust account */
00224 #define ACB_SVRTRUST                    0x00000100  /* 1 = Server trust account (BDC) */
00225 #define ACB_PWNOEXP                     0x00000200  /* 1 = User password does not expire */
00226 #define ACB_AUTOLOCK                    0x00000400  /* 1 = Account auto locked */
00227 
00228 /* only valid for > Windows 2000 */
00229 #define ACB_ENC_TXT_PWD_ALLOWED         0x00000800  /* 1 = Text password encryped */
00230 #define ACB_SMARTCARD_REQUIRED          0x00001000  /* 1 = Smart Card required */
00231 #define ACB_TRUSTED_FOR_DELEGATION      0x00002000  /* 1 = Trusted for Delegation */
00232 #define ACB_NOT_DELEGATED               0x00004000  /* 1 = Not delegated */
00233 #define ACB_USE_DES_KEY_ONLY            0x00008000  /* 1 = Use DES key only */
00234 #define ACB_DONT_REQUIRE_PREAUTH        0x00010000  /* 1 = Preauth not required */
00235 #define ACB_PWEXPIRED                   0x00020000  /* 1 = Password is expired */
00236 #define ACB_NO_AUTH_DATA_REQD           0x00080000  /* 1 = No authorization data required */
00237 
00238 #define MAX_HOURS_LEN 32
00239 
00240 #ifndef MAXSUBAUTHS
00241 #define MAXSUBAUTHS 15 /* max sub authorities in a SID */
00242 #endif
00243 
00244 #define SID_MAX_SIZE ((size_t)(8+(MAXSUBAUTHS*4)))
00245 
00246 /* SID Types */
00247 enum lsa_SidType {
00248         SID_NAME_USE_NONE = 0,
00249         SID_NAME_USER    = 1, /* user */
00250         SID_NAME_DOM_GRP,     /* domain group */
00251         SID_NAME_DOMAIN,      /* domain sid */
00252         SID_NAME_ALIAS,       /* local group */
00253         SID_NAME_WKN_GRP,     /* well-known group */
00254         SID_NAME_DELETED,     /* deleted account: needed for c2 rating */
00255         SID_NAME_INVALID,     /* invalid account */
00256         SID_NAME_UNKNOWN,     /* unknown sid type */
00257         SID_NAME_COMPUTER     /* sid for a computer */
00258 };
00259 
00260 
00261 #define LOOKUP_NAME_NONE                0x00000000
00262 #define LOOKUP_NAME_ISOLATED            0x00000001  /* Look up unqualified names */
00263 #define LOOKUP_NAME_REMOTE              0x00000002  /* Ask others */
00264 #define LOOKUP_NAME_GROUP               0x00000004  /* (unused) This is a NASTY hack for
00265                                                         valid users = @foo where foo also
00266                                                         exists in as user. */
00267 #define LOOKUP_NAME_EXPLICIT            0x00000008  /* Only include
00268                                                         explicitly mapped names and not
00269                                                         the Unix {User,Group} domain */
00270 #define LOOKUP_NAME_BUILTIN             0x00000010 /* builtin names */
00271 #define LOOKUP_NAME_WKN                 0x00000020 /* well known names */
00272 #define LOOKUP_NAME_DOMAIN              0x00000040 /* only lookup own domain */
00273 #define LOOKUP_NAME_LOCAL               (LOOKUP_NAME_ISOLATED\
00274                                         |LOOKUP_NAME_BUILTIN\
00275                                         |LOOKUP_NAME_WKN\
00276                                         |LOOKUP_NAME_DOMAIN)
00277 #define LOOKUP_NAME_ALL                 (LOOKUP_NAME_ISOLATED\
00278                                         |LOOKUP_NAME_REMOTE\
00279                                         |LOOKUP_NAME_BUILTIN\
00280                                         |LOOKUP_NAME_WKN\
00281                                         |LOOKUP_NAME_DOMAIN)
00282 
00283 /**
00284  * @brief Security Identifier
00285  *
00286  * @sa http://msdn.microsoft.com/library/default.asp?url=/library/en-us/security/accctrl_38yn.asp
00287  **/
00288 typedef struct dom_sid {
00289         uint8  sid_rev_num;             /**< SID revision number */
00290         uint8  num_auths;               /**< Number of sub-authorities */
00291         uint8  id_auth[6];              /**< Identifier Authority */
00292         /*
00293          *  Pointer to sub-authorities.
00294          *
00295          * @note The values in these uint32's are in *native* byteorder, not
00296          * neccessarily little-endian...... JRA.
00297          */
00298         uint32 sub_auths[MAXSUBAUTHS];  
00299 } DOM_SID;
00300 
00301 #define dom_sid2 dom_sid
00302 #define dom_sid28 dom_sid
00303 
00304 enum id_mapping {
00305         ID_UNKNOWN = 0,
00306         ID_MAPPED,
00307         ID_UNMAPPED,
00308         ID_EXPIRED
00309 };
00310 
00311 enum id_type {
00312         ID_TYPE_NOT_SPECIFIED = 0,
00313         ID_TYPE_UID,
00314         ID_TYPE_GID
00315 };
00316 
00317 struct unixid {
00318         uint32_t id;
00319         enum id_type type;
00320 };
00321 
00322 struct id_map {
00323         DOM_SID *sid;
00324         struct unixid xid;
00325         enum id_mapping status;
00326 };
00327 
00328 #include "librpc/ndr/misc.h"
00329 #include "librpc/ndr/security.h"
00330 #include "librpc/ndr/libndr.h"
00331 #include "librpc/gen_ndr/wkssvc.h"
00332 
00333 struct lsa_dom_info {
00334         BOOL valid;
00335         DOM_SID sid;
00336         const char *name;
00337         int num_idxs;
00338         int *idxs;
00339 };
00340 
00341 struct lsa_name_info {
00342         uint32 rid;
00343         enum lsa_SidType type;
00344         const char *name;
00345         int dom_idx;
00346 };
00347 
00348 /* Some well-known SIDs */
00349 extern const DOM_SID global_sid_World_Domain;
00350 extern const DOM_SID global_sid_World;
00351 extern const DOM_SID global_sid_Creator_Owner_Domain;
00352 extern const DOM_SID global_sid_NT_Authority;
00353 extern const DOM_SID global_sid_System;
00354 extern const DOM_SID global_sid_NULL;
00355 extern const DOM_SID global_sid_Authenticated_Users;
00356 extern const DOM_SID global_sid_Network;
00357 extern const DOM_SID global_sid_Creator_Owner;
00358 extern const DOM_SID global_sid_Creator_Group;
00359 extern const DOM_SID global_sid_Anonymous;
00360 extern const DOM_SID global_sid_Builtin;
00361 extern const DOM_SID global_sid_Builtin_Administrators;
00362 extern const DOM_SID global_sid_Builtin_Users;
00363 extern const DOM_SID global_sid_Builtin_Guests;
00364 extern const DOM_SID global_sid_Builtin_Power_Users;
00365 extern const DOM_SID global_sid_Builtin_Account_Operators;
00366 extern const DOM_SID global_sid_Builtin_Server_Operators;
00367 extern const DOM_SID global_sid_Builtin_Print_Operators;
00368 extern const DOM_SID global_sid_Builtin_Backup_Operators;
00369 extern const DOM_SID global_sid_Builtin_Replicator;
00370 extern const DOM_SID global_sid_Builtin_PreWin2kAccess;
00371 extern const DOM_SID global_sid_Unix_Users;
00372 extern const DOM_SID global_sid_Unix_Groups;
00373 
00374 /*
00375  * The complete list of SIDS belonging to this user.
00376  * Created when a vuid is registered.
00377  * The definition of the user_sids array is as follows :
00378  *
00379  * token->user_sids[0] = primary user SID.
00380  * token->user_sids[1] = primary group SID.
00381  * token->user_sids[2..num_sids] = supplementary group SIDS.
00382  */
00383 
00384 #define PRIMARY_USER_SID_INDEX 0
00385 #define PRIMARY_GROUP_SID_INDEX 1
00386 
00387 typedef struct nt_user_token {
00388         size_t num_sids;
00389         DOM_SID *user_sids;
00390         SE_PRIV privileges;
00391 } NT_USER_TOKEN;
00392 
00393 typedef struct _unix_token {
00394         uid_t uid;
00395         gid_t gid;
00396         int ngroups;
00397         gid_t *groups;
00398 } UNIX_USER_TOKEN;
00399 
00400 /* 32 bit time (sec) since 01jan1970 - cifs6.txt, section 3.5, page 30 */
00401 typedef struct time_info {
00402         uint32 time;
00403 } UTIME;
00404 
00405 /* Structure used when SMBwritebmpx is active */
00406 typedef struct {
00407         size_t wr_total_written; /* So we know when to discard this */
00408         int32 wr_timeout;
00409         int32 wr_errclass; /* Cached errors */
00410         int32 wr_error; /* Cached errors */
00411         NTSTATUS wr_status; /* Cached errors */
00412         BOOL  wr_mode; /* write through mode) */
00413         BOOL  wr_discard; /* discard all further data */
00414 } write_bmpx_struct;
00415 
00416 typedef struct write_cache {
00417         SMB_OFF_T file_size;
00418         SMB_OFF_T offset;
00419         size_t alloc_size;
00420         size_t data_size;
00421         char *data;
00422 } write_cache;
00423 
00424 typedef struct {
00425         smb_ucs2_t *origname;
00426         smb_ucs2_t *filename;
00427         SMB_STRUCT_STAT *statinfo;
00428 } smb_filename;
00429 
00430 #include "fake_file.h"
00431 
00432 struct fd_handle {
00433         size_t ref_count;
00434         int fd;
00435         SMB_BIG_UINT position_information;
00436         SMB_OFF_T pos;
00437         uint32 private_options; /* NT Create options, but we only look at
00438                                  * NTCREATEX_OPTIONS_PRIVATE_DENY_DOS and
00439                                  * NTCREATEX_OPTIONS_PRIVATE_DENY_FCB (Except
00440                                  * for print files *only*, where
00441                                  * DELETE_ON_CLOSE is not stored in the share
00442                                  * mode database.
00443                                  */
00444         unsigned long file_id;
00445 };
00446 
00447 struct messaging_context;
00448 struct event_context;
00449 struct fd_event;
00450 struct timed_event;
00451 struct idle_event;
00452 struct share_mode_entry;
00453 struct uuid;
00454 
00455 struct vfs_fsp_data {
00456     struct vfs_fsp_data *next;
00457     struct vfs_handle_struct *owner;
00458     /* NOTE: This structure contains two pointers so that we can guarantee
00459      * that the end of the structure is always both 4-byte and 8-byte aligned.
00460      */
00461 };
00462 
00463 /* the basic packet size, assuming no words or bytes */
00464 #define smb_size 39
00465 
00466 struct notify_change {
00467         uint32_t action;
00468         const char *name;
00469 };
00470 
00471 struct notify_mid_map;
00472 struct notify_entry;
00473 struct notify_event;
00474 struct notify_change_request;
00475 struct sys_notify_backend;
00476 struct sys_notify_context {
00477         struct event_context *ev;
00478         struct connection_struct *conn;
00479         void *private_data;     /* For use by the system backend */
00480 };
00481 
00482 struct notify_change_buf {
00483         /*
00484          * If no requests are pending, changes are queued here. Simple array,
00485          * we only append.
00486          */
00487 
00488         /*
00489          * num_changes == -1 means that we have got a catch-all change, when
00490          * asked we just return NT_STATUS_OK without specific changes.
00491          */
00492         int num_changes;
00493         struct notify_change *changes;
00494 
00495         /*
00496          * If no changes are around requests are queued here. Using a linked
00497          * list, because we have to append at the end and delete from the top.
00498          */
00499         struct notify_change_request *requests;
00500 };
00501 
00502 typedef struct files_struct {
00503         struct files_struct *next, *prev;
00504         int fnum;
00505         struct connection_struct *conn;
00506         struct fd_handle *fh;
00507         unsigned int num_smb_operations;
00508         uint16 rap_print_jobid;
00509         SMB_DEV_T dev;
00510         SMB_INO_T inode;
00511         SMB_BIG_UINT initial_allocation_size; /* Faked up initial allocation on disk. */
00512         mode_t mode;
00513         uint16 file_pid;
00514         uint16 vuid;
00515         write_bmpx_struct *wbmpx_ptr;
00516         write_cache *wcp;
00517         struct timeval open_time;
00518         uint32 access_mask;             /* NTCreateX access bits (FILE_READ_DATA etc.) */
00519         uint32 share_access;            /* NTCreateX share constants (FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE). */
00520         BOOL pending_modtime_owner;
00521         struct timespec pending_modtime;
00522         struct timespec last_write_time;
00523         int oplock_type;
00524         int sent_oplock_break;
00525         struct timed_event *oplock_timeout;
00526         struct lock_struct last_lock_failure;
00527         int current_lock_count; /* Count the number of outstanding locks and pending locks. */
00528 
00529         struct share_mode_entry *pending_break_messages;
00530         int num_pending_break_messages;
00531 
00532         BOOL can_lock;
00533         BOOL can_read;
00534         BOOL can_write;
00535         BOOL print_file;
00536         BOOL modified;
00537         BOOL is_directory;
00538         BOOL is_stat;
00539         BOOL aio_write_behind;
00540         BOOL lockdb_clean;
00541         BOOL initial_delete_on_close; /* Only set at NTCreateX if file was created. */
00542         BOOL posix_open;
00543         char *fsp_name;
00544 
00545         struct vfs_fsp_data *vfs_extension;
00546         FAKE_FILE_HANDLE *fake_file_handle;
00547 
00548         struct notify_change_buf *notify;
00549 } files_struct;
00550 
00551 #include "ntquotas.h"
00552 #include "sysquotas.h"
00553 
00554 /* used to hold an arbitrary blob of data */
00555 typedef struct data_blob_ {
00556         uint8 *data;
00557         size_t length;
00558         void (*free)(struct data_blob_ *data_blob);
00559 } DATA_BLOB;
00560 
00561 /*
00562  * Structure used to keep directory state information around.
00563  * Used in NT change-notify code.
00564  */
00565 
00566 typedef struct {
00567         time_t modify_time;
00568         time_t status_time;
00569 } dir_status_struct;
00570 
00571 struct vuid_cache_entry {
00572         uint16 vuid;
00573         BOOL read_only;
00574         BOOL admin_user;
00575 };
00576 
00577 struct vuid_cache {
00578         unsigned int entries;
00579         struct vuid_cache_entry array[VUID_CACHE_SIZE];
00580 };
00581 
00582 typedef struct {
00583         char *name;
00584         BOOL is_wild;
00585 } name_compare_entry;
00586 
00587 struct trans_state {
00588         struct trans_state *next, *prev;
00589         uint16 vuid;
00590         uint16 mid;
00591 
00592         uint32 max_param_return;
00593         uint32 max_data_return;
00594         uint32 max_setup_return;
00595 
00596         uint8 cmd;              /* SMBtrans or SMBtrans2 */
00597 
00598         fstring name;           /* for trans requests */
00599         uint16 call;            /* for trans2 and nttrans requests */
00600 
00601         BOOL close_on_completion;
00602         BOOL one_way;
00603 
00604         unsigned int setup_count;
00605         uint16 *setup;
00606 
00607         size_t received_data;
00608         size_t received_param;
00609 
00610         size_t total_param;
00611         char *param;
00612 
00613         size_t total_data;
00614         char *data;
00615 };
00616 
00617 /* Include VFS stuff */
00618 
00619 struct security_descriptor_info;
00620 
00621 #include "smb_acls.h"
00622 #include "vfs.h"
00623 
00624 struct dfree_cached_info {
00625         time_t last_dfree_time;
00626         SMB_BIG_UINT dfree_ret;
00627         SMB_BIG_UINT bsize;
00628         SMB_BIG_UINT dfree;
00629         SMB_BIG_UINT dsize;
00630 };
00631 
00632 struct dptr_struct;
00633 
00634 struct share_params {
00635         int service;
00636 };
00637 
00638 struct share_iterator {
00639         int next_id;
00640 };
00641 
00642 typedef struct connection_struct {
00643         struct connection_struct *next, *prev;
00644         TALLOC_CTX *mem_ctx; /* long-lived memory context for things hanging off this struct. */
00645         unsigned cnum; /* an index passed over the wire */
00646         struct share_params *params;
00647         BOOL force_user;
00648         BOOL force_group;
00649         struct vuid_cache vuid_cache;
00650         struct dptr_struct *dirptr;
00651         BOOL printer;
00652         BOOL ipc;
00653         BOOL read_only; /* Attributes for the current user of the share. */
00654         BOOL admin_user; /* Attributes for the current user of the share. */
00655         char *dirpath;
00656         char *connectpath;
00657         char *origpath;
00658 
00659         struct vfs_ops vfs;                   /* Filesystem operations */
00660         struct vfs_ops vfs_opaque;                      /* OPAQUE Filesystem operations */
00661         struct vfs_handle_struct *vfs_handles;          /* for the new plugins */
00662 
00663         char *user; /* name of user who *opened* this connection */
00664         uid_t uid; /* uid of user who *opened* this connection */
00665         gid_t gid; /* gid of user who *opened* this connection */
00666         char client_address[18]; /* String version of client IP address. */
00667 
00668         uint16 vuid; /* vuid of user who *opened* this connection, or UID_FIELD_INVALID */
00669 
00670         /* following groups stuff added by ih */
00671 
00672         /* This groups info is valid for the user that *opened* the connection */
00673         size_t ngroups;
00674         gid_t *groups;
00675         NT_USER_TOKEN *nt_user_token;
00676         
00677         time_t lastused;
00678         time_t lastused_count;
00679         BOOL used;
00680         int num_files_open;
00681         unsigned int num_smb_operations; /* Count of smb operations on this tree. */
00682 
00683         BOOL case_sensitive;
00684         BOOL case_preserve;
00685         BOOL short_case_preserve;
00686 
00687         name_compare_entry *hide_list; /* Per-share list of files to return as hidden. */
00688         name_compare_entry *veto_list; /* Per-share list of files to veto (never show). */
00689         name_compare_entry *veto_oplock_list; /* Per-share list of files to refuse oplocks on. */       
00690         name_compare_entry *aio_write_behind_list; /* Per-share list of files to use aio write behind on. */       
00691         struct dfree_cached_info *dfree_info;
00692         struct trans_state *pending_trans;
00693         struct notify_context *notify_ctx;
00694 } connection_struct;
00695 
00696 struct current_user {
00697         connection_struct *conn;
00698         uint16 vuid;
00699         UNIX_USER_TOKEN ut;
00700         NT_USER_TOKEN *nt_user_token;
00701 };
00702 
00703 /* Defines for the sent_oplock_break field above. */
00704 #define NO_BREAK_SENT 0
00705 #define BREAK_TO_NONE_SENT 1
00706 #define LEVEL_II_BREAK_SENT 2
00707 
00708 typedef struct {
00709         fstring smb_name; /* user name from the client */
00710         fstring unix_name; /* unix user name of a validated user */
00711         fstring full_name; /* to store full name (such as "Joe Bloggs") from gecos field of password file */
00712         fstring domain; /* domain that the client specified */
00713 } userdom_struct;
00714 
00715 /* Extra fields above "LPQ_PRINTING" are used to map extra NT status codes. */
00716 
00717 enum {LPQ_QUEUED=0,LPQ_PAUSED,LPQ_SPOOLING,LPQ_PRINTING,LPQ_ERROR,LPQ_DELETING,
00718       LPQ_OFFLINE,LPQ_PAPEROUT,LPQ_PRINTED,LPQ_DELETED,LPQ_BLOCKED,LPQ_USER_INTERVENTION};
00719 
00720 typedef struct _print_queue_struct {
00721         int job;                /* normally the UNIX jobid -- see note in 
00722                                    printing.c:traverse_fn_delete() */
00723         int size;
00724         int page_count;
00725         int status;
00726         int priority;
00727         time_t time;
00728         fstring fs_user;
00729         fstring fs_file;
00730 } print_queue_struct;
00731 
00732 enum {LPSTAT_OK, LPSTAT_STOPPED, LPSTAT_ERROR};
00733 
00734 typedef struct {
00735         fstring message;
00736         int qcount;
00737         int status;
00738 }  print_status_struct;
00739 
00740 /* used for server information: client, nameserv and ipc */
00741 struct server_info_struct {
00742         fstring name;
00743         uint32 type;
00744         fstring comment;
00745         fstring domain; /* used ONLY in ipc.c NOT namework.c */
00746         BOOL server_added; /* used ONLY in ipc.c NOT namework.c */
00747 };
00748 
00749 /* used for network interfaces */
00750 struct interface {
00751         struct interface *next, *prev;
00752         struct in_addr ip;
00753         struct in_addr bcast;
00754         struct in_addr nmask;
00755 };
00756 
00757 /* Internal message queue for deferred opens. */
00758 struct pending_message_list {
00759         struct pending_message_list *next, *prev;
00760         struct timeval request_time; /* When was this first issued? */
00761         struct timeval end_time; /* When does this time out? */
00762         DATA_BLOB buf;
00763         DATA_BLOB private_data;
00764 };
00765 
00766 #define SHARE_MODE_FLAG_POSIX_OPEN      0x1
00767 #define SHARE_MODE_ALLOW_INITIAL_DELETE_ON_CLOSE      0x2
00768 
00769 /* struct returned by get_share_modes */
00770 struct share_mode_entry {
00771         struct process_id pid;
00772         uint16 op_mid;
00773         uint16 op_type;
00774         uint32 access_mask;             /* NTCreateX access bits (FILE_READ_DATA etc.) */
00775         uint32 share_access;            /* NTCreateX share constants (FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE). */
00776         uint32 private_options; /* NT Create options, but we only look at
00777                                  * NTCREATEX_OPTIONS_PRIVATE_DENY_DOS and
00778                                  * NTCREATEX_OPTIONS_PRIVATE_DENY_FCB for
00779                                  * smbstatus and swat */
00780         struct timeval time;
00781         SMB_DEV_T dev;
00782         SMB_INO_T inode;
00783         unsigned long share_file_id;
00784         uint32 uid;             /* uid of file opener. */
00785         uint16 flags;           /* See SHARE_MODE_XX above. */
00786 };
00787 
00788 /* oplock break message definition - linearization of share_mode_entry.
00789 
00790 Offset  Data                    length.
00791 0       struct process_id pid   4
00792 4       uint16 op_mid           2
00793 6       uint16 op_type          2
00794 8       uint32 access_mask      4
00795 12      uint32 share_access     4
00796 16      uint32 private_options  4
00797 20      uint32 time sec         4
00798 24      uint32 time usec        4
00799 28      SMB_DEV_T dev           8 bytes.
00800 36      SMB_INO_T inode         8 bytes
00801 44      unsigned long file_id   4 bytes
00802 48      uint32 uid              4 bytes
00803 52      uint16 flags            2 bytes
00804 54
00805 
00806 */
00807 #define MSG_SMB_SHARE_MODE_ENTRY_SIZE 54
00808 
00809 struct share_mode_lock {
00810         const char *servicepath; /* canonicalized. */
00811         const char *filename;
00812         SMB_DEV_T dev;
00813         SMB_INO_T ino;
00814         int num_share_modes;
00815         struct share_mode_entry *share_modes;
00816         UNIX_USER_TOKEN *delete_token;
00817         BOOL delete_on_close;
00818         BOOL fresh;
00819         BOOL modified;
00820 };
00821 
00822 /*
00823  * Internal structure of locking.tdb share mode db.
00824  * Used by locking.c and libsmbsharemodes.c
00825  */
00826 
00827 struct locking_data {
00828         union {
00829                 struct {
00830                         int num_share_mode_entries;
00831                         BOOL delete_on_close;
00832                         uint32 delete_token_size; /* Only valid if either of
00833                                                      the two previous fields
00834                                                      are True. */
00835                 } s;
00836                 struct share_mode_entry dummy; /* Needed for alignment. */
00837         } u;
00838         /* The following four entries are implicit
00839            struct share_mode_entry modes[num_share_mode_entries];
00840            char unix_token[delete_token_size] (divisible by 4).
00841            char share_name[];
00842            char file_name[];
00843         */
00844 };
00845 
00846 /* Used to store pipe open records for NetFileEnum() */
00847 
00848 struct pipe_open_rec {
00849         struct process_id pid;
00850         uid_t uid;
00851         int pnum;
00852         fstring name;
00853 };
00854 
00855 
00856 #define NT_HASH_LEN 16
00857 #define LM_HASH_LEN 16
00858 
00859 /* Password history contants. */
00860 #define PW_HISTORY_SALT_LEN 16
00861 #define SALTED_MD5_HASH_LEN 16
00862 #define PW_HISTORY_ENTRY_LEN (PW_HISTORY_SALT_LEN+SALTED_MD5_HASH_LEN)
00863 #define MAX_PW_HISTORY_LEN 24
00864 
00865 /*
00866  * Flags for account policy.
00867  */
00868 #define AP_MIN_PASSWORD_LEN             1
00869 #define AP_PASSWORD_HISTORY             2
00870 #define AP_USER_MUST_LOGON_TO_CHG_PASS  3
00871 #define AP_MAX_PASSWORD_AGE             4
00872 #define AP_MIN_PASSWORD_AGE             5
00873 #define AP_LOCK_ACCOUNT_DURATION        6
00874 #define AP_RESET_COUNT_TIME             7
00875 #define AP_BAD_ATTEMPT_LOCKOUT          8
00876 #define AP_TIME_TO_LOGOUT               9
00877 #define AP_REFUSE_MACHINE_PW_CHANGE     10
00878 
00879 /*
00880  * Flags for local user manipulation.
00881  */
00882 
00883 #define LOCAL_ADD_USER 0x1
00884 #define LOCAL_DELETE_USER 0x2
00885 #define LOCAL_DISABLE_USER 0x4
00886 #define LOCAL_ENABLE_USER 0x8
00887 #define LOCAL_TRUST_ACCOUNT 0x10
00888 #define LOCAL_SET_NO_PASSWORD 0x20
00889 #define LOCAL_SET_PASSWORD 0x40
00890 #define LOCAL_SET_LDAP_ADMIN_PW 0x80
00891 #define LOCAL_INTERDOM_ACCOUNT 0x100
00892 #define LOCAL_AM_ROOT 0x200  /* Act as root */
00893 
00894 /* key and data in the connections database - used in smbstatus and smbd */
00895 struct connections_key {
00896         struct process_id pid;
00897         int cnum;
00898         fstring name;
00899 };
00900 
00901 struct connections_data {
00902         int magic;
00903         struct process_id pid;
00904         int cnum;
00905         uid_t uid;
00906         gid_t gid;
00907         char servicename[FSTRING_LEN];
00908         char addr[24];
00909         char machine[FSTRING_LEN];
00910         time_t start;
00911         uint32 bcast_msg_flags;
00912 };
00913 
00914 
00915 /* the following are used by loadparm for option lists */
00916 typedef enum {
00917         P_BOOL,P_BOOLREV,P_CHAR,P_INTEGER,P_OCTAL,P_LIST,
00918         P_STRING,P_USTRING,P_GSTRING,P_UGSTRING,P_ENUM,P_SEP
00919 } parm_type;
00920 
00921 typedef enum {
00922         P_LOCAL,P_GLOBAL,P_SEPARATOR,P_NONE
00923 } parm_class;
00924 
00925 struct enum_list {
00926         int value;
00927         const char *name;
00928 };
00929 
00930 struct parm_struct {
00931         const char *label;
00932         parm_type type;
00933         parm_class p_class;
00934         void *ptr;
00935         BOOL (*special)(int snum, const char *, char **);
00936         const struct enum_list *enum_list;
00937         unsigned flags;
00938         union {
00939                 BOOL bvalue;
00940                 int ivalue;
00941                 char *svalue;
00942                 char cvalue;
00943                 char **lvalue;
00944         } def;
00945 };
00946 
00947 /* The following flags are used in SWAT */
00948 #define FLAG_BASIC      0x0001 /* Display only in BASIC view */
00949 #define FLAG_SHARE      0x0002 /* file sharing options */
00950 #define FLAG_PRINT      0x0004 /* printing options */
00951 #define FLAG_GLOBAL     0x0008 /* local options that should be globally settable in SWAT */
00952 #define FLAG_WIZARD     0x0010 /* Parameters that the wizard will operate on */
00953 #define FLAG_ADVANCED   0x0020 /* Parameters that will be visible in advanced view */
00954 #define FLAG_DEVELOPER  0x0040 /* No longer used */
00955 #define FLAG_DEPRECATED 0x1000 /* options that should no longer be used */
00956 #define FLAG_HIDE       0x2000 /* options that should be hidden in SWAT */
00957 #define FLAG_DOS_STRING 0x4000 /* convert from UNIX to DOS codepage when reading this string. */
00958 
00959 struct bitmap {
00960         uint32 *b;
00961         unsigned int n;
00962 };
00963 
00964 /* offsets into message for common items */
00965 #define smb_com 8
00966 #define smb_rcls 9
00967 #define smb_reh 10
00968 #define smb_err 11
00969 #define smb_flg 13
00970 #define smb_flg2 14
00971 #define smb_pidhigh 16
00972 #define smb_ss_field 18
00973 #define smb_tid 28
00974 #define smb_pid 30
00975 #define smb_uid 32
00976 #define smb_mid 34
00977 #define smb_wct 36
00978 #define smb_vwv 37
00979 #define smb_vwv0 37
00980 #define smb_vwv1 39
00981 #define smb_vwv2 41
00982 #define smb_vwv3 43
00983 #define smb_vwv4 45
00984 #define smb_vwv5 47
00985 #define smb_vwv6 49
00986 #define smb_vwv7 51
00987 #define smb_vwv8 53
00988 #define smb_vwv9 55
00989 #define smb_vwv10 57
00990 #define smb_vwv11 59
00991 #define smb_vwv12 61
00992 #define smb_vwv13 63
00993 #define smb_vwv14 65
00994 #define smb_vwv15 67
00995 #define smb_vwv16 69
00996 #define smb_vwv17 71
00997 
00998 /* flag defines. CIFS spec 3.1.1 */
00999 #define FLAG_SUPPORT_LOCKREAD       0x01
01000 #define FLAG_CLIENT_BUF_AVAIL       0x02
01001 #define FLAG_RESERVED               0x04
01002 #define FLAG_CASELESS_PATHNAMES     0x08
01003 #define FLAG_CANONICAL_PATHNAMES    0x10
01004 #define FLAG_REQUEST_OPLOCK         0x20
01005 #define FLAG_REQUEST_BATCH_OPLOCK   0x40
01006 #define FLAG_REPLY                  0x80
01007 
01008 /* the complete */
01009 #define SMBmkdir      0x00   /* create directory */
01010 #define SMBrmdir      0x01   /* delete directory */
01011 #define SMBopen       0x02   /* open file */
01012 #define SMBcreate     0x03   /* create file */
01013 #define SMBclose      0x04   /* close file */
01014 #define SMBflush      0x05   /* flush file */
01015 #define SMBunlink     0x06   /* delete file */
01016 #define SMBmv         0x07   /* rename file */
01017 #define SMBgetatr     0x08   /* get file attributes */
01018 #define SMBsetatr     0x09   /* set file attributes */
01019 #define SMBread       0x0A   /* read from file */
01020 #define SMBwrite      0x0B   /* write to file */
01021 #define SMBlock       0x0C   /* lock byte range */
01022 #define SMBunlock     0x0D   /* unlock byte range */
01023 #define SMBctemp      0x0E   /* create temporary file */
01024 #define SMBmknew      0x0F   /* make new file */
01025 #define SMBcheckpath  0x10   /* check directory path */
01026 #define SMBexit       0x11   /* process exit */
01027 #define SMBlseek      0x12   /* seek */
01028 #define SMBtcon       0x70   /* tree connect */
01029 #define SMBtconX      0x75   /* tree connect and X*/
01030 #define SMBtdis       0x71   /* tree disconnect */
01031 #define SMBnegprot    0x72   /* negotiate protocol */
01032 #define SMBdskattr    0x80   /* get disk attributes */
01033 #define SMBsearch     0x81   /* search directory */
01034 #define SMBsplopen    0xC0   /* open print spool file */
01035 #define SMBsplwr      0xC1   /* write to print spool file */
01036 #define SMBsplclose   0xC2   /* close print spool file */
01037 #define SMBsplretq    0xC3   /* return print queue */
01038 #define SMBsends      0xD0   /* send single block message */
01039 #define SMBsendb      0xD1   /* send broadcast message */
01040 #define SMBfwdname    0xD2   /* forward user name */
01041 #define SMBcancelf    0xD3   /* cancel forward */
01042 #define SMBgetmac     0xD4   /* get machine name */
01043 #define SMBsendstrt   0xD5   /* send start of multi-block message */
01044 #define SMBsendend    0xD6   /* send end of multi-block message */
01045 #define SMBsendtxt    0xD7   /* send text of multi-block message */
01046 
01047 /* Core+ protocol */
01048 #define SMBlockread       0x13   /* Lock a range and read */
01049 #define SMBwriteunlock 0x14 /* Unlock a range then write */
01050 #define SMBreadbraw   0x1a  /* read a block of data with no smb header */
01051 #define SMBwritebraw  0x1d  /* write a block of data with no smb header */
01052 #define SMBwritec     0x20  /* secondary write request */
01053 #define SMBwriteclose 0x2c  /* write a file then close it */
01054 
01055 /* dos extended protocol */
01056 #define SMBreadBraw      0x1A   /* read block raw */
01057 #define SMBreadBmpx      0x1B   /* read block multiplexed */
01058 #define SMBreadBs        0x1C   /* read block (secondary response) */
01059 #define SMBwriteBraw     0x1D   /* write block raw */
01060 #define SMBwriteBmpx     0x1E   /* write block multiplexed */
01061 #define SMBwriteBs       0x1F   /* write block (secondary request) */
01062 #define SMBwriteC        0x20   /* write complete response */
01063 #define SMBsetattrE      0x22   /* set file attributes expanded */
01064 #define SMBgetattrE      0x23   /* get file attributes expanded */
01065 #define SMBlockingX      0x24   /* lock/unlock byte ranges and X */
01066 #define SMBtrans         0x25   /* transaction - name, bytes in/out */
01067 #define SMBtranss        0x26   /* transaction (secondary request/response) */
01068 #define SMBioctl         0x27   /* IOCTL */
01069 #define SMBioctls        0x28   /* IOCTL  (secondary request/response) */
01070 #define SMBcopy          0x29   /* copy */
01071 #define SMBmove          0x2A   /* move */
01072 #define SMBecho          0x2B   /* echo */
01073 #define SMBopenX         0x2D   /* open and X */
01074 #define SMBreadX         0x2E   /* read and X */
01075 #define SMBwriteX        0x2F   /* write and X */
01076 #define SMBsesssetupX    0x73   /* Session Set Up & X (including User Logon) */
01077 #define SMBffirst        0x82   /* find first */
01078 #define SMBfunique       0x83   /* find unique */
01079 #define SMBfclose        0x84   /* find close */
01080 #define SMBkeepalive     0x85   /* keepalive */
01081 #define SMBinvalid       0xFE   /* invalid command */
01082 
01083 /* Extended 2.0 protocol */
01084 #define SMBtrans2        0x32   /* TRANS2 protocol set */
01085 #define SMBtranss2       0x33   /* TRANS2 protocol set, secondary command */
01086 #define SMBfindclose     0x34   /* Terminate a TRANSACT2_FINDFIRST */
01087 #define SMBfindnclose    0x35   /* Terminate a TRANSACT2_FINDNOTIFYFIRST */
01088 #define SMBulogoffX      0x74   /* user logoff */
01089 
01090 /* NT SMB extensions. */
01091 #define SMBnttrans       0xA0   /* NT transact */
01092 #define SMBnttranss      0xA1   /* NT transact secondary */
01093 #define SMBntcreateX     0xA2   /* NT create and X */
01094 #define SMBntcancel      0xA4   /* NT cancel */
01095 #define SMBntrename      0xA5   /* NT rename */
01096 
01097 /* These are the trans subcommands */
01098 #define TRANSACT_SETNAMEDPIPEHANDLESTATE  0x01 
01099 #define TRANSACT_DCERPCCMD                0x26
01100 #define TRANSACT_WAITNAMEDPIPEHANDLESTATE 0x53
01101 
01102 /* These are the TRANS2 sub commands */
01103 #define TRANSACT2_OPEN                          0x00
01104 #define TRANSACT2_FINDFIRST                     0x01
01105 #define TRANSACT2_FINDNEXT                      0x02
01106 #define TRANSACT2_QFSINFO                       0x03
01107 #define TRANSACT2_SETFSINFO                     0x04
01108 #define TRANSACT2_QPATHINFO                     0x05
01109 #define TRANSACT2_SETPATHINFO                   0x06
01110 #define TRANSACT2_QFILEINFO                     0x07
01111 #define TRANSACT2_SETFILEINFO                   0x08
01112 #define TRANSACT2_FSCTL                         0x09
01113 #define TRANSACT2_IOCTL                         0x0A
01114 #define TRANSACT2_FINDNOTIFYFIRST               0x0B
01115 #define TRANSACT2_FINDNOTIFYNEXT                0x0C
01116 #define TRANSACT2_MKDIR                         0x0D
01117 #define TRANSACT2_SESSION_SETUP                 0x0E
01118 #define TRANSACT2_GET_DFS_REFERRAL              0x10
01119 #define TRANSACT2_REPORT_DFS_INCONSISTANCY      0x11
01120 
01121 /* These are the NT transact sub commands. */
01122 #define NT_TRANSACT_CREATE                1
01123 #define NT_TRANSACT_IOCTL                 2
01124 #define NT_TRANSACT_SET_SECURITY_DESC     3
01125 #define NT_TRANSACT_NOTIFY_CHANGE         4
01126 #define NT_TRANSACT_RENAME                5
01127 #define NT_TRANSACT_QUERY_SECURITY_DESC   6
01128 #define NT_TRANSACT_GET_USER_QUOTA        7
01129 #define NT_TRANSACT_SET_USER_QUOTA        8
01130 
01131 /* These are the NT transact_get_user_quota sub commands */
01132 #define TRANSACT_GET_USER_QUOTA_LIST_CONTINUE   0x0000
01133 #define TRANSACT_GET_USER_QUOTA_LIST_START      0x0100
01134 #define TRANSACT_GET_USER_QUOTA_FOR_SID         0x0101
01135 
01136 /* Relevant IOCTL codes */
01137 #define IOCTL_QUERY_JOB_INFO      0x530060
01138 
01139 /* these are the trans2 sub fields for primary requests */
01140 #define smb_tpscnt smb_vwv0
01141 #define smb_tdscnt smb_vwv1
01142 #define smb_mprcnt smb_vwv2
01143 #define smb_mdrcnt smb_vwv3
01144 #define smb_msrcnt smb_vwv4
01145 #define smb_flags smb_vwv5
01146 #define smb_timeout smb_vwv6
01147 #define smb_pscnt smb_vwv9
01148 #define smb_psoff smb_vwv10
01149 #define smb_dscnt smb_vwv11
01150 #define smb_dsoff smb_vwv12
01151 #define smb_suwcnt smb_vwv13
01152 #define smb_setup smb_vwv14
01153 #define smb_setup0 smb_setup
01154 #define smb_setup1 (smb_setup+2)
01155 #define smb_setup2 (smb_setup+4)
01156 
01157 /* these are for the secondary requests */
01158 #define smb_spscnt smb_vwv2
01159 #define smb_spsoff smb_vwv3
01160 #define smb_spsdisp smb_vwv4
01161 #define smb_sdscnt smb_vwv5
01162 #define smb_sdsoff smb_vwv6
01163 #define smb_sdsdisp smb_vwv7
01164 #define smb_sfid smb_vwv8
01165 
01166 /* and these for responses */
01167 #define smb_tprcnt smb_vwv0
01168 #define smb_tdrcnt smb_vwv1
01169 #define smb_prcnt smb_vwv3
01170 #define smb_proff smb_vwv4
01171 #define smb_prdisp smb_vwv5
01172 #define smb_drcnt smb_vwv6
01173 #define smb_droff smb_vwv7
01174 #define smb_drdisp smb_vwv8
01175 
01176 /* these are for the NT trans primary request. */
01177 #define smb_nt_MaxSetupCount smb_vwv0
01178 #define smb_nt_Flags (smb_vwv0 + 1)
01179 #define smb_nt_TotalParameterCount (smb_vwv0 + 3)
01180 #define smb_nt_TotalDataCount (smb_vwv0 + 7)
01181 #define smb_nt_MaxParameterCount (smb_vwv0 + 11)
01182 #define smb_nt_MaxDataCount (smb_vwv0 + 15)
01183 #define smb_nt_ParameterCount (smb_vwv0 + 19)
01184 #define smb_nt_ParameterOffset (smb_vwv0 + 23)
01185 #define smb_nt_DataCount (smb_vwv0 + 27)
01186 #define smb_nt_DataOffset (smb_vwv0 + 31)
01187 #define smb_nt_SetupCount (smb_vwv0 + 35)
01188 #define smb_nt_Function (smb_vwv0 + 36)
01189 #define smb_nt_SetupStart (smb_vwv0 + 38)
01190 
01191 /* these are for the NT trans secondary request. */
01192 #define smb_nts_TotalParameterCount (smb_vwv0 + 3)
01193 #define smb_nts_TotalDataCount (smb_vwv0 + 7)
01194 #define smb_nts_ParameterCount (smb_vwv0 + 11)
01195 #define smb_nts_ParameterOffset (smb_vwv0 + 15)
01196 #define smb_nts_ParameterDisplacement (smb_vwv0 + 19)
01197 #define smb_nts_DataCount (smb_vwv0 + 23)
01198 #define smb_nts_DataOffset (smb_vwv0 + 27)
01199 #define smb_nts_DataDisplacement (smb_vwv0 + 31)
01200 
01201 /* these are for the NT trans reply. */
01202 #define smb_ntr_TotalParameterCount (smb_vwv0 + 3)
01203 #define smb_ntr_TotalDataCount (smb_vwv0 + 7)
01204 #define smb_ntr_ParameterCount (smb_vwv0 + 11)
01205 #define smb_ntr_ParameterOffset (smb_vwv0 + 15)
01206 #define smb_ntr_ParameterDisplacement (smb_vwv0 + 19)
01207 #define smb_ntr_DataCount (smb_vwv0 + 23)
01208 #define smb_ntr_DataOffset (smb_vwv0 + 27)
01209 #define smb_ntr_DataDisplacement (smb_vwv0 + 31)
01210 
01211 /* these are for the NT create_and_X */
01212 #define smb_ntcreate_NameLength (smb_vwv0 + 5)
01213 #define smb_ntcreate_Flags (smb_vwv0 + 7)
01214 #define smb_ntcreate_RootDirectoryFid (smb_vwv0 + 11)
01215 #define smb_ntcreate_DesiredAccess (smb_vwv0 + 15)
01216 #define smb_ntcreate_AllocationSize (smb_vwv0 + 19)
01217 #define smb_ntcreate_FileAttributes (smb_vwv0 + 27)
01218 #define smb_ntcreate_ShareAccess (smb_vwv0 + 31)
01219 #define smb_ntcreate_CreateDisposition (smb_vwv0 + 35)
01220 #define smb_ntcreate_CreateOptions (smb_vwv0 + 39)
01221 #define smb_ntcreate_ImpersonationLevel (smb_vwv0 + 43)
01222 #define smb_ntcreate_SecurityFlags (smb_vwv0 + 47)
01223 
01224 /* this is used on a TConX. I'm not sure the name is very helpful though */
01225 #define SMB_SUPPORT_SEARCH_BITS        0x0001
01226 #define SMB_SHARE_IN_DFS               0x0002
01227 
01228 /* Named pipe write mode flags. Used in writeX calls. */
01229 #define PIPE_RAW_MODE 0x4
01230 #define PIPE_START_MESSAGE 0x8
01231 
01232 /* File Specific access rights */
01233 #define FILE_READ_DATA        0x00000001
01234 #define FILE_WRITE_DATA       0x00000002
01235 #define FILE_APPEND_DATA      0x00000004
01236 #define FILE_READ_EA          0x00000008 /* File and directory */
01237 #define FILE_WRITE_EA         0x00000010 /* File and directory */
01238 #define FILE_EXECUTE          0x00000020
01239 #define FILE_DELETE_CHILD     0x00000040
01240 #define FILE_READ_ATTRIBUTES  0x00000080
01241 #define FILE_WRITE_ATTRIBUTES 0x00000100
01242 
01243 #define FILE_ALL_ACCESS       0x000001FF
01244 
01245 /* Directory specific access rights */
01246 #define FILE_LIST_DIRECTORY   0x00000001
01247 #define FILE_ADD_FILE         0x00000002
01248 #define FILE_ADD_SUBDIRECTORY 0x00000004
01249 #define FILE_TRAVERSE         0x00000020
01250 #define FILE_DELETE_CHILD     0x00000040
01251 
01252 /* the desired access to use when opening a pipe */
01253 #define DESIRED_ACCESS_PIPE 0x2019f
01254  
01255 /* Generic access masks & rights. */
01256 #define DELETE_ACCESS        0x00010000 /* (1L<<16) */
01257 #define READ_CONTROL_ACCESS  0x00020000 /* (1L<<17) */
01258 #define WRITE_DAC_ACCESS     0x00040000 /* (1L<<18) */
01259 #define WRITE_OWNER_ACCESS   0x00080000 /* (1L<<19) */
01260 #define SYNCHRONIZE_ACCESS   0x00100000 /* (1L<<20) */
01261 
01262 #define SYSTEM_SECURITY_ACCESS 0x01000000 /* (1L<<24) */
01263 #define MAXIMUM_ALLOWED_ACCESS 0x02000000 /* (1L<<25) */
01264 #define GENERIC_ALL_ACCESS     0x10000000 /* (1<<28) */
01265 #define GENERIC_EXECUTE_ACCESS 0x20000000 /* (1<<29) */
01266 #define GENERIC_WRITE_ACCESS   0x40000000 /* (1<<30) */
01267 #define GENERIC_READ_ACCESS    ((unsigned)0x80000000) /* (((unsigned)1)<<31) */
01268 
01269 /* Mapping of generic access rights for files to specific rights. */
01270 
01271 /* This maps to 0x1F01FF */
01272 #define FILE_GENERIC_ALL (STANDARD_RIGHTS_REQUIRED_ACCESS| SYNCHRONIZE_ACCESS|FILE_ALL_ACCESS)
01273 
01274 /* This maps to 0x120089 */
01275 #define FILE_GENERIC_READ (STANDARD_RIGHTS_READ_ACCESS|FILE_READ_DATA|FILE_READ_ATTRIBUTES|\
01276                                                         FILE_READ_EA|SYNCHRONIZE_ACCESS)
01277 
01278 /* This maps to 0x120116 */
01279 #define FILE_GENERIC_WRITE (STD_RIGHT_READ_CONTROL_ACCESS|FILE_WRITE_DATA|FILE_WRITE_ATTRIBUTES|\
01280                                                         FILE_WRITE_EA|FILE_APPEND_DATA|SYNCHRONIZE_ACCESS)
01281 
01282 #define FILE_GENERIC_EXECUTE (STANDARD_RIGHTS_EXECUTE_ACCESS|\
01283                                                                 FILE_EXECUTE|SYNCHRONIZE_ACCESS)
01284 
01285 /* Share specific rights. */
01286 #define SHARE_ALL_ACCESS      FILE_GENERIC_ALL
01287 #define SHARE_READ_ONLY       (FILE_GENERIC_READ|FILE_EXECUTE)
01288 
01289 /* Mapping of access rights to UNIX perms. */
01290 #define UNIX_ACCESS_RWX         FILE_GENERIC_ALL
01291 #define UNIX_ACCESS_R           FILE_GENERIC_READ
01292 #define UNIX_ACCESS_W           FILE_GENERIC_WRITE
01293 #define UNIX_ACCESS_X           FILE_GENERIC_EXECUTE
01294 
01295 /* Mapping of access rights to UNIX perms. for a UNIX directory. */
01296 #define UNIX_DIRECTORY_ACCESS_RWX               FILE_GENERIC_ALL
01297 #define UNIX_DIRECTORY_ACCESS_R                 FILE_GENERIC_READ
01298 #define UNIX_DIRECTORY_ACCESS_W                 FILE_GENERIC_WRITE
01299 #define UNIX_DIRECTORY_ACCESS_X                 FILE_GENERIC_EXECUTE
01300 
01301 #if 0
01302 /*
01303  * This is the old mapping we used to use. To get W2KSP2 profiles
01304  * working we need to map to the canonical file perms.
01305  */
01306 #define UNIX_ACCESS_RWX (UNIX_ACCESS_R|UNIX_ACCESS_W|UNIX_ACCESS_X)
01307 #define UNIX_ACCESS_R (READ_CONTROL_ACCESS|SYNCHRONIZE_ACCESS|\
01308                         FILE_READ_ATTRIBUTES|FILE_READ_EA|FILE_READ_DATA)
01309 #define UNIX_ACCESS_W (READ_CONTROL_ACCESS|SYNCHRONIZE_ACCESS|\
01310                         FILE_WRITE_ATTRIBUTES|FILE_WRITE_EA|\
01311                         FILE_APPEND_DATA|FILE_WRITE_DATA)
01312 #define UNIX_ACCESS_X (READ_CONTROL_ACCESS|SYNCHRONIZE_ACCESS|\
01313                         FILE_EXECUTE|FILE_READ_ATTRIBUTES)
01314 #endif
01315 
01316 #define UNIX_ACCESS_NONE (WRITE_OWNER_ACCESS)
01317 
01318 /* Flags field. */
01319 #define REQUEST_OPLOCK 2
01320 #define REQUEST_BATCH_OPLOCK 4
01321 #define OPEN_DIRECTORY 8
01322 #define EXTENDED_RESPONSE_REQUIRED 0x10
01323 
01324 /* ShareAccess field. */
01325 #define FILE_SHARE_NONE 0 /* Cannot be used in bitmask. */
01326 #define FILE_SHARE_READ 1
01327 #define FILE_SHARE_WRITE 2
01328 #define FILE_SHARE_DELETE 4
01329 
01330 /* FileAttributesField */
01331 #define FILE_ATTRIBUTE_READONLY         0x001L
01332 #define FILE_ATTRIBUTE_HIDDEN           0x002L
01333 #define FILE_ATTRIBUTE_SYSTEM           0x004L
01334 #define FILE_ATTRIBUTE_DIRECTORY        0x010L
01335 #define FILE_ATTRIBUTE_ARCHIVE          0x020L
01336 #define FILE_ATTRIBUTE_NORMAL           0x080L
01337 #define FILE_ATTRIBUTE_TEMPORARY        0x100L
01338 #define FILE_ATTRIBUTE_SPARSE           0x200L
01339 #define FILE_ATTRIBUTE_REPARSE_POINT    0x400L
01340 #define FILE_ATTRIBUTE_COMPRESSED       0x800L
01341 #define FILE_ATTRIBUTE_OFFLINE          0x1000L
01342 #define FILE_ATTRIBUTE_NONINDEXED       0x2000L
01343 #define FILE_ATTRIBUTE_ENCRYPTED        0x4000L
01344 #define SAMBA_ATTRIBUTES_MASK           0x7F
01345 
01346 /* Flags - combined with attributes. */
01347 #define FILE_FLAG_WRITE_THROUGH    0x80000000L
01348 #define FILE_FLAG_NO_BUFFERING     0x20000000L
01349 #define FILE_FLAG_RANDOM_ACCESS    0x10000000L
01350 #define FILE_FLAG_SEQUENTIAL_SCAN  0x08000000L
01351 #define FILE_FLAG_DELETE_ON_CLOSE  0x04000000L
01352 #define FILE_FLAG_BACKUP_SEMANTICS 0x02000000L
01353 #define FILE_FLAG_POSIX_SEMANTICS  0x01000000L
01354 
01355 /* CreateDisposition field. */
01356 #define FILE_SUPERSEDE 0                /* File exists overwrite/supersede. File not exist create. */
01357 #define FILE_OPEN 1                     /* File exists open. File not exist fail. */
01358 #define FILE_CREATE 2                   /* File exists fail. File not exist create. */
01359 #define FILE_OPEN_IF 3                  /* File exists open. File not exist create. */
01360 #define FILE_OVERWRITE 4                /* File exists overwrite. File not exist fail. */
01361 #define FILE_OVERWRITE_IF 5             /* File exists overwrite. File not exist create. */
01362 
01363 /* CreateOptions field. */
01364 #define FILE_DIRECTORY_FILE       0x0001
01365 #define FILE_WRITE_THROUGH        0x0002
01366 #define FILE_SEQUENTIAL_ONLY      0x0004
01367 #define FILE_NON_DIRECTORY_FILE   0x0040
01368 #define FILE_NO_EA_KNOWLEDGE      0x0200
01369 #define FILE_EIGHT_DOT_THREE_ONLY 0x0400
01370 #define FILE_RANDOM_ACCESS        0x0800
01371 #define FILE_DELETE_ON_CLOSE      0x1000
01372 #define FILE_OPEN_BY_FILE_ID      0x2000
01373 
01374 /* Private create options used by the ntcreatex processing code. From Samba4. */
01375 #define NTCREATEX_OPTIONS_PRIVATE_DENY_DOS     0x01000000
01376 #define NTCREATEX_OPTIONS_PRIVATE_DENY_FCB     0x02000000
01377 
01378 /* Responses when opening a file. */
01379 #define FILE_WAS_SUPERSEDED 0
01380 #define FILE_WAS_OPENED 1
01381 #define FILE_WAS_CREATED 2
01382 #define FILE_WAS_OVERWRITTEN 3
01383 
01384 /* File type flags */
01385 #define FILE_TYPE_DISK  0
01386 #define FILE_TYPE_BYTE_MODE_PIPE 1
01387 #define FILE_TYPE_MESSAGE_MODE_PIPE 2
01388 #define FILE_TYPE_PRINTER 3
01389 #define FILE_TYPE_COMM_DEVICE 4
01390 #define FILE_TYPE_UNKNOWN 0xFFFF
01391 
01392 /* Flag for NT transact rename call. */
01393 #define RENAME_REPLACE_IF_EXISTS 1
01394 
01395 /* flags for SMBntrename call (from Samba4) */
01396 #define RENAME_FLAG_MOVE_CLUSTER_INFORMATION 0x102 /* ???? */
01397 #define RENAME_FLAG_HARD_LINK                0x103
01398 #define RENAME_FLAG_RENAME                   0x104
01399 #define RENAME_FLAG_COPY                     0x105
01400 
01401 /* Filesystem Attributes. */
01402 #define FILE_CASE_SENSITIVE_SEARCH      0x00000001
01403 #define FILE_CASE_PRESERVED_NAMES       0x00000002
01404 #define FILE_UNICODE_ON_DISK            0x00000004
01405 /* According to cifs9f, this is 4, not 8 */
01406 /* Acconding to testing, this actually sets the security attribute! */
01407 #define FILE_PERSISTENT_ACLS            0x00000008
01408 #define FILE_FILE_COMPRESSION           0x00000010
01409 #define FILE_VOLUME_QUOTAS              0x00000020
01410 #define FILE_SUPPORTS_SPARSE_FILES      0x00000040
01411 #define FILE_SUPPORTS_REPARSE_POINTS    0x00000080
01412 #define FILE_SUPPORTS_REMOTE_STORAGE    0x00000100
01413 #define FS_LFN_APIS                     0x00004000
01414 #define FILE_VOLUME_IS_COMPRESSED       0x00008000
01415 #define FILE_SUPPORTS_OBJECT_IDS        0x00010000
01416 #define FILE_SUPPORTS_ENCRYPTION        0x00020000
01417 #define FILE_NAMED_STREAMS              0x00040000
01418 #define FILE_READ_ONLY_VOLUME           0x00080000
01419 
01420 /* ChangeNotify flags. */
01421 #define FILE_NOTIFY_CHANGE_FILE_NAME   0x001
01422 #define FILE_NOTIFY_CHANGE_DIR_NAME    0x002
01423 #define FILE_NOTIFY_CHANGE_ATTRIBUTES  0x004
01424 #define FILE_NOTIFY_CHANGE_SIZE        0x008
01425 #define FILE_NOTIFY_CHANGE_LAST_WRITE  0x010
01426 #define FILE_NOTIFY_CHANGE_LAST_ACCESS 0x020
01427 #define FILE_NOTIFY_CHANGE_CREATION    0x040
01428 #define FILE_NOTIFY_CHANGE_EA          0x080
01429 #define FILE_NOTIFY_CHANGE_SECURITY    0x100
01430 #define FILE_NOTIFY_CHANGE_STREAM_NAME  0x00000200
01431 #define FILE_NOTIFY_CHANGE_STREAM_SIZE  0x00000400
01432 #define FILE_NOTIFY_CHANGE_STREAM_WRITE 0x00000800
01433 
01434 #define FILE_NOTIFY_CHANGE_NAME \
01435         (FILE_NOTIFY_CHANGE_FILE_NAME|FILE_NOTIFY_CHANGE_DIR_NAME)
01436 
01437 /* change notify action results */
01438 #define NOTIFY_ACTION_ADDED 1
01439 #define NOTIFY_ACTION_REMOVED 2
01440 #define NOTIFY_ACTION_MODIFIED 3
01441 #define NOTIFY_ACTION_OLD_NAME 4
01442 #define NOTIFY_ACTION_NEW_NAME 5
01443 #define NOTIFY_ACTION_ADDED_STREAM 6
01444 #define NOTIFY_ACTION_REMOVED_STREAM 7
01445 #define NOTIFY_ACTION_MODIFIED_STREAM 8
01446 
01447 
01448 /* where to find the base of the SMB packet proper */
01449 #define smb_base(buf) (((char *)(buf))+4)
01450 
01451 /* we don't allow server strings to be longer than 48 characters as
01452    otherwise NT will not honour the announce packets */
01453 #define MAX_SERVER_STRING_LENGTH 48
01454 
01455 
01456 #define SMB_SUCCESS 0  /* The request was successful. */
01457 
01458 #ifdef WITH_DFS
01459 void dfs_unlogin(void);
01460 extern int dcelogin_atmost_once;
01461 #endif
01462 
01463 #ifdef NOSTRDUP
01464 char *strdup(char *s);
01465 #endif
01466 
01467 #ifndef SIGNAL_CAST
01468 #define SIGNAL_CAST (RETSIGTYPE (*)(int))
01469 #endif
01470 
01471 #ifndef SELECT_CAST
01472 #define SELECT_CAST
01473 #endif
01474 
01475 /* This was set by JHT in liaison with Jeremy Allison early 1997
01476  * History:
01477  * Version 4.0 - never made public
01478  * Version 4.10 - New to 1.9.16p2, lost in space 1.9.16p3 to 1.9.16p9
01479  *              - Reappeared in 1.9.16p11 with fixed smbd services
01480  * Version 4.20 - To indicate that nmbd and browsing now works better
01481  * Version 4.50 - Set at release of samba-2.2.0 by JHT
01482  *
01483  *  Note: In the presence of NT4.X do not set above 4.9
01484  *        Setting this above 4.9 can have undesired side-effects.
01485  *        This may change again in Samba-3.0 after further testing. JHT
01486  */
01487  
01488 #define DEFAULT_MAJOR_VERSION 0x04
01489 #define DEFAULT_MINOR_VERSION 0x09
01490 
01491 /* Browser Election Values */
01492 #define BROWSER_ELECTION_VERSION        0x010f
01493 #define BROWSER_CONSTANT        0xaa55
01494 
01495 /* Sercurity mode bits. */
01496 #define NEGOTIATE_SECURITY_USER_LEVEL           0x01
01497 #define NEGOTIATE_SECURITY_CHALLENGE_RESPONSE   0x02
01498 #define NEGOTIATE_SECURITY_SIGNATURES_ENABLED   0x04
01499 #define NEGOTIATE_SECURITY_SIGNATURES_REQUIRED  0x08
01500 
01501 /* NT Flags2 bits - cifs6.txt section 3.1.2 */
01502    
01503 #define FLAGS2_LONG_PATH_COMPONENTS    0x0001
01504 #define FLAGS2_EXTENDED_ATTRIBUTES     0x0002
01505 #define FLAGS2_SMB_SECURITY_SIGNATURES 0x0004
01506 #define FLAGS2_UNKNOWN_BIT4            0x0010
01507 #define FLAGS2_IS_LONG_NAME            0x0040
01508 #define FLAGS2_EXTENDED_SECURITY       0x0800 
01509 #define FLAGS2_DFS_PATHNAMES           0x1000
01510 #define FLAGS2_READ_PERMIT_EXECUTE     0x2000
01511 #define FLAGS2_32_BIT_ERROR_CODES      0x4000 
01512 #define FLAGS2_UNICODE_STRINGS         0x8000
01513 
01514 #define FLAGS2_WIN2K_SIGNATURE         0xC852 /* Hack alert ! For now... JRA. */
01515 
01516 /* TCONX Flag (smb_vwv2). */
01517 #define TCONX_FLAG_EXTENDED_RESPONSE    0x8
01518 
01519 /* Capabilities.  see ftp.microsoft.com/developr/drg/cifs/cifs/cifs4.txt */
01520 
01521 #define CAP_RAW_MODE         0x0001
01522 #define CAP_MPX_MODE         0x0002
01523 #define CAP_UNICODE          0x0004
01524 #define CAP_LARGE_FILES      0x0008
01525 #define CAP_NT_SMBS          0x0010
01526 #define CAP_RPC_REMOTE_APIS  0x0020
01527 #define CAP_STATUS32         0x0040
01528 #define CAP_LEVEL_II_OPLOCKS 0x0080
01529 #define CAP_LOCK_AND_READ    0x0100
01530 #define CAP_NT_FIND          0x0200
01531 #define CAP_DFS              0x1000
01532 #define CAP_W2K_SMBS         0x2000
01533 #define CAP_LARGE_READX      0x4000
01534 #define CAP_LARGE_WRITEX     0x8000
01535 #define CAP_UNIX             0x800000 /* Capabilities for UNIX extensions. Created by HP. */
01536 #define CAP_EXTENDED_SECURITY 0x80000000
01537 
01538 /* protocol types. It assumes that higher protocols include lower protocols
01539    as subsets */
01540 enum protocol_types {PROTOCOL_NONE,PROTOCOL_CORE,PROTOCOL_COREPLUS,PROTOCOL_LANMAN1,PROTOCOL_LANMAN2,PROTOCOL_NT1};
01541 
01542 /* security levels */
01543 enum security_types {SEC_SHARE,SEC_USER,SEC_SERVER,SEC_DOMAIN,SEC_ADS};
01544 
01545 /* server roles */
01546 enum server_types {
01547         ROLE_STANDALONE,
01548         ROLE_DOMAIN_MEMBER,
01549         ROLE_DOMAIN_BDC,
01550         ROLE_DOMAIN_PDC
01551 };
01552 
01553 /* printing types */
01554 enum printing_types {PRINT_BSD,PRINT_SYSV,PRINT_AIX,PRINT_HPUX,
01555                      PRINT_QNX,PRINT_PLP,PRINT_LPRNG,PRINT_SOFTQ,
01556                      PRINT_CUPS,PRINT_LPRNT,PRINT_LPROS2,PRINT_IPRINT
01557 #if defined(DEVELOPER) || defined(ENABLE_BUILD_FARM_HACKS)
01558 ,PRINT_TEST,PRINT_VLP
01559 #endif /* DEVELOPER */
01560 };
01561 
01562 /* LDAP schema types */
01563 enum schema_types {SCHEMA_COMPAT, SCHEMA_AD, SCHEMA_SAMBA};
01564 
01565 /* LDAP SSL options */
01566 enum ldap_ssl_types {LDAP_SSL_ON, LDAP_SSL_OFF, LDAP_SSL_START_TLS};
01567 
01568 /* LDAP PASSWD SYNC methods */
01569 enum ldap_passwd_sync_types {LDAP_PASSWD_SYNC_ON, LDAP_PASSWD_SYNC_OFF, LDAP_PASSWD_SYNC_ONLY};
01570 
01571 /* Remote architectures we know about. */
01572 enum remote_arch_types {RA_UNKNOWN, RA_WFWG, RA_OS2, RA_WIN95, RA_WINNT,
01573                         RA_WIN2K, RA_WINXP, RA_WIN2K3, RA_VISTA,
01574                         RA_SAMBA, RA_CIFSFS};
01575 
01576 /* case handling */
01577 enum case_handling {CASE_LOWER,CASE_UPPER};
01578 
01579 /* ACL compatibility */
01580 enum acl_compatibility {ACL_COMPAT_AUTO, ACL_COMPAT_WINNT, ACL_COMPAT_WIN2K};
01581 /*
01582  * Global value meaing that the smb_uid field should be
01583  * ingored (in share level security and protocol level == CORE)
01584  */
01585 
01586 #define UID_FIELD_INVALID 0
01587 #define VUID_OFFSET 100 /* Amount to bias returned vuid numbers */
01588 
01589 /* 
01590  * Size of buffer to use when moving files across filesystems. 
01591  */
01592 #define COPYBUF_SIZE (8*1024)
01593 
01594 /*
01595  * Used in chaining code.
01596  */
01597 extern int chain_size;
01598 
01599 /*
01600  * Map the Core and Extended Oplock requesst bits down
01601  * to common bits (EXCLUSIVE_OPLOCK & BATCH_OPLOCK).
01602  */
01603 
01604 /*
01605  * Core protocol.
01606  */
01607 #define CORE_OPLOCK_REQUEST(inbuf) \
01608     ((CVAL(inbuf,smb_flg)&(FLAG_REQUEST_OPLOCK|FLAG_REQUEST_BATCH_OPLOCK))>>5)
01609 
01610 /*
01611  * Extended protocol.
01612  */
01613 #define EXTENDED_OPLOCK_REQUEST(inbuf) ((SVAL(inbuf,smb_vwv2)&((1<<1)|(1<<2)))>>1)
01614 
01615 /* Lock types. */
01616 #define LOCKING_ANDX_SHARED_LOCK 0x1
01617 #define LOCKING_ANDX_OPLOCK_RELEASE 0x2
01618 #define LOCKING_ANDX_CHANGE_LOCKTYPE 0x4
01619 #define LOCKING_ANDX_CANCEL_LOCK 0x8
01620 #define LOCKING_ANDX_LARGE_FILES 0x10
01621 
01622 /*
01623  * Bits we test with.
01624  * Note these must fit into 16-bits.
01625  */
01626 
01627 #define NO_OPLOCK                       0x0
01628 #define EXCLUSIVE_OPLOCK                0x1
01629 #define BATCH_OPLOCK                    0x2
01630 #define LEVEL_II_OPLOCK                 0x4
01631 
01632 /* The following are Samba-private. */
01633 #define INTERNAL_OPEN_ONLY              0x8
01634 #define FAKE_LEVEL_II_OPLOCK            0x10    /* Client requested no_oplock, but we have to
01635                                  * inform potential level2 holders on
01636                                  * write. */
01637 #define DEFERRED_OPEN_ENTRY             0x20
01638 #define UNUSED_SHARE_MODE_ENTRY         0x40
01639 #define FORCE_OPLOCK_BREAK_TO_NONE      0x80
01640 
01641 /* None of the following should ever appear in fsp->oplock_request. */
01642 #define SAMBA_PRIVATE_OPLOCK_MASK (INTERNAL_OPEN_ONLY|DEFERRED_OPEN_ENTRY|UNUSED_SHARE_MODE_ENTRY|FORCE_OPLOCK_BREAK_TO_NONE)
01643 
01644 #define EXCLUSIVE_OPLOCK_TYPE(lck) ((lck) & ((unsigned int)EXCLUSIVE_OPLOCK|(unsigned int)BATCH_OPLOCK))
01645 #define BATCH_OPLOCK_TYPE(lck) ((lck) & (unsigned int)BATCH_OPLOCK)
01646 #define LEVEL_II_OPLOCK_TYPE(lck) ((lck) & ((unsigned int)LEVEL_II_OPLOCK|(unsigned int)FAKE_LEVEL_II_OPLOCK))
01647 
01648 struct inform_level2_message {
01649         SMB_DEV_T dev;
01650         SMB_INO_T inode;
01651         uint16 mid;
01652         unsigned long target_file_id;
01653         unsigned long source_file_id;
01654 };
01655 
01656 /* kernel_oplock_message definition.
01657 
01658 struct kernel_oplock_message {
01659         SMB_DEV_T dev;
01660         SMB_INO_T inode;
01661         unsigned long file_id;
01662 };
01663 
01664 Offset  Data                  length.
01665 0     SMB_DEV_T dev           8 bytes.
01666 8     SMB_INO_T inode         8 bytes
01667 16    unsigned long file_id   4 bytes
01668 20
01669 
01670 */
01671 #define MSG_SMB_KERNEL_BREAK_SIZE 20
01672 
01673 /* file_renamed_message definition.
01674 
01675 struct file_renamed_message {
01676         SMB_DEV_T dev;
01677         SMB_INO_T inode;
01678         char names[1]; A variable area containing sharepath and filename.
01679 };
01680 
01681 Offset  Data                    length.
01682 0       SMB_DEV_T dev           8 bytes.
01683 8       SMB_INO_T inode         8 bytes
01684 16      char [] name            zero terminated namelen bytes
01685 minimum length == 18.
01686 
01687 */
01688 
01689 #define MSG_FILE_RENAMED_MIN_SIZE 16
01690 
01691 /*
01692  * On the wire return values for oplock types.
01693  */
01694 
01695 #define CORE_OPLOCK_GRANTED (1<<5)
01696 #define EXTENDED_OPLOCK_GRANTED (1<<15)
01697 
01698 #define NO_OPLOCK_RETURN 0
01699 #define EXCLUSIVE_OPLOCK_RETURN 1
01700 #define BATCH_OPLOCK_RETURN 2
01701 #define LEVEL_II_OPLOCK_RETURN 3
01702 
01703 /* Oplock levels */
01704 #define OPLOCKLEVEL_NONE 0
01705 #define OPLOCKLEVEL_II 1
01706 
01707 /*
01708  * Capabilities abstracted for different systems.
01709  */
01710 
01711 enum smbd_capability {
01712     KERNEL_OPLOCK_CAPABILITY,
01713     DMAPI_ACCESS_CAPABILITY,
01714     LEASE_CAPABILITY
01715 };
01716 
01717 /* if a kernel does support oplocks then a structure of the following
01718    typee is used to describe how to interact with the kernel */
01719 struct kernel_oplocks {
01720         files_struct * (*receive_message)(fd_set *fds);
01721         BOOL (*set_oplock)(files_struct *fsp, int oplock_type);
01722         void (*release_oplock)(files_struct *fsp);
01723         BOOL (*msg_waiting)(fd_set *fds);
01724         int notification_fd;
01725 };
01726 
01727 #include "smb_macros.h"
01728 
01729 #define MAX_NETBIOSNAME_LEN 16
01730 /* DOS character, NetBIOS namestring. Type used on the wire. */
01731 typedef char nstring[MAX_NETBIOSNAME_LEN];
01732 /* Unix character, NetBIOS namestring. Type used to manipulate name in nmbd. */
01733 typedef char unstring[MAX_NETBIOSNAME_LEN*4];
01734 
01735 /* A netbios name structure. */
01736 struct nmb_name {
01737         nstring      name;
01738         char         scope[64];
01739         unsigned int name_type;
01740 };
01741 
01742 /* A netbios node status array element. */
01743 typedef struct node_status_ {
01744         nstring name;
01745         unsigned char type;
01746         unsigned char flags;
01747 } NODE_STATUS_STRUCT;
01748 
01749 /* The extra info from a NetBIOS node status query */
01750 struct node_status_extra {
01751         unsigned char mac_addr[6];
01752         /* There really is more here ... */ 
01753 };
01754 
01755 struct pwd_info {
01756         BOOL null_pwd;
01757         BOOL cleartext;
01758 
01759         fstring password;
01760 };
01761 
01762 /* For split krb5 SPNEGO blobs. */
01763 struct pending_auth_data {
01764         struct pending_auth_data *prev, *next;
01765         uint16 vuid; /* Tag for this entry. */
01766         uint16 smbpid; /* Alternate tag for this entry. */
01767         size_t needed_len;
01768         DATA_BLOB partial_data;
01769 };
01770 
01771 typedef struct user_struct {
01772         struct user_struct *next, *prev;
01773         uint16 vuid; /* Tag for this entry. */
01774         uid_t uid; /* uid of a validated user */
01775         gid_t gid; /* gid of a validated user */
01776 
01777         userdom_struct user;
01778         char *homedir;
01779         char *unix_homedir;
01780         char *logon_script;
01781         
01782         BOOL guest;
01783 
01784         /* following groups stuff added by ih */
01785         /* This groups info is needed for when we become_user() for this uid */
01786         int n_groups;
01787         gid_t *groups;
01788 
01789         NT_USER_TOKEN *nt_user_token;
01790 
01791         DATA_BLOB session_key;
01792 
01793         char *session_keystr; /* used by utmp and pam session code.  
01794                                  TDB key string */
01795         int homes_snum;
01796 
01797         struct auth_serversupplied_info *server_info;
01798 
01799         struct auth_ntlmssp_state *auth_ntlmssp_state;
01800 } user_struct;
01801 
01802 struct unix_error_map {
01803         int unix_error;
01804         int dos_class;
01805         int dos_code;
01806         NTSTATUS nt_error;
01807 };
01808 
01809 /*
01810  * Size of new password account encoding string.  This is enough space to
01811  * hold 11 ACB characters, plus the surrounding [] and a terminating null.
01812  * Do not change unless you are adding new ACB bits!
01813  */
01814 
01815 #define NEW_PW_FORMAT_SPACE_PADDED_LEN 14
01816 
01817 /*
01818    Do you want session setups at user level security with a invalid
01819    password to be rejected or allowed in as guest? WinNT rejects them
01820    but it can be a pain as it means "net view" needs to use a password
01821 
01822    You have 3 choices in the setting of map_to_guest:
01823 
01824    "NEVER_MAP_TO_GUEST" means session setups with an invalid password
01825    are rejected. This is the default.
01826 
01827    "MAP_TO_GUEST_ON_BAD_USER" means session setups with an invalid password
01828    are rejected, unless the username does not exist, in which case it
01829    is treated as a guest login
01830 
01831    "MAP_TO_GUEST_ON_BAD_PASSWORD" means session setups with an invalid password
01832    are treated as a guest login
01833 
01834    Note that map_to_guest only has an effect in user or server
01835    level security.
01836 */
01837 
01838 #define NEVER_MAP_TO_GUEST              0
01839 #define MAP_TO_GUEST_ON_BAD_USER        1
01840 #define MAP_TO_GUEST_ON_BAD_PASSWORD    2
01841 #define MAP_TO_GUEST_ON_BAD_UID         3
01842 
01843 #define SAFE_NETBIOS_CHARS ". -_"
01844 
01845 /* generic iconv conversion structure */
01846 typedef struct _smb_iconv_t {
01847         size_t (*direct)(void *cd, const char **inbuf, size_t *inbytesleft,
01848                          char **outbuf, size_t *outbytesleft);
01849         size_t (*pull)(void *cd, const char **inbuf, size_t *inbytesleft,
01850                        char **outbuf, size_t *outbytesleft);
01851         size_t (*push)(void *cd, const char **inbuf, size_t *inbytesleft,
01852                        char **outbuf, size_t *outbytesleft);
01853         void *cd_direct, *cd_pull, *cd_push;
01854         char *from_name, *to_name;
01855 } *smb_iconv_t;
01856 
01857 /* The maximum length of a trust account password.
01858    Used when we randomly create it, 15 char passwords
01859    exceed NT4's max password length */
01860 
01861 #define DEFAULT_TRUST_ACCOUNT_PASSWORD_LENGTH 14
01862 
01863 #include "popt_common.h"
01864 
01865 #define PORT_NONE       0
01866 #ifndef LDAP_PORT
01867 #define LDAP_PORT       389
01868 #endif
01869 
01870 /* used by the IP comparison function */
01871 struct ip_service {
01872         struct in_addr ip;
01873         unsigned port;
01874 };
01875 
01876 /* Special name type used to cause a _kerberos DNS lookup. */
01877 #define KDC_NAME_TYPE 0xDCDC
01878 
01879 /* Used by the SMB signing functions. */
01880 
01881 typedef struct smb_sign_info {
01882         void (*sign_outgoing_message)(char *outbuf, struct smb_sign_info *si);
01883         BOOL (*check_incoming_message)(char *inbuf, struct smb_sign_info *si, BOOL must_be_ok);
01884         void (*free_signing_context)(struct smb_sign_info *si);
01885         void *signing_context;
01886 
01887         BOOL negotiated_smb_signing;
01888         BOOL allow_smb_signing;
01889         BOOL doing_signing;
01890         BOOL mandatory_signing;
01891         BOOL seen_valid; /* Have I ever seen a validly signed packet? */
01892 } smb_sign_info;
01893 
01894 struct ea_struct {
01895         uint8 flags;
01896         char *name;
01897         DATA_BLOB value;
01898 };
01899 
01900 struct ea_list {
01901         struct ea_list *next, *prev;
01902         struct ea_struct ea;
01903 };
01904 
01905 /* EA names used internally in Samba. KEEP UP TO DATE with prohibited_ea_names in trans2.c !. */
01906 #define SAMBA_POSIX_INHERITANCE_EA_NAME "user.SAMBA_PAI"
01907 /* EA to use for DOS attributes */
01908 #define SAMBA_XATTR_DOS_ATTRIB "user.DOSATTRIB"
01909 
01910 #define UUID_SIZE 16
01911 #define UUID_FLAT_SIZE 16
01912 typedef struct uuid_flat {
01913         uint8 info[UUID_FLAT_SIZE];
01914 } UUID_FLAT;
01915 
01916 /* map readonly options */
01917 enum mapreadonly_options {MAP_READONLY_NO, MAP_READONLY_YES, MAP_READONLY_PERMISSIONS};
01918 
01919 /* usershare error codes. */
01920 enum usershare_err {
01921                 USERSHARE_OK=0,
01922                 USERSHARE_MALFORMED_FILE,
01923                 USERSHARE_BAD_VERSION,
01924                 USERSHARE_MALFORMED_PATH,
01925                 USERSHARE_MALFORMED_COMMENT_DEF,
01926                 USERSHARE_MALFORMED_ACL_DEF,
01927                 USERSHARE_ACL_ERR,
01928                 USERSHARE_PATH_NOT_ABSOLUTE,
01929                 USERSHARE_PATH_IS_DENIED,
01930                 USERSHARE_PATH_NOT_ALLOWED,
01931                 USERSHARE_PATH_NOT_DIRECTORY,
01932                 USERSHARE_POSIX_ERR
01933 };
01934 
01935 /* Different reasons for closing a file. */
01936 enum file_close_type {NORMAL_CLOSE=0,SHUTDOWN_CLOSE,ERROR_CLOSE};
01937 
01938 /* Used in SMB_FS_OBJECTID_INFORMATION requests.  Must be exactly 48 bytes. */
01939 #define SAMBA_EXTENDED_INFO_MAGIC 0x536d4261 /* "SmBa" */
01940 #define SAMBA_EXTENDED_INFO_VERSION_STRING_LENGTH 28
01941 struct smb_extended_info {
01942         uint32 samba_magic;             /* Always SAMBA_EXTRA_INFO_MAGIC */
01943         uint32 samba_version;           /* Major/Minor/Release/Revision */
01944         uint32 samba_subversion;        /* Prerelease/RC/Vendor patch */
01945         NTTIME samba_gitcommitdate;
01946         char   samba_version_string[SAMBA_EXTENDED_INFO_VERSION_STRING_LENGTH];
01947 };
01948 
01949 #endif /* _SMB_H */

Sambaに対してSat Aug 29 21:22:57 2009に生成されました。  doxygen 1.4.7