FreeTDS API
Loading...
Searching...
No Matches
tds.h
Go to the documentation of this file.
1/* FreeTDS - Library of routines accessing Sybase and Microsoft databases
2 * Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 Brian Bruns
3 * Copyright (C) 2010, 2011 Frediano Ziglio
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details.
14 *
15 * You should have received a copy of the GNU Library General Public
16 * License along with this library; if not, write to the
17 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 * Boston, MA 02111-1307, USA.
19 */
20
21#ifndef _tdsguard_hfOrWb5znoUCWdBPoNQvqN_
22#define _tdsguard_hfOrWb5znoUCWdBPoNQvqN_
23
24#ifndef _freetds_config_h_
25#error should include config.h before
26#endif
27
28#include <stdarg.h>
29#include <stdio.h>
30#include <time.h>
31
32#ifdef HAVE_STDDEF_H
33#include <stddef.h>
34#endif
35
36#if HAVE_NETDB_H
37#include <netdb.h>
38#endif /* HAVE_NETDB_H */
39
40#if HAVE_NETINET_IN_H
41#include <netinet/in.h>
42#endif /* HAVE_NET_INET_IN_H */
43#if HAVE_ARPA_INET_H
44#include <arpa/inet.h>
45#endif /* HAVE_ARPA_INET_H */
46
47#if HAVE_SYS_SOCKET_H
48#include <sys/socket.h>
49#endif /* HAVE_SYS_SOCKET_H */
50
51/* forward declaration */
52typedef struct tdsiconvinfo TDSICONV;
53typedef struct tds_connection TDSCONNECTION;
54typedef struct tds_socket TDSSOCKET;
55typedef struct tds_column TDSCOLUMN;
56typedef struct tds_bcpinfo TDSBCPINFO;
57typedef struct tds_result_info TDSRESULTINFO;
58
59#include <freetds/version.h>
60#include <freetds/sysdep_private.h>
61#include <freetds/thread.h>
62#include <freetds/bool.h>
63#include <freetds/macros.h>
64#include <freetds/utils/string.h>
65#include <freetds/utils/path.h>
66#include <freetds/replacements.h>
67
68#include <freetds/pushvis.h>
69
70#ifdef __cplusplus
71extern "C"
72{
73#if 0
74}
75#endif
76#endif
77
84{
85 const char *freetds_version; /* release version of FreeTDS */
86 const tds_dir_char *sysconfdir; /* location of freetds.conf */
87 const char *last_update; /* latest software_version date among the modules */
88 const char *tdsver; /* TDS protocol version (4.2/4.6/5.0/7.0/7.1/8.0) 5.0 */
89 bool msdblib; /* for MS style dblib */
90 bool sybase_compat; /* enable increased Open Client binary compatibility */
91 bool threadsafe; /* compile for thread safety default=no */
92 bool libiconv; /* search for libiconv in DIR/include and DIR/lib */
93 bool iodbc; /* build odbc driver against iODBC in DIR */
94 bool unixodbc; /* build odbc driver against unixODBC in DIR */
95 bool openssl; /* build against OpenSSL */
96 bool gnutls; /* build against GnuTLS */
97 bool mars; /* MARS enabled */
98 bool sspi; /* SSPI enabled */
99 bool kerberos; /* Kerberos enabled */
101
117/*
118 * All references to data that touch the wire should use the following typedefs.
119 *
120 * If you have problems on 64-bit machines and the code is
121 * using a native datatype, please change it to use
122 * these. (In the TDS layer only, the API layers have their
123 * own typedefs which equate to these).
124 */
125typedef char TDS_CHAR; /* 8-bit char */
126typedef uint8_t TDS_UCHAR; /* 8-bit uchar */
127typedef uint8_t TDS_TINYINT; /* 8-bit unsigned */
128typedef int16_t TDS_SMALLINT; /* 16-bit int */
129typedef uint16_t TDS_USMALLINT; /* 16-bit unsigned */
130typedef int32_t TDS_INT; /* 32-bit int */
131typedef uint32_t TDS_UINT; /* 32-bit unsigned */
132typedef int64_t TDS_INT8; /* 64-bit integer */
133typedef uint64_t TDS_UINT8; /* 64-bit unsigned */
134typedef tds_sysdep_real32_type TDS_REAL; /* 32-bit real */
135typedef tds_sysdep_real64_type TDS_FLOAT; /* 64-bit real */
136
137#include <freetds/proto.h>
138
139#define TDS_INVALID_TYPE ((TDS_SERVER_TYPE) 0)
140
145typedef struct
146{
147 TDS_UINT8 time;
148 TDS_INT date;
149 TDS_SMALLINT offset;
150 TDS_USMALLINT time_prec:3;
151 TDS_USMALLINT _tds_reserved:10;
152 TDS_USMALLINT has_time:1;
153 TDS_USMALLINT has_date:1;
154 TDS_USMALLINT has_offset:1;
156
158typedef struct tdsdaterec
159{
160 TDS_INT year;
161 TDS_INT quarter;
162 TDS_INT month;
163 TDS_INT day;
164 TDS_INT dayofyear;
165 TDS_INT weekday;
166 TDS_INT hour;
167 TDS_INT minute;
168 TDS_INT second;
170 TDS_INT timezone;
172
178extern const uint8_t tds_numeric_bytes_per_prec[];
179
180typedef int TDSRET;
181#define TDS_NO_MORE_RESULTS ((TDSRET)1)
182#define TDS_SUCCESS ((TDSRET)0)
183#define TDS_FAIL ((TDSRET)-1)
184#define TDS_CANCELLED ((TDSRET)-2)
185#define TDS_FAILED(rc) ((rc)<0)
186#define TDS_SUCCEED(rc) ((rc)>=0)
187#define TDS_PROPAGATE(rc) \
188 do { TDSRET _tds_ret = (rc); if (TDS_FAILED(_tds_ret)) return _tds_ret; } while(0)
189
190#define TDS_INT_CONTINUE 1
191#define TDS_INT_CANCEL 2
192#define TDS_INT_TIMEOUT 3
193
194
195#define TDS_NO_COUNT -1
196
197#define TDS_ROW_RESULT 4040
198#define TDS_PARAM_RESULT 4042
199#define TDS_STATUS_RESULT 4043
200#define TDS_MSG_RESULT 4044
201#define TDS_COMPUTE_RESULT 4045
202#define TDS_CMD_DONE 4046
203#define TDS_CMD_SUCCEED 4047
204#define TDS_CMD_FAIL 4048
205#define TDS_ROWFMT_RESULT 4049
206#define TDS_COMPUTEFMT_RESULT 4050
207#define TDS_DESCRIBE_RESULT 4051
208#define TDS_DONE_RESULT 4052
209#define TDS_DONEPROC_RESULT 4053
210#define TDS_DONEINPROC_RESULT 4054
211#define TDS_OTHERS_RESULT 4055
212
213enum tds_token_results
214{
215 TDS_TOKEN_RES_OTHERS,
216 TDS_TOKEN_RES_ROWFMT,
217 TDS_TOKEN_RES_COMPUTEFMT,
218 TDS_TOKEN_RES_PARAMFMT,
219 TDS_TOKEN_RES_DONE,
220 TDS_TOKEN_RES_ROW,
221 TDS_TOKEN_RES_COMPUTE,
222 TDS_TOKEN_RES_PROC,
223 TDS_TOKEN_RES_MSG,
224 TDS_TOKEN_RES_ENV,
225};
226
227#define TDS_TOKEN_FLAG(flag) TDS_RETURN_##flag = (1 << (TDS_TOKEN_RES_##flag*2)), TDS_STOPAT_##flag = (2 << (TDS_TOKEN_RES_##flag*2))
228
229enum tds_token_flags
230{
231 TDS_HANDLE_ALL = 0,
232 TDS_TOKEN_FLAG(OTHERS),
233 TDS_TOKEN_FLAG(ROWFMT),
234 TDS_TOKEN_FLAG(COMPUTEFMT),
235 TDS_TOKEN_FLAG(PARAMFMT),
236 TDS_TOKEN_FLAG(DONE),
237 TDS_TOKEN_FLAG(ROW),
238 TDS_TOKEN_FLAG(COMPUTE),
239 TDS_TOKEN_FLAG(PROC),
240 TDS_TOKEN_FLAG(MSG),
241 TDS_TOKEN_FLAG(ENV),
242 TDS_TOKEN_RESULTS = TDS_RETURN_ROWFMT|TDS_RETURN_COMPUTEFMT|TDS_RETURN_DONE|TDS_STOPAT_ROW|TDS_STOPAT_COMPUTE|TDS_RETURN_PROC,
243 TDS_TOKEN_TRAILING = TDS_STOPAT_ROWFMT|TDS_STOPAT_COMPUTEFMT|TDS_STOPAT_ROW|TDS_STOPAT_COMPUTE|TDS_STOPAT_MSG|TDS_STOPAT_OTHERS
244};
245
246/*
247 * TDSERRNO is emitted by libtds to the client library's error handler
248 * (which may in turn call the client's error handler).
249 * These match the db-lib msgno, because the same values have the same meaning
250 * in db-lib and ODBC. ct-lib maps them to ct-lib numbers (todo).
251 */
252typedef enum { TDSEOK = TDS_SUCCESS,
253 TDSEVERDOWN = 100,
254 TDSEINPROGRESS,
255 TDSEICONVIU = 2400,
256 TDSEICONVAVAIL = 2401,
257 TDSEICONVO = 2402,
258 TDSEICONVI = 2403,
259 TDSEICONV2BIG = 2404,
260 TDSEPORTINSTANCE = 2500,
261 TDSESYNC = 20001,
262 TDSEFCON = 20002,
263 TDSETIME = 20003,
264 TDSEREAD = 20004,
265 TDSEWRIT = 20006,
266 TDSESOCK = 20008,
267 TDSECONN = 20009,
268 TDSEMEM = 20010,
269 TDSEINTF = 20012, /* Server name not found in interface file */
270 TDSEUHST = 20013, /* Unknown host machine name. */
271 TDSEPWD = 20014,
272 TDSESEOF = 20017,
273 TDSERPND = 20019,
274 TDSEBTOK = 20020,
275 TDSEOOB = 20022,
276 TDSECLOS = 20056,
277 TDSEUSCT = 20058,
278 TDSEUTDS = 20146,
279 TDSEEUNR = 20185,
280 TDSECAP = 20203,
281 TDSENEG = 20210,
282 TDSEUMSG = 20212,
283 TDSECAPTYP = 20213,
284 TDSECONF = 20214,
285 TDSEBPROBADTYP = 20250,
286 TDSECLOSEIN = 20292
287} TDSERRNO;
288
289
290enum {
291 TDS_CUR_ISTAT_UNUSED = 0x00,
292 TDS_CUR_ISTAT_DECLARED = 0x01,
293 TDS_CUR_ISTAT_OPEN = 0x02,
294 TDS_CUR_ISTAT_CLOSED = 0x04,
295 TDS_CUR_ISTAT_RDONLY = 0x08,
296 TDS_CUR_ISTAT_UPDATABLE = 0x10,
297 TDS_CUR_ISTAT_ROWCNT = 0x20,
298 TDS_CUR_ISTAT_DEALLOC = 0x40
299};
300
301/* string types */
302#define TDS_NULLTERM -9
303
304
305typedef union tds_option_arg
306{
307 TDS_TINYINT ti;
308 TDS_INT i;
309 TDS_CHAR *c;
311
312
313typedef enum tds_encryption_level {
314 TDS_ENCRYPTION_DEFAULT,
315 TDS_ENCRYPTION_OFF,
316 TDS_ENCRYPTION_REQUEST,
317 TDS_ENCRYPTION_REQUIRE,
318 TDS_ENCRYPTION_STRICT
319} TDS_ENCRYPTION_LEVEL;
320
321/*
322 * TODO use system macros for optimization
323 * See mcrypt for reference and linux kernel source for optimization
324 * check if unaligned access and use fast write/read when implemented
325 */
326#define TDS_BYTE_SWAP16(value) \
327 (((((uint16_t)value)<<8) & 0xFF00u) | \
328 ((((uint16_t)value)>>8) & 0x00FFu))
329
330#define TDS_BYTE_SWAP32(value) \
331 (((((uint32_t)value)<<24) & 0xFF000000u)| \
332 ((((uint32_t)value)<< 8) & 0x00FF0000u)| \
333 ((((uint32_t)value)>> 8) & 0x0000FF00u)| \
334 ((((uint32_t)value)>>24) & 0x000000FFu))
335
336#define is_end_token(x) ((x) >= TDS_DONE_TOKEN && (x) <= TDS_DONEINPROC_TOKEN)
337
338enum {
339 TDS_TYPEFLAG_INVALID = 0,
340 TDS_TYPEFLAG_NULLABLE = 1,
341 TDS_TYPEFLAG_FIXED = 2,
342 TDS_TYPEFLAG_VARIABLE = 4,
343 TDS_TYPEFLAG_COLLATE = 8,
344 TDS_TYPEFLAG_ASCII = 16,
345 TDS_TYPEFLAG_UNICODE = 32,
346 TDS_TYPEFLAG_BINARY = 64,
347 TDS_TYPEFLAG_DATETIME = 128,
348 TDS_TYPEFLAG_NUMERIC = 256,
349 TDS_TYPEFLAG_VARIANT = 512,
350};
351
352extern const uint16_t tds_type_flags_ms[256];
353#if 0
354extern const uint16_t tds_type_flags_syb[256];
355extern const char *const tds_type_names[256];
356#endif
357
358#define is_fixed_type(x) ((tds_type_flags_ms[x] & TDS_TYPEFLAG_FIXED) != 0)
359#define is_nullable_type(x) ((tds_type_flags_ms[x] & TDS_TYPEFLAG_NULLABLE) != 0)
360#define is_variable_type(x) ((tds_type_flags_ms[x] & TDS_TYPEFLAG_VARIABLE) != 0)
361#define is_variant_inner_type(x) ((tds_type_flags_ms[x] & TDS_TYPEFLAG_VARIANT) != 0)
362
363
364#define type_has_textptr(x) ((x)==SYBTEXT || (x)==SYBIMAGE || (x)==SYBNTEXT)
365#define is_blob_col(x) ((x)->column_varint_size > 2)
366/* large type means it has a two byte size field */
367/* define is_large_type(x) (x>128) */
368#define is_numeric_type(x) ((x)==SYBNUMERIC || (x)==SYBDECIMAL)
370#define is_datetime_type(x) ((tds_type_flags_ms[x] & TDS_TYPEFLAG_DATETIME) != 0)
371#define is_unicode_type(x) ((tds_type_flags_ms[x] & TDS_TYPEFLAG_UNICODE) != 0)
372#define is_collate_type(x) ((tds_type_flags_ms[x] & TDS_TYPEFLAG_COLLATE) != 0)
373#define is_ascii_type(x) ((tds_type_flags_ms[x] & TDS_TYPEFLAG_ASCII) != 0)
374#define is_binary_type(x) ((tds_type_flags_ms[x] & TDS_TYPEFLAG_BINARY) != 0)
375#define is_char_type(x) ((tds_type_flags_ms[x] & (TDS_TYPEFLAG_ASCII|TDS_TYPEFLAG_UNICODE)) != 0)
376#define is_similar_type(x, y) (is_char_type(x) && is_char_type(y))
377inline static bool
378is_tds_type_valid(int type)
379{
380 return (unsigned) type < 256u && tds_type_flags_ms[type] != 0;
381}
382
383
384#define TDS_MAX_CAPABILITY 32
385#define MAXPRECISION 77
386#define TDS_MAX_CONN 4096
387#define TDS_MAX_DYNID_LEN 30
388
389/* defaults to use if no others are found */
390#define TDS_DEF_SERVER "SYBASE"
391#define TDS_DEF_BLKSZ 512
392#define TDS_DEF_CHARSET "iso_1"
393#define TDS_DEF_LANG "us_english"
394#if TDS50
395#define TDS_DEFAULT_VERSION 0x500
396#define TDS_DEF_PORT 4000
397#elif TDS71
398#define TDS_DEFAULT_VERSION 0x701
399#define TDS_DEF_PORT 1433
400#elif TDS72
401#define TDS_DEFAULT_VERSION 0x702
402#define TDS_DEF_PORT 1433
403#elif TDS73
404#define TDS_DEFAULT_VERSION 0x703
405#define TDS_DEF_PORT 1433
406#elif TDS74
407#define TDS_DEFAULT_VERSION 0x704
408#define TDS_DEF_PORT 1433
409#else
410#define TDS_DEFAULT_VERSION 0x000
411#define TDS_DEF_PORT 1433
412#endif
413
414/* normalized strings from freetds.conf file */
415#define TDS_STR_VERSION "tds version"
416#define TDS_STR_BLKSZ "initial block size"
417#define TDS_STR_SWAPDT "swap broken dates"
418#define TDS_STR_DUMPFILE "dump file"
419#define TDS_STR_DEBUGLVL "debug level"
420#define TDS_STR_DEBUGFLAGS "debug flags"
421#define TDS_STR_TIMEOUT "timeout"
422#define TDS_STR_QUERY_TIMEOUT "query timeout"
423#define TDS_STR_CONNTIMEOUT "connect timeout"
424#define TDS_STR_HOSTNAME "hostname"
425#define TDS_STR_HOST "host"
426#define TDS_STR_PORT "port"
427#define TDS_STR_TEXTSZ "text size"
428/* for big endian hosts, obsolete, ignored */
429#define TDS_STR_EMUL_LE "emulate little endian"
430#define TDS_STR_CHARSET "charset"
431#define TDS_STR_CLCHARSET "client charset"
432#define TDS_STR_USE_UTF_16 "use utf-16"
433#define TDS_STR_LANGUAGE "language"
434#define TDS_STR_APPENDMODE "dump file append"
435#define TDS_STR_DATETIMEFMT "date format"
436#define TDS_STR_DATEFMT "date-only format"
437#define TDS_STR_TIMEFMT "time-only format"
438#define TDS_STR_INSTANCE "instance"
439#define TDS_STR_ASA_DATABASE "asa database"
440#define TDS_STR_DATABASE "database"
441#define TDS_STR_ENCRYPTION "encryption"
442#define TDS_STR_USENTLMV2 "use ntlmv2"
443#define TDS_STR_USELANMAN "use lanman"
444/* conf values */
445#define TDS_STR_ENCRYPTION_OFF "off"
446#define TDS_STR_ENCRYPTION_REQUEST "request"
447#define TDS_STR_ENCRYPTION_REQUIRE "require"
448#define TDS_STR_ENCRYPTION_STRICT "strict"
449/* Defines to enable optional GSSAPI delegation */
450#define TDS_GSSAPI_DELEGATION "enable gssapi delegation"
451/* Mutual authentication */
452#define TDS_STR_MUTUAL_AUTHENTICATION "mutual authentication"
453/* Kerberos realm name */
454#define TDS_STR_REALM "realm"
455/* Kerberos SPN */
456#define TDS_STR_SPN "spn"
457/* CA file */
458#define TDS_STR_CAFILE "ca file"
459/* CRL file */
460#define TDS_STR_CRLFILE "crl file"
461/* check SSL hostname */
462#define TDS_STR_CHECKSSLHOSTNAME "check certificate hostname"
463/* SSL hostname to check certificate */
464#define TDS_STR_SSLHOSTNAME "certificate hostname"
465/* database filename to attach on login (MSSQL) */
466#define TDS_STR_DBFILENAME "database filename"
467/* Application Intent MSSQL 2012 support */
468#define TDS_STR_READONLY_INTENT "read-only intent"
469/* configurable cipher suite to send to openssl's SSL_set_cipher_list() function */
470#define TLS_STR_OPENSSL_CIPHERS "openssl ciphers"
471/* configurable cipher suite to send to gnutls's gnutls_priority_set_direct() function */
472#define TLS_STR_GNUTLS_CIPHERS "gnutls ciphers"
473/* enable old TLS v1, required for instance if you are using a really old Windows XP */
474#define TDS_STR_ENABLE_TLS_V1 "enable tls v1"
475/* enable old TLS v1.1 */
476#define TDS_STR_ENABLE_TLS_V1_1 "enable tls v1.1"
477
478
479/* TODO do a better check for alignment than this */
480typedef union
481{
482 void *p;
483 int i;
484 int64_t ui;
486
487#define TDS_ALIGN_SIZE sizeof(tds_align_struct)
488
490{
491 unsigned char type;
492 unsigned char len; /* always sizeof(values) */
493 unsigned char values[TDS_MAX_CAPABILITY/2-2];
495
496typedef struct tds_capabilities
497{
498 TDS_CAPABILITY_TYPE types[2];
500
501#define TDS_MAX_LOGIN_STR_SZ 128
502typedef struct tds_login
503{
505 int port;
506 TDS_USMALLINT tds_version;
507 int block_size;
508 DSTR language; /* e.g. us-english */
510 TDS_INT connect_timeout;
511 DSTR client_host_name;
512 DSTR server_host_name;
519 DSTR openssl_ciphers;
521 DSTR app_name;
526 DSTR library; /* Ct-Library, DB-Library, TDS-Library or ODBC */
527 TDS_TINYINT encryption_level;
528
529 TDS_INT query_timeout;
530 TDS_CAPABILITIES capabilities;
531 DSTR client_charset;
532 DSTR database;
533
534 struct addrinfo *ip_addrs;
535 DSTR instance_name;
536 tds_dir_char *dump_file;
537 int debug_flags;
538 int text_size;
539 DSTR routing_address;
540 uint16_t routing_port;
541
542 unsigned char option_flag2;
543
544 uint8_t bulk_copy:1;
545 uint8_t suppress_language:1;
546 uint8_t gssapi_use_delegation:1;
547 uint8_t mutual_authentication:1;
548 uint8_t use_ntlmv2:1;
549 uint8_t use_ntlmv2_specified:1;
550 uint8_t use_lanman:1;
551 uint8_t mars:1;
552 uint8_t use_utf16:1;
553 uint8_t use_new_password:1;
554 uint8_t valid_configuration:1;
555 uint8_t check_ssl_hostname:1;
556 uint8_t readonly_intent:1;
557 uint8_t enable_tls_v1:1;
558 uint8_t enable_tls_v1_specified:1;
559 uint8_t enable_tls_v1_1:1;
560 uint8_t enable_tls_v1_1_specified:1;
561 uint8_t server_is_valid:1;
562} TDSLOGIN;
563
564typedef struct tds_headers
565{
566 const char *qn_options;
567 const char *qn_msgtext;
568 TDS_INT qn_timeout;
569 /* TDS 7.4+: trace activity ID char[20] */
570} TDSHEADERS;
571
572typedef struct tds_locale
573{
574 char *language;
575 char *server_charset;
576 char *datetime_fmt;
577 char *date_fmt;
578 char *time_fmt;
579} TDSLOCALE;
580
585typedef struct tds_blob
586{
587 TDS_CHAR *textvalue;
588 TDS_CHAR textptr[16];
589 TDS_CHAR timestamp[8];
590 bool valid_ptr;
592
596typedef struct tds_variant
597{
598 /* this MUST have same position and place of textvalue in tds_blob */
599 TDS_CHAR *data;
600 TDS_INT size;
601 TDS_INT data_len;
602 TDS_SERVER_TYPE type;
603 TDS_UCHAR collation[5];
605
610typedef struct tds_encoding
611{
613 const char *name;
614 unsigned char min_bytes_per_char;
615 unsigned char max_bytes_per_char;
617 unsigned char canonic;
619
620typedef struct tds_bcpcoldata
621{
622 TDS_UCHAR *data;
623 TDS_INT datalen;
624 bool is_null;
625} BCPCOLDATA;
626
627
628typedef TDSRET tds_func_get_info(TDSSOCKET *tds, TDSCOLUMN *col);
629typedef TDSRET tds_func_get_data(TDSSOCKET *tds, TDSCOLUMN *col);
630typedef TDS_INT tds_func_row_len(TDSCOLUMN *col);
631typedef TDSRET tds_func_put_info(TDSSOCKET *tds, TDSCOLUMN *col);
632typedef TDSRET tds_func_put_data(TDSSOCKET *tds, TDSCOLUMN *col, bool bcp7);
633typedef int tds_func_check(const TDSCOLUMN *col);
634
635typedef struct tds_column_funcs
636{
637 tds_func_get_info *get_info;
638 tds_func_get_data *get_data;
639 tds_func_row_len *row_len;
645 tds_func_put_info *put_info;
655 tds_func_put_data *put_data;
656#if ENABLE_EXTRA_CHECKS
671 tds_func_check *check;
672#endif
673#if 0
674 TDSRET (*convert)(TDSSOCKET *tds, TDSCOLUMN *col);
675#endif
677
682{
683 const TDSCOLUMNFUNCS *funcs;
684 TDS_INT column_usertype;
685 TDS_INT column_flags;
686
690 TDS_INT column_size;
691
698 TDS_SERVER_TYPE column_type;
699
710
711 TDS_TINYINT column_prec;
712 TDS_TINYINT column_scale;
714 struct
715 {
716 TDS_SERVER_TYPE column_type;
717 TDS_INT column_size;
718 } on_server;
719
722 DSTR table_name;
723 DSTR column_name;
724 DSTR table_column_name;
725
726 unsigned char *column_data;
727 void (*column_data_free)(struct tds_column * column);
728 uint8_t column_nullable:1;
729 uint8_t column_writeable:1;
730 uint8_t column_identity:1;
731 uint8_t column_key:1;
732 uint8_t column_hidden:1;
733 uint8_t column_output:1;
734 uint8_t column_timestamp:1;
735 uint8_t column_computed:1;
736 TDS_UCHAR column_collation[5];
737
738 uint8_t use_iconv_out:1;
739
740 /* additional fields flags for compute results */
741 TDS_SMALLINT column_operand;
742 TDS_TINYINT column_operator;
743
744 /* FIXME this is data related, not column */
747
748 /* related to binding or info stored by client libraries */
749 /* FIXME find a best place to store these data, some are unused */
750 TDS_SMALLINT column_bindtype;
751 TDS_SMALLINT column_bindfmt;
752 TDS_INT column_bindlen;
753 TDS_SMALLINT *column_nullbind;
754 TDS_CHAR *column_varaddr;
755 TDS_INT *column_lenbind;
756 TDS_INT column_textpos;
757 TDS_INT column_text_sqlgetdatapos;
758 TDS_CHAR column_text_sqlputdatainfo;
759 unsigned char column_iconv_left;
760 char column_iconv_buf[9];
761
762 BCPCOLDATA *bcp_column_data;
772 TDS_INT bcp_term_len;
773 TDS_CHAR *bcp_terminator;
774};
775
776
779{
780 /* TODO those fields can became a struct */
781 TDSCOLUMN **columns;
782 TDS_USMALLINT num_cols;
783 TDS_USMALLINT computeid;
784 TDS_INT ref_count;
785 TDSSOCKET *attached_to;
786 unsigned char *current_row;
787 void (*row_free)(TDSRESULTINFO* result, unsigned char *row);
788 TDS_INT row_size;
789
790 TDS_SMALLINT *bycolumns;
791 TDS_USMALLINT by_cols;
792 bool rows_exist;
793 /* TODO remove ?? used only in dblib */
794 bool more_results;
795};
796
807
808typedef enum tds_operations
809{
810 TDS_OP_NONE = 0,
811
812 /* MSSQL operations, these matches protocol definitions */
813 TDS_OP_CURSOR = TDS_SP_CURSOR,
814 TDS_OP_CURSOROPEN = TDS_SP_CURSOROPEN,
815 TDS_OP_CURSORPREPARE = TDS_SP_CURSORPREPARE,
816 TDS_OP_CURSOREXECUTE = TDS_SP_CURSOREXECUTE,
817 TDS_OP_CURSORPREPEXEC = TDS_SP_CURSORPREPEXEC,
818 TDS_OP_CURSORUNPREPARE = TDS_SP_CURSORUNPREPARE,
819 TDS_OP_CURSORFETCH = TDS_SP_CURSORFETCH,
820 TDS_OP_CURSOROPTION = TDS_SP_CURSOROPTION,
821 TDS_OP_CURSORCLOSE = TDS_SP_CURSORCLOSE,
822 TDS_OP_EXECUTESQL = TDS_SP_EXECUTESQL,
823 TDS_OP_PREPARE = TDS_SP_PREPARE,
824 TDS_OP_EXECUTE = TDS_SP_EXECUTE,
825 TDS_OP_PREPEXEC = TDS_SP_PREPEXEC,
826 TDS_OP_PREPEXECRPC = TDS_SP_PREPEXECRPC,
827 TDS_OP_UNPREPARE = TDS_SP_UNPREPARE,
828
829 /* sybase operations */
830 TDS_OP_DYN_DEALLOC = 100,
831} TDS_OPERATION;
832
833#define TDS_DBG_LOGIN __FILE__, ((__LINE__ << 4) | 11)
834#define TDS_DBG_HEADER __FILE__, ((__LINE__ << 4) | 10)
835#define TDS_DBG_FUNC __FILE__, ((__LINE__ << 4) | 7)
836#define TDS_DBG_INFO2 __FILE__, ((__LINE__ << 4) | 6)
837#define TDS_DBG_INFO1 __FILE__, ((__LINE__ << 4) | 5)
838#define TDS_DBG_NETWORK __FILE__, ((__LINE__ << 4) | 4)
839#define TDS_DBG_WARN __FILE__, ((__LINE__ << 4) | 3)
840#define TDS_DBG_ERROR __FILE__, ((__LINE__ << 4) | 2)
841#define TDS_DBG_SEVERE __FILE__, ((__LINE__ << 4) | 1)
842
843#define TDS_DBGFLAG_FUNC 0x80
844#define TDS_DBGFLAG_INFO2 0x40
845#define TDS_DBGFLAG_INFO1 0x20
846#define TDS_DBGFLAG_NETWORK 0x10
847#define TDS_DBGFLAG_WARN 0x08
848#define TDS_DBGFLAG_ERROR 0x04
849#define TDS_DBGFLAG_SEVERE 0x02
850#define TDS_DBGFLAG_ALL 0xfff
851#define TDS_DBGFLAG_LOGIN 0x0800
852#define TDS_DBGFLAG_HEADER 0x0400
853#define TDS_DBGFLAG_PID 0x1000
854#define TDS_DBGFLAG_TIME 0x2000
855#define TDS_DBGFLAG_SOURCE 0x4000
856#define TDS_DBGFLAG_THREAD 0x8000
857
858#if 0
864enum TDS_DBG_LOG_STATE
865{
866 TDS_DBG_LOGIN = (1 << 0)
868 , TDS_DBG_API = (1 << 1)
869 , TDS_DBG_ASYNC = (1 << 2)
870 , TDS_DBG_DIAG = (1 << 3)
871 , TDS_DBG_error = (1 << 4)
872 /* TODO: ^^^^^ make upper case when old #defines (above) are removed */
873 /* Log FreeTDS runtime/logic error occurs. */
874 , TDS_DBG_PACKET = (1 << 5)
875 , TDS_DBG_LIBTDS = (1 << 6)
876 , TDS_DBG_CONFIG = (1 << 7)
877 , TDS_DBG_DEFAULT = 0xFE
878};
879#endif
880
882
884
885typedef struct tds_message
886{
887 TDS_CHAR *server;
888 TDS_CHAR *message;
889 TDS_CHAR *proc_name;
890 TDS_CHAR *sql_state;
891 TDS_INT msgno;
892 TDS_INT line_number;
893 /* -1 .. 255 */
894 TDS_SMALLINT state;
895 TDS_TINYINT priv_msg_type;
896 TDS_TINYINT severity;
897 /* for library-generated errors */
898 int oserr;
899} TDSMESSAGE;
900
901typedef struct tds_upd_col
902{
903 struct tds_upd_col *next;
904 TDS_INT colnamelength;
905 char * columnname;
906} TDSUPDCOL;
907
908typedef enum {
909 TDS_CURSOR_STATE_UNACTIONED = 0 /* initial value */
910 , TDS_CURSOR_STATE_REQUESTED = 1 /* called by ct_cursor */
911 , TDS_CURSOR_STATE_SENT = 2 /* sent to server */
912 , TDS_CURSOR_STATE_ACTIONED = 3 /* acknowledged by server */
913} TDS_CURSOR_STATE;
914
915typedef struct tds_cursor_status
916{
917 TDS_CURSOR_STATE declare;
918 TDS_CURSOR_STATE cursor_row;
919 TDS_CURSOR_STATE open;
920 TDS_CURSOR_STATE fetch;
921 TDS_CURSOR_STATE close;
922 TDS_CURSOR_STATE dealloc;
924
925typedef enum tds_cursor_operation
926{
927 TDS_CURSOR_POSITION = 0,
928 TDS_CURSOR_UPDATE = 1,
929 TDS_CURSOR_DELETE = 2,
930 TDS_CURSOR_INSERT = 4
931} TDS_CURSOR_OPERATION;
932
933typedef enum tds_cursor_fetch
934{
935 TDS_CURSOR_FETCH_NEXT = 1,
936 TDS_CURSOR_FETCH_PREV,
937 TDS_CURSOR_FETCH_FIRST,
938 TDS_CURSOR_FETCH_LAST,
939 TDS_CURSOR_FETCH_ABSOLUTE,
940 TDS_CURSOR_FETCH_RELATIVE
941} TDS_CURSOR_FETCH;
942
946typedef struct tds_cursor
947{
948 struct tds_cursor *next;
949 TDS_INT ref_count;
951 TDS_INT cursor_id;
952 TDS_TINYINT options;
957 char *query;
958 /* TODO for updatable columns */
959 /* TDS_TINYINT number_upd_cols; */
960 /* TDSUPDCOL *cur_col_list; */
961 TDS_INT cursor_rows;
962 /* TDSPARAMINFO *params; */
964 TDS_USMALLINT srv_status;
965 TDSRESULTINFO *res_info;
966 TDS_INT type;
967 TDS_INT concurrency;
969
973typedef struct tds_env
974{
977 char *language;
979 char *charset;
981 char *database;
983
987typedef struct tds_dynamic
988{
990 TDS_INT ref_count;
992 TDS_INT num_id;
998 char id[30];
1009 /* int dyn_state; */ /* TODO use it */
1020 char *query;
1022
1023typedef enum {
1024 TDS_MULTIPLE_QUERY,
1025 TDS_MULTIPLE_EXECUTE,
1026 TDS_MULTIPLE_RPC
1027} TDS_MULTIPLE_TYPE;
1028
1029typedef struct tds_multiple
1030{
1031 TDS_MULTIPLE_TYPE type;
1032 unsigned int flags;
1033} TDSMULTIPLE;
1034
1035/* forward declaration */
1036typedef struct tds_context TDSCONTEXT;
1037typedef int (*err_handler_t) (const TDSCONTEXT *, TDSSOCKET *, TDSMESSAGE *);
1038typedef int (*int_handler_t) (void *);
1039
1041{
1042 TDSLOCALE *locale;
1043 void *parent;
1044 /* handlers */
1045 int (*msg_handler) (const TDSCONTEXT *, TDSSOCKET *, TDSMESSAGE *);
1046 int (*err_handler) (const TDSCONTEXT *, TDSSOCKET *, TDSMESSAGE *);
1047 int (*int_handler) (void *);
1048 bool money_use_2_digits;
1049};
1050
1051enum TDS_ICONV_ENTRY
1052{
1053 client2ucs2
1054 , client2server_chardata
1055 , initial_char_conv_count /* keep last */
1056};
1057
1059{
1060 uint8_t *packet;
1061 int packet_len;
1062 /* TDS_MSG_TOKEN type, for TDS5 */
1063 uint16_t msg_type;
1064 TDSRET (*free)(TDSCONNECTION* conn, struct tds_authentication * auth);
1065 TDSRET (*handle_next)(TDSSOCKET * tds, struct tds_authentication * auth, size_t len);
1067
1068typedef struct tds_packet
1069{
1070 struct tds_packet *next;
1071 uint16_t sid;
1072
1073#if ENABLE_ODBC_MARS
1077 uint8_t data_start;
1078#endif
1079
1083 unsigned data_len;
1084 unsigned capacity;
1085 unsigned char buf[1];
1086} TDSPACKET;
1087
1088#if ENABLE_ODBC_MARS
1089#define tds_packet_zero_data_start(pkt) do { (pkt)->data_start = 0; } while(0)
1090#define tds_packet_get_data_start(pkt) ((pkt)->data_start)
1091#else
1092#define tds_packet_zero_data_start(pkt) do { } while(0)
1093#define tds_packet_get_data_start(pkt) 0
1094#endif
1095
1096typedef struct tds_poll_wakeup
1097{
1098 TDS_SYS_SOCKET s_signal, s_signaled;
1100
1101/* field related to connection */
1103{
1104 TDS_USMALLINT tds_version;
1105 bool corked;
1107 char *product_name;
1108
1109 TDS_SYS_SOCKET s;
1110 TDSPOLLWAKEUP wakeup;
1111 const TDSCONTEXT *tds_ctx;
1112
1115
1126
1127 int char_conv_count;
1128 TDSICONV **char_convs;
1129
1130 TDS_UCHAR collation[5];
1131 TDS_UCHAR tds72_transaction[8];
1132
1133 TDS_CAPABILITIES capabilities;
1134 uint8_t use_iconv_in:1;
1135 uint8_t tds71rev1:1;
1136 uint8_t pending_close:1;
1137 uint8_t encrypt_single_packet:1;
1138#if ENABLE_ODBC_MARS
1139 uint8_t mars:1;
1140
1141 TDSSOCKET *in_net_tds;
1142 TDSPACKET *packets;
1143 TDSPACKET *recv_packet;
1144 TDSPACKET *send_packets;
1145 unsigned send_pos, recv_pos;
1146
1147#define BUSY_SOCKET ((TDSSOCKET*)(TDS_UINTPTR)1)
1148#define TDSSOCKET_VALID(tds) (((TDS_UINTPTR)(tds)) > 1)
1149 TDSSOCKET **sessions;
1150 unsigned num_sessions;
1151#endif
1152 tds_mutex list_mtx;
1153
1154 unsigned num_cached_packets;
1155 TDSPACKET *packet_cache;
1156
1157 int spid;
1158 int client_spid;
1159
1164 uint8_t ncharsize;
1165
1172
1173 void *tls_session;
1174#if defined(HAVE_GNUTLS)
1175 void *tls_credentials;
1176#elif defined(HAVE_OPENSSL)
1177 void *tls_ctx;
1178#else
1179 void *tls_dummy;
1180#endif
1181 TDSAUTHENTICATION *authentication;
1182 char *server;
1183};
1184
1189{
1190#if ENABLE_ODBC_MARS
1191 TDSCONNECTION *conn;
1192#else
1193 TDSCONNECTION conn[1];
1194#endif
1195
1196 void *parent;
1197
1203 unsigned char *in_buf;
1204
1211 unsigned char *out_buf;
1212
1217 unsigned out_buf_max;
1218 unsigned in_pos;
1219 unsigned out_pos;
1220 unsigned in_len;
1221 unsigned char in_flag;
1222 unsigned char out_flag;
1224 unsigned frozen;
1230
1231#if ENABLE_ODBC_MARS
1236 uint16_t sid;
1237
1242 tds_condition packet_cond;
1243
1248 TDSPACKET *sending_packet;
1249 TDS_UINT recv_seq;
1250 TDS_UINT send_seq;
1251 TDS_UINT recv_wnd;
1252 TDS_UINT send_wnd;
1253#endif
1254 /* packet we received */
1255 TDSPACKET *recv_packet;
1258
1265 TDSRESULTINFO *res_info;
1266 TDS_UINT num_comp_info;
1267 TDSCOMPUTEINFO **comp_info;
1268 TDSPARAMINFO *param_info;
1272 bool in_row;
1273 volatile
1274 unsigned char in_cancel;
1276 TDS_INT ret_status;
1277 TDS_STATE state;
1278
1279 TDS_INT query_timeout;
1280 TDS_INT8 rows_affected;
1286 void (*env_chg_func) (TDSSOCKET * tds, int type, char *oldval, char *newval);
1287 TDS_OPERATION current_op;
1288
1289 int option_value;
1290 tds_mutex wire_mtx;
1291};
1292
1293#define tds_get_ctx(tds) ((tds)->conn->tds_ctx)
1294#define tds_set_ctx(tds, val) do { ((tds)->conn->tds_ctx) = (val); } while(0)
1295#define tds_get_parent(tds) ((tds)->parent)
1296#define tds_set_parent(tds, val) do { ((tds)->parent) = (val); } while(0)
1297#define tds_get_s(tds) ((tds)->conn->s)
1298#define tds_set_s(tds, val) do { ((tds)->conn->s) = (val); } while(0)
1299
1300typedef struct tds_tvp_row
1301{
1302 TDSPARAMINFO *params;
1303 struct tds_tvp_row *next;
1304} TDS_TVP_ROW;
1305
1306typedef struct tds_tvp
1307{
1308 char *schema;
1309 char *name;
1310 TDSPARAMINFO *metadata;
1311 TDS_TVP_ROW *row;
1312} TDS_TVP;
1313
1314
1315/* config.c */
1317typedef bool (*TDSCONFPARSE) (const char *option, const char *value, void *param);
1318bool tds_read_conf_section(FILE * in, const char *section, TDSCONFPARSE tds_conf_parse, void *parse_param);
1319bool tds_read_conf_file(TDSLOGIN * login, const char *server);
1320bool tds_parse_conf_section(const char *option, const char *value, void *param);
1321TDSLOGIN *tds_read_config_info(TDSSOCKET * tds, TDSLOGIN * login, TDSLOCALE * locale);
1322void tds_fix_login(TDSLOGIN* login);
1323TDS_USMALLINT * tds_config_verstr(const char *tdsver, TDSLOGIN* login);
1324struct addrinfo *tds_lookup_host(const char *servername);
1325TDSRET tds_lookup_host_set(const char *servername, struct addrinfo **addr);
1326const char *tds_addrinfo2str(struct addrinfo *addr, char *name, int namemax);
1327
1328TDSRET tds_set_interfaces_file_loc(const char *interfloc);
1329extern const char STD_DATETIME_FMT[];
1330int tds_parse_boolean(const char *value, int default_value);
1331int tds_config_boolean(const char *option, const char *value, TDSLOGIN * login);
1332
1334TDSRET tds_alloc_row(TDSRESULTINFO * res_info);
1335TDSRET tds_alloc_compute_row(TDSCOMPUTEINFO * res_info);
1336BCPCOLDATA * tds_alloc_bcp_column_data(unsigned int column_size);
1337TDSDYNAMIC *tds_lookup_dynamic(TDSCONNECTION * conn, const char *id);
1338/*@observer@*/ const char *tds_prtype(int token);
1339int tds_get_varint_size(TDSCONNECTION * conn, int datatype);
1340TDS_SERVER_TYPE tds_get_cardinal_type(TDS_SERVER_TYPE datatype, int usertype);
1341TDSRET tds8_adjust_login(TDSLOGIN *login);
1342
1343
1344/* iconv.c */
1345TDSRET tds_iconv_open(TDSCONNECTION * conn, const char *charset, int use_utf16);
1346void tds_iconv_close(TDSCONNECTION * conn);
1347void tds_srv_charset_changed(TDSCONNECTION * conn, const char *charset);
1348void tds7_srv_charset_changed(TDSCONNECTION * conn, TDS_UCHAR collate[5]);
1349int tds_iconv_alloc(TDSCONNECTION * conn);
1350void tds_iconv_free(TDSCONNECTION * conn);
1351TDSICONV *tds_iconv_from_collate(TDSCONNECTION * conn, const TDS_UCHAR collate[5]);
1352
1353
1354/* mem.c */
1355void tds_free_socket(TDSSOCKET * tds);
1356void tds_free_all_results(TDSSOCKET * tds);
1357void tds_free_results(TDSRESULTINFO * res_info);
1358void tds_free_param_results(TDSPARAMINFO * param_info);
1359void tds_free_param_result(TDSPARAMINFO * param_info);
1360void tds_free_msg(TDSMESSAGE * message);
1361void tds_cursor_deallocated(TDSCONNECTION *conn, TDSCURSOR *cursor);
1362void tds_release_cursor(TDSCURSOR **pcursor);
1363void tds_free_bcp_column_data(BCPCOLDATA * coldata);
1364TDSRESULTINFO *tds_alloc_results(TDS_USMALLINT num_cols);
1365TDSCOMPUTEINFO **tds_alloc_compute_results(TDSSOCKET * tds, TDS_USMALLINT num_cols, TDS_USMALLINT by_cols);
1366TDSCONTEXT *tds_alloc_context(void * parent);
1367void tds_free_context(TDSCONTEXT * locale);
1370void tds_release_dynamic(TDSDYNAMIC ** dyn);
1371inline static void
1372tds_release_cur_dyn(TDSSOCKET * tds)
1373{
1375}
1376void tds_dynamic_deallocated(TDSCONNECTION *conn, TDSDYNAMIC *dyn);
1377void tds_set_cur_dyn(TDSSOCKET *tds, TDSDYNAMIC *dyn);
1378TDSSOCKET *tds_realloc_socket(TDSSOCKET * tds, unsigned int bufsize);
1379char *tds_alloc_client_sqlstate(int msgno);
1380char *tds_alloc_lookup_sqlstate(TDSSOCKET * tds, int msgno);
1381TDSLOGIN *tds_alloc_login(bool use_environment);
1382TDSDYNAMIC *tds_alloc_dynamic(TDSCONNECTION * conn, const char *id);
1383void tds_free_login(TDSLOGIN * login);
1384TDSLOGIN *tds_init_login(TDSLOGIN * login, TDSLOCALE * locale);
1385TDSLOCALE *tds_alloc_locale(void);
1386void *tds_alloc_param_data(TDSCOLUMN * curparam);
1387void tds_free_locale(TDSLOCALE * locale);
1388TDSCURSOR * tds_alloc_cursor(TDSSOCKET * tds, const char *name, size_t namelen, const char *query, size_t querylen);
1389void tds_free_row(TDSRESULTINFO * res_info, unsigned char *row);
1390TDSSOCKET *tds_alloc_socket(TDSCONTEXT * context, unsigned int bufsize);
1391TDSSOCKET *tds_alloc_additional_socket(TDSCONNECTION *conn);
1392void tds_set_current_results(TDSSOCKET *tds, TDSRESULTINFO *info);
1394void * tds_realloc(void **pp, size_t new_size);
1395#define TDS_RESIZE(p, n_elem) \
1396 tds_realloc((void **) &(p), sizeof(*(p)) * (size_t) (n_elem))
1397
1398TDSPACKET *tds_alloc_packet(void *buf, unsigned len);
1399TDSPACKET *tds_realloc_packet(TDSPACKET *packet, unsigned len);
1400void tds_free_packets(TDSPACKET *packet);
1401TDSBCPINFO *tds_alloc_bcpinfo(void);
1402void tds_free_bcpinfo(TDSBCPINFO *bcpinfo);
1403void tds_deinit_bcpinfo(TDSBCPINFO *bcpinfo);
1404void tds_deinit_tvp(TDS_TVP *table);
1405
1406
1407/* login.c */
1408void tds_set_packet(TDSLOGIN * tds_login, int packet_size);
1409void tds_set_port(TDSLOGIN * tds_login, int port);
1410bool tds_set_passwd(TDSLOGIN * tds_login, const char *password) TDS_WUR;
1411void tds_set_bulk(TDSLOGIN * tds_login, bool enabled);
1412bool tds_set_user(TDSLOGIN * tds_login, const char *username) TDS_WUR;
1413bool tds_set_app(TDSLOGIN * tds_login, const char *application) TDS_WUR;
1414bool tds_set_host(TDSLOGIN * tds_login, const char *hostname) TDS_WUR;
1415bool tds_set_library(TDSLOGIN * tds_login, const char *library) TDS_WUR;
1416bool tds_set_server(TDSLOGIN * tds_login, const char *server) TDS_WUR;
1417bool tds_set_client_charset(TDSLOGIN * tds_login, const char *charset) TDS_WUR;
1418bool tds_set_language(TDSLOGIN * tds_login, const char *language) TDS_WUR;
1419void tds_set_version(TDSLOGIN * tds_login, TDS_TINYINT major_ver, TDS_TINYINT minor_ver);
1420TDSRET tds_connect_and_login(TDSSOCKET * tds, TDSLOGIN * login);
1421
1422
1423/* query.c */
1424void tds_start_query(TDSSOCKET *tds, unsigned char packet_type);
1425
1426TDSRET tds_submit_query(TDSSOCKET * tds, const char *query);
1427TDSRET tds_submit_query_params(TDSSOCKET * tds, const char *query, TDSPARAMINFO * params, TDSHEADERS * head);
1428TDSRET tds_submit_queryf(TDSSOCKET * tds, const char *queryf, ...);
1429TDSRET tds_submit_prepare(TDSSOCKET * tds, const char *query, const char *id, TDSDYNAMIC ** dyn_out, TDSPARAMINFO * params);
1430TDSRET tds_submit_execdirect(TDSSOCKET * tds, const char *query, TDSPARAMINFO * params, TDSHEADERS * head);
1431TDSRET tds71_submit_prepexec(TDSSOCKET * tds, const char *query, const char *id, TDSDYNAMIC ** dyn_out, TDSPARAMINFO * params);
1432TDSRET tds_submit_execute(TDSSOCKET * tds, TDSDYNAMIC * dyn);
1433TDSRET tds_send_cancel(TDSSOCKET * tds);
1434const char *tds_next_placeholder(const char *start);
1435int tds_count_placeholders(const char *query);
1437TDSRET tds_deferred_unprepare(TDSCONNECTION * conn, TDSDYNAMIC * dyn);
1438TDSRET tds_submit_unprepare(TDSSOCKET * tds, TDSDYNAMIC * dyn);
1439TDSRET tds_submit_rpc(TDSSOCKET * tds, const char *rpc_name, TDSPARAMINFO * params, TDSHEADERS * head);
1440TDSRET tds_submit_optioncmd(TDSSOCKET * tds, TDS_OPTION_CMD command, TDS_OPTION option, TDS_OPTION_ARG *param, TDS_INT param_size);
1441TDSRET tds_submit_begin_tran(TDSSOCKET *tds);
1442TDSRET tds_submit_rollback(TDSSOCKET *tds, bool cont);
1443TDSRET tds_submit_commit(TDSSOCKET *tds, bool cont);
1444TDSRET tds_disconnect(TDSSOCKET * tds);
1445size_t tds_quote_id(TDSSOCKET * tds, char *buffer, const char *id, ptrdiff_t idlen);
1446size_t tds_quote_id_rpc(TDSSOCKET * tds, char *buffer, const char *id, ptrdiff_t idlen);
1447size_t tds_quote_string(TDSSOCKET * tds, char *buffer, const char *str, ptrdiff_t len);
1448const char *tds_skip_comment(const char *s);
1449const char *tds_skip_quoted(const char *s);
1450size_t tds_fix_column_size(TDSSOCKET * tds, TDSCOLUMN * curcol);
1451const char *tds_convert_string(TDSSOCKET * tds, TDSICONV * char_conv, const char *s, ptrdiff_t len, size_t *out_len);
1452void tds_convert_string_free(const char *original, const char *converted);
1453#if !ENABLE_EXTRA_CHECKS
1454#define tds_convert_string_free(original, converted) \
1455 do { if (original != converted) free((char*) converted); } while(0)
1456#endif
1457TDSRET tds_get_column_declaration(TDSSOCKET * tds, TDSCOLUMN * curcol, char *out);
1458
1459TDSRET tds_cursor_declare(TDSSOCKET * tds, TDSCURSOR * cursor, bool *send);
1460TDSRET tds_cursor_setrows(TDSSOCKET * tds, TDSCURSOR * cursor, bool *send);
1461TDSRET tds_cursor_open(TDSSOCKET * tds, TDSCURSOR * cursor, TDSPARAMINFO *params, bool *send);
1462TDSRET tds_cursor_fetch(TDSSOCKET * tds, TDSCURSOR * cursor, TDS_CURSOR_FETCH fetch_type, TDS_INT i_row);
1463TDSRET tds_cursor_get_cursor_info(TDSSOCKET * tds, TDSCURSOR * cursor, TDS_UINT * row_number, TDS_UINT * row_count);
1464TDSRET tds_cursor_close(TDSSOCKET * tds, TDSCURSOR * cursor);
1465TDSRET tds_cursor_dealloc(TDSSOCKET * tds, TDSCURSOR * cursor);
1467TDSRET tds_cursor_update(TDSSOCKET * tds, TDSCURSOR * cursor, TDS_CURSOR_OPERATION op, TDS_INT i_row, TDSPARAMINFO * params);
1468TDSRET tds_cursor_setname(TDSSOCKET * tds, TDSCURSOR * cursor);
1469
1470TDSRET tds_multiple_init(TDSSOCKET *tds, TDSMULTIPLE *multiple, TDS_MULTIPLE_TYPE type, TDSHEADERS * head);
1471TDSRET tds_multiple_done(TDSSOCKET *tds, TDSMULTIPLE *multiple);
1472TDSRET tds_multiple_query(TDSSOCKET *tds, TDSMULTIPLE *multiple, const char *query, TDSPARAMINFO * params);
1473TDSRET tds_multiple_execute(TDSSOCKET *tds, TDSMULTIPLE *multiple, TDSDYNAMIC * dyn);
1474
1475
1476/* token.c */
1477TDSRET tds_process_cancel(TDSSOCKET * tds);
1480int tds5_send_optioncmd(TDSSOCKET * tds, TDS_OPTION_CMD tds_command, TDS_OPTION tds_option, TDS_OPTION_ARG * tds_argument,
1481 TDS_INT * tds_argsize);
1482TDSRET tds_process_tokens(TDSSOCKET * tds, /*@out@*/ TDS_INT * result_type, /*@out@*/ int *done_flags, unsigned flag);
1483
1484
1485/* data.c */
1486void tds_set_param_type(TDSCONNECTION * conn, TDSCOLUMN * curcol, TDS_SERVER_TYPE type);
1487void tds_set_column_type(TDSCONNECTION * conn, TDSCOLUMN * curcol, TDS_SERVER_TYPE type);
1488#ifdef WORDS_BIGENDIAN
1489void tds_swap_datatype(int coltype, void *b);
1490#endif
1491
1492
1493/* tds_convert.c */
1494TDSRET tds_datecrack(TDS_INT datetype, const void *di, TDSDATEREC * dr);
1495TDS_SERVER_TYPE tds_get_conversion_type(TDS_SERVER_TYPE srctype, int colsize);
1496extern const char tds_hex_digits[];
1497
1498
1499/* write.c */
1500int tds_init_write_buf(TDSSOCKET * tds);
1501int tds_put_n(TDSSOCKET * tds, const void *buf, size_t n);
1502int tds_put_string(TDSSOCKET * tds, const char *buf, int len);
1503int tds_put_int(TDSSOCKET * tds, TDS_INT i);
1504int tds_put_int8(TDSSOCKET * tds, TDS_INT8 i);
1505int tds_put_smallint(TDSSOCKET * tds, TDS_SMALLINT si);
1507#define tds_put_tinyint(tds, ti) tds_put_byte(tds,ti)
1508int tds_put_byte(TDSSOCKET * tds, unsigned char c);
1509TDSRET tds_flush_packet(TDSSOCKET * tds);
1510
1511
1512/* read.c */
1513unsigned char tds_get_byte(TDSSOCKET * tds);
1514void tds_unget_byte(TDSSOCKET * tds);
1515unsigned char tds_peek(TDSSOCKET * tds);
1516TDS_USMALLINT tds_get_usmallint(TDSSOCKET * tds);
1517#define tds_get_smallint(tds) ((TDS_SMALLINT) tds_get_usmallint(tds))
1518TDS_UINT tds_get_uint(TDSSOCKET * tds);
1519#define tds_get_int(tds) ((TDS_INT) tds_get_uint(tds))
1520TDS_UINT8 tds_get_uint8(TDSSOCKET * tds);
1521#define tds_get_int8(tds) ((TDS_INT8) tds_get_uint8(tds))
1522size_t tds_get_string(TDSSOCKET * tds, size_t string_len, char *dest, size_t dest_size);
1523TDSRET tds_get_char_data(TDSSOCKET * tds, char *dest, size_t wire_size, TDSCOLUMN * curcol);
1524bool tds_get_n(TDSSOCKET * tds, /*@out@*/ /*@null@*/ void *dest, size_t n);
1525int tds_get_size_by_type(TDS_SERVER_TYPE servertype);
1526DSTR* tds_dstr_get(TDSSOCKET * tds, DSTR * s, size_t len);
1527
1528
1529/* util.c */
1530int tdserror (const TDSCONTEXT * tds_ctx, TDSSOCKET * tds, int msgno, int errnum);
1532void tds_swap_bytes(void *buf, size_t bytes);
1533unsigned int tds_gettime_ms(void);
1534
1535
1536/* log.c */
1537typedef struct tdsdump_off_item {
1538 struct tdsdump_off_item *next;
1539 tds_thread_id thread_id;
1541void tdsdump_off(TDSDUMP_OFF_ITEM *off_item);
1542void tdsdump_on(TDSDUMP_OFF_ITEM *off_item);
1543int tdsdump_isopen(void);
1544#include <freetds/popvis.h>
1545/* This function is exported by DB-Library, do not change its ABI */
1546int tdsdump_open(const char *filename);
1547#ifdef _WIN32
1548int tdsdump_wopen(const wchar_t *filename);
1549#define tdsdump_topen tdsdump_wopen
1550#else
1551#define tdsdump_topen tdsdump_open
1552#endif
1553#include <freetds/pushvis.h>
1554void tdsdump_close(void);
1555void tdsdump_dump_buf_impl(const char* file, unsigned int level_line, const char *msg, const void *buf, size_t length);
1556void tdsdump_col(const TDSCOLUMN *col);
1557void tdsdump_log_impl(const char* file, unsigned int level_line, const char *fmt, ...)
1558#if defined(__GNUC__) && __GNUC__ >= 2
1559#if defined(__MINGW32__)
1560 __attribute__ ((__format__ (ms_printf, 3, 4)))
1561#else
1562 __attribute__ ((__format__ (__printf__, 3, 4)))
1563#endif
1564#endif
1565;
1566#if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
1567/* If available use C99 and __VA_ARGS__ */
1568#define tdsdump_log(...) do { \
1569 if (TDS_UNLIKELY(tds_write_dump)) tdsdump_log_impl(__VA_ARGS__); \
1570} while(0)
1571#define tdsdump_dump_buf(...) do { \
1572 if (TDS_UNLIKELY(tds_write_dump)) tdsdump_dump_buf_impl(__VA_ARGS__); \
1573} while(0)
1574#else
1575#define tdsdump_log if (!TDS_UNLIKELY(tds_write_dump)) {} else tdsdump_log_impl
1576#define tdsdump_dump_buf if (!TDS_UNLIKELY(tds_write_dump)) {} else tdsdump_dump_buf_impl
1577#endif
1578
1579extern bool tds_write_dump;
1580extern int tds_debug_flags;
1581extern int tds_append_mode;
1582
1583
1584/* net.c */
1585TDSERRNO tds_open_socket(TDSSOCKET * tds, struct addrinfo *ipaddr, unsigned int port, int timeout, int *p_oserr);
1586void tds_close_socket(TDSSOCKET * tds);
1587int tds7_get_instance_ports(FILE *output, struct addrinfo *addr);
1588int tds7_get_instance_port(struct addrinfo *addr, const char *instance);
1589char *tds_prwsaerror(int erc);
1590void tds_prwsaerror_free(char *s);
1591ptrdiff_t tds_connection_read(TDSSOCKET * tds, unsigned char *buf, size_t buflen);
1592ptrdiff_t tds_connection_write(TDSSOCKET *tds, const unsigned char *buf, size_t buflen, int final);
1593void tds_connection_coalesce(TDSSOCKET *tds);
1594void tds_connection_flush(TDSSOCKET *tds);
1595#define TDSSELREAD POLLIN
1596#define TDSSELWRITE POLLOUT
1597int tds_select(TDSSOCKET * tds, unsigned tds_sel, int timeout_seconds);
1598void tds_connection_close(TDSCONNECTION *conn);
1599ptrdiff_t tds_goodread(TDSSOCKET * tds, unsigned char *buf, size_t buflen);
1600ptrdiff_t tds_goodwrite(TDSSOCKET * tds, const unsigned char *buffer, size_t buflen);
1601int tds_socket_set_nonblocking(TDS_SYS_SOCKET sock);
1602int tds_wakeup_init(TDSPOLLWAKEUP *wakeup);
1603void tds_wakeup_close(TDSPOLLWAKEUP *wakeup);
1604void tds_wakeup_send(TDSPOLLWAKEUP *wakeup, char cancel);
1605inline static TDS_SYS_SOCKET
1606tds_wakeup_get_fd(const TDSPOLLWAKEUP *wakeup)
1607{
1608 return wakeup->s_signaled;
1609}
1610
1611
1612/* packet.c */
1613int tds_read_packet(TDSSOCKET * tds);
1614TDSRET tds_write_packet(TDSSOCKET * tds, unsigned char final);
1615#if ENABLE_ODBC_MARS
1616int tds_append_cancel(TDSSOCKET *tds);
1617TDSRET tds_append_syn(TDSSOCKET *tds);
1618TDSRET tds_append_fin(TDSSOCKET *tds);
1619#else
1620int tds_put_cancel(TDSSOCKET * tds);
1621#endif
1622
1623typedef struct tds_freeze {
1629 unsigned pkt_pos;
1631 unsigned size_len;
1632} TDSFREEZE;
1633
1634void tds_freeze(TDSSOCKET *tds, TDSFREEZE *freeze, unsigned size_len);
1635unsigned int tds_freeze_written(TDSFREEZE *freeze);
1636TDSRET tds_freeze_abort(TDSFREEZE *freeze);
1637TDSRET tds_freeze_close(TDSFREEZE *freeze);
1638TDSRET tds_freeze_close_string(TDSFREEZE *freeze);
1639TDSRET tds_freeze_close_len(TDSFREEZE *freeze, int32_t size);
1640
1641inline static void
1642tds_set_current_send_packet(TDSSOCKET *tds, TDSPACKET *pkt)
1643{
1644 tds->send_packet = pkt;
1645 tds->out_buf = pkt->buf + tds_packet_get_data_start(pkt);
1646}
1647
1648/* Macros to allow some indentation of the packets.
1649 *
1650 * The 3 nested fake loops require some explanation:
1651 * - first is to allows to declare variables;
1652 * - second is to force using brackets;
1653 * - third is to avoids that a break inside will skip the close.
1654 */
1655#define TDS_START_LEN_GENERIC(tds_socket, len) do { \
1656 TDSFREEZE current_freeze[1]; \
1657 tds_freeze((tds_socket), current_freeze, (len)); do { do
1658#define TDS_END_LEN while(0); } while(tds_freeze_close(current_freeze), 0); } while(0);
1659#define TDS_END_LEN_STRING while(0); } while(tds_freeze_close_string(current_freeze), 0); } while(0);
1660
1661#define TDS_START_LEN_TINYINT(tds_socket) TDS_START_LEN_GENERIC(tds_socket, 1)
1662#define TDS_START_LEN_USMALLINT(tds_socket) TDS_START_LEN_GENERIC(tds_socket, 2)
1663#define TDS_START_LEN_UINT(tds_socket) TDS_START_LEN_GENERIC(tds_socket, 4)
1664
1665/* vstrbuild.c */
1666TDSRET tds_vstrbuild(char *buffer, int buflen, int *resultlen, const char *text, int textlen, const char *formats, int formatlen,
1667 va_list ap);
1668
1669
1670/* numeric.c */
1671char *tds_money_to_string(const TDS_MONEY * money, char *s, bool use_2_digits);
1672TDS_INT tds_numeric_to_string(const TDS_NUMERIC * numeric, char *s);
1673TDS_INT tds_numeric_change_prec_scale(TDS_NUMERIC * numeric, unsigned char new_prec, unsigned char new_scale);
1674
1675
1676/* getmac.c */
1677void tds_getmac(TDS_SYS_SOCKET s, unsigned char mac[6]);
1678
1679
1680/* challenge.c */
1681#ifndef HAVE_SSPI
1683TDSAUTHENTICATION * tds_gss_get_auth(TDSSOCKET * tds);
1684#else
1685TDSAUTHENTICATION * tds_sspi_get_auth(TDSSOCKET * tds);
1686#endif
1687TDSRET tds5_gss_send(TDSSOCKET *tds);
1688
1689
1690/* random.c */
1691void tds_random_buffer(unsigned char *out, int len);
1692
1693
1694/* sec_negotiate.c */
1695TDSAUTHENTICATION * tds5_negotiate_get_auth(TDSSOCKET * tds);
1696inline static void
1697tds5_negotiate_set_msg_type(TDSAUTHENTICATION * tds_auth, uint16_t msg_type)
1698{
1699 if (tds_auth)
1700 tds_auth->msg_type = msg_type;
1701}
1702
1703
1704/* bulk.c */
1705
1708{
1709 TDS_BCP_IN = 1,
1710 TDS_BCP_OUT = 2,
1711 TDS_BCP_QUERYOUT = 3
1712};
1713
1714typedef struct tds5_colinfo
1715{
1716 TDS_TINYINT type;
1717 TDS_TINYINT status;
1718 TDS_SMALLINT offset;
1719 TDS_INT length;
1720 bool dflt;
1721
1722 TDS_INT dflt_size;
1723 TDS_UCHAR* dflt_value;
1724} TDS5COLINFO;
1725
1727{
1728 void *parent;
1729 DSTR hint;
1730 DSTR tablename;
1731 TDS_CHAR *insert_stmt;
1732 TDS_INT direction;
1733 bool identity_insert_on;
1734 bool xfer_init;
1735 bool datarows_locking;
1736 TDS_INT bind_count;
1737 TDSRESULTINFO *bindinfo;
1738 TDS5COLINFO *sybase_colinfo;
1739 TDS_INT sybase_count;
1740 bool with_triggers;
1741};
1742
1743TDSRET tds_bcp_init(TDSSOCKET *tds, TDSBCPINFO *bcpinfo);
1744typedef TDSRET (*tds_bcp_get_col_data) (TDSBCPINFO *bulk, TDSCOLUMN *bcpcol, int offset);
1745typedef void (*tds_bcp_null_error) (TDSBCPINFO *bulk, int index, int offset);
1746TDSRET tds_bcp_send_record(TDSSOCKET *tds, TDSBCPINFO *bcpinfo, tds_bcp_get_col_data get_col_data, tds_bcp_null_error null_error, int offset);
1747TDSRET tds_bcp_done(TDSSOCKET *tds, int *rows_copied);
1748TDSRET tds_bcp_start(TDSSOCKET *tds, TDSBCPINFO *bcpinfo);
1749TDSRET tds_bcp_start_copy_in(TDSSOCKET *tds, TDSBCPINFO *bcpinfo);
1750
1751TDSRET tds_bcp_fread(TDSSOCKET * tds, TDSICONV * conv, FILE * stream,
1752 const char *terminator, size_t term_len, char **outbuf, size_t * outbytes);
1753
1754TDSRET tds_writetext_start(TDSSOCKET *tds, const char *objname, const char *textptr, const char *timestamp, int with_log, TDS_UINT size);
1755TDSRET tds_writetext_continue(TDSSOCKET *tds, const TDS_UCHAR *text, TDS_UINT size);
1756TDSRET tds_writetext_end(TDSSOCKET *tds);
1757
1758
1759inline static bool
1760tds_capability_enabled(const TDS_CAPABILITY_TYPE *cap, unsigned cap_num)
1761{
1762 return (cap->values[sizeof(cap->values)-1-(cap_num>>3)] >> (cap_num&7)) & 1;
1763}
1764#define tds_capability_has_req(conn, cap) \
1765 tds_capability_enabled(&conn->capabilities.types[0], cap)
1766#define tds_capability_has_res(conn, cap) \
1767 tds_capability_enabled(&conn->capabilities.types[1], cap)
1768
1769#define IS_TDS42(x) (x->tds_version==0x402)
1770#define IS_TDS46(x) (x->tds_version==0x406)
1771#define IS_TDS50(x) (x->tds_version==0x500)
1772#define IS_TDS70(x) (x->tds_version==0x700)
1773#define IS_TDS71(x) (x->tds_version==0x701)
1774#define IS_TDS72(x) (x->tds_version==0x702)
1775#define IS_TDS73(x) (x->tds_version==0x703)
1776
1777#define IS_TDS50_PLUS(x) ((x)->tds_version>=0x500)
1778#define IS_TDS7_PLUS(x) ((x)->tds_version>=0x700)
1779#define IS_TDS71_PLUS(x) ((x)->tds_version>=0x701)
1780#define IS_TDS72_PLUS(x) ((x)->tds_version>=0x702)
1781#define IS_TDS73_PLUS(x) ((x)->tds_version>=0x703)
1782#define IS_TDS74_PLUS(x) ((x)->tds_version>=0x704)
1783#define IS_TDS80_PLUS(x) ((x)->tds_version>=0x800)
1784
1785#define TDS_MAJOR(x) ((x)->tds_version >> 8)
1786#define TDS_MINOR(x) ((x)->tds_version & 0xff)
1787
1788#define IS_TDSDEAD(x) (((x) == NULL) || (x)->state == TDS_DEAD)
1789
1791#define TDS_IS_SYBASE(x) (!((x)->conn->product_version & 0x80000000u))
1793#define TDS_IS_MSSQL(x) (((x)->conn->product_version & 0x80000000u)!=0)
1794
1798#define TDS_MS_VER(maj,min,x) (0x80000000u|((maj)<<24)|((min)<<16)|(x))
1799
1800/* TODO test if not similar to ms one*/
1802#define TDS_SYB_VER(maj,min,x) (((maj)<<24)|((min)<<16)|(x)<<8)
1803
1804#ifdef __cplusplus
1805#if 0
1806{
1807#endif
1808}
1809#endif
1810
1811#include <freetds/popvis.h>
1812
1813#define TDS_PUT_INT(tds,v) tds_put_int((tds), ((TDS_INT)(v)))
1814#define TDS_PUT_SMALLINT(tds,v) tds_put_smallint((tds), ((TDS_SMALLINT)(v)))
1815#define TDS_PUT_BYTE(tds,v) tds_put_byte((tds), ((unsigned char)(v)))
1816
1817#endif /* _tdsguard_hfOrWb5znoUCWdBPoNQvqN_ */
int tds_iconv_alloc(TDSCONNECTION *conn)
Allocate iconv stuff.
Definition iconv.c:311
bool tds_write_dump
Tell if TDS debug logging is turned on or off.
Definition log.c:58
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
const uint8_t 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:42
TDS_STATE tds_set_state(TDSSOCKET *tds, TDS_STATE state)
Set state of TDS connection, with logging and checking.
Definition util.c:58
struct tds_compiletime_settings TDS_COMPILETIME_SETTINGS
A structure to hold all the compile-time settings.
int tdsdump_open(const char *filename)
Create and truncate a human readable dump file for the TDS traffic.
Definition log.c:136
struct tds_variant TDSVARIANT
Store variant information.
void tdsdump_close(void)
Close the TDS dump log file.
Definition log.c:237
void tds_set_column_type(TDSCONNECTION *conn, TDSCOLUMN *curcol, TDS_SERVER_TYPE type)
Set type of column initializing all dependency.
Definition data.c:219
bool tds_set_server(TDSLOGIN *tds_login, const char *server) TDS_WUR
Set the servername in a TDSLOGIN structure.
Definition login.c:126
struct tdsdaterec TDSDATEREC
Used by tds_datecrack.
TDSLOCALE * tds_get_locale(void)
Get locale information.
Definition locale.c:50
struct tds_env TDSENV
Current environment as reported by the server.
struct tds_blob TDSBLOB
Information about blobs (e.g.
int tds_get_size_by_type(TDS_SERVER_TYPE servertype)
Return the number of bytes needed by specified type.
Definition tds_types.h:9
TDSRET tds_bcp_start_copy_in(TDSSOCKET *tds, TDSBCPINFO *bcpinfo)
Start bulk copy to server.
Definition bulk.c:1332
void tdsdump_dump_buf_impl(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:323
TDS_INT tds_numeric_to_string(const TDS_NUMERIC *numeric, char *s)
Definition numeric.c:96
int tds_get_varint_size(TDSCONNECTION *conn, int datatype)
tds_get_varint_size() returns the size of a variable length integer returned in a result string
Definition tds_types.h:57
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:1559
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:1490
TDSRET tds_bcp_start(TDSSOCKET *tds, TDSBCPINFO *bcpinfo)
Start sending BCP data to server.
Definition bulk.c:1058
struct tds_dynamic TDSDYNAMIC
Holds information for a dynamic (also called prepared) query.
void tds_set_param_type(TDSCONNECTION *conn, TDSCOLUMN *curcol, TDS_SERVER_TYPE type)
Set type of column initializing all dependency.
Definition data.c:241
tds_states
values for tds->state
Definition tds.h:799
@ TDS_PENDING
client is waiting for data
Definition tds.h:803
@ TDS_SENDING
client would send data
Definition tds.h:802
@ TDS_READING
client is reading data
Definition tds.h:804
@ TDS_WRITING
client is writing data
Definition tds.h:801
@ TDS_IDLE
no data expected
Definition tds.h:800
@ TDS_DEAD
no connection
Definition tds.h:805
void tdsdump_log_impl(const char *file, unsigned int level_line, const char *fmt,...)
Write a message to the debug log.
Definition log.c:430
void tdsdump_col(const TDSCOLUMN *col)
Write a column value to the debug log.
Definition log.c:489
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:1594
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:324
enum tds_states TDS_STATE
values for tds->state
TDSRET tds_writetext_end(TDSSOCKET *tds)
Finish sending writetext data.
Definition bulk.c:1611
TDSRET tds_bcp_init(TDSSOCKET *tds, TDSBCPINFO *bcpinfo)
Initialize BCP information.
Definition bulk.c:85
tds_bcp_directions
bcp direction
Definition tds.h:1708
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:638
TDSRET tds_bcp_done(TDSSOCKET *tds, int *rows_copied)
Tell we finished sending BCP data to server.
Definition bulk.c:1032
struct tds_encoding TDS_ENCODING
Information relevant to libiconv.
void tdsdump_off(TDSDUMP_OFF_ITEM *off_item)
Temporarily turn off logging for current thread.
Definition log.c:83
void tdsdump_on(TDSDUMP_OFF_ITEM *off_item)
Turn logging back on for current thread.
Definition log.c:103
struct tds_cursor TDSCURSOR
Holds information about a cursor.
TDSAUTHENTICATION * tds_ntlm_get_auth(TDSSOCKET *tds)
Build a NTLMSPP packet to send to server.
Definition challenge.c:820
TDS_USMALLINT * tds_config_verstr(const char *tdsver, TDSLOGIN *login)
Set TDS version from given string.
Definition config.c:970
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:1401
struct addrinfo * tds_lookup_host(const char *servername)
Get the IP address for a hostname.
Definition config.c:1039
bool 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:511
bool tds_read_conf_file(TDSLOGIN *login, const char *server)
Read configuration info for given server return 0 on error.
Definition config.c:325
TDSRET tds_set_interfaces_file_loc(const char *interfloc)
Set the full name of interface file.
Definition config.c:1009
TDSRET tds8_adjust_login(TDSLOGIN *login)
Make sure proper setting are in place for TDS 8.0.
Definition config.c:1486
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
void tds_fix_login(TDSLOGIN *login)
Fix configuration after reading it.
Definition config.c:283
TDSRET tds_datecrack(TDS_INT datetype, const void *di, TDSDATEREC *dr)
Convert from db date format to a structured date format.
Definition convert.c:3379
TDSICONV * tds_iconv_from_collate(TDSCONNECTION *conn, const TDS_UCHAR collate[5])
Get iconv information from a LCID (to support different column encoding under MSSQL2K)
Definition iconv.c:1293
TDSRET tds_alloc_row(TDSRESULTINFO *res_info)
Allocate space for row store return NULL on out of memory.
Definition mem.c:534
void tds_detach_results(TDSRESULTINFO *info)
Detach result info from it current socket.
Definition mem.c:498
TDSPARAMINFO * tds_alloc_param_result(TDSPARAMINFO *old_param)
Adds a output parameter to TDSPARAMINFO.
Definition mem.c:285
void * tds_alloc_param_data(TDSCOLUMN *curparam)
Allocate data for a parameter.
Definition mem.c:374
TDSLOGIN * tds_init_login(TDSLOGIN *login, TDSLOCALE *locale)
Initialize login structure with locale information and other stuff for connection.
Definition mem.c:809
void tds_free_param_result(TDSPARAMINFO *param_info)
Delete latest parameter.
Definition mem.c:321
TDSDYNAMIC * tds_alloc_dynamic(TDSCONNECTION *conn, const char *id)
Allocate a dynamic statement.
Definition mem.c:161
void * tds_realloc(void **pp, size_t new_size)
Reallocate a pointer and update it if success.
Definition mem.c:1918
void tds_free_input_params(TDSDYNAMIC *dyn)
Frees all allocated input parameters of a dynamic statement.
Definition mem.c:207
void tds_release_dynamic(TDSDYNAMIC **dyn)
Frees dynamic statement.
Definition mem.c:254
int tds_needs_unprepare(TDSCONNECTION *conn, TDSDYNAMIC *dyn)
Check if dynamic request must be unprepared.
Definition query.c:1816
const char * tds_skip_quoted(const char *s)
Skip quoting string (like 'sfsf', "dflkdj" or [dfkjd])
Definition query.c:514
TDSRET tds71_submit_prepexec(TDSSOCKET *tds, const char *query, const char *id, TDSDYNAMIC **dyn_out, TDSPARAMINFO *params)
Creates a temporary stored procedure in the server and execute it.
Definition query.c:1469
void tds_start_query(TDSSOCKET *tds, unsigned char packet_type)
Start query packet of a given type.
Definition query.c:329
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:2085
size_t tds_quote_id(TDSSOCKET *tds, char *buffer, const char *id, ptrdiff_t idlen)
Quote an id.
Definition query.c:2227
TDSRET tds_submit_execute(TDSSOCKET *tds, TDSDYNAMIC *dyn)
Sends a previously prepared dynamic statement to the server.
Definition query.c:1694
const char * tds_convert_string(TDSSOCKET *tds, TDSICONV *char_conv, const char *s, ptrdiff_t len, size_t *out_len)
Convert a string in an allocated buffer.
Definition query.c:121
size_t tds_quote_string(TDSSOCKET *tds TDS_UNUSED, char *buffer, const char *str, ptrdiff_t len)
Quote a string.
Definition query.c:2297
TDSRET tds_get_column_declaration(TDSSOCKET *tds, TDSCOLUMN *curcol, char *out)
Return declaration for column (like "varchar(20)").
Definition query.c:737
TDSRET tds_deferred_cursor_dealloc(TDSCONNECTION *conn, TDSCURSOR *cursor)
Deallocate cursor on idle.
Definition query.c:3114
TDSRET tds_submit_query(TDSSOCKET *tds, const char *query)
Sends a language string to the database server for processing.
Definition query.c:207
TDSRET tds_submit_rpc(TDSSOCKET *tds, const char *rpc_name, TDSPARAMINFO *params, TDSHEADERS *head)
Calls a RPC from server.
Definition query.c:1993
TDSRET tds_submit_prepare(TDSSOCKET *tds, const char *query, const char *id, TDSDYNAMIC **dyn_out, TDSPARAMINFO *params)
Creates a temporary stored procedure in the server.
Definition query.c:1192
size_t tds_fix_column_size(TDSSOCKET *tds TDS_UNUSED, TDSCOLUMN *curcol)
Get column size for wire.
Definition query.c:1559
TDSRET tds_submit_begin_tran(TDSSOCKET *tds)
Send a rollback request.
Definition query.c:3722
TDSRET tds_submit_commit(TDSSOCKET *tds, bool cont)
Send a commit request.
Definition query.c:3781
TDSRET tds_submit_rollback(TDSSOCKET *tds, bool cont)
Send a rollback request.
Definition query.c:3750
const char * tds_next_placeholder(const char *start)
Get position of next placeholder.
Definition query.c:534
TDSRET tds_submit_query_params(TDSSOCKET *tds, const char *query, TDSPARAMINFO *params, TDSHEADERS *head)
Sends a language string to the database server for processing.
Definition query.c:347
TDSRET tds_deferred_unprepare(TDSCONNECTION *conn, TDSDYNAMIC *dyn)
Unprepare dynamic on idle.
Definition query.c:1838
int tds_count_placeholders(const char *query)
Count the number of placeholders ('?') in a query.
Definition query.c:570
TDSRET tds_cursor_dealloc(TDSSOCKET *tds, TDSCURSOR *cursor)
Send a deallocation request to server.
Definition query.c:3063
const char * tds_skip_comment(const char *s)
Skip a comment in a query.
Definition query.c:489
TDSRET tds_submit_queryf(TDSSOCKET *tds, const char *queryf,...)
Format and submit a query.
Definition query.c:466
TDSRET tds_submit_execdirect(TDSSOCKET *tds, const char *query, TDSPARAMINFO *params, TDSHEADERS *head)
Submit a prepared query with parameters.
Definition query.c:1324
void tds_set_cur_dyn(TDSSOCKET *tds, TDSDYNAMIC *dyn)
Set current dynamic.
Definition query.c:189
size_t tds_quote_id_rpc(TDSSOCKET *tds, char *buffer, const char *id, ptrdiff_t idlen)
Quote an id for a RPC call.
Definition query.c:2272
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:3446
TDSRET tds_submit_unprepare(TDSSOCKET *tds, TDSDYNAMIC *dyn)
Send a unprepare request for a prepared query.
Definition query.c:1861
DSTR * tds_dstr_get(TDSSOCKET *tds, DSTR *s, size_t len)
Reads a string from wire and put in a DSTR.
Definition read.c:295
TDSRET tds_freeze_close_string(TDSFREEZE *freeze)
Stop keeping data for this specific freeze.
Definition packet.c:1017
unsigned char tds_get_byte(TDSSOCKET *tds)
Return a single byte from the input buffer.
Definition read.c:72
unsigned int tds_freeze_written(TDSFREEZE *freeze)
Compute how many bytes has been written from freeze.
Definition packet.c:940
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:97
unsigned char tds_peek(TDSSOCKET *tds)
Reads a byte from the TDS stream without removing it.
Definition read.c:100
TDSRET tds_freeze_close_len(TDSFREEZE *freeze, int32_t size)
Stop keeping data for this specific freeze.
Definition packet.c:1055
int tds_socket_set_nonblocking(TDS_SYS_SOCKET sock)
Set socket to non-blocking.
Definition net.c:145
void tds_close_socket(TDSSOCKET *tds)
Close current socket.
Definition net.c:527
int tds_read_packet(TDSSOCKET *tds)
Read in one 'packet' from the server.
Definition packet.c:519
TDSRET tds_flush_packet(TDSSOCKET *tds)
Flush packet to server.
Definition write.c:212
TDSRET tds_freeze_close(TDSFREEZE *freeze)
Stop keeping data for this specific freeze.
Definition packet.c:1001
TDSRET tds_freeze_abort(TDSFREEZE *freeze)
Discard all data written after the freeze.
Definition packet.c:966
TDS_UINT8 tds_get_uint8(TDSSOCKET *tds)
Get an uint64 from the server.
Definition read.c:138
TDSRET tds_get_char_data(TDSSOCKET *tds, char *dest, size_t wire_size, TDSCOLUMN *curcol)
Fetch character data the wire.
Definition read.c:193
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:164
int tds7_get_instance_ports(FILE *output, struct addrinfo *addr)
Get port of all instances.
Definition net.c:1102
TDS_UINT tds_get_uint(TDSSOCKET *tds)
Get an uint32 from the server.
Definition read.c:125
ptrdiff_t tds_goodread(TDSSOCKET *tds, unsigned char *buf, size_t buflen)
Loops until we have received some characters return -1 on failure.
Definition net.c:908
int tds7_get_instance_port(struct addrinfo *addr, const char *instance)
Get port of given instance.
Definition net.c:1239
TDS_USMALLINT tds_get_usmallint(TDSSOCKET *tds)
Get an uint16 from the server.
Definition read.c:112
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
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:589
ptrdiff_t tds_goodwrite(TDSSOCKET *tds, const unsigned char *buffer, size_t buflen)
Definition net.c:980
bool 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:229
const char * tds_prtype(int token)
Returns string representation of the given type.
Definition token.c:3035
TDSDYNAMIC * tds_lookup_dynamic(TDSCONNECTION *conn, const char *id)
Finds a dynamic given string id.
Definition token.c:2590
TDSRET tds_process_login_tokens(TDSSOCKET *tds)
tds_process_login_tokens() is called after sending the login packet to the server.
Definition token.c:415
TDSRET tds_process_tokens(TDSSOCKET *tds, TDS_INT *result_type, int *done_flags, unsigned flag)
process all streams.
Definition token.c:535
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:885
TDSRET tds_process_cancel(TDSSOCKET *tds)
Definition token.c:2557
Definition iconv.h:98
Definition proto.h:26
Definition proto.h:39
A structure to hold all the compile-time settings.
Definition tds.h:84
This structure is not directly connected to TDS protocol but keeps any DATE/TIME information.
Definition tds.h:146
TDS_INT date
date, 0 = 1900-01-01
Definition tds.h:148
TDS_SMALLINT offset
time offset
Definition tds.h:149
TDS_UINT8 time
time, 7 digit precision
Definition tds.h:147
Used by tds_datecrack.
Definition tds.h:159
TDS_INT dayofyear
day of year (1-366)
Definition tds.h:164
TDS_INT weekday
day of week (0-6, 0 = sunday)
Definition tds.h:165
TDS_INT year
year
Definition tds.h:160
TDS_INT timezone
-840 - 840 minutes from UTC
Definition tds.h:170
TDS_INT minute
0-59
Definition tds.h:167
TDS_INT day
day of month (1-31)
Definition tds.h:163
TDS_INT decimicrosecond
0-9999999
Definition tds.h:169
TDS_INT second
0-59
Definition tds.h:168
TDS_INT quarter
quarter (0-3)
Definition tds.h:161
TDS_INT hour
0-23
Definition tds.h:166
TDS_INT month
month number (0-11)
Definition tds.h:162
Definition tds.h:306
Definition tds.h:481
Definition tds.h:490
Definition tds.h:497
Definition tds.h:503
DSTR crlfile
certificate revocation file
Definition tds.h:517
DSTR server_realm_name
server realm name (in freetds.conf)
Definition tds.h:513
DSTR user_name
account for login
Definition tds.h:522
DSTR password
password of account login
Definition tds.h:523
DSTR db_filename
database filename to attach (MSSQL)
Definition tds.h:515
DSTR certificate_host_name
certificate hostname to check, if empty use server_host_name
Definition tds.h:518
DSTR server_name
server name (in freetds.conf)
Definition tds.h:504
struct addrinfo * ip_addrs
ip(s) of server
Definition tds.h:534
DSTR server_charset
charset of server e.g.
Definition tds.h:509
TDS_USMALLINT tds_version
TDS version.
Definition tds.h:506
DSTR new_password
new password to set (TDS 7.2+)
Definition tds.h:524
uint8_t bulk_copy
if bulk copy should be enabled
Definition tds.h:544
DSTR cafile
certificate authorities file
Definition tds.h:516
DSTR server_spn
server SPN (in freetds.conf)
Definition tds.h:514
int port
port of database service
Definition tds.h:505
DSTR gnutls_ciphers
gnutls ciphers to use
Definition tds.h:520
Definition tds.h:565
Definition tds.h:573
Information about blobs (e.g.
Definition tds.h:586
Store variant information.
Definition tds.h:597
Information relevant to libiconv.
Definition tds.h:611
const char * name
name of the encoding (ie UTF-8)
Definition tds.h:613
unsigned char canonic
internal numeric index into array of all encodings
Definition tds.h:617
Definition tds.h:621
Definition tds.h:636
tds_func_put_data * put_data
Send column data to server.
Definition tds.h:655
tds_func_put_info * put_info
Send metadata column information to server.
Definition tds.h:645
Metadata about columns in regular and compute rows.
Definition tds.h:682
TDS_INT bcp_prefix_len
The length, in bytes, of any length prefix this column may have.
Definition tds.h:771
TDS_TINYINT column_varint_size
Size of length when reading from wire (0, 1, 2, 4, 5 or 8).
Definition tds.h:709
TDS_INT column_size
Maximun size of data.
Definition tds.h:690
TDS_TINYINT column_prec
precision for decimal/numeric and some datetime types
Definition tds.h:711
TDS_SERVER_TYPE column_type
This type can be different from wire type because conversion (e.g.
Definition tds.h:698
TDSICONV * char_conv
refers to previously allocated iconv information
Definition tds.h:720
TDS_TINYINT column_scale
scale for decimal/numeric
Definition tds.h:712
TDS_INT column_cur_size
size written in variable (ie: char, text, binary).
Definition tds.h:746
Hold information for any results.
Definition tds.h:779
Definition tds.h:886
Definition tds.h:902
Definition tds.h:916
Holds information about a cursor.
Definition tds.h:947
TDS_TINYINT options
read only|updatable TODO use it
Definition tds.h:952
bool defer_close
true if cursor was marker to be closed when connection is idle
Definition tds.h:956
TDS_INT ref_count
reference counter so client can retain safely a pointer
Definition tds.h:949
TDS_INT cursor_id
cursor id returned by the server after cursor declare
Definition tds.h:951
TDS_INT cursor_rows
< number of updatable columns
Definition tds.h:961
struct tds_cursor * next
next in linked list, keep first
Definition tds.h:948
TDS_INT type
row fetched from this cursor
Definition tds.h:966
TDS_CURSOR_STATUS status
cursor parameter
Definition tds.h:963
char * query
SQL query.
Definition tds.h:957
char * cursor_name
name of the cursor
Definition tds.h:950
Current environment as reported by the server.
Definition tds.h:974
char * charset
character set encoding
Definition tds.h:979
int block_size
packet size (512-65535)
Definition tds.h:976
char * database
database name
Definition tds.h:981
Holds information for a dynamic (also called prepared) query.
Definition tds.h:988
char * query
saved query, we need to know original query if prepare is impossible
Definition tds.h:1020
TDS_INT ref_count
reference counter so client can retain safely a pointer
Definition tds.h:990
bool emulated
this dynamic query cannot be prepared so libTDS have to construct a simple query.
Definition tds.h:1004
bool defer_close
true if dynamic was marker to be closed when connection is idle
Definition tds.h:1008
TDSPARAMINFO * res_info
query results
Definition tds.h:1010
TDSPARAMINFO * params
query parameters.
Definition tds.h:1018
struct tds_dynamic * next
next in linked list, keep first
Definition tds.h:989
TDS_INT num_id
numeric id for mssql7+
Definition tds.h:992
Definition tds.h:1030
Definition tds.h:1041
Definition tds.h:1059
Definition tds.h:1069
unsigned data_len
data length, this does not account SMP header, only TDS part
Definition tds.h:1083
Definition tds.h:1097
Definition tds.h:1103
TDSENV env
environment is shared between all sessions
Definition tds.h:1114
uint8_t unicharsize
Ratio between bytes allocated for a UNICHAR type and type length (Sybase).
Definition tds.h:1171
TDSCURSOR * cursors
linked list of cursors allocated for this connection contains only cursors allocated on the server
Definition tds.h:1120
TDS_SYS_SOCKET s
tcp socket, INVALID_SOCKET if not connected
Definition tds.h:1109
TDS_UINT product_version
version of product (Sybase/MS and full version)
Definition tds.h:1106
uint8_t pending_close
true is connection has pending closing (cursors or dynamic)
Definition tds.h:1136
TDSDYNAMIC * dyns
list of dynamic allocated for this connection contains only dynamic allocated on the server
Definition tds.h:1125
uint8_t ncharsize
Ratio between bytes allocated for a NCHAR type and type length (Sybase).
Definition tds.h:1164
Information for a server connection.
Definition tds.h:1189
TDSLOGIN * login
config for login stuff.
Definition tds.h:1284
unsigned in_len
input buffer length
Definition tds.h:1220
TDSPACKET * frozen_packets
list of packets frozen, points to first one.
Definition tds.h:1229
TDSPACKET * send_packet
packet we are preparing to send
Definition tds.h:1257
unsigned char * in_buf
Input buffer.
Definition tds.h:1203
TDS_INT ret_status
return status from store procedure
Definition tds.h:1276
unsigned out_pos
current position in out_buf
Definition tds.h:1219
TDSRESULTINFO * current_results
Current query information.
Definition tds.h:1264
unsigned out_buf_max
Maximum size of packet pointed by out_buf.
Definition tds.h:1217
unsigned char in_flag
input buffer type
Definition tds.h:1221
TDS_INT8 rows_affected
rows updated/deleted/inserted/selected, TDS_NO_COUNT if not valid
Definition tds.h:1280
unsigned char out_flag
output buffer type
Definition tds.h:1222
unsigned in_pos
current position in in_buf
Definition tds.h:1218
TDSCURSOR * cur_cursor
cursor in use
Definition tds.h:1269
bool in_row
true if we are getting rows
Definition tds.h:1272
bool bulk_query
true is query sent was a bulk query so we need to switch state to QUERYING
Definition tds.h:1270
bool has_status
true is ret_status is valid
Definition tds.h:1271
unsigned char * out_buf
Output buffer.
Definition tds.h:1211
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:1274
TDSDYNAMIC * cur_dyn
dynamic structure in use
Definition tds.h:1282
Definition tds.h:1301
Definition tds.h:1307
Definition tds.h:1537
Definition tds.h:1623
TDSSOCKET * tds
which socket we refer to
Definition tds.h:1625
unsigned pkt_pos
position in pkt
Definition tds.h:1629
unsigned size_len
length size (0, 1, 2 or 4)
Definition tds.h:1631
TDSPACKET * pkt
first packet frozen
Definition tds.h:1627
Definition tds.h:1715
Definition tds.h:1727
Definition thread.h:281
Structure to hold a string.
Definition string.h:37