37 #include <netinet/in.h>
40 #include <arpa/inet.h>
50 #include <freetds/version.h>
51 #include "tds_sysdep_public.h"
52 #include <freetds/sysdep_private.h>
53 #include <freetds/thread.h>
54 #include <freetds/bool.h>
55 #include "replacements.h"
57 #include <freetds/pushvis.h>
74 const char *freetds_version;
75 const char *sysconfdir;
76 const char *last_update;
122 typedef char TDS_CHAR;
123 typedef uint8_t TDS_UCHAR;
124 typedef uint8_t TDS_TINYINT;
125 typedef int16_t TDS_SMALLINT;
126 typedef uint16_t TDS_USMALLINT;
127 typedef int32_t TDS_INT;
128 typedef uint32_t TDS_UINT;
129 typedef int64_t TDS_INT8;
130 typedef uint64_t TDS_UINT8;
131 typedef intptr_t TDS_INTPTR;
132 typedef uintptr_t TDS_UINTPTR;
133 typedef tds_sysdep_real32_type TDS_REAL;
134 typedef tds_sysdep_real64_type TDS_FLOAT;
136 #include <freetds/proto.h>
138 #define TDS_INVALID_TYPE ((TDS_SERVER_TYPE) 0)
149 TDS_USMALLINT time_prec:3;
150 TDS_USMALLINT _res:10;
151 TDS_USMALLINT has_time:1;
152 TDS_USMALLINT has_date:1;
153 TDS_USMALLINT has_offset:1;
180 #define TDS_NO_MORE_RESULTS ((TDSRET)1)
181 #define TDS_SUCCESS ((TDSRET)0)
182 #define TDS_FAIL ((TDSRET)-1)
183 #define TDS_CANCELLED ((TDSRET)-2)
184 #define TDS_FAILED(rc) ((rc)<0)
185 #define TDS_SUCCEED(rc) ((rc)>=0)
187 #define TDS_INT_CONTINUE 1
188 #define TDS_INT_CANCEL 2
189 #define TDS_INT_TIMEOUT 3
192 #define TDS_NO_COUNT -1
194 #define TDS_ROW_RESULT 4040
195 #define TDS_PARAM_RESULT 4042
196 #define TDS_STATUS_RESULT 4043
197 #define TDS_MSG_RESULT 4044
198 #define TDS_COMPUTE_RESULT 4045
199 #define TDS_CMD_DONE 4046
200 #define TDS_CMD_SUCCEED 4047
201 #define TDS_CMD_FAIL 4048
202 #define TDS_ROWFMT_RESULT 4049
203 #define TDS_COMPUTEFMT_RESULT 4050
204 #define TDS_DESCRIBE_RESULT 4051
205 #define TDS_DONE_RESULT 4052
206 #define TDS_DONEPROC_RESULT 4053
207 #define TDS_DONEINPROC_RESULT 4054
208 #define TDS_OTHERS_RESULT 4055
210 enum tds_token_results
212 TDS_TOKEN_RES_OTHERS,
213 TDS_TOKEN_RES_ROWFMT,
214 TDS_TOKEN_RES_COMPUTEFMT,
215 TDS_TOKEN_RES_PARAMFMT,
218 TDS_TOKEN_RES_COMPUTE,
224 #define TDS_TOKEN_FLAG(flag) TDS_RETURN_##flag = (1 << (TDS_TOKEN_RES_##flag*2)), TDS_STOPAT_##flag = (2 << (TDS_TOKEN_RES_##flag*2))
229 TDS_TOKEN_FLAG(OTHERS),
230 TDS_TOKEN_FLAG(ROWFMT),
231 TDS_TOKEN_FLAG(COMPUTEFMT),
232 TDS_TOKEN_FLAG(PARAMFMT),
233 TDS_TOKEN_FLAG(DONE),
235 TDS_TOKEN_FLAG(COMPUTE),
236 TDS_TOKEN_FLAG(PROC),
239 TDS_TOKEN_RESULTS = TDS_RETURN_ROWFMT|TDS_RETURN_COMPUTEFMT|TDS_RETURN_DONE|TDS_STOPAT_ROW|TDS_STOPAT_COMPUTE|TDS_RETURN_PROC,
240 TDS_TOKEN_TRAILING = TDS_STOPAT_ROWFMT|TDS_STOPAT_COMPUTEFMT|TDS_STOPAT_ROW|TDS_STOPAT_COMPUTE|TDS_STOPAT_MSG|TDS_STOPAT_OTHERS
255 , TDS_DONE_EVENT = 0x40
259 , TDS_DONE_NO_TRAN = 0
260 , TDS_DONE_TRAN_SUCCEED = 1
261 , TDS_DONE_TRAN_PROGRESS= 2
262 , TDS_DONE_STMT_ABORT = 3
263 , TDS_DONE_TRAN_ABORT = 4
273 typedef enum { TDSEOK = TDS_SUCCESS,
277 TDSEICONVAVAIL = 2401,
280 TDSEICONV2BIG = 2404,
281 TDSEPORTINSTANCE = 2500,
306 TDSEBPROBADTYP = 20250,
312 TDS_CUR_ISTAT_UNUSED = 0x00,
313 TDS_CUR_ISTAT_DECLARED = 0x01,
314 TDS_CUR_ISTAT_OPEN = 0x02,
315 TDS_CUR_ISTAT_CLOSED = 0x04,
316 TDS_CUR_ISTAT_RDONLY = 0x08,
317 TDS_CUR_ISTAT_UPDATABLE = 0x10,
318 TDS_CUR_ISTAT_ROWCNT = 0x20,
319 TDS_CUR_ISTAT_DEALLOC = 0x40
323 #define TDS_NULLTERM -9
334 typedef enum tds_encryption_level {
335 TDS_ENCRYPTION_OFF, TDS_ENCRYPTION_REQUEST, TDS_ENCRYPTION_REQUIRE
336 } TDS_ENCRYPTION_LEVEL;
338 #define TDS_ZERO_FREE(x) do {free((x)); (x) = NULL;} while(0)
339 #define TDS_VECTOR_SIZE(x) (sizeof(x)/sizeof(x[0]))
341 #if defined(__GNUC__) && __GNUC__ >= 3
342 # define TDS_LIKELY(x) __builtin_expect(!!(x), 1)
343 # define TDS_UNLIKELY(x) __builtin_expect(!!(x), 0)
345 # define TDS_LIKELY(x) (x)
346 # define TDS_UNLIKELY(x) (x)
349 #if ENABLE_EXTRA_CHECKS
350 # if defined(__GNUC__) && __GNUC__ >= 2
351 # define TDS_COMPILE_CHECK(name,check) \
352 extern int name[(check)?1:-1] __attribute__ ((unused))
354 # define TDS_COMPILE_CHECK(name,check) \
355 extern int name[(check)?1:-1]
357 # define TDS_EXTRA_CHECK(stmt) stmt
359 # define TDS_COMPILE_CHECK(name,check) \
360 extern int disabled_check_##name
361 # define TDS_EXTRA_CHECK(stmt)
364 #if ENABLE_EXTRA_CHECKS && defined(__GNUC__) && __GNUC__ >= 4
365 #define TDS_WUR __attribute__ ((__warn_unused_result__))
375 #define TDS_BYTE_SWAP16(value) \
376 (((((unsigned short)value)<<8) & 0xFF00) | \
377 ((((unsigned short)value)>>8) & 0x00FF))
379 #define TDS_BYTE_SWAP32(value) \
380 (((((unsigned long)value)<<24) & 0xFF000000) | \
381 ((((unsigned long)value)<< 8) & 0x00FF0000) | \
382 ((((unsigned long)value)>> 8) & 0x0000FF00) | \
383 ((((unsigned long)value)>>24) & 0x000000FF))
385 #define is_end_token(x) (x==TDS_DONE_TOKEN || \
386 x==TDS_DONEPROC_TOKEN || \
387 x==TDS_DONEINPROC_TOKEN)
390 TDS_TYPEFLAG_INVALID = 0,
391 TDS_TYPEFLAG_NULLABLE = 1,
392 TDS_TYPEFLAG_FIXED = 2,
393 TDS_TYPEFLAG_VARIABLE = 4,
394 TDS_TYPEFLAG_COLLATE = 8,
395 TDS_TYPEFLAG_ASCII = 16,
396 TDS_TYPEFLAG_UNICODE = 32,
397 TDS_TYPEFLAG_NUMERIC = 64,
398 TDS_TYPEFLAG_DATETIME = 128,
401 extern const unsigned char tds_type_flags_ms[256];
403 extern const unsigned char tds_type_flags_syb[256];
404 extern const char *
const tds_type_names[256];
407 #define is_fixed_type(x) ((tds_type_flags_ms[x] & TDS_TYPEFLAG_FIXED) != 0)
408 #define is_nullable_type(x) ((tds_type_flags_ms[x] & TDS_TYPEFLAG_NULLABLE) != 0)
409 #define is_variable_type(x) ((tds_type_flags_ms[x] & TDS_TYPEFLAG_VARIABLE) != 0)
412 #define is_blob_type(x) ((x)==SYBTEXT || (x)==SYBIMAGE || (x)==SYBNTEXT)
413 #define is_blob_col(x) ((x)->column_varint_size > 2)
416 #define is_numeric_type(x) ((x)==SYBNUMERIC || (x)==SYBDECIMAL)
418 #define is_datetime_type(x) ((tds_type_flags_ms[x] & TDS_TYPEFLAG_DATETIME) != 0)
419 #define is_unicode_type(x) ((tds_type_flags_ms[x] & TDS_TYPEFLAG_UNICODE) != 0)
420 #define is_collate_type(x) ((tds_type_flags_ms[x] & TDS_TYPEFLAG_COLLATE) != 0)
421 #define is_ascii_type(x) ((tds_type_flags_ms[x] & TDS_TYPEFLAG_ASCII) != 0)
422 #define is_char_type(x) ((tds_type_flags_ms[x] & (TDS_TYPEFLAG_ASCII|TDS_TYPEFLAG_UNICODE)) != 0)
423 #define is_similar_type(x, y) (is_char_type(x) && is_char_type(y))
425 bool is_tds_type_valid(
int type)
427 return (
unsigned) type < 256u && tds_type_flags_ms[type] != 0;
431 #define TDS_MAX_CAPABILITY 32
432 #define MAXPRECISION 77
433 #define TDS_MAX_CONN 4096
434 #define TDS_MAX_DYNID_LEN 30
437 #define TDS_DEF_SERVER "SYBASE"
438 #define TDS_DEF_BLKSZ 512
439 #define TDS_DEF_CHARSET "iso_1"
440 #define TDS_DEF_LANG "us_english"
442 #define TDS_DEFAULT_VERSION 0x402
443 #define TDS_DEF_PORT 1433
445 #define TDS_DEFAULT_VERSION 0x406
446 #define TDS_DEF_PORT 4000
448 #define TDS_DEFAULT_VERSION 0x500
449 #define TDS_DEF_PORT 4000
451 #define TDS_DEFAULT_VERSION 0x700
452 #define TDS_DEF_PORT 1433
454 #define TDS_DEFAULT_VERSION 0x701
455 #define TDS_DEF_PORT 1433
457 #define TDS_DEFAULT_VERSION 0x702
458 #define TDS_DEF_PORT 1433
460 #define TDS_DEFAULT_VERSION 0x703
461 #define TDS_DEF_PORT 1433
463 #define TDS_DEFAULT_VERSION 0x704
464 #define TDS_DEF_PORT 1433
466 #define TDS_DEFAULT_VERSION 0x000
467 #define TDS_DEF_PORT 1433
471 #define TDS_STR_VERSION "tds version"
472 #define TDS_STR_BLKSZ "initial block size"
473 #define TDS_STR_SWAPDT "swap broken dates"
474 #define TDS_STR_DUMPFILE "dump file"
475 #define TDS_STR_DEBUGLVL "debug level"
476 #define TDS_STR_DEBUGFLAGS "debug flags"
477 #define TDS_STR_TIMEOUT "timeout"
478 #define TDS_STR_QUERY_TIMEOUT "query timeout"
479 #define TDS_STR_CONNTIMEOUT "connect timeout"
480 #define TDS_STR_HOSTNAME "hostname"
481 #define TDS_STR_HOST "host"
482 #define TDS_STR_PORT "port"
483 #define TDS_STR_TEXTSZ "text size"
485 #define TDS_STR_EMUL_LE "emulate little endian"
486 #define TDS_STR_CHARSET "charset"
487 #define TDS_STR_CLCHARSET "client charset"
488 #define TDS_STR_USE_UTF_16 "use utf-16"
489 #define TDS_STR_LANGUAGE "language"
490 #define TDS_STR_APPENDMODE "dump file append"
491 #define TDS_STR_DATEFMT "date format"
492 #define TDS_STR_INSTANCE "instance"
493 #define TDS_STR_ASA_DATABASE "asa database"
494 #define TDS_STR_DATABASE "database"
495 #define TDS_STR_ENCRYPTION "encryption"
496 #define TDS_STR_USENTLMV2 "use ntlmv2"
497 #define TDS_STR_USELANMAN "use lanman"
499 #define TDS_STR_ENCRYPTION_OFF "off"
500 #define TDS_STR_ENCRYPTION_REQUEST "request"
501 #define TDS_STR_ENCRYPTION_REQUIRE "require"
503 #define TDS_GSSAPI_DELEGATION "enable gssapi delegation"
505 #define TDS_STR_REALM "realm"
507 #define TDS_STR_SPN "spn"
509 #define TDS_STR_CAFILE "ca file"
511 #define TDS_STR_CRLFILE "crl file"
513 #define TDS_STR_CHECKSSLHOSTNAME "check certificate hostname"
515 #define TDS_STR_DBFILENAME "database filename"
517 #define TDS_STR_READONLY_INTENT "read-only intent"
528 #define TDS_ALIGN_SIZE sizeof(tds_align_struct)
534 unsigned char values[TDS_MAX_CAPABILITY/2-2];
542 #define TDS_MAX_LOGIN_STR_SZ 128
551 TDS_INT connect_timeout;
552 DSTR client_host_name;
553 DSTR server_host_name;
565 TDS_TINYINT encryption_level;
567 TDS_INT query_timeout;
573 struct addrinfo *connected_addr;
579 unsigned char option_flag2;
581 unsigned int bulk_copy:1;
582 unsigned int suppress_language:1;
583 unsigned int emul_little_endian:1;
584 unsigned int gssapi_use_delegation:1;
585 unsigned int use_ntlmv2:1;
586 unsigned int use_lanman:1;
588 unsigned int use_utf16:1;
589 unsigned int use_new_password:1;
590 unsigned int valid_configuration:1;
591 unsigned int check_ssl_hostname:1;
592 unsigned int readonly_intent:1;
597 const char *qn_options;
598 const char *qn_msgtext;
606 char *server_charset;
617 TDS_CHAR textptr[16];
618 TDS_CHAR timestamp[8];
619 unsigned char valid_ptr;
631 TDS_SERVER_TYPE type;
632 TDS_UCHAR collation[5];
643 unsigned char min_bytes_per_char;
644 unsigned char max_bytes_per_char;
659 typedef TDS_INT tds_func_row_len(
TDSCOLUMN *col);
663 typedef int tds_func_check(
const TDSCOLUMN *col);
667 tds_func_get_info *get_info;
668 tds_func_get_data *get_data;
669 tds_func_row_len *row_len;
692 #if ENABLE_EXTRA_CHECKS
707 tds_func_check *check;
720 TDS_INT column_usertype;
721 TDS_INT column_flags;
745 DSTR table_column_name;
747 unsigned char *column_data;
748 void (*column_data_free)(
struct tds_column *column);
749 unsigned int column_nullable:1;
750 unsigned int column_writeable:1;
751 unsigned int column_identity:1;
752 unsigned int column_key:1;
753 unsigned int column_hidden:1;
754 unsigned int column_output:1;
755 unsigned int column_timestamp:1;
756 TDS_UCHAR column_collation[5];
759 TDS_TINYINT column_operator;
760 TDS_SMALLINT column_operand;
768 TDS_SMALLINT column_bindtype;
769 TDS_SMALLINT column_bindfmt;
770 TDS_UINT column_bindlen;
771 TDS_SMALLINT *column_nullbind;
772 TDS_CHAR *column_varaddr;
773 TDS_INT *column_lenbind;
774 TDS_INT column_textpos;
775 TDS_INT column_text_sqlgetdatapos;
776 TDS_CHAR column_text_sqlputdatainfo;
788 TDS_INT bcp_term_len;
789 TDS_CHAR *bcp_terminator;
798 TDS_USMALLINT num_cols;
799 TDS_USMALLINT computeid;
802 unsigned char *current_row;
806 TDS_SMALLINT *bycolumns;
807 TDS_USMALLINT by_cols;
808 TDS_TINYINT rows_exist;
810 TDS_TINYINT more_results;
824 typedef enum tds_operations
829 TDS_OP_CURSOR = TDS_SP_CURSOR,
830 TDS_OP_CURSOROPEN = TDS_SP_CURSOROPEN,
831 TDS_OP_CURSORPREPARE = TDS_SP_CURSORPREPARE,
832 TDS_OP_CURSOREXECUTE = TDS_SP_CURSOREXECUTE,
833 TDS_OP_CURSORPREPEXEC = TDS_SP_CURSORPREPEXEC,
834 TDS_OP_CURSORUNPREPARE = TDS_SP_CURSORUNPREPARE,
835 TDS_OP_CURSORFETCH = TDS_SP_CURSORFETCH,
836 TDS_OP_CURSOROPTION = TDS_SP_CURSOROPTION,
837 TDS_OP_CURSORCLOSE = TDS_SP_CURSORCLOSE,
838 TDS_OP_EXECUTESQL = TDS_SP_EXECUTESQL,
839 TDS_OP_PREPARE = TDS_SP_PREPARE,
840 TDS_OP_EXECUTE = TDS_SP_EXECUTE,
841 TDS_OP_PREPEXEC = TDS_SP_PREPEXEC,
842 TDS_OP_PREPEXECRPC = TDS_SP_PREPEXECRPC,
843 TDS_OP_UNPREPARE = TDS_SP_UNPREPARE,
846 TDS_OP_DYN_DEALLOC = 100,
849 #define TDS_DBG_LOGIN __FILE__, ((__LINE__ << 4) | 11)
850 #define TDS_DBG_HEADER __FILE__, ((__LINE__ << 4) | 10)
851 #define TDS_DBG_FUNC __FILE__, ((__LINE__ << 4) | 7)
852 #define TDS_DBG_INFO2 __FILE__, ((__LINE__ << 4) | 6)
853 #define TDS_DBG_INFO1 __FILE__, ((__LINE__ << 4) | 5)
854 #define TDS_DBG_NETWORK __FILE__, ((__LINE__ << 4) | 4)
855 #define TDS_DBG_WARN __FILE__, ((__LINE__ << 4) | 3)
856 #define TDS_DBG_ERROR __FILE__, ((__LINE__ << 4) | 2)
857 #define TDS_DBG_SEVERE __FILE__, ((__LINE__ << 4) | 1)
859 #define TDS_DBGFLAG_FUNC 0x80
860 #define TDS_DBGFLAG_INFO2 0x40
861 #define TDS_DBGFLAG_INFO1 0x20
862 #define TDS_DBGFLAG_NETWORK 0x10
863 #define TDS_DBGFLAG_WARN 0x08
864 #define TDS_DBGFLAG_ERROR 0x04
865 #define TDS_DBGFLAG_SEVERE 0x02
866 #define TDS_DBGFLAG_ALL 0xfff
867 #define TDS_DBGFLAG_LOGIN 0x0800
868 #define TDS_DBGFLAG_HEADER 0x0400
869 #define TDS_DBGFLAG_PID 0x1000
870 #define TDS_DBGFLAG_TIME 0x2000
871 #define TDS_DBGFLAG_SOURCE 0x4000
872 #define TDS_DBGFLAG_THREAD 0x8000
880 enum TDS_DBG_LOG_STATE
882 TDS_DBG_LOGIN = (1 << 0)
884 , TDS_DBG_API = (1 << 1)
885 , TDS_DBG_ASYNC = (1 << 2)
886 , TDS_DBG_DIAG = (1 << 3)
887 , TDS_DBG_error = (1 << 4)
890 , TDS_DBG_PACKET = (1 << 5)
891 , TDS_DBG_LIBTDS = (1 << 6)
892 , TDS_DBG_CONFIG = (1 << 7)
893 , TDS_DBG_DEFAULT = 0xFE
911 TDS_TINYINT priv_msg_type;
912 TDS_TINYINT severity;
920 TDS_INT colnamelength;
925 TDS_CURSOR_STATE_UNACTIONED = 0
926 , TDS_CURSOR_STATE_REQUESTED = 1
927 , TDS_CURSOR_STATE_SENT = 2
928 , TDS_CURSOR_STATE_ACTIONED = 3
933 TDS_CURSOR_STATE declare;
934 TDS_CURSOR_STATE cursor_row;
935 TDS_CURSOR_STATE open;
936 TDS_CURSOR_STATE fetch;
937 TDS_CURSOR_STATE close;
938 TDS_CURSOR_STATE dealloc;
941 typedef enum tds_cursor_operation
943 TDS_CURSOR_POSITION = 0,
944 TDS_CURSOR_UPDATE = 1,
945 TDS_CURSOR_DELETE = 2,
946 TDS_CURSOR_INSERT = 4
947 } TDS_CURSOR_OPERATION;
949 typedef enum tds_cursor_fetch
951 TDS_CURSOR_FETCH_NEXT = 1,
952 TDS_CURSOR_FETCH_PREV,
953 TDS_CURSOR_FETCH_FIRST,
954 TDS_CURSOR_FETCH_LAST,
955 TDS_CURSOR_FETCH_ABSOLUTE,
956 TDS_CURSOR_FETCH_RELATIVE
980 TDS_USMALLINT srv_status;
1040 TDS_MULTIPLE_EXECUTE,
1042 } TDS_MULTIPLE_TYPE;
1046 TDS_MULTIPLE_TYPE type;
1059 int (*msg_handler) (
const TDSCONTEXT *, TDSSOCKET *,
TDSMESSAGE *);
1060 int (*err_handler) (
const TDSCONTEXT *, TDSSOCKET *,
TDSMESSAGE *);
1061 int (*int_handler) (
void *);
1064 enum TDS_ICONV_ENTRY
1067 , client2server_chardata
1068 , initial_char_conv_count
1076 TDSRET (*handle_next)(TDSSOCKET * tds,
struct tds_authentication * auth,
size_t len);
1083 unsigned len, capacity;
1084 unsigned char buf[1];
1089 TDS_SYS_SOCKET s_signal, s_signaled;
1095 TDS_USMALLINT tds_version;
1101 const TDSCONTEXT *tds_ctx;
1117 int char_conv_count;
1120 TDS_UCHAR collation[5];
1121 TDS_UCHAR tds72_transaction[8];
1124 unsigned int emul_little_endian:1;
1125 unsigned int use_iconv:1;
1126 unsigned int tds71rev1:1;
1128 #if ENABLE_ODBC_MARS
1129 unsigned int mars:1;
1131 TDSSOCKET *in_net_tds;
1135 unsigned send_pos, recv_pos;
1138 #define BUSY_SOCKET ((TDSSOCKET*)(TDS_UINTPTR)1)
1139 #define TDSSOCKET_VALID(tds) (((TDS_UINTPTR)(tds)) > 1)
1141 unsigned num_sessions;
1142 unsigned num_cached_packets;
1150 #if defined(HAVE_GNUTLS)
1151 void *tls_credentials;
1152 #elif defined(HAVE_OPENSSL)
1166 #if ENABLE_ODBC_MARS
1199 #if ENABLE_ODBC_MARS
1219 TDS_UINT num_comp_info;
1221 TDSPARAMINFO *param_info;
1232 TDS_INT query_timeout;
1238 void (*env_chg_func) (TDSSOCKET * tds,
int type,
char *oldval,
char *newval);
1239 TDS_OPERATION current_op;
1245 #define tds_get_ctx(tds) ((tds)->conn->tds_ctx)
1246 #define tds_set_ctx(tds, val) do { ((tds)->conn->tds_ctx) = (val); } while(0)
1247 #define tds_get_parent(tds) ((tds)->parent)
1248 #define tds_set_parent(tds, val) do { ((tds)->parent) = (val); } while(0)
1249 #define tds_get_s(tds) ((tds)->conn->s)
1250 #define tds_set_s(tds, val) do { ((tds)->conn->s) = (val); } while(0)
1255 typedef void (*TDSCONFPARSE) (
const char *option,
const char *value,
void *param);
1256 int tds_read_conf_section(FILE * in,
const char *section, TDSCONFPARSE tds_conf_parse,
void *parse_param);
1258 void tds_parse_conf_section(
const char *option,
const char *value,
void *param);
1263 TDSRET tds_lookup_host_set(
const char *servername,
struct addrinfo **addr);
1264 const char *tds_addrinfo2str(
struct addrinfo *addr,
char *name,
int namemax);
1267 extern const char STD_DATETIME_FMT[];
1268 int tds_parse_boolean(
const char *value,
int default_value);
1269 int tds_config_boolean(
const char *option,
const char *value,
TDSLOGIN * login);
1274 BCPCOLDATA * tds_alloc_bcp_column_data(
unsigned int column_size);
1278 TDS_SERVER_TYPE tds_get_cardinal_type(TDS_SERVER_TYPE datatype,
int usertype);
1282 TDSRET tds_iconv_open(
TDSCONNECTION * conn,
const char *charset,
int use_utf16);
1284 void tds_srv_charset_changed(
TDSCONNECTION * conn,
const char *charset);
1285 void tds7_srv_charset_changed(
TDSCONNECTION * conn,
int sql_collate,
int lcid);
1292 void tds_free_socket(TDSSOCKET * tds);
1293 void tds_free_all_results(TDSSOCKET * tds);
1295 void tds_free_param_results(TDSPARAMINFO * param_info);
1299 void tds_release_cursor(
TDSCURSOR **pcursor);
1300 void tds_free_bcp_column_data(
BCPCOLDATA * coldata);
1302 TDSCOMPUTEINFO **tds_alloc_compute_results(TDSSOCKET * tds, TDS_USMALLINT num_cols, TDS_USMALLINT by_cols);
1303 TDSCONTEXT *tds_alloc_context(
void * parent);
1304 void tds_free_context(TDSCONTEXT * locale);
1309 void tds_release_cur_dyn(TDSSOCKET * tds)
1315 TDSSOCKET *tds_realloc_socket(TDSSOCKET * tds,
size_t bufsize);
1316 char *tds_alloc_client_sqlstate(
int msgno);
1317 char *tds_alloc_lookup_sqlstate(TDSSOCKET * tds,
int msgno);
1318 TDSLOGIN *tds_alloc_login(
int use_environment);
1320 void tds_free_login(
TDSLOGIN * login);
1324 void tds_free_locale(
TDSLOCALE * locale);
1325 TDSCURSOR * tds_alloc_cursor(TDSSOCKET * tds,
const char *name, TDS_INT namelen,
const char *query, TDS_INT querylen);
1326 void tds_free_row(
TDSRESULTINFO * res_info,
unsigned char *row);
1327 TDSSOCKET *tds_alloc_socket(TDSCONTEXT * context,
unsigned int bufsize);
1328 TDSSOCKET *tds_alloc_additional_socket(
TDSCONNECTION *conn);
1329 void tds_set_current_results(TDSSOCKET *tds,
TDSRESULTINFO *info);
1332 #define TDS_RESIZE(p, n_elem) \
1333 tds_realloc((void **) &(p), sizeof(*(p)) * (size_t) (n_elem))
1334 #define tds_new(type, n) ((type *) malloc(sizeof(type) * (n)))
1335 #define tds_new0(type, n) ((type *) calloc(n, sizeof(type)))
1337 TDSPACKET *tds_alloc_packet(
void *buf,
unsigned len);
1339 void tds_free_packets(
TDSPACKET *packet);
1342 void tds_deinit_bcpinfo(
TDSBCPINFO *bcpinfo);
1357 void tds_set_version(
TDSLOGIN *
tds_login, TDS_TINYINT major_ver, TDS_TINYINT minor_ver);
1358 int tds_connect_and_login(TDSSOCKET * tds,
TDSLOGIN * login);
1382 TDSRET tds_disconnect(TDSSOCKET * tds);
1383 size_t tds_quote_id(TDSSOCKET * tds,
char *buffer,
const char *
id,
int idlen);
1384 size_t tds_quote_string(TDSSOCKET * tds,
char *buffer,
const char *str,
int len);
1389 void tds_convert_string_free(
const char *original,
const char *converted);
1390 #if !ENABLE_EXTRA_CHECKS
1391 #define tds_convert_string_free(original, converted) \
1392 do { if (original != converted) free((char*) converted); } while(0)
1396 TDSRET tds_cursor_declare(TDSSOCKET * tds,
TDSCURSOR * cursor, TDSPARAMINFO *params,
int *send);
1397 TDSRET tds_cursor_setrows(TDSSOCKET * tds,
TDSCURSOR * cursor,
int *send);
1398 TDSRET tds_cursor_open(TDSSOCKET * tds,
TDSCURSOR * cursor, TDSPARAMINFO *params,
int *send);
1399 TDSRET tds_cursor_fetch(TDSSOCKET * tds,
TDSCURSOR * cursor, TDS_CURSOR_FETCH fetch_type, TDS_INT i_row);
1400 TDSRET tds_cursor_get_cursor_info(TDSSOCKET * tds,
TDSCURSOR * cursor, TDS_UINT * row_number, TDS_UINT * row_count);
1401 TDSRET tds_cursor_close(TDSSOCKET * tds,
TDSCURSOR * cursor);
1404 TDSRET tds_cursor_update(TDSSOCKET * tds,
TDSCURSOR * cursor, TDS_CURSOR_OPERATION op, TDS_INT i_row, TDSPARAMINFO * params);
1405 TDSRET tds_cursor_setname(TDSSOCKET * tds,
TDSCURSOR * cursor);
1407 TDSRET tds_multiple_init(TDSSOCKET *tds,
TDSMULTIPLE *multiple, TDS_MULTIPLE_TYPE type,
TDSHEADERS * head);
1408 TDSRET tds_multiple_done(TDSSOCKET *tds,
TDSMULTIPLE *multiple);
1409 TDSRET tds_multiple_query(TDSSOCKET *tds,
TDSMULTIPLE *multiple,
const char *query, TDSPARAMINFO * params);
1418 int tds5_send_optioncmd(TDSSOCKET * tds, TDS_OPTION_CMD tds_command, TDS_OPTION tds_option,
TDS_OPTION_ARG * tds_argument,
1419 TDS_INT * tds_argsize);
1420 TDSRET
tds_process_tokens(TDSSOCKET * tds, TDS_INT * result_type,
int *done_flags,
unsigned flag);
1432 extern const char tds_hex_digits[];
1436 int tds_init_write_buf(TDSSOCKET * tds);
1437 int tds_put_n(TDSSOCKET * tds,
const void *buf,
size_t n);
1439 int tds_put_int(TDSSOCKET * tds, TDS_INT i);
1440 int tds_put_int8(TDSSOCKET * tds, TDS_INT8 i);
1441 int tds_put_smallint(TDSSOCKET * tds, TDS_SMALLINT si);
1443 #define tds_put_tinyint(tds, ti) tds_put_byte(tds,ti)
1444 int tds_put_byte(TDSSOCKET * tds,
unsigned char c);
1446 int tds_put_buf(TDSSOCKET * tds,
const unsigned char *buf,
int dsize,
int ssize);
1452 unsigned char tds_peek(TDSSOCKET * tds);
1454 #define tds_get_smallint(tds) ((TDS_SMALLINT) tds_get_usmallint(tds))
1456 #define tds_get_int(tds) ((TDS_INT) tds_get_uint(tds))
1458 #define tds_get_int8(tds) ((TDS_INT8) tds_get_uint8(tds))
1459 size_t tds_get_string(TDSSOCKET * tds,
size_t string_len,
char *dest,
size_t dest_size);
1461 void *
tds_get_n(TDSSOCKET * tds,
void *dest,
size_t n);
1467 int tdserror (
const TDSCONTEXT * tds_ctx, TDSSOCKET * tds,
int msgno,
int errnum);
1469 void tds_swap_bytes(
void *buf,
int bytes);
1470 unsigned int tds_gettime_ms(
void);
1477 int tdsdump_isopen(
void);
1478 #include <freetds/popvis.h>
1480 #include <freetds/pushvis.h>
1482 void tdsdump_dump_buf(
const char* file,
unsigned int level_line,
const char *msg,
const void *buf,
size_t length);
1485 void tdsdump_log(
const char* file,
unsigned int level_line,
const char *fmt, ...)
1486 #if defined(__GNUC__) && __GNUC__ >= 2
1487 #if defined(__MINGW32__)
1488 __attribute__ ((__format__ (ms_printf, 3, 4)))
1490 __attribute__ ((__format__ (__printf__, 3, 4)))
1494 #define TDSDUMP_LOG_FAST if (TDS_UNLIKELY(tds_write_dump)) tdsdump_log
1495 #define tdsdump_log TDSDUMP_LOG_FAST
1496 #define TDSDUMP_BUF_FAST if (TDS_UNLIKELY(tds_write_dump)) tdsdump_dump_buf
1497 #define tdsdump_dump_buf TDSDUMP_BUF_FAST
1500 extern int tds_debug_flags;
1501 extern int tds_g_append_mode;
1505 TDSERRNO tds_open_socket(TDSSOCKET * tds,
struct addrinfo *ipaddr,
unsigned int port,
int timeout,
int *p_oserr);
1509 char *tds_prwsaerror(
int erc);
1510 void tds_prwsaerror_free(
char *s);
1511 int tds_connection_read(TDSSOCKET * tds,
unsigned char *buf,
int buflen);
1512 int tds_connection_write(TDSSOCKET *tds,
const unsigned char *buf,
int buflen,
int final);
1513 #define TDSSELREAD POLLIN
1514 #define TDSSELWRITE POLLOUT
1515 int tds_select(TDSSOCKET * tds,
unsigned tds_sel,
int timeout_seconds);
1516 #if ENABLE_ODBC_MARS
1525 int tds_goodread(TDSSOCKET * tds,
unsigned char *buf,
int buflen);
1526 int tds_goodwrite(TDSSOCKET * tds,
const unsigned char *buffer,
size_t buflen);
1527 void tds_socket_flush(TDS_SYS_SOCKET sock);
1532 static inline TDS_SYS_SOCKET tds_wakeup_get_fd(
const TDSPOLLWAKEUP *wakeup)
1534 return wakeup->s_signaled;
1540 TDSRET tds_write_packet(TDSSOCKET * tds,
unsigned char final);
1541 #if ENABLE_ODBC_MARS
1542 int tds_append_cancel(TDSSOCKET *tds);
1543 TDSRET tds_append_fin(TDSSOCKET *tds);
1545 int tds_put_cancel(TDSSOCKET * tds);
1550 TDSRET tds_vstrbuild(
char *buffer,
int buflen,
int *resultlen,
const char *text,
int textlen,
const char *formats,
int formatlen,
1555 char *tds_money_to_string(
const TDS_MONEY * money,
char *s);
1557 TDS_INT tds_numeric_change_prec_scale(
TDS_NUMERIC * numeric,
unsigned char new_prec,
unsigned char new_scale);
1561 void tds_getmac(TDS_SYS_SOCKET s,
unsigned char mac[6]);
1574 void tds_random_buffer(
unsigned char *out,
int len);
1579 void tds5_negotiate_set_msg_type(TDSSOCKET * tds,
TDSAUTHENTICATION * auth,
unsigned msg_type);
1589 TDS_BCP_QUERYOUT = 3
1597 TDS_CHAR *insert_stmt;
1599 TDS_INT identity_insert_on;
1607 typedef void (*tds_bcp_null_error) (
TDSBCPINFO *bulk,
int index,
int offset);
1608 TDSRET
tds_bcp_send_record(TDSSOCKET *tds,
TDSBCPINFO *bcpinfo, tds_bcp_get_col_data get_col_data, tds_bcp_null_error null_error,
int offset);
1614 const char *terminator,
size_t term_len,
char **outbuf,
size_t * outbytes);
1616 TDSRET
tds_writetext_start(TDSSOCKET *tds,
const char *objname,
const char *textptr,
const char *timestamp,
int with_log, TDS_UINT size);
1624 return (cap->values[
sizeof(cap->values)-1-(cap_num>>3)] >> (cap_num&7)) & 1;
1626 #define tds_capability_has_req(conn, cap) \
1627 tds_capability_enabled(&conn->capabilities.types[0], cap)
1629 #define IS_TDS42(x) (x->tds_version==0x402)
1630 #define IS_TDS46(x) (x->tds_version==0x406)
1631 #define IS_TDS50(x) (x->tds_version==0x500)
1632 #define IS_TDS70(x) (x->tds_version==0x700)
1633 #define IS_TDS71(x) (x->tds_version==0x701)
1634 #define IS_TDS72(x) (x->tds_version==0x702)
1635 #define IS_TDS73(x) (x->tds_version==0x703)
1637 #define IS_TDS50_PLUS(x) ((x)->tds_version>=0x500)
1638 #define IS_TDS7_PLUS(x) ((x)->tds_version>=0x700)
1639 #define IS_TDS71_PLUS(x) ((x)->tds_version>=0x701)
1640 #define IS_TDS72_PLUS(x) ((x)->tds_version>=0x702)
1641 #define IS_TDS73_PLUS(x) ((x)->tds_version>=0x703)
1642 #define IS_TDS74_PLUS(x) ((x)->tds_version>=0x704)
1644 #define TDS_MAJOR(x) ((x)->tds_version >> 8)
1645 #define TDS_MINOR(x) ((x)->tds_version & 0xff)
1647 #define IS_TDSDEAD(x) (((x) == NULL) || (x)->state == TDS_DEAD)
1650 #define TDS_IS_SYBASE(x) (!((x)->conn->product_version & 0x80000000u))
1652 #define TDS_IS_MSSQL(x) (((x)->conn->product_version & 0x80000000u)!=0)
1657 #define TDS_MS_VER(maj,min,x) (0x80000000u|((maj)<<24)|((min)<<16)|(x))
1661 #define TDS_SYB_VER(maj,min,x) (((maj)<<24)|((min)<<16)|(x)<<8)
1670 #include <freetds/popvis.h>
1672 #define TDS_PUT_INT(tds,v) tds_put_int((tds), ((TDS_INT)(v)))
1673 #define TDS_PUT_SMALLINT(tds,v) tds_put_smallint((tds), ((TDS_SMALLINT)(v)))
1674 #define TDS_PUT_BYTE(tds,v) tds_put_byte((tds), ((unsigned char)(v)))
TDS_INT ret_status
return status from store procedure
Definition: tds.h:1225
TDS_TINYINT bulk_query
true is query sent was a bulk query so we need to switch state to QUERYING
Definition: tds.h:1223
int block_size
packet size (512-65535)
Definition: tds.h:991
TDSLOCALE * tds_get_locale(void)
Get locale information.
Definition: locale.c:50
int tdsdump_open(const char *filename)
Create and truncate a human readable dump file for the TDS traffic.
Definition: log.c:112
TDS_INT minute
0-59
Definition: tds.h:166
void tdsdump_log(const char *file, unsigned int level_line, const char *fmt,...)
Write a message to the debug log.
Definition: log.c:354
TDSAUTHENTICATION * tds_ntlm_get_auth(TDSSOCKET *tds)
Build a NTLMSPP packet to send to server.
Definition: challenge.c:691
size_t tds_get_string(TDSSOCKET *tds, size_t string_len, char *dest, size_t dest_size)
Fetch a string from the wire.
Definition: read.c:184
TDS_INT year
year
Definition: tds.h:159
tds_bcp_directions
bcp direction
Definition: tds.h:1585
client is writing data
Definition: tds.h:817
TDSRET tds_send_cancel(TDSSOCKET *tds)
tds_send_cancel() sends an empty packet (8 byte header only) tds_process_cancel should be called dire...
Definition: query.c:2128
int tds_get_size_by_type(TDS_SERVER_TYPE servertype)
Return the number of bytes needed by specified type.
Definition: tds_types.h:9
struct tds_env TDSENV
Current environment as reported by the server.
int tds_read_packet(TDSSOCKET *tds)
Read in one 'packet' from the server.
Definition: packet.c:529
Holds informations about a cursor.
Definition: tds.h:962
int tds_goodread(TDSSOCKET *tds, unsigned char *buf, int buflen)
Loops until we have received some characters return -1 on failure.
Definition: net.c:866
int tds_get_token_size(int marker)
tds_get_token_size() returns the size of a fixed length token used by tds_process_cancel() to determi...
Definition: token.c:2657
TDSRET tds_process_login_tokens(TDSSOCKET *tds)
tds_process_login_tokens() is called after sending the login packet to the server.
Definition: token.c:287
TDSICONV * tds_iconv_from_collate(TDSCONNECTION *conn, TDS_UCHAR collate[5])
Get iconv information from a LCID (to support different column encoding under MSSQL2K) ...
Definition: iconv.c:1202
TDSRET tds_submit_query(TDSSOCKET *tds, const char *query)
tds_submit_query() sends a language string to the database server for processing. ...
Definition: query.c:205
DSTR server_realm_name
server realm name (in freetds.conf)
Definition: tds.h:554
struct tds_cursor TDSCURSOR
Holds informations about a cursor.
TDSENV env
environment is shared between all sessions
Definition: tds.h:1104
TDS_INT month
month number (0-11)
Definition: tds.h:161
int tds_iconv_alloc(TDSCONNECTION *conn)
Allocate iconv stuff.
Definition: iconv.c:265
int tds_goodwrite(TDSSOCKET *tds, const unsigned char *buffer, size_t buflen)
Definition: net.c:937
TDSLOGIN * tds_read_config_info(TDSSOCKET *tds, TDSLOGIN *login, TDSLOCALE *locale)
tds_read_config_info() will fill the tds connection structure based on configuration information gath...
Definition: config.c:138
TDSRET tds_process_tokens(TDSSOCKET *tds, TDS_INT *result_type, int *done_flags, unsigned flag)
process all streams.
Definition: token.c:501
TDS_INT bcp_prefix_len
The length, in bytes, of any length prefix this column may have.
Definition: tds.h:787
TDS_USMALLINT * tds_config_verstr(const char *tdsver, TDSLOGIN *login)
Set TDS version from given string.
Definition: config.c:883
TDSRET tds71_submit_prepexec(TDSSOCKET *tds, const char *query, const char *id, TDSDYNAMIC **dyn_out, TDSPARAMINFO *params)
tds71_submit_prepexec() creates a temporary stored procedure in the server.
Definition: query.c:1462
TDSRET tds_submit_query_params(TDSSOCKET *tds, const char *query, TDSPARAMINFO *params, TDSHEADERS *head)
tds_submit_query_params() sends a language string to the database server for processing.
Definition: query.c:361
struct tdsdaterec TDSDATEREC
Used by tds_datecrack.
final result set, command completed successfully.
Definition: tds.h:248
TDSRET tds_get_column_declaration(TDSSOCKET *tds, TDSCOLUMN *curcol, char *out)
Return declaration for column (like "varchar(20)")
Definition: query.c:729
const char * tds_next_placeholder(const char *start)
Get position of next placeholder.
Definition: query.c:554
TDS_INT type
row fetched from this cursor
Definition: tds.h:982
TDSDYNAMIC * tds_alloc_dynamic(TDSCONNECTION *conn, const char *id)
Allocate a dynamic statement.
Definition: mem.c:155
TDSRET tds_submit_commit(TDSSOCKET *tds, int cont)
Send a commit request.
Definition: query.c:3763
Holds information for a dynamic (also called prepared) query.
Definition: tds.h:1002
TDS_UINT product_version
version of product (Sybase/MS and full version)
Definition: tds.h:1096
TDS_INT hour
0-23
Definition: tds.h:165
TDSPARAMINFO * res_info
query results
Definition: tds.h:1025
TDSRET tds_submit_rollback(TDSSOCKET *tds, int cont)
Send a rollback request.
Definition: query.c:3732
A structure to hold all the compile-time settings.
Definition: tds.h:72
int tds_get_varint_size(TDSCONNECTION *conn, int datatype)
tds_get_varint_size() returns the size of a variable length integer returned in a TDS 7...
Definition: tds_types.h:57
TDS_INT8 rows_affected
rows updated/deleted/inserted/selected, TDS_NO_COUNT if not valid
Definition: tds.h:1231
Metadata about columns in regular and compute rows.
Definition: tds.h:717
TDSRET tds_set_interfaces_file_loc(const char *interfloc)
Set the full name of interface file.
Definition: config.c:926
TDSRET tds_submit_prepare(TDSSOCKET *tds, const char *query, const char *id, TDSDYNAMIC **dyn_out, TDSPARAMINFO *params)
tds_submit_prepare() creates a temporary stored procedure in the server.
Definition: query.c:1172
no connection
Definition: tds.h:821
size_t tds_quote_id(TDSSOCKET *tds, char *buffer, const char *id, int idlen)
Quote an id.
Definition: query.c:2271
Used by tds_datecrack.
Definition: tds.h:157
TDSRET tds_bcp_init(TDSSOCKET *tds, TDSBCPINFO *bcpinfo)
Initialize BCP information.
Definition: bulk.c:82
TDSICONV * char_conv
refers to previously allocated iconv information
Definition: tds.h:741
error occurred
Definition: tds.h:250
void tds_release_dynamic(TDSDYNAMIC **dyn)
Frees dynamic statement.
Definition: mem.c:248
TDS_CURSOR_STATUS status
cursor parameter
Definition: tds.h:979
void tdsdump_col(const TDSCOLUMN *col)
Write a column value to the debug log.
Definition: log.c:408
TDS_INT quarter
quarter (0-3)
Definition: tds.h:160
const char * tds_convert_string(TDSSOCKET *tds, TDSICONV *char_conv, const char *s, int len, size_t *out_len)
Convert a string in an allocated buffer.
Definition: query.c:123
TDSRET tds_writetext_start(TDSSOCKET *tds, const char *objname, const char *textptr, const char *timestamp, int with_log, TDS_UINT size)
Start writing writetext request.
Definition: bulk.c:1093
TDS_SMALLINT offset
time offset
Definition: tds.h:148
struct tds_dynamic * next
next in linked list, keep first
Definition: tds.h:1004
void * tds_get_n(TDSSOCKET *tds, void *dest, size_t n)
Get N bytes from the buffer and return them in the already allocated space given to us...
Definition: read.c:248
TDS_INT day
day of month (1-31)
Definition: tds.h:162
char * query
SQL query.
Definition: tds.h:973
struct tds_cursor * next
next in linked list, keep first
Definition: tds.h:964
TDSRET tds_submit_queryf(TDSSOCKET *tds, const char *queryf,...)
Format and submit a query.
Definition: query.c:486
Information about blobs (e.g.
Definition: tds.h:614
TDS_INT cursor_rows
< number of updatable columns
Definition: tds.h:977
unsigned out_pos
current position in out_buf
Definition: tds.h:1192
unsigned char tds_get_byte(TDSSOCKET *tds)
Return a single byte from the input buffer.
Definition: read.c:72
TDS_USMALLINT tds_version
TDS version.
Definition: tds.h:547
TDSPACKET * send_packet
packet we are preparing to send
Definition: tds.h:1210
TDSRET tds_submit_begin_tran(TDSSOCKET *tds)
Send a rollback request.
Definition: query.c:3704
TDS_TINYINT has_status
true is ret_status is valid
Definition: tds.h:1224
TDSDYNAMIC * cur_dyn
dynamic structure in use
Definition: tds.h:1234
TDSRET tds_bcp_done(TDSSOCKET *tds, int *rows_copied)
Tell we finished sending BCP data to server.
Definition: bulk.c:785
more results follow
Definition: tds.h:249
struct addrinfo * tds_lookup_host(const char *servername)
Get the IP address for a hostname.
Definition: config.c:952
bool tds_set_server(TDSLOGIN *tds_login, const char *server) TDS_WUR
Set the servername in a TDSLOGIN structure.
Definition: login.c:122
TDS_INT column_cur_size
size written in variable (ie: char, text, binary).
Definition: tds.h:764
DSTR password
password of account login
Definition: tds.h:561
TDSRET tds_bcp_fread(TDSSOCKET *tds, TDSICONV *conv, FILE *stream, const char *terminator, size_t term_len, char **outbuf, size_t *outbytes)
Read a data file, passing the data through iconv().
Definition: bulk.c:1023
acknowledging an attention command (usually a cancel)
Definition: tds.h:254
count field in packet is valid
Definition: tds.h:253
char * database
database name
Definition: tds.h:996
int tds_needs_unprepare(TDSCONNECTION *conn, TDSDYNAMIC *dyn)
Check if dynamic request must be unprepared.
Definition: query.c:1845
TDSRET tds_bcp_send_record(TDSSOCKET *tds, TDSBCPINFO *bcpinfo, tds_bcp_get_col_data get_col_data, tds_bcp_null_error null_error, int offset)
Send one row of data to server.
Definition: bulk.c:334
unsigned int out_buf_max
Maximum size of packet pointed by out_buf.
Definition: tds.h:1190
struct tds_dynamic TDSDYNAMIC
Holds information for a dynamic (also called prepared) query.
TDS_STATE tds_set_state(TDSSOCKET *tds, TDS_STATE state)
Set state of TDS connection, with logging and checking.
Definition: util.c:58
const char * name
name of the encoding (ie UTF-8)
Definition: tds.h:642
unsigned char in_flag
input buffer type
Definition: tds.h:1194
Current environment as reported by the server.
Definition: tds.h:988
TDS_TINYINT options
read only|updatable TODO use it
Definition: tds.h:968
TDSRET tds_submit_execdirect(TDSSOCKET *tds, const char *query, TDSPARAMINFO *params, TDSHEADERS *head)
Submit a prepared query with parameters.
Definition: query.c:1311
TDS_UINT8 time
time, 7 digit precision
Definition: tds.h:146
TDSRESULTINFO * current_results
Current query information.
Definition: tds.h:1217
TDSCURSOR * cur_cursor
cursor in use
Definition: tds.h:1222
size_t tds_fix_column_size(TDSSOCKET *tds, TDSCOLUMN *curcol)
Get column size for wire.
Definition: query.c:1557
TDSRET tds_process_cancel(TDSSOCKET *tds)
Definition: token.c:2457
struct tds_dstr * DSTR
Structure to hold a string.
tds_end
Flags returned in TDS_DONE token.
Definition: tds.h:246
TDS_INT weekday
day of week (0-6, 0 = sunday)
Definition: tds.h:164
TDSPARAMINFO * params
query parameters.
Definition: tds.h:1033
struct tds_blob TDSBLOB
Information about blobs (e.g.
TDS_TINYINT column_scale
scale for decimal/numeric
Definition: tds.h:733
TDS_INT num_id
numeric id for mssql7+
Definition: tds.h:1007
struct tds_result_info TDSRESULTINFO
Hold information for any results.
volatile unsigned char in_cancel
indicate we are waiting a cancel reply; discard tokens till acknowledge; 1 mean we have to send cance...
Definition: tds.h:1228
TDS_INT column_size
maximun size of data.
Definition: tds.h:723
int tds7_get_instance_port(struct addrinfo *addr, const char *instance)
Get port of given instance.
Definition: net.c:1179
char * tds_strndup(const void *s, TDS_INTPTR len)
Copy a string of length len to a new allocated buffer This function does not read more than len bytes...
Definition: util.c:394
no data expected
Definition: tds.h:816
cilent is waiting for data
Definition: tds.h:819
enum tds_states TDS_STATE
values for tds->state
char * charset
character set encoding
Definition: tds.h:994
void tds_unget_byte(TDSSOCKET *tds)
Unget will always work as long as you don't call it twice in a row.
Definition: read.c:89
const char * tds_prtype(int token)
Returns string representation of the given type.
Definition: token.c:2954
TDS_TINYINT emulated
this dynamic query cannot be prepared so libTDS have to construct a simple query. ...
Definition: tds.h:1019
TDS_INT timezone
-840 - 840 minutes from UTC
Definition: tds.h:169
void tds_set_param_type(TDSCONNECTION *conn, TDSCOLUMN *curcol, TDS_SERVER_TYPE type)
Set type of column initializing all dependency.
Definition: data.c:247
TDS_USMALLINT tds_get_usmallint(TDSSOCKET *tds)
Get an int16 from the server.
Definition: read.c:113
TDSRET tds_submit_execute(TDSSOCKET *tds, TDSDYNAMIC *dyn)
tds_submit_execute() sends a previously prepared dynamic statement to the server. ...
Definition: query.c:1732
TDSRET tds_bcp_start_copy_in(TDSSOCKET *tds, TDSBCPINFO *bcpinfo)
Start bulk copy to server.
Definition: bulk.c:862
TDSRET tds_get_char_data(TDSSOCKET *tds, char *dest, size_t wire_size, TDSCOLUMN *curcol)
Fetch character data the wire.
Definition: read.c:213
int tds_socket_set_nonblocking(TDS_SYS_SOCKET sock)
Set socket to non-blocking.
Definition: net.c:154
TDSRET tds_submit_rpc(TDSSOCKET *tds, const char *rpc_name, TDSPARAMINFO *params, TDSHEADERS *head)
tds_submit_rpc() call a RPC from server.
Definition: query.c:2024
const char * tds_skip_comment(const char *s)
Skip a comment in a query.
Definition: query.c:509
TDSLOGIN * login
config for login stuff.
Definition: tds.h:1236
TDSRET tds_flush_packet(TDSSOCKET *tds)
Flush packet to server.
Definition: write.c:285
void tds_free_input_params(TDSDYNAMIC *dyn)
Frees all allocated input parameters of a dynamic statement.
Definition: mem.c:201
TDS_UINT tds_get_uint(TDSSOCKET *tds)
Get an int32 from the server.
Definition: read.c:131
client is reading data
Definition: tds.h:820
Structure to hold a string.
Definition: tds.h:94
struct addrinfo * ip_addrs
ip(s) of server
Definition: tds.h:572
void tdsdump_close(void)
Close the TDS dump log file.
Definition: log.c:193
TDSRET tds_writetext_end(TDSSOCKET *tds)
Finish sending writetext data.
Definition: bulk.c:1148
TDS_INT date
date, 0 = 1900-01-01
Definition: tds.h:147
TDSRET tds_cursor_dealloc(TDSSOCKET *tds, TDSCURSOR *cursor)
Send a deallocation request to server.
Definition: query.c:3084
TDS_TINYINT defer_close
true if dynamic was marker to be closed when connection is idle
Definition: tds.h:1023
TDS_INT ref_count
reference counter so client can retain safely a pointer
Definition: tds.h:1005
unsigned int pending_close
true is connection has pending closing (cursors or dynamic)
Definition: tds.h:1127
TDS_INT tds_numeric_to_string(const TDS_NUMERIC *numeric, char *s)
Definition: numeric.c:94
TDSPARAMINFO * tds_alloc_param_result(TDSPARAMINFO *old_param)
Adds a output parameter to TDSPARAMINFO.
Definition: mem.c:279
DSTR server_name
server name (in freetds.conf)
Definition: tds.h:545
const TDS_COMPILETIME_SETTINGS * tds_get_compiletime_settings(void)
Return a structure capturing the compile-time settings provided to the configure script.
Definition: config.c:1302
void tdsdump_on(void)
Turn logging back on.
Definition: log.c:88
TDS_INT decimicrosecond
0-9999999
Definition: tds.h:168
TDS_INT ref_count
reference counter so client can retain safely a pointer
Definition: tds.h:965
unsigned char * in_buf
Input buffer.
Definition: tds.h:1177
Information relevant to libiconv.
Definition: tds.h:639
TDS_INT dayofyear
day of year (1-366)
Definition: tds.h:163
TDS_SERVER_TYPE tds_get_conversion_type(TDS_SERVER_TYPE srctype, int colsize)
Return type suitable for conversions (convert all nullable types to fixed type)
Definition: tds_types.h:125
int tds_read_conf_section(FILE *in, const char *section, TDSCONFPARSE tds_conf_parse, void *parse_param)
Read a section of configuration file (INI style file)
Definition: config.c:497
TDS_SERVER_TYPE column_type
This type can be different from wire type because conversion (e.g.
Definition: tds.h:725
TDSRET tds_submit_unprepare(TDSSOCKET *tds, TDSDYNAMIC *dyn)
Send a unprepare request for a prepared query.
Definition: query.c:1890
const char * tds_skip_quoted(const char *s)
Skip quoting string (like 'sfsf', "dflkdj" or [dfkjd])
Definition: query.c:534
tds_func_put_info_len * put_info_len
Returns metadata column information size.
Definition: tds.h:675
Information for a server connection.
Definition: tds.h:1164
unsigned char canonic
internal numeric index into array of all encodings
Definition: tds.h:646
int tds7_get_instance_ports(FILE *output, struct addrinfo *addr)
Get port of all instances.
Definition: net.c:1043
struct tds_encoding TDS_ENCODING
Information relevant to libiconv.
TDSLOGIN * tds_init_login(TDSLOGIN *login, TDSLOCALE *locale)
Initialize login structure with locale information and other stuff for connection.
Definition: mem.c:787
int tds_write_dump
Tell if TDS debug logging is turned on or off.
Definition: log.c:58
TDSRET tds_process_simple_query(TDSSOCKET *tds)
Process results for simple query as "SET TEXTSIZE" or "USE dbname" If the statement returns results...
Definition: token.c:846
unsigned char tds_peek(TDSSOCKET *tds)
Reads a byte from the TDS stream without removing it.
Definition: read.c:100
TDS_INT second
0-59
Definition: tds.h:167
int tds_put_string(TDSSOCKET *tds, const char *buf, int len)
Output a string to wire automatic translate string to unicode if needed.
Definition: write.c:93
void * tds_alloc_param_data(TDSCOLUMN *curparam)
Allocate data for a parameter.
Definition: mem.c:355
TDS_TINYINT column_varint_size
size of length when reading from wire (0, 1, 2 or 4)
Definition: tds.h:730
tds_func_put_info * put_info
Send metadata column information to server.
Definition: tds.h:681
TDSDYNAMIC * tds_lookup_dynamic(TDSCONNECTION *conn, const char *id)
Finds a dynamic given string id.
Definition: token.c:2490
TDSDYNAMIC * dyns
list of dynamic allocated for this connection contains only dynamic allocated on the server ...
Definition: tds.h:1115
unsigned char * out_buf
Output buffer.
Definition: tds.h:1184
struct tds_compiletime_settings TDS_COMPILETIME_SETTINGS
A structure to hold all the compile-time settings.
TDSRET tds_bcp_start(TDSSOCKET *tds, TDSBCPINFO *bcpinfo)
Start sending BCP data to server.
Definition: bulk.c:815
char * cursor_name
name of the cursor
Definition: tds.h:966
void tds_close_socket(TDSSOCKET *tds)
Close current socket for last socket close entire connection for MARS send FIN request.
Definition: net.c:513
void tds_fix_login(TDSLOGIN *login)
Fix configuration after reading it.
Definition: config.c:279
int tds_read_conf_file(TDSLOGIN *login, const char *server)
Read configuration info for given server return 0 on error.
Definition: config.c:340
char * query
saved query, we need to know original query if prepare is impossible
Definition: tds.h:1035
DSTR crlfile
certificate revocation file
Definition: tds.h:558
int tds_count_placeholders(const char *query)
Count the number of placeholders in query.
Definition: query.c:590
this structure is not directed connected to a TDS protocol but keeps any DATE/TIME information...
Definition: tds.h:144
client would send data
Definition: tds.h:818
tds_func_put_data * put_data
Send column data to server.
Definition: tds.h:691
const int tds_numeric_bytes_per_prec[]
The following little table is indexed by precision and will tell us the number of bytes required to s...
Definition: numeric.c:41
DSTR user_name
account for login
Definition: tds.h:560
TDS_UINT8 tds_get_uint8(TDSSOCKET *tds)
Get an uint64 from the server.
Definition: read.c:148
SQL server server error.
Definition: tds.h:256
TDS_TINYINT defer_close
true if cursor was marker to be closed when connection is idle
Definition: tds.h:972
unsigned in_pos
current position in in_buf
Definition: tds.h:1191
Store variant informations.
Definition: tds.h:625
transaction in progress
Definition: tds.h:251
TDSCURSOR * cursors
linked list of cursors allocated for this connection contains only cursors allocated on the server ...
Definition: tds.h:1110
results are from a stored procedure
Definition: tds.h:252
TDS_SYS_SOCKET s
tcp socket, INVALID_SOCKET if not connected
Definition: tds.h:1099
DSTR server_spn
server SPN (in freetds.conf)
Definition: tds.h:555
size_t tds_quote_string(TDSSOCKET *tds, char *buffer, const char *str, int len)
Quote a string.
Definition: query.c:2315
TDSRET tds_deferred_unprepare(TDSCONNECTION *conn, TDSDYNAMIC *dyn)
Unprepare dynamic on idle.
Definition: query.c:1867
int tdserror(const TDSCONTEXT *tds_ctx, TDSSOCKET *tds, int msgno, int errnum)
Call the client library's error handler (for library-generated errors only)
Definition: util.c:307
TDSRET tds_writetext_continue(TDSSOCKET *tds, const TDS_UCHAR *text, TDS_UINT size)
Send some data in the writetext request started by tds_writetext_start.
Definition: bulk.c:1131
Hold information for any results.
Definition: tds.h:794
tds_states
values for tds->state
Definition: tds.h:814
void * tds_realloc(void **pp, size_t new_size)
Reallocate a pointer and update it if success.
Definition: mem.c:1801
TDSRET tds_deferred_cursor_dealloc(TDSCONNECTION *conn, TDSCURSOR *cursor)
Deallocate cursor on idle.
Definition: query.c:3135
DSTR cafile
certificate authorities file
Definition: tds.h:557
void tds_set_column_type(TDSCONNECTION *conn, TDSCOLUMN *curcol, TDS_SERVER_TYPE type)
Set type of column initializing all dependency.
Definition: data.c:225
int port
port of database service
Definition: tds.h:546
TDSRET tds_submit_optioncmd(TDSSOCKET *tds, TDS_OPTION_CMD command, TDS_OPTION option, TDS_OPTION_ARG *param, TDS_INT param_size)
Send option commands to server.
Definition: query.c:3421
int determine_adjusted_size(const TDSICONV *char_conv, int size)
Allow for maximum possible size of converted data, while being careful about integer division truncat...
Definition: token.c:3182
void tds_set_cur_dyn(TDSSOCKET *tds, TDSDYNAMIC *dyn)
Set current dynamic.
Definition: query.c:187
TDS_TINYINT column_prec
precision for decimal/numeric
Definition: tds.h:732
void tdsdump_off(void)
Temporarily turn off logging.
Definition: log.c:76
int tds_select(TDSSOCKET *tds, unsigned tds_sel, int timeout_seconds)
Select on a socket until it's available or the timeout expires.
Definition: net.c:571
TDSRET tds_datecrack(TDS_INT datetype, const void *di, TDSDATEREC *dr)
Convert from db date format to a structured date format.
Definition: convert.c:3128
void tdsdump_dump_buf(const char *file, unsigned int level_line, const char *msg, const void *buf, size_t length)
Dump the contents of data into the log file in a human readable format.
Definition: log.c:256
void tds_detach_results(TDSRESULTINFO *info)
Detach result info from it current socket.
Definition: mem.c:478
unsigned char out_flag
output buffer type
Definition: tds.h:1195
unsigned in_len
input buffer length
Definition: tds.h:1193
DSTR db_filename
database filename to attach (MSSQL)
Definition: tds.h:556
void tds_free_param_result(TDSPARAMINFO *param_info)
Delete latest parameter.
Definition: mem.c:311
void tds_start_query(TDSSOCKET *tds, unsigned char packet_type)
Start query packet of a given type.
Definition: query.c:343
struct tds_variant TDSVARIANT
Store variant informations.
DSTR new_password
new password to set (TDS 7.2+)
Definition: tds.h:562
TDSRET tds_alloc_row(TDSRESULTINFO *res_info)
Allocate space for row store return NULL on out of memory.
Definition: mem.c:513
DSTR server_charset
charset of server e.g.
Definition: tds.h:550
DSTR * tds_dstr_get(TDSSOCKET *tds, DSTR *s, size_t len)
Reads a string from wire and put in a DSTR.
Definition: read.c:311
TDS_INT cursor_id
cursor id returned by the server after cursor declare
Definition: tds.h:967