OpenVAS Libraries
8.0.3
|
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdint.h>
#include <ctype.h>
#include <errno.h>
#include "charset.h"
Go to the source code of this file.
Data Structures | |
struct | _smb_iconv_t |
Macros | |
#define | SMB_PORT1 445 |
#define | SMB_PORT2 139 |
#define | SMB_PORTS "445 139" |
#define | smb_com 8 |
#define | smb_rcls 9 |
#define | smb_reh 10 |
#define | smb_err 11 |
#define | smb_flg 13 |
#define | smb_flg2 14 |
#define | smb_pidhigh 16 |
#define | smb_ss_field 18 |
#define | smb_tid 28 |
#define | smb_pid 30 |
#define | smb_uid 32 |
#define | smb_mid 34 |
#define | smb_wct 36 |
#define | smb_vwv 37 |
#define | smb_vwv0 37 |
#define | smb_vwv1 39 |
#define | smb_vwv2 41 |
#define | smb_vwv3 43 |
#define | smb_vwv4 45 |
#define | smb_vwv5 47 |
#define | smb_vwv6 49 |
#define | smb_vwv7 51 |
#define | smb_vwv8 53 |
#define | smb_vwv9 55 |
#define | smb_vwv10 57 |
#define | smb_vwv11 59 |
#define | smb_vwv12 61 |
#define | smb_vwv13 63 |
#define | smb_vwv14 65 |
#define | smb_vwv15 67 |
#define | smb_vwv16 69 |
#define | smb_vwv17 71 |
#define | STR_TERMINATE 1 |
#define | STR_UPPER 2 |
#define | STR_ASCII 4 |
#define | STR_UNICODE 8 |
#define | STR_NOALIGN 16 |
#define | STR_TERMINATE_ASCII 128 |
#define | NEGOTIATE_SECURITY_USER_LEVEL 0x01 |
#define | NEGOTIATE_SECURITY_CHALLENGE_RESPONSE 0x02 |
#define | NEGOTIATE_SECURITY_SIGNATURES_ENABLED 0x04 |
#define | NEGOTIATE_SECURITY_SIGNATURES_REQUIRED 0x08 |
#define | FLAGS2_LONG_PATH_COMPONENTS 0x0001 |
#define | FLAGS2_EXTENDED_ATTRIBUTES 0x0002 |
#define | FLAGS2_SMB_SECURITY_SIGNATURES 0x0004 |
#define | FLAGS2_UNKNOWN_BIT4 0x0010 |
#define | FLAGS2_IS_LONG_NAME 0x0040 |
#define | FLAGS2_EXTENDED_SECURITY 0x0800 |
#define | FLAGS2_DFS_PATHNAMES 0x1000 |
#define | FLAGS2_READ_PERMIT_EXECUTE 0x2000 |
#define | FLAGS2_32_BIT_ERROR_CODES 0x4000 |
#define | FLAGS2_UNICODE_STRINGS 0x8000 |
#define | FLAGS2_WIN2K_SIGNATURE 0xC852 /* Hack alert ! For now... JRA. */ |
#define | TCONX_FLAG_EXTENDED_RESPONSE 0x8 |
#define | CAP_RAW_MODE 0x0001 |
#define | CAP_MPX_MODE 0x0002 |
#define | CAP_UNICODE 0x0004 |
#define | CAP_LARGE_FILES 0x0008 |
#define | CAP_NT_SMBS 0x0010 |
#define | CAP_RPC_REMOTE_APIS 0x0020 |
#define | CAP_STATUS32 0x0040 |
#define | CAP_LEVEL_II_OPLOCKS 0x0080 |
#define | CAP_LOCK_AND_READ 0x0100 |
#define | CAP_NT_FIND 0x0200 |
#define | CAP_DFS 0x1000 |
#define | CAP_W2K_SMBS 0x2000 |
#define | CAP_LARGE_READX 0x4000 |
#define | CAP_LARGE_WRITEX 0x8000 |
#define | CAP_UNIX 0x800000 /* Capabilities for UNIX extensions. Created by HP. */ |
#define | CAP_EXTENDED_SECURITY 0x80000000 |
#define | UCS2_SHIFT 0 |
#define | UCS2_CHAR(c) ((c) << UCS2_SHIFT) |
#define | UCS2_TO_CHAR(c) (((c) >> UCS2_SHIFT) & 0xff) |
#define | COPY_UCS2_CHAR(dest, src) |
#define | SAFE_FREE(x) do { if ((x) != NULL) {free(x); x=NULL;} } while(0) |
#define | SMB_MALLOC_P(type) (type *)malloc(sizeof(type)) |
#define | SMB_REALLOC(p, s) Realloc((p),(s),True) /* Always frees p on error or s == 0 */ |
#define | SMB_STRDUP(s) strdup(s) |
#define | SMB_STRNDUP(s, n) strndup(s,n) |
#define | smb_len(buf) (PVAL(buf,3)|(PVAL(buf,2)<<8)|((PVAL(buf,1)&1)<<16)) |
Typedefs | |
typedef struct _smb_iconv_t * | smb_iconv_t |
typedef uint64_t | NTTIME |
Enumerations | |
enum | protocol_types { PROTOCOL_NONE, PROTOCOL_CORE, PROTOCOL_COREPLUS, PROTOCOL_LANMAN1, PROTOCOL_LANMAN2, PROTOCOL_NT1 } |
#define CAP_DFS 0x1000 |
#define CAP_EXTENDED_SECURITY 0x80000000 |
#define CAP_LARGE_FILES 0x0008 |
#define CAP_LARGE_READX 0x4000 |
#define CAP_LARGE_WRITEX 0x8000 |
#define CAP_LEVEL_II_OPLOCKS 0x0080 |
#define CAP_LOCK_AND_READ 0x0100 |
#define CAP_MPX_MODE 0x0002 |
#define CAP_NT_FIND 0x0200 |
#define CAP_NT_SMBS 0x0010 |
#define CAP_RAW_MODE 0x0001 |
#define CAP_RPC_REMOTE_APIS 0x0020 |
#define CAP_STATUS32 0x0040 |
#define CAP_UNICODE 0x0004 |
#define CAP_UNIX 0x800000 /* Capabilities for UNIX extensions. Created by HP. */ |
#define CAP_W2K_SMBS 0x2000 |
#define COPY_UCS2_CHAR | ( | dest, | |
src | |||
) |
#define FLAGS2_32_BIT_ERROR_CODES 0x4000 |
#define FLAGS2_DFS_PATHNAMES 0x1000 |
#define FLAGS2_EXTENDED_ATTRIBUTES 0x0002 |
#define FLAGS2_EXTENDED_SECURITY 0x0800 |
#define FLAGS2_IS_LONG_NAME 0x0040 |
#define FLAGS2_LONG_PATH_COMPONENTS 0x0001 |
#define FLAGS2_READ_PERMIT_EXECUTE 0x2000 |
#define FLAGS2_SMB_SECURITY_SIGNATURES 0x0004 |
#define FLAGS2_UNICODE_STRINGS 0x8000 |
#define FLAGS2_UNKNOWN_BIT4 0x0010 |
#define FLAGS2_WIN2K_SIGNATURE 0xC852 /* Hack alert ! For now... JRA. */ |
#define NEGOTIATE_SECURITY_CHALLENGE_RESPONSE 0x02 |
#define NEGOTIATE_SECURITY_SIGNATURES_ENABLED 0x04 |
#define NEGOTIATE_SECURITY_SIGNATURES_REQUIRED 0x08 |
#define NEGOTIATE_SECURITY_USER_LEVEL 0x01 |
#define SAFE_FREE | ( | x | ) | do { if ((x) != NULL) {free(x); x=NULL;} } while(0) |
#define smb_com 8 |
#define smb_err 11 |
#define smb_flg 13 |
#define smb_flg2 14 |
#define SMB_MALLOC_P | ( | type | ) | (type *)malloc(sizeof(type)) |
#define smb_mid 34 |
#define smb_pid 30 |
#define smb_pidhigh 16 |
#define SMB_PORT1 445 |
#define SMB_PORT2 139 |
#define SMB_PORTS "445 139" |
#define smb_rcls 9 |
#define SMB_REALLOC | ( | p, | |
s | |||
) | Realloc((p),(s),True) /* Always frees p on error or s == 0 */ |
#define smb_reh 10 |
#define smb_ss_field 18 |
#define SMB_STRDUP | ( | s | ) | strdup(s) |
#define SMB_STRNDUP | ( | s, | |
n | |||
) | strndup(s,n) |
#define smb_tid 28 |
#define smb_uid 32 |
#define smb_vwv 37 |
#define smb_vwv0 37 |
#define smb_vwv1 39 |
#define smb_vwv10 57 |
#define smb_vwv11 59 |
#define smb_vwv12 61 |
#define smb_vwv13 63 |
#define smb_vwv14 65 |
#define smb_vwv15 67 |
#define smb_vwv16 69 |
#define smb_vwv17 71 |
#define smb_vwv2 41 |
#define smb_vwv3 43 |
#define smb_vwv4 45 |
#define smb_vwv5 47 |
#define smb_vwv6 49 |
#define smb_vwv7 51 |
#define smb_vwv8 53 |
#define smb_vwv9 55 |
#define smb_wct 36 |
#define STR_ASCII 4 |
#define STR_NOALIGN 16 |
#define STR_TERMINATE 1 |
#define STR_TERMINATE_ASCII 128 |
#define STR_UNICODE 8 |
#define STR_UPPER 2 |
#define TCONX_FLAG_EXTENDED_RESPONSE 0x8 |
#define UCS2_CHAR | ( | c | ) | ((c) << UCS2_SHIFT) |
#define UCS2_SHIFT 0 |
#define UCS2_TO_CHAR | ( | c | ) | (((c) >> UCS2_SHIFT) & 0xff) |
typedef uint64_t NTTIME |
typedef struct _smb_iconv_t * smb_iconv_t |
enum protocol_types |