mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
e23781b3b3
(This used to be commit 1e4ee728df
)
384 lines
15 KiB
C
384 lines
15 KiB
C
/*
|
|
Unix SMB/CIFS implementation.
|
|
SMB parameters and setup
|
|
Copyright (C) Andrew Tridgell 1992-1999
|
|
Copyright (C) John H Terpstra 1996-1999
|
|
Copyright (C) Luke Kenneth Casson Leighton 1996-1999
|
|
Copyright (C) Paul Ashton 1998 - 1999
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
*/
|
|
|
|
#ifndef _SMB_MACROS_H
|
|
#define _SMB_MACROS_H
|
|
|
|
/* Misc bit macros */
|
|
#define BOOLSTR(b) ((b) ? "Yes" : "No")
|
|
#define BITSETW(ptr,bit) ((SVAL(ptr,0) & (1<<(bit)))!=0)
|
|
|
|
/* for readability... */
|
|
#define IS_DOS_READONLY(test_mode) (((test_mode) & aRONLY) != 0)
|
|
#define IS_DOS_DIR(test_mode) (((test_mode) & aDIR) != 0)
|
|
#define IS_DOS_ARCHIVE(test_mode) (((test_mode) & aARCH) != 0)
|
|
#define IS_DOS_SYSTEM(test_mode) (((test_mode) & aSYSTEM) != 0)
|
|
#define IS_DOS_HIDDEN(test_mode) (((test_mode) & aHIDDEN) != 0)
|
|
|
|
#ifndef SAFE_FREE /* Oh no this is also defined in tdb.h */
|
|
|
|
/**
|
|
* Free memory if the pointer and zero the pointer.
|
|
*
|
|
* @note You are explicitly allowed to pass NULL pointers -- they will
|
|
* always be ignored.
|
|
**/
|
|
#define SAFE_FREE(x) do { if ((x) != NULL) {free(x); x=NULL;} } while(0)
|
|
#endif
|
|
|
|
/* zero a structure */
|
|
#define ZERO_STRUCT(x) memset((char *)&(x), 0, sizeof(x))
|
|
|
|
/* zero a structure given a pointer to the structure */
|
|
#define ZERO_STRUCTP(x) do { if ((x) != NULL) memset((char *)(x), 0, sizeof(*(x))); } while(0)
|
|
|
|
/* zero a structure given a pointer to the structure - no zero check */
|
|
#define ZERO_STRUCTPN(x) memset((char *)(x), 0, sizeof(*(x)))
|
|
|
|
/* zero an array - note that sizeof(array) must work - ie. it must not be a
|
|
pointer */
|
|
#define ZERO_ARRAY(x) memset((char *)(x), 0, sizeof(x))
|
|
|
|
/* pointer difference macro */
|
|
#define PTR_DIFF(p1,p2) ((ptrdiff_t)(((const char *)(p1)) - (const char *)(p2)))
|
|
|
|
/* work out how many elements there are in a static array */
|
|
#define ARRAY_SIZE(a) (sizeof(a)/sizeof(a[0]))
|
|
|
|
/* assert macros */
|
|
#ifdef DEVELOPER
|
|
#define SMB_ASSERT(b) ( (b) ? (void)0 : \
|
|
(DEBUG(0,("PANIC: assert failed at %s(%d)\n", \
|
|
__FILE__, __LINE__)), smb_panic("assert failed")))
|
|
#else
|
|
/* redefine the assert macro for non-developer builds */
|
|
#define SMB_ASSERT(b) ( (b) ? (void)0 : \
|
|
(DEBUG(0,("PANIC: assert failed at %s(%d)\n", __FILE__, __LINE__))))
|
|
#endif
|
|
|
|
#define SMB_WARN(condition, message) \
|
|
((condition) ? (void)0 : \
|
|
DEBUG(0, ("WARNING: %s: %s\n", #condition, message)))
|
|
|
|
#define SMB_ASSERT_ARRAY(a,n) SMB_ASSERT((sizeof(a)/sizeof((a)[0])) >= (n))
|
|
|
|
/* these are useful macros for checking validity of handles */
|
|
#define IS_IPC(conn) ((conn) && (conn)->ipc)
|
|
#define IS_PRINT(conn) ((conn) && (conn)->printer)
|
|
/* you must add the following extern declaration to files using this macro
|
|
* extern struct current_user current_user;
|
|
*/
|
|
#define FSP_BELONGS_CONN(fsp,conn) do {\
|
|
extern struct current_user current_user;\
|
|
if (!((fsp) && (conn) && ((conn)==(fsp)->conn) && (current_user.vuid==(fsp)->vuid))) \
|
|
return ERROR_NT(NT_STATUS_INVALID_HANDLE); \
|
|
} while(0)
|
|
|
|
#define FNUM_OK(fsp,c) ((fsp) && !(fsp)->is_directory && (c)==(fsp)->conn && current_user.vuid==(fsp)->vuid)
|
|
|
|
/* you must add the following extern declaration to files using this macro
|
|
* extern struct current_user current_user;
|
|
*/
|
|
#define CHECK_FSP(fsp,conn) do {\
|
|
extern struct current_user current_user;\
|
|
if (!(fsp) || !(conn)) \
|
|
return ERROR_NT(NT_STATUS_INVALID_HANDLE); \
|
|
else if (((conn) != (fsp)->conn) || current_user.vuid != (fsp)->vuid) \
|
|
return ERROR_NT(NT_STATUS_INVALID_HANDLE); \
|
|
else if ((fsp)->is_directory) \
|
|
return ERROR_NT(NT_STATUS_INVALID_DEVICE_REQUEST); \
|
|
else if ((fsp)->fh->fd == -1) \
|
|
return ERROR_NT(NT_STATUS_ACCESS_DENIED); \
|
|
(fsp)->num_smb_operations++;\
|
|
} while(0)
|
|
|
|
#define CHECK_READ(fsp,inbuf) (((fsp)->fh->fd != -1) && ((fsp)->can_read || \
|
|
((SVAL((inbuf),smb_flg2) & FLAGS2_READ_PERMIT_EXECUTE) && \
|
|
(fsp->access_mask & FILE_EXECUTE))))
|
|
|
|
#define CHECK_WRITE(fsp) ((fsp)->can_write && ((fsp)->fh->fd != -1))
|
|
|
|
#define ERROR_WAS_LOCK_DENIED(status) (NT_STATUS_EQUAL((status), NT_STATUS_LOCK_NOT_GRANTED) || \
|
|
NT_STATUS_EQUAL((status), NT_STATUS_FILE_LOCK_CONFLICT) )
|
|
|
|
/* the service number for the [globals] defaults */
|
|
#define GLOBAL_SECTION_SNUM (-1)
|
|
/* translates a connection number into a service number */
|
|
#define SNUM(conn) ((conn)?(conn)->params->service:GLOBAL_SECTION_SNUM)
|
|
|
|
|
|
/* access various service details */
|
|
#define SERVICE(snum) (lp_servicename(snum))
|
|
#define PRINTERNAME(snum) (lp_printername(snum))
|
|
#define CAN_WRITE(conn) (!conn->read_only)
|
|
#define VALID_SNUM(snum) (lp_snum_ok(snum))
|
|
#define GUEST_OK(snum) (VALID_SNUM(snum) && lp_guest_ok(snum))
|
|
#define GUEST_ONLY(snum) (VALID_SNUM(snum) && lp_guest_only(snum))
|
|
#define CAN_SETDIR(snum) (!lp_no_set_dir(snum))
|
|
#define CAN_PRINT(conn) ((conn) && lp_print_ok(SNUM(conn)))
|
|
#define MAP_HIDDEN(conn) ((conn) && lp_map_hidden(SNUM(conn)))
|
|
#define MAP_SYSTEM(conn) ((conn) && lp_map_system(SNUM(conn)))
|
|
#define MAP_ARCHIVE(conn) ((conn) && lp_map_archive(SNUM(conn)))
|
|
#define IS_HIDDEN_PATH(conn,path) ((conn) && is_in_path((path),(conn)->hide_list,(conn)->case_sensitive))
|
|
#define IS_VETO_PATH(conn,path) ((conn) && is_in_path((path),(conn)->veto_list,(conn)->case_sensitive))
|
|
#define IS_VETO_OPLOCK_PATH(conn,path) ((conn) && is_in_path((path),(conn)->veto_oplock_list,(conn)->case_sensitive))
|
|
|
|
/*
|
|
* Used by the stat cache code to check if a returned
|
|
* stat structure is valid.
|
|
*/
|
|
|
|
#define VALID_STAT(st) ((st).st_nlink != 0)
|
|
#define VALID_STAT_OF_DIR(st) (VALID_STAT(st) && S_ISDIR((st).st_mode))
|
|
#define SET_STAT_INVALID(st) ((st).st_nlink = 0)
|
|
|
|
#ifndef MIN
|
|
#define MIN(a,b) ((a)<(b)?(a):(b))
|
|
#endif
|
|
#ifndef MAX
|
|
#define MAX(a,b) ((a)>(b)?(a):(b))
|
|
#endif
|
|
|
|
#ifndef ABS
|
|
#define ABS(a) ((a)>0?(a):(-(a)))
|
|
#endif
|
|
|
|
/* Macros to get at offsets within smb_lkrng and smb_unlkrng
|
|
structures. We cannot define these as actual structures
|
|
due to possible differences in structure packing
|
|
on different machines/compilers. */
|
|
|
|
#define SMB_LPID_OFFSET(indx) (10 * (indx))
|
|
#define SMB_LKOFF_OFFSET(indx) ( 2 + (10 * (indx)))
|
|
#define SMB_LKLEN_OFFSET(indx) ( 6 + (10 * (indx)))
|
|
#define SMB_LARGE_LPID_OFFSET(indx) (20 * (indx))
|
|
#define SMB_LARGE_LKOFF_OFFSET_HIGH(indx) (4 + (20 * (indx)))
|
|
#define SMB_LARGE_LKOFF_OFFSET_LOW(indx) (8 + (20 * (indx)))
|
|
#define SMB_LARGE_LKLEN_OFFSET_HIGH(indx) (12 + (20 * (indx)))
|
|
#define SMB_LARGE_LKLEN_OFFSET_LOW(indx) (16 + (20 * (indx)))
|
|
|
|
/* Macro to test if an error has been cached for this fnum */
|
|
#define HAS_CACHED_ERROR(fsp) ((fsp)->wbmpx_ptr && \
|
|
(fsp)->wbmpx_ptr->wr_discard)
|
|
/* Macro to turn the cached error into an error packet */
|
|
#define CACHED_ERROR(fsp) cached_error_packet(outbuf,fsp,__LINE__,__FILE__)
|
|
|
|
#define ERROR_DOS(class,code) error_packet(outbuf,class,code,NT_STATUS_OK,__LINE__,__FILE__)
|
|
#define ERROR_NT(status) error_packet(outbuf,0,0,status,__LINE__,__FILE__)
|
|
#define ERROR_FORCE_NT(status) error_packet(outbuf,-1,-1,status,__LINE__,__FILE__)
|
|
#define ERROR_BOTH(status,class,code) error_packet(outbuf,class,code,status,__LINE__,__FILE__)
|
|
|
|
/* this is how errors are generated */
|
|
#define UNIXERROR(defclass,deferror) unix_error_packet(outbuf,defclass,deferror,NT_STATUS_OK,__LINE__,__FILE__)
|
|
|
|
/* these are the datagram types */
|
|
#define DGRAM_DIRECT_UNIQUE 0x10
|
|
|
|
#define SMB_ROUNDUP(x,r) ( ((x)%(r)) ? ( (((x)+(r))/(r))*(r) ) : (x))
|
|
|
|
/* Extra macros added by Ying Chen at IBM - speed increase by inlining. */
|
|
#define smb_buf(buf) (((char *)(buf)) + smb_size + CVAL(buf,smb_wct)*2)
|
|
#define smb_buflen(buf) (SVAL(buf,smb_vwv0 + (int)CVAL(buf, smb_wct)*2))
|
|
|
|
/* the remaining number of bytes in smb buffer 'buf' from pointer 'p'. */
|
|
#define smb_bufrem(buf, p) (smb_buflen(buf)-PTR_DIFF(p, smb_buf(buf)))
|
|
|
|
/* Note that chain_size must be available as an extern int to this macro. */
|
|
#define smb_offset(p,buf) (PTR_DIFF(p,buf+4) + chain_size)
|
|
|
|
#define smb_len(buf) (PVAL(buf,3)|(PVAL(buf,2)<<8)|((PVAL(buf,1)&1)<<16))
|
|
#define _smb_setlen(buf,len) do { buf[0] = 0; buf[1] = (len&0x10000)>>16; \
|
|
buf[2] = (len&0xFF00)>>8; buf[3] = len&0xFF; } while (0)
|
|
|
|
/*******************************************************************
|
|
find the difference in milliseconds between two struct timeval
|
|
values
|
|
********************************************************************/
|
|
|
|
#define TvalDiff(tvalold,tvalnew) \
|
|
(((tvalnew)->tv_sec - (tvalold)->tv_sec)*1000 + \
|
|
((int)(tvalnew)->tv_usec - (int)(tvalold)->tv_usec)/1000)
|
|
|
|
/****************************************************************************
|
|
true if two IP addresses are equal
|
|
****************************************************************************/
|
|
|
|
#define ip_equal(ip1,ip2) ((ip1).s_addr == (ip2).s_addr)
|
|
#define ip_service_equal(ip1,ip2) ( ((ip1).ip.s_addr == (ip2).ip.s_addr) && ((ip1).port == (ip2).port) )
|
|
|
|
/*****************************************************************
|
|
splits out the last subkey of a key
|
|
*****************************************************************/
|
|
|
|
#define reg_get_subkey(full_keyname, key_name, subkey_name) \
|
|
split_at_last_component(full_keyname, key_name, '\\', subkey_name)
|
|
|
|
/****************************************************************************
|
|
Return True if the offset is at zero.
|
|
****************************************************************************/
|
|
|
|
#define dptr_zero(buf) (IVAL(buf,1) == 0)
|
|
|
|
/*******************************************************************
|
|
copy an IP address from one buffer to another
|
|
********************************************************************/
|
|
|
|
#define putip(dest,src) memcpy(dest,src,4)
|
|
|
|
/*******************************************************************
|
|
Return True if a server has CIFS UNIX capabilities.
|
|
********************************************************************/
|
|
|
|
#define SERVER_HAS_UNIX_CIFS(c) ((c)->capabilities & CAP_UNIX)
|
|
|
|
/****************************************************************************
|
|
Make a filename into unix format.
|
|
****************************************************************************/
|
|
|
|
#define IS_DIRECTORY_SEP(c) ((c) == '\\' || (c) == '/')
|
|
#define unix_format(fname) string_replace(fname,'\\','/')
|
|
#define unix_format_w(fname) string_replace_w(fname, UCS2_CHAR('\\'), UCS2_CHAR('/'))
|
|
|
|
/****************************************************************************
|
|
Make a file into DOS format.
|
|
****************************************************************************/
|
|
|
|
#define dos_format(fname) string_replace(fname,'/','\\')
|
|
|
|
/*****************************************************************************
|
|
Check to see if we are a DC for this domain
|
|
*****************************************************************************/
|
|
|
|
#define IS_DC (lp_server_role()==ROLE_DOMAIN_PDC || lp_server_role()==ROLE_DOMAIN_BDC)
|
|
|
|
/*****************************************************************************
|
|
Safe allocation macros.
|
|
*****************************************************************************/
|
|
|
|
#define SMB_MALLOC_ARRAY(type,count) (type *)malloc_array(sizeof(type),(count))
|
|
#define SMB_REALLOC(p,s) Realloc((p),(s),True) /* Always frees p on error or s == 0 */
|
|
#define SMB_REALLOC_KEEP_OLD_ON_ERROR(p,s) Realloc((p),(s),False) /* Never frees p on error or s == 0 */
|
|
#define SMB_REALLOC_ARRAY(p,type,count) (type *)realloc_array((p),sizeof(type),(count),True) /* Always frees p on error or s == 0 */
|
|
#define SMB_REALLOC_ARRAY_KEEP_OLD_ON_ERROR(p,type,count) (type *)realloc_array((p),sizeof(type),(count),False) /* Never frees p on error or s == 0 */
|
|
#define SMB_CALLOC_ARRAY(type,count) (type *)calloc_array(sizeof(type),(count))
|
|
#define SMB_XMALLOC_P(type) (type *)smb_xmalloc_array(sizeof(type),1)
|
|
#define SMB_XMALLOC_ARRAY(type,count) (type *)smb_xmalloc_array(sizeof(type),(count))
|
|
|
|
/* limiting size of ipc replies */
|
|
#define SMB_REALLOC_LIMIT(ptr,size) (char *)SMB_REALLOC(ptr,MAX((size),4*1024))
|
|
|
|
/* The new talloc is paranoid malloc checker safe. */
|
|
|
|
#define TALLOC(ctx, size) talloc_named_const(ctx, size, __location__)
|
|
#define TALLOC_P(ctx, type) (type *)talloc_named_const(ctx, sizeof(type), #type)
|
|
#define TALLOC_ARRAY(ctx, type, count) (type *)_talloc_array(ctx, sizeof(type), count, #type)
|
|
#define TALLOC_MEMDUP(ctx, ptr, size) _talloc_memdup(ctx, ptr, size, __location__)
|
|
#define TALLOC_ZERO(ctx, size) _talloc_zero(ctx, size, __location__)
|
|
#define TALLOC_ZERO_P(ctx, type) (type *)_talloc_zero(ctx, sizeof(type), #type)
|
|
#define TALLOC_ZERO_ARRAY(ctx, type, count) (type *)_talloc_zero_array(ctx, sizeof(type), count, #type)
|
|
#define TALLOC_REALLOC(ctx, ptr, count) _talloc_realloc(ctx, ptr, count, __location__)
|
|
#define TALLOC_REALLOC_ARRAY(ctx, ptr, type, count) (type *)_talloc_realloc_array(ctx, ptr, sizeof(type), count, #type)
|
|
#define talloc_destroy(ctx) talloc_free(ctx)
|
|
#define TALLOC_FREE(ctx) do { if ((ctx) != NULL) {talloc_free(ctx); ctx=NULL;} } while(0)
|
|
|
|
/* only define PARANOID_MALLOC_CHECKER with --enable-developer and not compiling
|
|
the smbmount utils */
|
|
|
|
#if defined(DEVELOPER) && !defined(SMBMOUNT_MALLOC)
|
|
# define PARANOID_MALLOC_CHECKER 1
|
|
#endif
|
|
|
|
#if defined(PARANOID_MALLOC_CHECKER)
|
|
|
|
#define PRS_ALLOC_MEM(ps, type, count) (type *)prs_alloc_mem_((ps),sizeof(type),(count))
|
|
#define PRS_ALLOC_MEM_VOID(ps, size) prs_alloc_mem_((ps),(size),1)
|
|
|
|
/* Get medieval on our ass about malloc.... */
|
|
|
|
/* Restrictions on malloc/realloc/calloc. */
|
|
#ifdef malloc
|
|
#undef malloc
|
|
#endif
|
|
#define malloc(s) __ERROR_DONT_USE_MALLOC_DIRECTLY
|
|
|
|
#ifdef realloc
|
|
#undef realloc
|
|
#endif
|
|
#define realloc(p,s) __ERROR_DONT_USE_REALLOC_DIRECTLY
|
|
|
|
#ifdef calloc
|
|
#undef calloc
|
|
#endif
|
|
#define calloc(n,s) __ERROR_DONT_USE_CALLOC_DIRECTLY
|
|
|
|
#ifdef strndup
|
|
#undef strndup
|
|
#endif
|
|
#define strndup(s,n) __ERROR_DONT_USE_STRNDUP_DIRECTLY
|
|
|
|
#ifdef strdup
|
|
#undef strdup
|
|
#endif
|
|
#define strdup(s) __ERROR_DONT_USE_STRDUP_DIRECTLY
|
|
|
|
#define SMB_MALLOC(s) malloc_(s)
|
|
#define SMB_MALLOC_P(type) (type *)malloc_(sizeof(type))
|
|
|
|
#define SMB_STRDUP(s) smb_xstrdup(s)
|
|
#define SMB_STRNDUP(s,n) smb_xstrndup(s,n)
|
|
|
|
#else
|
|
|
|
#define _STRING_LINE_(s) #s
|
|
#define _STRING_LINE2_(s) _STRING_LINE_(s)
|
|
#define __LINESTR__ _STRING_LINE2_(__LINE__)
|
|
#define __location__ __FILE__ ":" __LINESTR__
|
|
|
|
#define PRS_ALLOC_MEM(ps, type, count) (type *)prs_alloc_mem((ps),sizeof(type),(count))
|
|
#define PRS_ALLOC_MEM_VOID(ps, size) prs_alloc_mem((ps),(size),1)
|
|
|
|
/* Regular malloc code. */
|
|
|
|
#define SMB_MALLOC(s) malloc(s)
|
|
#define SMB_MALLOC_P(type) (type *)malloc(sizeof(type))
|
|
|
|
#define SMB_STRDUP(s) strdup(s)
|
|
#define SMB_STRNDUP(s,n) strndup(s,n)
|
|
|
|
#endif
|
|
|
|
#define ADD_TO_ARRAY(mem_ctx, type, elem, array, num) \
|
|
do { \
|
|
*(array) = ((mem_ctx) != NULL) ? \
|
|
TALLOC_REALLOC_ARRAY(mem_ctx, (*(array)), type, (*(num))+1) : \
|
|
SMB_REALLOC_ARRAY((*(array)), type, (*(num))+1); \
|
|
SMB_ASSERT((*(array)) != NULL); \
|
|
(*(array))[*(num)] = (elem); \
|
|
(*(num)) += 1; \
|
|
} while (0)
|
|
|
|
#define ADD_TO_LARGE_ARRAY(mem_ctx, type, elem, array, num, size) \
|
|
add_to_large_array((mem_ctx), sizeof(type), &(elem), (void *)(array), (num), (size));
|
|
|
|
#endif /* _SMB_MACROS_H */
|