FreeTDS API
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 _tds_h_
22 #define _tds_h_
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 /* forward declaration */
48 typedef struct tdsiconvinfo TDSICONV;
49 typedef struct tds_connection TDSCONNECTION;
50 typedef struct tds_socket TDSSOCKET;
51 typedef struct tds_column TDSCOLUMN;
52 typedef struct tds_bcpinfo TDSBCPINFO;
53 
54 #include <freetds/version.h>
55 #include "tds_sysdep_public.h"
56 #include <freetds/sysdep_private.h>
57 #include <freetds/thread.h>
58 #include <freetds/bool.h>
59 #include <freetds/macros.h>
60 #include <freetds/utils/string.h>
61 #include "replacements.h"
62 
63 #include <freetds/pushvis.h>
64 
65 #ifdef __cplusplus
66 extern "C"
67 {
68 #if 0
69 }
70 #endif
71 #endif
72 
79 {
80  const char *freetds_version; /* release version of FreeTDS */
81  const char *sysconfdir; /* location of freetds.conf */
82  const char *last_update; /* latest software_version date among the modules */
83  int msdblib; /* for MS style dblib */
84  int sybase_compat; /* enable increased Open Client binary compatibility */
85  int threadsafe; /* compile for thread safety default=no */
86  int libiconv; /* search for libiconv in DIR/include and DIR/lib */
87  const char *tdsver; /* TDS protocol version (4.2/4.6/5.0/7.0/7.1) 5.0 */
88  int iodbc; /* build odbc driver against iODBC in DIR */
89  int unixodbc; /* build odbc driver against unixODBC in DIR */
90  int openssl; /* build against OpenSSL */
91  int gnutls; /* build against GnuTLS */
92  int mars; /* MARS enabled */
94 
110 /*
111  * All references to data that touch the wire should use the following typedefs.
112  *
113  * If you have problems on 64-bit machines and the code is
114  * using a native datatype, please change it to use
115  * these. (In the TDS layer only, the API layers have their
116  * own typedefs which equate to these).
117  */
118 typedef char TDS_CHAR; /* 8-bit char */
119 typedef uint8_t TDS_UCHAR; /* 8-bit uchar */
120 typedef uint8_t TDS_TINYINT; /* 8-bit unsigned */
121 typedef int16_t TDS_SMALLINT; /* 16-bit int */
122 typedef uint16_t TDS_USMALLINT; /* 16-bit unsigned */
123 typedef int32_t TDS_INT; /* 32-bit int */
124 typedef uint32_t TDS_UINT; /* 32-bit unsigned */
125 typedef int64_t TDS_INT8; /* 64-bit integer */
126 typedef uint64_t TDS_UINT8; /* 64-bit unsigned */
127 typedef intptr_t TDS_INTPTR;
128 typedef uintptr_t TDS_UINTPTR;
129 typedef tds_sysdep_real32_type TDS_REAL; /* 32-bit real */
130 typedef tds_sysdep_real64_type TDS_FLOAT; /* 64-bit real */
131 
132 #include <freetds/proto.h>
133 
134 #define TDS_INVALID_TYPE ((TDS_SERVER_TYPE) 0)
135 
140 typedef struct
141 {
142  TDS_UINT8 time;
143  TDS_INT date;
144  TDS_SMALLINT offset;
145  TDS_USMALLINT time_prec:3;
146  TDS_USMALLINT _tds_reserved:10;
147  TDS_USMALLINT has_time:1;
148  TDS_USMALLINT has_date:1;
149  TDS_USMALLINT has_offset:1;
151 
153 typedef struct tdsdaterec
154 {
155  TDS_INT year;
156  TDS_INT quarter;
157  TDS_INT month;
158  TDS_INT day;
159  TDS_INT dayofyear;
160  TDS_INT weekday;
161  TDS_INT hour;
162  TDS_INT minute;
163  TDS_INT second;
164  TDS_INT decimicrosecond;
165  TDS_INT timezone;
166 } TDSDATEREC;
167 
173 extern const int tds_numeric_bytes_per_prec[];
174 
175 typedef int TDSRET;
176 #define TDS_NO_MORE_RESULTS ((TDSRET)1)
177 #define TDS_SUCCESS ((TDSRET)0)
178 #define TDS_FAIL ((TDSRET)-1)
179 #define TDS_CANCELLED ((TDSRET)-2)
180 #define TDS_FAILED(rc) ((rc)<0)
181 #define TDS_SUCCEED(rc) ((rc)>=0)
182 #define TDS_PROPAGATE(rc) \
183  do { TDSRET _tds_ret = (rc); if (TDS_FAILED(_tds_ret)) return _tds_ret; } while(0)
184 
185 #define TDS_INT_CONTINUE 1
186 #define TDS_INT_CANCEL 2
187 #define TDS_INT_TIMEOUT 3
188 
189 
190 #define TDS_NO_COUNT -1
191 
192 #define TDS_ROW_RESULT 4040
193 #define TDS_PARAM_RESULT 4042
194 #define TDS_STATUS_RESULT 4043
195 #define TDS_MSG_RESULT 4044
196 #define TDS_COMPUTE_RESULT 4045
197 #define TDS_CMD_DONE 4046
198 #define TDS_CMD_SUCCEED 4047
199 #define TDS_CMD_FAIL 4048
200 #define TDS_ROWFMT_RESULT 4049
201 #define TDS_COMPUTEFMT_RESULT 4050
202 #define TDS_DESCRIBE_RESULT 4051
203 #define TDS_DONE_RESULT 4052
204 #define TDS_DONEPROC_RESULT 4053
205 #define TDS_DONEINPROC_RESULT 4054
206 #define TDS_OTHERS_RESULT 4055
207 
208 enum tds_token_results
209 {
210  TDS_TOKEN_RES_OTHERS,
211  TDS_TOKEN_RES_ROWFMT,
212  TDS_TOKEN_RES_COMPUTEFMT,
213  TDS_TOKEN_RES_PARAMFMT,
214  TDS_TOKEN_RES_DONE,
215  TDS_TOKEN_RES_ROW,
216  TDS_TOKEN_RES_COMPUTE,
217  TDS_TOKEN_RES_PROC,
218  TDS_TOKEN_RES_MSG,
219  TDS_TOKEN_RES_ENV,
220 };
221 
222 #define TDS_TOKEN_FLAG(flag) TDS_RETURN_##flag = (1 << (TDS_TOKEN_RES_##flag*2)), TDS_STOPAT_##flag = (2 << (TDS_TOKEN_RES_##flag*2))
223 
224 enum tds_token_flags
225 {
226  TDS_HANDLE_ALL = 0,
227  TDS_TOKEN_FLAG(OTHERS),
228  TDS_TOKEN_FLAG(ROWFMT),
229  TDS_TOKEN_FLAG(COMPUTEFMT),
230  TDS_TOKEN_FLAG(PARAMFMT),
231  TDS_TOKEN_FLAG(DONE),
232  TDS_TOKEN_FLAG(ROW),
233  TDS_TOKEN_FLAG(COMPUTE),
234  TDS_TOKEN_FLAG(PROC),
235  TDS_TOKEN_FLAG(MSG),
236  TDS_TOKEN_FLAG(ENV),
237  TDS_TOKEN_RESULTS = TDS_RETURN_ROWFMT|TDS_RETURN_COMPUTEFMT|TDS_RETURN_DONE|TDS_STOPAT_ROW|TDS_STOPAT_COMPUTE|TDS_RETURN_PROC,
238  TDS_TOKEN_TRAILING = TDS_STOPAT_ROWFMT|TDS_STOPAT_COMPUTEFMT|TDS_STOPAT_ROW|TDS_STOPAT_COMPUTE|TDS_STOPAT_MSG|TDS_STOPAT_OTHERS
239 };
240 
245 {
248  , TDS_DONE_ERROR = 0x02
249  , TDS_DONE_INXACT = 0x04
250  , TDS_DONE_PROC = 0x08
251  , TDS_DONE_COUNT = 0x10
253  , TDS_DONE_EVENT = 0x40 /* part of an event notification. */
254  , TDS_DONE_SRVERROR = 0x100
256  /* after the above flags, a TDS_DONE packet has a field describing the state of the transaction */
257  , TDS_DONE_NO_TRAN = 0 /* No transaction in effect */
258  , TDS_DONE_TRAN_SUCCEED = 1 /* Transaction completed successfully */
259  , TDS_DONE_TRAN_PROGRESS= 2 /* Transaction in progress */
260  , TDS_DONE_STMT_ABORT = 3 /* A statement aborted */
261  , TDS_DONE_TRAN_ABORT = 4 /* Transaction aborted */
262 };
263 
264 
265 /*
266  * TDSERRNO is emitted by libtds to the client library's error handler
267  * (which may in turn call the client's error handler).
268  * These match the db-lib msgno, because the same values have the same meaning
269  * in db-lib and ODBC. ct-lib maps them to ct-lib numbers (todo).
270  */
271 typedef enum { TDSEOK = TDS_SUCCESS,
272  TDSEVERDOWN = 100,
273  TDSEINPROGRESS,
274  TDSEICONVIU = 2400,
275  TDSEICONVAVAIL = 2401,
276  TDSEICONVO = 2402,
277  TDSEICONVI = 2403,
278  TDSEICONV2BIG = 2404,
279  TDSEPORTINSTANCE = 2500,
280  TDSESYNC = 20001,
281  TDSEFCON = 20002,
282  TDSETIME = 20003,
283  TDSEREAD = 20004,
284  TDSEWRIT = 20006,
285  TDSESOCK = 20008,
286  TDSECONN = 20009,
287  TDSEMEM = 20010,
288  TDSEINTF = 20012, /* Server name not found in interface file */
289  TDSEUHST = 20013, /* Unknown host machine name. */
290  TDSEPWD = 20014,
291  TDSESEOF = 20017,
292  TDSERPND = 20019,
293  TDSEBTOK = 20020,
294  TDSEOOB = 20022,
295  TDSECLOS = 20056,
296  TDSEUSCT = 20058,
297  TDSEUTDS = 20146,
298  TDSEEUNR = 20185,
299  TDSECAP = 20203,
300  TDSENEG = 20210,
301  TDSEUMSG = 20212,
302  TDSECAPTYP = 20213,
303  TDSECONF = 20214,
304  TDSEBPROBADTYP = 20250,
305  TDSECLOSEIN = 20292
306 } TDSERRNO;
307 
308 
309 enum {
310  TDS_CUR_ISTAT_UNUSED = 0x00,
311  TDS_CUR_ISTAT_DECLARED = 0x01,
312  TDS_CUR_ISTAT_OPEN = 0x02,
313  TDS_CUR_ISTAT_CLOSED = 0x04,
314  TDS_CUR_ISTAT_RDONLY = 0x08,
315  TDS_CUR_ISTAT_UPDATABLE = 0x10,
316  TDS_CUR_ISTAT_ROWCNT = 0x20,
317  TDS_CUR_ISTAT_DEALLOC = 0x40
318 };
319 
320 /* string types */
321 #define TDS_NULLTERM -9
322 
323 
324 typedef union tds_option_arg
325 {
326  TDS_TINYINT ti;
327  TDS_INT i;
328  TDS_CHAR *c;
330 
331 
332 typedef enum tds_encryption_level {
333  TDS_ENCRYPTION_DEFAULT,
334  TDS_ENCRYPTION_OFF,
335  TDS_ENCRYPTION_REQUEST,
336  TDS_ENCRYPTION_REQUIRE
337 } TDS_ENCRYPTION_LEVEL;
338 
339 /*
340  * TODO use system macros for optimization
341  * See mcrypt for reference and linux kernel source for optimization
342  * check if unaligned access and use fast write/read when implemented
343  */
344 #define TDS_BYTE_SWAP16(value) \
345  (((((uint16_t)value)<<8) & 0xFF00u) | \
346  ((((uint16_t)value)>>8) & 0x00FFu))
347 
348 #define TDS_BYTE_SWAP32(value) \
349  (((((uint32_t)value)<<24) & 0xFF000000u)| \
350  ((((uint32_t)value)<< 8) & 0x00FF0000u)| \
351  ((((uint32_t)value)>> 8) & 0x0000FF00u)| \
352  ((((uint32_t)value)>>24) & 0x000000FFu))
353 
354 #define is_end_token(x) ((x) >= TDS_DONE_TOKEN && (x) <= TDS_DONEINPROC_TOKEN)
355 
356 enum {
357  TDS_TYPEFLAG_INVALID = 0,
358  TDS_TYPEFLAG_NULLABLE = 1,
359  TDS_TYPEFLAG_FIXED = 2,
360  TDS_TYPEFLAG_VARIABLE = 4,
361  TDS_TYPEFLAG_COLLATE = 8,
362  TDS_TYPEFLAG_ASCII = 16,
363  TDS_TYPEFLAG_UNICODE = 32,
364  TDS_TYPEFLAG_BINARY = 64,
365  TDS_TYPEFLAG_DATETIME = 128,
366  TDS_TYPEFLAG_NUMERIC = 256,
367 };
368 
369 extern const uint16_t tds_type_flags_ms[256];
370 #if 0
371 extern const uint16_t tds_type_flags_syb[256];
372 extern const char *const tds_type_names[256];
373 #endif
374 
375 #define is_fixed_type(x) ((tds_type_flags_ms[x] & TDS_TYPEFLAG_FIXED) != 0)
376 #define is_nullable_type(x) ((tds_type_flags_ms[x] & TDS_TYPEFLAG_NULLABLE) != 0)
377 #define is_variable_type(x) ((tds_type_flags_ms[x] & TDS_TYPEFLAG_VARIABLE) != 0)
378 
379 
380 #define is_blob_type(x) ((x)==SYBTEXT || (x)==SYBIMAGE || (x)==SYBNTEXT)
381 #define is_blob_col(x) ((x)->column_varint_size > 2)
382 /* large type means it has a two byte size field */
383 /* define is_large_type(x) (x>128) */
384 #define is_numeric_type(x) ((x)==SYBNUMERIC || (x)==SYBDECIMAL)
385 
386 #define is_datetime_type(x) ((tds_type_flags_ms[x] & TDS_TYPEFLAG_DATETIME) != 0)
387 #define is_unicode_type(x) ((tds_type_flags_ms[x] & TDS_TYPEFLAG_UNICODE) != 0)
388 #define is_collate_type(x) ((tds_type_flags_ms[x] & TDS_TYPEFLAG_COLLATE) != 0)
389 #define is_ascii_type(x) ((tds_type_flags_ms[x] & TDS_TYPEFLAG_ASCII) != 0)
390 #define is_binary_type(x) ((tds_type_flags_ms[x] & TDS_TYPEFLAG_BINARY) != 0)
391 #define is_char_type(x) ((tds_type_flags_ms[x] & (TDS_TYPEFLAG_ASCII|TDS_TYPEFLAG_UNICODE)) != 0)
392 #define is_similar_type(x, y) (is_char_type(x) && is_char_type(y))
393 static inline
394 bool is_tds_type_valid(int type)
395 {
396  return (unsigned) type < 256u && tds_type_flags_ms[type] != 0;
397 }
398 
399 
400 #define TDS_MAX_CAPABILITY 32
401 #define MAXPRECISION 77
402 #define TDS_MAX_CONN 4096
403 #define TDS_MAX_DYNID_LEN 30
404 
405 /* defaults to use if no others are found */
406 #define TDS_DEF_SERVER "SYBASE"
407 #define TDS_DEF_BLKSZ 512
408 #define TDS_DEF_CHARSET "iso_1"
409 #define TDS_DEF_LANG "us_english"
410 #if TDS42
411 #define TDS_DEFAULT_VERSION 0x402
412 #define TDS_DEF_PORT 1433
413 #elif TDS46
414 #define TDS_DEFAULT_VERSION 0x406
415 #define TDS_DEF_PORT 4000
416 #elif TDS50
417 #define TDS_DEFAULT_VERSION 0x500
418 #define TDS_DEF_PORT 4000
419 #elif TDS70
420 #define TDS_DEFAULT_VERSION 0x700
421 #define TDS_DEF_PORT 1433
422 #elif TDS71
423 #define TDS_DEFAULT_VERSION 0x701
424 #define TDS_DEF_PORT 1433
425 #elif TDS72
426 #define TDS_DEFAULT_VERSION 0x702
427 #define TDS_DEF_PORT 1433
428 #elif TDS73
429 #define TDS_DEFAULT_VERSION 0x703
430 #define TDS_DEF_PORT 1433
431 #elif TDS74
432 #define TDS_DEFAULT_VERSION 0x704
433 #define TDS_DEF_PORT 1433
434 #else
435 #define TDS_DEFAULT_VERSION 0x000
436 #define TDS_DEF_PORT 1433
437 #endif
438 
439 /* normalized strings from freetds.conf file */
440 #define TDS_STR_VERSION "tds version"
441 #define TDS_STR_BLKSZ "initial block size"
442 #define TDS_STR_SWAPDT "swap broken dates"
443 #define TDS_STR_DUMPFILE "dump file"
444 #define TDS_STR_DEBUGLVL "debug level"
445 #define TDS_STR_DEBUGFLAGS "debug flags"
446 #define TDS_STR_TIMEOUT "timeout"
447 #define TDS_STR_QUERY_TIMEOUT "query timeout"
448 #define TDS_STR_CONNTIMEOUT "connect timeout"
449 #define TDS_STR_HOSTNAME "hostname"
450 #define TDS_STR_HOST "host"
451 #define TDS_STR_PORT "port"
452 #define TDS_STR_TEXTSZ "text size"
453 /* for big endian hosts */
454 #define TDS_STR_EMUL_LE "emulate little endian"
455 #define TDS_STR_CHARSET "charset"
456 #define TDS_STR_CLCHARSET "client charset"
457 #define TDS_STR_USE_UTF_16 "use utf-16"
458 #define TDS_STR_LANGUAGE "language"
459 #define TDS_STR_APPENDMODE "dump file append"
460 #define TDS_STR_DATEFMT "date format"
461 #define TDS_STR_INSTANCE "instance"
462 #define TDS_STR_ASA_DATABASE "asa database"
463 #define TDS_STR_DATABASE "database"
464 #define TDS_STR_ENCRYPTION "encryption"
465 #define TDS_STR_USENTLMV2 "use ntlmv2"
466 #define TDS_STR_USELANMAN "use lanman"
467 /* conf values */
468 #define TDS_STR_ENCRYPTION_OFF "off"
469 #define TDS_STR_ENCRYPTION_REQUEST "request"
470 #define TDS_STR_ENCRYPTION_REQUIRE "require"
471 /* Defines to enable optional GSSAPI delegation */
472 #define TDS_GSSAPI_DELEGATION "enable gssapi delegation"
473 /* Kerberos realm name */
474 #define TDS_STR_REALM "realm"
475 /* Kerberos SPN */
476 #define TDS_STR_SPN "spn"
477 /* CA file */
478 #define TDS_STR_CAFILE "ca file"
479 /* CRL file */
480 #define TDS_STR_CRLFILE "crl file"
481 /* check SSL hostname */
482 #define TDS_STR_CHECKSSLHOSTNAME "check certificate hostname"
483 /* database filename to attach on login (MSSQL) */
484 #define TDS_STR_DBFILENAME "database filename"
485 /* Application Intent MSSQL 2012 support */
486 #define TDS_STR_READONLY_INTENT "read-only intent"
487 /* configurable cipher suite to send to openssl's SSL_set_cipher_list() function */
488 #define TLS_STR_OPENSSL_CIPHERS "openssl ciphers"
489 /* enable old TLS v1, required for instance if you are using a really old Windows XP */
490 #define TDS_STR_ENABLE_TLS_V1 "enable tls v1"
491 
492 
493 /* TODO do a better check for alignment than this */
494 typedef union
495 {
496  void *p;
497  int i;
498  int64_t ui;
500 
501 #define TDS_ALIGN_SIZE sizeof(tds_align_struct)
502 
503 typedef struct tds_capability_type
504 {
505  unsigned char type;
506  unsigned char len; /* always sizeof(values) */
507  unsigned char values[TDS_MAX_CAPABILITY/2-2];
509 
510 typedef struct tds_capabilities
511 {
512  TDS_CAPABILITY_TYPE types[2];
514 
515 #define TDS_MAX_LOGIN_STR_SZ 128
516 typedef struct tds_login
517 {
519  int port;
520  TDS_USMALLINT tds_version;
521  int block_size;
522  DSTR language; /* e.g. us-english */
524  TDS_INT connect_timeout;
525  DSTR client_host_name;
526  DSTR server_host_name;
532  DSTR openssl_ciphers;
533  DSTR app_name;
538  DSTR library; /* Ct-Library, DB-Library, TDS-Library or ODBC */
539  TDS_TINYINT encryption_level;
540 
541  TDS_INT query_timeout;
542  TDS_CAPABILITIES capabilities;
543  DSTR client_charset;
544  DSTR database;
545 
546  struct addrinfo *ip_addrs;
547  DSTR instance_name;
548  DSTR dump_file;
549  int debug_flags;
550  int text_size;
551  DSTR routing_address;
552  uint16_t routing_port;
553 
554  unsigned char option_flag2;
555 
556  unsigned int bulk_copy:1;
557  unsigned int suppress_language:1;
558  unsigned int emul_little_endian:1;
559  unsigned int gssapi_use_delegation:1;
560  unsigned int use_ntlmv2:1;
561  unsigned int use_ntlmv2_specified:1;
562  unsigned int use_lanman:1;
563  unsigned int mars:1;
564  unsigned int use_utf16:1;
565  unsigned int use_new_password:1;
566  unsigned int valid_configuration:1;
567  unsigned int check_ssl_hostname:1;
568  unsigned int readonly_intent:1;
569  unsigned int enable_tls_v1:1;
570 } TDSLOGIN;
571 
572 typedef struct tds_headers
573 {
574  const char *qn_options;
575  const char *qn_msgtext;
576  TDS_INT qn_timeout;
577  /* TDS 7.4+: trace activity ID char[20] */
578 } TDSHEADERS;
579 
580 typedef struct tds_locale
581 {
582  char *language;
583  char *server_charset;
584  char *date_fmt;
585 } TDSLOCALE;
586 
591 typedef struct tds_blob
592 {
593  TDS_CHAR *textvalue;
594  TDS_CHAR textptr[16];
595  TDS_CHAR timestamp[8];
596  unsigned char valid_ptr;
597 } TDSBLOB;
598 
602 typedef struct tds_variant
603 {
604  /* this MUST have same position and place of textvalue in tds_blob */
605  TDS_CHAR *data;
606  TDS_INT size;
607  TDS_INT data_len;
608  TDS_SERVER_TYPE type;
609  TDS_UCHAR collation[5];
610 } TDSVARIANT;
611 
616 typedef struct tds_encoding
617 {
619  const char *name;
620  unsigned char min_bytes_per_char;
621  unsigned char max_bytes_per_char;
623  unsigned char canonic;
624 } TDS_ENCODING;
625 
626 typedef struct tds_bcpcoldata
627 {
628  TDS_UCHAR *data;
629  TDS_INT datalen;
630  TDS_INT is_null;
631 } BCPCOLDATA;
632 
633 
634 typedef TDSRET tds_func_get_info(TDSSOCKET *tds, TDSCOLUMN *col);
635 typedef TDSRET tds_func_get_data(TDSSOCKET *tds, TDSCOLUMN *col);
636 typedef TDS_INT tds_func_row_len(TDSCOLUMN *col);
637 typedef unsigned tds_func_put_info_len(TDSSOCKET *tds, TDSCOLUMN *col);
638 typedef TDSRET tds_func_put_info(TDSSOCKET *tds, TDSCOLUMN *col);
639 typedef TDSRET tds_func_put_data(TDSSOCKET *tds, TDSCOLUMN *col, int bcp7);
640 typedef int tds_func_check(const TDSCOLUMN *col);
641 
642 typedef struct tds_column_funcs
643 {
644  tds_func_get_info *get_info;
645  tds_func_get_data *get_data;
646  tds_func_row_len *row_len;
652  tds_func_put_info_len *put_info_len;
658  tds_func_put_info *put_info;
668  tds_func_put_data *put_data;
669 #if ENABLE_EXTRA_CHECKS
670 
684  tds_func_check *check;
685 #endif
686 #if 0
687  TDSRET (*convert)(TDSSOCKET *tds, TDSCOLUMN *col);
688 #endif
690 
695 {
696  const TDSCOLUMNFUNCS *funcs;
697  TDS_INT column_usertype;
698  TDS_INT column_flags;
699 
700  TDS_INT column_size;
702  TDS_SERVER_TYPE column_type;
707  TDS_TINYINT column_varint_size;
709  TDS_TINYINT column_prec;
710  TDS_TINYINT column_scale;
712  struct
713  {
714  TDS_SERVER_TYPE column_type;
715  TDS_INT column_size;
716  } on_server;
717 
720  DSTR table_name;
721  DSTR column_name;
722  DSTR table_column_name;
723 
724  unsigned char *column_data;
725  void (*column_data_free)(struct tds_column *column);
726  unsigned char column_nullable:1;
727  unsigned char column_writeable:1;
728  unsigned char column_identity:1;
729  unsigned char column_key:1;
730  unsigned char column_hidden:1;
731  unsigned char column_output:1;
732  unsigned char column_timestamp:1;
733  TDS_UCHAR column_collation[5];
734 
735  /* additional fields flags for compute results */
736  TDS_SMALLINT column_operand;
737  TDS_TINYINT column_operator;
738 
740  TDS_TINYINT blob_type;
741 
742  /* FIXME this is data related, not column */
745 
746  /* related to binding or info stored by client libraries */
747  /* FIXME find a best place to store these data, some are unused */
748  TDS_SMALLINT column_bindtype;
749  TDS_SMALLINT column_bindfmt;
750  TDS_UINT column_bindlen;
751  TDS_SMALLINT *column_nullbind;
752  TDS_CHAR *column_varaddr;
753  TDS_INT *column_lenbind;
754  TDS_INT column_textpos;
755  TDS_INT column_text_sqlgetdatapos;
756  TDS_CHAR column_text_sqlputdatainfo;
757  unsigned char column_iconv_left;
758  char column_iconv_buf[9];
759 
760  BCPCOLDATA *bcp_column_data;
769  TDS_INT bcp_prefix_len;
770  TDS_INT bcp_term_len;
771  TDS_CHAR *bcp_terminator;
772 };
773 
774 
776 typedef struct tds_result_info
777 {
778  /* TODO those fields can became a struct */
779  TDSCOLUMN **columns;
780  TDS_USMALLINT num_cols;
781  TDS_USMALLINT computeid;
782  TDS_INT ref_count;
783  TDSSOCKET *attached_to;
784  unsigned char *current_row;
785  void (*row_free)(struct tds_result_info* result, unsigned char *row);
786  TDS_INT row_size;
787 
788  TDS_SMALLINT *bycolumns;
789  TDS_USMALLINT by_cols;
790  bool rows_exist;
791  /* TODO remove ?? used only in dblib */
792  bool more_results;
793 } TDSRESULTINFO;
794 
796 typedef enum tds_states
797 {
804 } TDS_STATE;
805 
806 typedef enum tds_operations
807 {
808  TDS_OP_NONE = 0,
809 
810  /* mssql operations */
811  TDS_OP_CURSOR = TDS_SP_CURSOR,
812  TDS_OP_CURSOROPEN = TDS_SP_CURSOROPEN,
813  TDS_OP_CURSORPREPARE = TDS_SP_CURSORPREPARE,
814  TDS_OP_CURSOREXECUTE = TDS_SP_CURSOREXECUTE,
815  TDS_OP_CURSORPREPEXEC = TDS_SP_CURSORPREPEXEC,
816  TDS_OP_CURSORUNPREPARE = TDS_SP_CURSORUNPREPARE,
817  TDS_OP_CURSORFETCH = TDS_SP_CURSORFETCH,
818  TDS_OP_CURSOROPTION = TDS_SP_CURSOROPTION,
819  TDS_OP_CURSORCLOSE = TDS_SP_CURSORCLOSE,
820  TDS_OP_EXECUTESQL = TDS_SP_EXECUTESQL,
821  TDS_OP_PREPARE = TDS_SP_PREPARE,
822  TDS_OP_EXECUTE = TDS_SP_EXECUTE,
823  TDS_OP_PREPEXEC = TDS_SP_PREPEXEC,
824  TDS_OP_PREPEXECRPC = TDS_SP_PREPEXECRPC,
825  TDS_OP_UNPREPARE = TDS_SP_UNPREPARE,
826 
827  /* sybase operations */
828  TDS_OP_DYN_DEALLOC = 100,
829 } TDS_OPERATION;
830 
831 #define TDS_DBG_LOGIN __FILE__, ((__LINE__ << 4) | 11)
832 #define TDS_DBG_HEADER __FILE__, ((__LINE__ << 4) | 10)
833 #define TDS_DBG_FUNC __FILE__, ((__LINE__ << 4) | 7)
834 #define TDS_DBG_INFO2 __FILE__, ((__LINE__ << 4) | 6)
835 #define TDS_DBG_INFO1 __FILE__, ((__LINE__ << 4) | 5)
836 #define TDS_DBG_NETWORK __FILE__, ((__LINE__ << 4) | 4)
837 #define TDS_DBG_WARN __FILE__, ((__LINE__ << 4) | 3)
838 #define TDS_DBG_ERROR __FILE__, ((__LINE__ << 4) | 2)
839 #define TDS_DBG_SEVERE __FILE__, ((__LINE__ << 4) | 1)
840 
841 #define TDS_DBGFLAG_FUNC 0x80
842 #define TDS_DBGFLAG_INFO2 0x40
843 #define TDS_DBGFLAG_INFO1 0x20
844 #define TDS_DBGFLAG_NETWORK 0x10
845 #define TDS_DBGFLAG_WARN 0x08
846 #define TDS_DBGFLAG_ERROR 0x04
847 #define TDS_DBGFLAG_SEVERE 0x02
848 #define TDS_DBGFLAG_ALL 0xfff
849 #define TDS_DBGFLAG_LOGIN 0x0800
850 #define TDS_DBGFLAG_HEADER 0x0400
851 #define TDS_DBGFLAG_PID 0x1000
852 #define TDS_DBGFLAG_TIME 0x2000
853 #define TDS_DBGFLAG_SOURCE 0x4000
854 #define TDS_DBGFLAG_THREAD 0x8000
855 
856 #if 0
857 
862 enum TDS_DBG_LOG_STATE
863 {
864  TDS_DBG_LOGIN = (1 << 0)
866  , TDS_DBG_API = (1 << 1)
867  , TDS_DBG_ASYNC = (1 << 2)
868  , TDS_DBG_DIAG = (1 << 3)
869  , TDS_DBG_error = (1 << 4)
870  /* TODO: ^^^^^ make upper case when old #defines (above) are removed */
871  /* Log FreeTDS runtime/logic error occurs. */
872  , TDS_DBG_PACKET = (1 << 5)
873  , TDS_DBG_LIBTDS = (1 << 6)
874  , TDS_DBG_CONFIG = (1 << 7)
875  , TDS_DBG_DEFAULT = 0xFE
876 };
877 #endif
878 
879 typedef struct tds_result_info TDSCOMPUTEINFO;
880 
882 
883 typedef struct tds_message
884 {
885  TDS_CHAR *server;
886  TDS_CHAR *message;
887  TDS_CHAR *proc_name;
888  TDS_CHAR *sql_state;
889  TDS_INT msgno;
890  TDS_INT line_number;
891  /* -1 .. 255 */
892  TDS_SMALLINT state;
893  TDS_TINYINT priv_msg_type;
894  TDS_TINYINT severity;
895  /* for library-generated errors */
896  int oserr;
897 } TDSMESSAGE;
898 
899 typedef struct tds_upd_col
900 {
901  struct tds_upd_col *next;
902  TDS_INT colnamelength;
903  char * columnname;
904 } TDSUPDCOL;
905 
906 typedef enum {
907  TDS_CURSOR_STATE_UNACTIONED = 0 /* initial value */
908  , TDS_CURSOR_STATE_REQUESTED = 1 /* called by ct_cursor */
909  , TDS_CURSOR_STATE_SENT = 2 /* sent to server */
910  , TDS_CURSOR_STATE_ACTIONED = 3 /* acknowledged by server */
911 } TDS_CURSOR_STATE;
912 
913 typedef struct tds_cursor_status
914 {
915  TDS_CURSOR_STATE declare;
916  TDS_CURSOR_STATE cursor_row;
917  TDS_CURSOR_STATE open;
918  TDS_CURSOR_STATE fetch;
919  TDS_CURSOR_STATE close;
920  TDS_CURSOR_STATE dealloc;
922 
923 typedef enum tds_cursor_operation
924 {
925  TDS_CURSOR_POSITION = 0,
926  TDS_CURSOR_UPDATE = 1,
927  TDS_CURSOR_DELETE = 2,
928  TDS_CURSOR_INSERT = 4
929 } TDS_CURSOR_OPERATION;
930 
931 typedef enum tds_cursor_fetch
932 {
933  TDS_CURSOR_FETCH_NEXT = 1,
934  TDS_CURSOR_FETCH_PREV,
935  TDS_CURSOR_FETCH_FIRST,
936  TDS_CURSOR_FETCH_LAST,
937  TDS_CURSOR_FETCH_ABSOLUTE,
938  TDS_CURSOR_FETCH_RELATIVE
939 } TDS_CURSOR_FETCH;
940 
944 typedef struct tds_cursor
945 {
946  struct tds_cursor *next;
947  TDS_INT ref_count;
948  char *cursor_name;
949  TDS_INT cursor_id;
950  TDS_TINYINT options;
955  char *query;
956  /* TODO for updatable columns */
957  /* TDS_TINYINT number_upd_cols; */
958  /* TDSUPDCOL *cur_col_list; */
959  TDS_INT cursor_rows;
960  /* TDSPARAMINFO *params; */
962  TDS_USMALLINT srv_status;
963  TDSRESULTINFO *res_info;
964  TDS_INT type, concurrency;
965 } TDSCURSOR;
966 
970 typedef struct tds_env
971 {
974  char *language;
976  char *charset;
978  char *database;
979 } TDSENV;
980 
984 typedef struct tds_dynamic
985 {
986  struct tds_dynamic *next;
987  TDS_INT ref_count;
989  TDS_INT num_id;
995  char id[30];
1001  TDS_TINYINT emulated;
1006  /* int dyn_state; */ /* TODO use it */
1017  char *query;
1018 } TDSDYNAMIC;
1019 
1020 typedef enum {
1021  TDS_MULTIPLE_QUERY,
1022  TDS_MULTIPLE_EXECUTE,
1023  TDS_MULTIPLE_RPC
1024 } TDS_MULTIPLE_TYPE;
1025 
1026 typedef struct tds_multiple
1027 {
1028  TDS_MULTIPLE_TYPE type;
1029  unsigned int flags;
1030 } TDSMULTIPLE;
1031 
1032 /* forward declaration */
1033 typedef struct tds_context TDSCONTEXT;
1034 typedef int (*err_handler_t) (const TDSCONTEXT *, TDSSOCKET *, TDSMESSAGE *);
1035 
1037 {
1038  TDSLOCALE *locale;
1039  void *parent;
1040  /* handlers */
1041  int (*msg_handler) (const TDSCONTEXT *, TDSSOCKET *, TDSMESSAGE *);
1042  int (*err_handler) (const TDSCONTEXT *, TDSSOCKET *, TDSMESSAGE *);
1043  int (*int_handler) (void *);
1044  bool money_use_2_digits;
1045 };
1046 
1047 enum TDS_ICONV_ENTRY
1048 {
1049  client2ucs2
1050  , client2server_chardata
1051  , initial_char_conv_count /* keep last */
1052 };
1053 
1054 typedef struct tds_authentication
1055 {
1056  uint8_t *packet;
1057  int packet_len;
1058  TDSRET (*free)(TDSCONNECTION* conn, struct tds_authentication * auth);
1059  TDSRET (*handle_next)(TDSSOCKET * tds, struct tds_authentication * auth, size_t len);
1061 
1062 typedef struct tds_packet
1063 {
1064  struct tds_packet *next;
1065  short sid;
1066  unsigned len, capacity;
1067  unsigned char buf[1];
1068 } TDSPACKET;
1069 
1070 typedef struct tds_poll_wakeup
1071 {
1072  TDS_SYS_SOCKET s_signal, s_signaled;
1073 } TDSPOLLWAKEUP;
1074 
1075 /* field related to connection */
1077 {
1078  TDS_USMALLINT tds_version;
1079  TDS_UINT product_version;
1080  char *product_name;
1081 
1082  TDS_SYS_SOCKET s;
1083  TDSPOLLWAKEUP wakeup;
1084  const TDSCONTEXT *tds_ctx;
1085 
1088 
1099 
1100  int char_conv_count;
1101  TDSICONV **char_convs;
1102 
1103  TDS_UCHAR collation[5];
1104  TDS_UCHAR tds72_transaction[8];
1105 
1106  TDS_CAPABILITIES capabilities;
1107  unsigned int emul_little_endian:1;
1108  unsigned int use_iconv:1;
1109  unsigned int tds71rev1:1;
1110  unsigned int pending_close:1;
1111  unsigned int encrypt_single_packet:1;
1112 #if ENABLE_ODBC_MARS
1113  unsigned int mars:1;
1114 
1115  TDSSOCKET *in_net_tds;
1116  TDSPACKET *packets;
1117  TDSPACKET *recv_packet;
1118  TDSPACKET *send_packets;
1119  unsigned send_pos, recv_pos;
1120 
1121  tds_mutex list_mtx;
1122 #define BUSY_SOCKET ((TDSSOCKET*)(TDS_UINTPTR)1)
1123 #define TDSSOCKET_VALID(tds) (((TDS_UINTPTR)(tds)) > 1)
1124  struct tds_socket **sessions;
1125  unsigned num_sessions;
1126  unsigned num_cached_packets;
1127  TDSPACKET *packet_cache;
1128 #endif
1129 
1130  int spid;
1131  int client_spid;
1132 
1133  void *tls_session;
1134 #if defined(HAVE_GNUTLS)
1135  void *tls_credentials;
1136 #elif defined(HAVE_OPENSSL)
1137  void *tls_ctx;
1138 #else
1139  void *tls_dummy;
1140 #endif
1141  TDSAUTHENTICATION *authentication;
1142  char *server;
1143 };
1144 
1149 {
1150 #if ENABLE_ODBC_MARS
1151  TDSCONNECTION *conn;
1152 #else
1153  TDSCONNECTION conn[1];
1154 #endif
1155 
1161  unsigned char *in_buf;
1162 
1168  unsigned char *out_buf;
1169 
1174  unsigned int out_buf_max;
1175  unsigned in_pos;
1176  unsigned out_pos;
1177  unsigned in_len;
1178  unsigned char in_flag;
1179  unsigned char out_flag;
1181  void *parent;
1182 
1183 #if ENABLE_ODBC_MARS
1184  short sid;
1185  tds_condition packet_cond;
1186  TDS_UINT recv_seq;
1187  TDS_UINT send_seq;
1188  TDS_UINT recv_wnd;
1189  TDS_UINT send_wnd;
1190 #endif
1191  /* packet we received */
1192  TDSPACKET *recv_packet;
1195 
1202  TDSRESULTINFO *res_info;
1203  TDS_UINT num_comp_info;
1204  TDSCOMPUTEINFO **comp_info;
1205  TDSPARAMINFO *param_info;
1207  bool bulk_query;
1208  bool has_status;
1209  bool in_row;
1210  TDS_INT ret_status;
1211  TDS_STATE state;
1212  volatile
1213  unsigned char in_cancel;
1216  TDS_INT8 rows_affected;
1217  TDS_INT query_timeout;
1218 
1223  void (*env_chg_func) (TDSSOCKET * tds, int type, char *oldval, char *newval);
1224  TDS_OPERATION current_op;
1225 
1226  int option_value;
1227  tds_mutex wire_mtx;
1228 };
1229 
1230 #define tds_get_ctx(tds) ((tds)->conn->tds_ctx)
1231 #define tds_set_ctx(tds, val) do { ((tds)->conn->tds_ctx) = (val); } while(0)
1232 #define tds_get_parent(tds) ((tds)->parent)
1233 #define tds_set_parent(tds, val) do { ((tds)->parent) = (val); } while(0)
1234 #define tds_get_s(tds) ((tds)->conn->s)
1235 #define tds_set_s(tds, val) do { ((tds)->conn->s) = (val); } while(0)
1236 
1237 
1238 /* config.c */
1240 typedef void (*TDSCONFPARSE) (const char *option, const char *value, void *param);
1241 bool tds_read_conf_section(FILE * in, const char *section, TDSCONFPARSE tds_conf_parse, void *parse_param);
1242 bool tds_read_conf_file(TDSLOGIN * login, const char *server);
1243 void tds_parse_conf_section(const char *option, const char *value, void *param);
1244 TDSLOGIN *tds_read_config_info(TDSSOCKET * tds, TDSLOGIN * login, TDSLOCALE * locale);
1245 void tds_fix_login(TDSLOGIN* login);
1246 TDS_USMALLINT * tds_config_verstr(const char *tdsver, TDSLOGIN* login);
1247 struct addrinfo *tds_lookup_host(const char *servername);
1248 TDSRET tds_lookup_host_set(const char *servername, struct addrinfo **addr);
1249 const char *tds_addrinfo2str(struct addrinfo *addr, char *name, int namemax);
1250 char *tds_get_home_file(const char *file);
1251 
1252 TDSRET tds_set_interfaces_file_loc(const char *interfloc);
1253 extern const char STD_DATETIME_FMT[];
1254 int tds_parse_boolean(const char *value, int default_value);
1255 int tds_config_boolean(const char *option, const char *value, TDSLOGIN * login);
1256 
1257 TDSLOCALE *tds_get_locale(void);
1258 TDSRET tds_alloc_row(TDSRESULTINFO * res_info);
1259 TDSRET tds_alloc_compute_row(TDSCOMPUTEINFO * res_info);
1260 BCPCOLDATA * tds_alloc_bcp_column_data(unsigned int column_size);
1261 TDSDYNAMIC *tds_lookup_dynamic(TDSCONNECTION * conn, const char *id);
1262 /*@observer@*/ const char *tds_prtype(int token);
1263 int tds_get_varint_size(TDSCONNECTION * conn, int datatype);
1264 TDS_SERVER_TYPE tds_get_cardinal_type(TDS_SERVER_TYPE datatype, int usertype);
1265 
1266 
1267 /* iconv.c */
1268 TDSRET tds_iconv_open(TDSCONNECTION * conn, const char *charset, int use_utf16);
1269 void tds_iconv_close(TDSCONNECTION * conn);
1270 void tds_srv_charset_changed(TDSCONNECTION * conn, const char *charset);
1271 void tds7_srv_charset_changed(TDSCONNECTION * conn, int sql_collate, int lcid);
1272 int tds_iconv_alloc(TDSCONNECTION * conn);
1273 void tds_iconv_free(TDSCONNECTION * conn);
1274 TDSICONV *tds_iconv_from_collate(TDSCONNECTION * conn, TDS_UCHAR collate[5]);
1275 
1276 
1277 /* mem.c */
1278 void tds_free_socket(TDSSOCKET * tds);
1279 void tds_free_all_results(TDSSOCKET * tds);
1280 void tds_free_results(TDSRESULTINFO * res_info);
1281 void tds_free_param_results(TDSPARAMINFO * param_info);
1282 void tds_free_param_result(TDSPARAMINFO * param_info);
1283 void tds_free_msg(TDSMESSAGE * message);
1284 void tds_cursor_deallocated(TDSCONNECTION *conn, TDSCURSOR *cursor);
1285 void tds_release_cursor(TDSCURSOR **pcursor);
1286 void tds_free_bcp_column_data(BCPCOLDATA * coldata);
1287 TDSRESULTINFO *tds_alloc_results(TDS_USMALLINT num_cols);
1288 TDSCOMPUTEINFO **tds_alloc_compute_results(TDSSOCKET * tds, TDS_USMALLINT num_cols, TDS_USMALLINT by_cols);
1289 TDSCONTEXT *tds_alloc_context(void * parent);
1290 void tds_free_context(TDSCONTEXT * locale);
1292 void tds_free_input_params(TDSDYNAMIC * dyn);
1293 void tds_release_dynamic(TDSDYNAMIC ** dyn);
1294 static inline
1295 void tds_release_cur_dyn(TDSSOCKET * tds)
1296 {
1298 }
1299 void tds_dynamic_deallocated(TDSCONNECTION *conn, TDSDYNAMIC *dyn);
1300 void tds_set_cur_dyn(TDSSOCKET *tds, TDSDYNAMIC *dyn);
1301 TDSSOCKET *tds_realloc_socket(TDSSOCKET * tds, size_t bufsize);
1302 char *tds_alloc_client_sqlstate(int msgno);
1303 char *tds_alloc_lookup_sqlstate(TDSSOCKET * tds, int msgno);
1304 TDSLOGIN *tds_alloc_login(int use_environment);
1305 TDSDYNAMIC *tds_alloc_dynamic(TDSCONNECTION * conn, const char *id);
1306 void tds_free_login(TDSLOGIN * login);
1307 TDSLOGIN *tds_init_login(TDSLOGIN * login, TDSLOCALE * locale);
1308 TDSLOCALE *tds_alloc_locale(void);
1309 void *tds_alloc_param_data(TDSCOLUMN * curparam);
1310 void tds_free_locale(TDSLOCALE * locale);
1311 TDSCURSOR * tds_alloc_cursor(TDSSOCKET * tds, const char *name, TDS_INT namelen, const char *query, TDS_INT querylen);
1312 void tds_free_row(TDSRESULTINFO * res_info, unsigned char *row);
1313 TDSSOCKET *tds_alloc_socket(TDSCONTEXT * context, unsigned int bufsize);
1314 TDSSOCKET *tds_alloc_additional_socket(TDSCONNECTION *conn);
1315 void tds_set_current_results(TDSSOCKET *tds, TDSRESULTINFO *info);
1316 void tds_detach_results(TDSRESULTINFO *info);
1317 void * tds_realloc(void **pp, size_t new_size);
1318 #define TDS_RESIZE(p, n_elem) \
1319  tds_realloc((void **) &(p), sizeof(*(p)) * (size_t) (n_elem))
1320 #define tds_new(type, n) ((type *) malloc(sizeof(type) * (n)))
1321 #define tds_new0(type, n) ((type *) calloc(n, sizeof(type)))
1322 
1323 TDSPACKET *tds_alloc_packet(void *buf, unsigned len);
1324 TDSPACKET *tds_realloc_packet(TDSPACKET *packet, unsigned len);
1325 void tds_free_packets(TDSPACKET *packet);
1326 TDSBCPINFO *tds_alloc_bcpinfo(void);
1327 void tds_free_bcpinfo(TDSBCPINFO *bcpinfo);
1328 void tds_deinit_bcpinfo(TDSBCPINFO *bcpinfo);
1329 
1330 
1331 /* login.c */
1332 void tds_set_packet(TDSLOGIN * tds_login, int packet_size);
1333 void tds_set_port(TDSLOGIN * tds_login, int port);
1334 bool tds_set_passwd(TDSLOGIN * tds_login, const char *password) TDS_WUR;
1335 void tds_set_bulk(TDSLOGIN * tds_login, bool enabled);
1336 bool tds_set_user(TDSLOGIN * tds_login, const char *username) TDS_WUR;
1337 bool tds_set_app(TDSLOGIN * tds_login, const char *application) TDS_WUR;
1338 bool tds_set_host(TDSLOGIN * tds_login, const char *hostname) TDS_WUR;
1339 bool tds_set_library(TDSLOGIN * tds_login, const char *library) TDS_WUR;
1340 bool tds_set_server(TDSLOGIN * tds_login, const char *server) TDS_WUR;
1341 bool tds_set_client_charset(TDSLOGIN * tds_login, const char *charset) TDS_WUR;
1342 bool tds_set_language(TDSLOGIN * tds_login, const char *language) TDS_WUR;
1343 void tds_set_version(TDSLOGIN * tds_login, TDS_TINYINT major_ver, TDS_TINYINT minor_ver);
1344 int tds_connect_and_login(TDSSOCKET * tds, TDSLOGIN * login);
1345 
1346 
1347 /* query.c */
1348 void tds_start_query(TDSSOCKET *tds, unsigned char packet_type);
1349 
1350 TDSRET tds_submit_query(TDSSOCKET * tds, const char *query);
1351 TDSRET tds_submit_query_params(TDSSOCKET * tds, const char *query, TDSPARAMINFO * params, TDSHEADERS * head);
1352 TDSRET tds_submit_queryf(TDSSOCKET * tds, const char *queryf, ...);
1353 TDSRET tds_submit_prepare(TDSSOCKET * tds, const char *query, const char *id, TDSDYNAMIC ** dyn_out, TDSPARAMINFO * params);
1354 TDSRET tds_submit_execdirect(TDSSOCKET * tds, const char *query, TDSPARAMINFO * params, TDSHEADERS * head);
1355 TDSRET tds71_submit_prepexec(TDSSOCKET * tds, const char *query, const char *id, TDSDYNAMIC ** dyn_out, TDSPARAMINFO * params);
1356 TDSRET tds_submit_execute(TDSSOCKET * tds, TDSDYNAMIC * dyn);
1357 TDSRET tds_send_cancel(TDSSOCKET * tds);
1358 const char *tds_next_placeholder(const char *start);
1359 int tds_count_placeholders(const char *query);
1360 int tds_needs_unprepare(TDSCONNECTION * conn, TDSDYNAMIC * dyn);
1361 TDSRET tds_deferred_unprepare(TDSCONNECTION * conn, TDSDYNAMIC * dyn);
1362 TDSRET tds_submit_unprepare(TDSSOCKET * tds, TDSDYNAMIC * dyn);
1363 TDSRET tds_submit_rpc(TDSSOCKET * tds, const char *rpc_name, TDSPARAMINFO * params, TDSHEADERS * head);
1364 TDSRET tds_submit_optioncmd(TDSSOCKET * tds, TDS_OPTION_CMD command, TDS_OPTION option, TDS_OPTION_ARG *param, TDS_INT param_size);
1365 TDSRET tds_submit_begin_tran(TDSSOCKET *tds);
1366 TDSRET tds_submit_rollback(TDSSOCKET *tds, int cont);
1367 TDSRET tds_submit_commit(TDSSOCKET *tds, int cont);
1368 TDSRET tds_disconnect(TDSSOCKET * tds);
1369 size_t tds_quote_id(TDSSOCKET * tds, char *buffer, const char *id, int idlen);
1370 size_t tds_quote_string(TDSSOCKET * tds, char *buffer, const char *str, int len);
1371 const char *tds_skip_comment(const char *s);
1372 const char *tds_skip_quoted(const char *s);
1373 size_t tds_fix_column_size(TDSSOCKET * tds, TDSCOLUMN * curcol);
1374 const char *tds_convert_string(TDSSOCKET * tds, TDSICONV * char_conv, const char *s, int len, size_t *out_len);
1375 void tds_convert_string_free(const char *original, const char *converted);
1376 #if !ENABLE_EXTRA_CHECKS
1377 #define tds_convert_string_free(original, converted) \
1378  do { if (original != converted) free((char*) converted); } while(0)
1379 #endif
1380 TDSRET tds_get_column_declaration(TDSSOCKET * tds, TDSCOLUMN * curcol, char *out);
1381 
1382 TDSRET tds_cursor_declare(TDSSOCKET * tds, TDSCURSOR * cursor, TDSPARAMINFO *params, int *send);
1383 TDSRET tds_cursor_setrows(TDSSOCKET * tds, TDSCURSOR * cursor, int *send);
1384 TDSRET tds_cursor_open(TDSSOCKET * tds, TDSCURSOR * cursor, TDSPARAMINFO *params, int *send);
1385 TDSRET tds_cursor_fetch(TDSSOCKET * tds, TDSCURSOR * cursor, TDS_CURSOR_FETCH fetch_type, TDS_INT i_row);
1386 TDSRET tds_cursor_get_cursor_info(TDSSOCKET * tds, TDSCURSOR * cursor, TDS_UINT * row_number, TDS_UINT * row_count);
1387 TDSRET tds_cursor_close(TDSSOCKET * tds, TDSCURSOR * cursor);
1388 TDSRET tds_cursor_dealloc(TDSSOCKET * tds, TDSCURSOR * cursor);
1389 TDSRET tds_deferred_cursor_dealloc(TDSCONNECTION *conn, TDSCURSOR * cursor);
1390 TDSRET tds_cursor_update(TDSSOCKET * tds, TDSCURSOR * cursor, TDS_CURSOR_OPERATION op, TDS_INT i_row, TDSPARAMINFO * params);
1391 TDSRET tds_cursor_setname(TDSSOCKET * tds, TDSCURSOR * cursor);
1392 
1393 TDSRET tds_multiple_init(TDSSOCKET *tds, TDSMULTIPLE *multiple, TDS_MULTIPLE_TYPE type, TDSHEADERS * head);
1394 TDSRET tds_multiple_done(TDSSOCKET *tds, TDSMULTIPLE *multiple);
1395 TDSRET tds_multiple_query(TDSSOCKET *tds, TDSMULTIPLE *multiple, const char *query, TDSPARAMINFO * params);
1396 TDSRET tds_multiple_execute(TDSSOCKET *tds, TDSMULTIPLE *multiple, TDSDYNAMIC * dyn);
1397 
1398 
1399 /* token.c */
1400 TDSRET tds_process_cancel(TDSSOCKET * tds);
1401 int tds_get_token_size(int marker);
1402 TDSRET tds_process_login_tokens(TDSSOCKET * tds);
1403 TDSRET tds_process_simple_query(TDSSOCKET * tds);
1404 int tds5_send_optioncmd(TDSSOCKET * tds, TDS_OPTION_CMD tds_command, TDS_OPTION tds_option, TDS_OPTION_ARG * tds_argument,
1405  TDS_INT * tds_argsize);
1406 TDSRET tds_process_tokens(TDSSOCKET * tds, /*@out@*/ TDS_INT * result_type, /*@out@*/ int *done_flags, unsigned flag);
1407 int determine_adjusted_size(const TDSICONV * char_conv, int size);
1408 
1409 
1410 /* data.c */
1411 void tds_set_param_type(TDSCONNECTION * conn, TDSCOLUMN * curcol, TDS_SERVER_TYPE type);
1412 void tds_set_column_type(TDSCONNECTION * conn, TDSCOLUMN * curcol, TDS_SERVER_TYPE type);
1413 
1414 
1415 /* tds_convert.c */
1416 TDSRET tds_datecrack(TDS_INT datetype, const void *di, TDSDATEREC * dr);
1417 TDS_SERVER_TYPE tds_get_conversion_type(TDS_SERVER_TYPE srctype, int colsize);
1418 extern const char tds_hex_digits[];
1419 
1420 
1421 /* write.c */
1422 int tds_init_write_buf(TDSSOCKET * tds);
1423 int tds_put_n(TDSSOCKET * tds, const void *buf, size_t n);
1424 int tds_put_string(TDSSOCKET * tds, const char *buf, int len);
1425 int tds_put_int(TDSSOCKET * tds, TDS_INT i);
1426 int tds_put_int8(TDSSOCKET * tds, TDS_INT8 i);
1427 int tds_put_smallint(TDSSOCKET * tds, TDS_SMALLINT si);
1429 #define tds_put_tinyint(tds, ti) tds_put_byte(tds,ti)
1430 int tds_put_byte(TDSSOCKET * tds, unsigned char c);
1431 TDSRET tds_flush_packet(TDSSOCKET * tds);
1432 int tds_put_buf(TDSSOCKET * tds, const unsigned char *buf, int dsize, int ssize);
1433 
1434 
1435 /* read.c */
1436 unsigned char tds_get_byte(TDSSOCKET * tds);
1437 void tds_unget_byte(TDSSOCKET * tds);
1438 unsigned char tds_peek(TDSSOCKET * tds);
1439 TDS_USMALLINT tds_get_usmallint(TDSSOCKET * tds);
1440 #define tds_get_smallint(tds) ((TDS_SMALLINT) tds_get_usmallint(tds))
1441 TDS_UINT tds_get_uint(TDSSOCKET * tds);
1442 #define tds_get_int(tds) ((TDS_INT) tds_get_uint(tds))
1443 TDS_UINT8 tds_get_uint8(TDSSOCKET * tds);
1444 #define tds_get_int8(tds) ((TDS_INT8) tds_get_uint8(tds))
1445 size_t tds_get_string(TDSSOCKET * tds, size_t string_len, char *dest, size_t dest_size);
1446 TDSRET tds_get_char_data(TDSSOCKET * tds, char *dest, size_t wire_size, TDSCOLUMN * curcol);
1447 bool tds_get_n(TDSSOCKET * tds, /*@out@*/ /*@null@*/ void *dest, size_t n);
1448 int tds_get_size_by_type(TDS_SERVER_TYPE servertype);
1449 DSTR* tds_dstr_get(TDSSOCKET * tds, DSTR * s, size_t len);
1450 
1451 
1452 /* util.c */
1453 int tdserror (const TDSCONTEXT * tds_ctx, TDSSOCKET * tds, int msgno, int errnum);
1455 void tds_swap_bytes(void *buf, int bytes);
1456 unsigned int tds_gettime_ms(void);
1457 char *tds_strndup(const void *s, TDS_INTPTR len);
1458 
1459 
1460 /* log.c */
1461 void tdsdump_off(void);
1462 void tdsdump_on(void);
1463 int tdsdump_isopen(void);
1464 #include <freetds/popvis.h>
1465 int tdsdump_open(const char *filename);
1466 #include <freetds/pushvis.h>
1467 void tdsdump_close(void);
1468 void tdsdump_dump_buf(const char* file, unsigned int level_line, const char *msg, const void *buf, size_t length);
1469 void tdsdump_col(const TDSCOLUMN *col);
1470 #undef tdsdump_log
1471 void tdsdump_log(const char* file, unsigned int level_line, const char *fmt, ...)
1472 #if defined(__GNUC__) && __GNUC__ >= 2
1473 #if defined(__MINGW32__)
1474  __attribute__ ((__format__ (ms_printf, 3, 4)))
1475 #else
1476  __attribute__ ((__format__ (__printf__, 3, 4)))
1477 #endif
1478 #endif
1479 ;
1480 #define TDSDUMP_LOG_FAST if (TDS_UNLIKELY(tds_write_dump)) tdsdump_log
1481 #define tdsdump_log TDSDUMP_LOG_FAST
1482 #define TDSDUMP_BUF_FAST if (TDS_UNLIKELY(tds_write_dump)) tdsdump_dump_buf
1483 #define tdsdump_dump_buf TDSDUMP_BUF_FAST
1484 
1485 extern int tds_write_dump;
1486 extern int tds_debug_flags;
1487 extern int tds_g_append_mode;
1488 
1489 
1490 /* net.c */
1491 TDSERRNO tds_open_socket(TDSSOCKET * tds, struct addrinfo *ipaddr, unsigned int port, int timeout, int *p_oserr);
1492 void tds_close_socket(TDSSOCKET * tds);
1493 int tds7_get_instance_ports(FILE *output, struct addrinfo *addr);
1494 int tds7_get_instance_port(struct addrinfo *addr, const char *instance);
1495 char *tds_prwsaerror(int erc);
1496 void tds_prwsaerror_free(char *s);
1497 int tds_connection_read(TDSSOCKET * tds, unsigned char *buf, int buflen);
1498 int tds_connection_write(TDSSOCKET *tds, const unsigned char *buf, int buflen, int final);
1499 #define TDSSELREAD POLLIN
1500 #define TDSSELWRITE POLLOUT
1501 int tds_select(TDSSOCKET * tds, unsigned tds_sel, int timeout_seconds);
1502 void tds_connection_close(TDSCONNECTION *conn);
1503 int tds_goodread(TDSSOCKET * tds, unsigned char *buf, int buflen);
1504 int tds_goodwrite(TDSSOCKET * tds, const unsigned char *buffer, size_t buflen);
1505 void tds_socket_flush(TDS_SYS_SOCKET sock);
1506 int tds_socket_set_nonblocking(TDS_SYS_SOCKET sock);
1507 int tds_wakeup_init(TDSPOLLWAKEUP *wakeup);
1508 void tds_wakeup_close(TDSPOLLWAKEUP *wakeup);
1509 void tds_wakeup_send(TDSPOLLWAKEUP *wakeup, char cancel);
1510 static inline TDS_SYS_SOCKET tds_wakeup_get_fd(const TDSPOLLWAKEUP *wakeup)
1511 {
1512  return wakeup->s_signaled;
1513 }
1514 
1515 
1516 /* packet.c */
1517 int tds_read_packet(TDSSOCKET * tds);
1518 TDSRET tds_write_packet(TDSSOCKET * tds, unsigned char final);
1519 #if ENABLE_ODBC_MARS
1520 int tds_append_cancel(TDSSOCKET *tds);
1521 TDSRET tds_append_fin(TDSSOCKET *tds);
1522 #else
1523 int tds_put_cancel(TDSSOCKET * tds);
1524 #endif
1525 
1526 
1527 /* vstrbuild.c */
1528 TDSRET tds_vstrbuild(char *buffer, int buflen, int *resultlen, const char *text, int textlen, const char *formats, int formatlen,
1529  va_list ap);
1530 
1531 
1532 /* numeric.c */
1533 char *tds_money_to_string(const TDS_MONEY * money, char *s, bool use_2_digits);
1534 TDS_INT tds_numeric_to_string(const TDS_NUMERIC * numeric, char *s);
1535 TDS_INT tds_numeric_change_prec_scale(TDS_NUMERIC * numeric, unsigned char new_prec, unsigned char new_scale);
1536 
1537 
1538 /* getmac.c */
1539 void tds_getmac(TDS_SYS_SOCKET s, unsigned char mac[6]);
1540 
1541 
1542 /* challenge.c */
1543 #ifndef HAVE_SSPI
1545 TDSAUTHENTICATION * tds_gss_get_auth(TDSSOCKET * tds);
1546 #else
1547 TDSAUTHENTICATION * tds_sspi_get_auth(TDSSOCKET * tds);
1548 #endif
1549 
1550 
1551 /* random.c */
1552 void tds_random_buffer(unsigned char *out, int len);
1553 
1554 
1555 /* sec_negotiate.c */
1556 TDSAUTHENTICATION * tds5_negotiate_get_auth(TDSSOCKET * tds);
1557 void tds5_negotiate_set_msg_type(TDSSOCKET * tds, TDSAUTHENTICATION * auth, unsigned msg_type);
1558 
1559 
1560 /* bulk.c */
1561 
1564 {
1565  TDS_BCP_IN = 1,
1566  TDS_BCP_OUT = 2,
1567  TDS_BCP_QUERYOUT = 3
1568 };
1569 
1571 {
1572  const char *hint;
1573  void *parent;
1574  DSTR tablename;
1575  TDS_CHAR *insert_stmt;
1576  TDS_INT direction;
1577  TDS_INT identity_insert_on;
1578  TDS_INT xfer_init;
1579  TDS_INT bind_count;
1580  TDSRESULTINFO *bindinfo;
1581 };
1582 
1583 TDSRET tds_bcp_init(TDSSOCKET *tds, TDSBCPINFO *bcpinfo);
1584 typedef TDSRET (*tds_bcp_get_col_data) (TDSBCPINFO *bulk, TDSCOLUMN *bcpcol, int offset);
1585 typedef void (*tds_bcp_null_error) (TDSBCPINFO *bulk, int index, int offset);
1586 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);
1587 TDSRET tds_bcp_done(TDSSOCKET *tds, int *rows_copied);
1588 TDSRET tds_bcp_start(TDSSOCKET *tds, TDSBCPINFO *bcpinfo);
1589 TDSRET tds_bcp_start_copy_in(TDSSOCKET *tds, TDSBCPINFO *bcpinfo);
1590 
1591 TDSRET tds_bcp_fread(TDSSOCKET * tds, TDSICONV * conv, FILE * stream,
1592  const char *terminator, size_t term_len, char **outbuf, size_t * outbytes);
1593 
1594 TDSRET tds_writetext_start(TDSSOCKET *tds, const char *objname, const char *textptr, const char *timestamp, int with_log, TDS_UINT size);
1595 TDSRET tds_writetext_continue(TDSSOCKET *tds, const TDS_UCHAR *text, TDS_UINT size);
1596 TDSRET tds_writetext_end(TDSSOCKET *tds);
1597 
1598 
1599 static inline
1600 bool tds_capability_enabled(const TDS_CAPABILITY_TYPE *cap, unsigned cap_num)
1601 {
1602  return (cap->values[sizeof(cap->values)-1-(cap_num>>3)] >> (cap_num&7)) & 1;
1603 }
1604 #define tds_capability_has_req(conn, cap) \
1605  tds_capability_enabled(&conn->capabilities.types[0], cap)
1606 
1607 #define IS_TDS42(x) (x->tds_version==0x402)
1608 #define IS_TDS46(x) (x->tds_version==0x406)
1609 #define IS_TDS50(x) (x->tds_version==0x500)
1610 #define IS_TDS70(x) (x->tds_version==0x700)
1611 #define IS_TDS71(x) (x->tds_version==0x701)
1612 #define IS_TDS72(x) (x->tds_version==0x702)
1613 #define IS_TDS73(x) (x->tds_version==0x703)
1614 
1615 #define IS_TDS50_PLUS(x) ((x)->tds_version>=0x500)
1616 #define IS_TDS7_PLUS(x) ((x)->tds_version>=0x700)
1617 #define IS_TDS71_PLUS(x) ((x)->tds_version>=0x701)
1618 #define IS_TDS72_PLUS(x) ((x)->tds_version>=0x702)
1619 #define IS_TDS73_PLUS(x) ((x)->tds_version>=0x703)
1620 #define IS_TDS74_PLUS(x) ((x)->tds_version>=0x704)
1621 
1622 #define TDS_MAJOR(x) ((x)->tds_version >> 8)
1623 #define TDS_MINOR(x) ((x)->tds_version & 0xff)
1624 
1625 #define IS_TDSDEAD(x) (((x) == NULL) || (x)->state == TDS_DEAD)
1626 
1628 #define TDS_IS_SYBASE(x) (!((x)->conn->product_version & 0x80000000u))
1629 
1630 #define TDS_IS_MSSQL(x) (((x)->conn->product_version & 0x80000000u)!=0)
1631 
1635 #define TDS_MS_VER(maj,min,x) (0x80000000u|((maj)<<24)|((min)<<16)|(x))
1636 
1637 /* TODO test if not similar to ms one*/
1639 #define TDS_SYB_VER(maj,min,x) (((maj)<<24)|((min)<<16)|(x)<<8)
1640 
1641 #ifdef __cplusplus
1642 #if 0
1643 {
1644 #endif
1645 }
1646 #endif
1647 
1648 #include <freetds/popvis.h>
1649 
1650 #define TDS_PUT_INT(tds,v) tds_put_int((tds), ((TDS_INT)(v)))
1651 #define TDS_PUT_SMALLINT(tds,v) tds_put_smallint((tds), ((TDS_SMALLINT)(v)))
1652 #define TDS_PUT_BYTE(tds,v) tds_put_byte((tds), ((unsigned char)(v)))
1653 
1654 #endif /* _tds_h_ */
TDSRET tds_cursor_dealloc(TDSSOCKET *tds, TDSCURSOR *cursor)
Send a deallocation request to server.
Definition: query.c:3045
TDSLOCALE * tds_get_locale(void)
Get locale information.
Definition: locale.c:50
Hold information for any results.
Definition: tds.h:776
more results follow
Definition: tds.h:247
bool has_status
true is ret_status is valid
Definition: tds.h:1208
TDS_INT cursor_id
cursor id returned by the server after cursor declare
Definition: tds.h:949
bool bulk_query
true is query sent was a bulk query so we need to switch state to QUERYING
Definition: tds.h:1207
DSTR user_name
account for login
Definition: tds.h:534
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
tds_end
Flags returned in TDS_DONE token.
Definition: tds.h:244
TDS_TINYINT emulated
this dynamic query cannot be prepared so libTDS have to construct a simple query. ...
Definition: tds.h:1001
void tdsdump_col(const TDSCOLUMN *col)
Write a column value to the debug log.
Definition: log.c:408
no data expected
Definition: tds.h:798
int tds7_get_instance_port(struct addrinfo *addr, const char *instance)
Get port of given instance.
Definition: net.c:1227
DSTR db_filename
database filename to attach (MSSQL)
Definition: tds.h:529
TDSRET tds_submit_execdirect(TDSSOCKET *tds, const char *query, TDSPARAMINFO *params, TDSHEADERS *head)
Submit a prepared query with parameters.
Definition: query.c:1326
struct tds_encoding TDS_ENCODING
Information relevant to libiconv.
unsigned char tds_peek(TDSSOCKET *tds)
Reads a byte from the TDS stream without removing it.
Definition: read.c:100
Definition: proto.h:25
TDSICONV * char_conv
refers to previously allocated iconv information
Definition: tds.h:718
unsigned char * in_buf
Input buffer.
Definition: tds.h:1161
Definition: tds.h:580
TDSCURSOR * cur_cursor
cursor in use
Definition: tds.h:1206
TDSRET tds_process_cancel(TDSSOCKET *tds)
Definition: token.c:2550
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_INT dayofyear
day of year (1-366)
Definition: tds.h:159
Current environment as reported by the server.
Definition: tds.h:970
Definition: tds.h:1570
Definition: tds.h:510
enum tds_states TDS_STATE
values for tds->state
struct tds_cursor TDSCURSOR
Holds informations about a cursor.
TDS_CURSOR_STATUS status
cursor parameter
Definition: tds.h:961
void tds_set_column_type(TDSCONNECTION *conn, TDSCOLUMN *curcol, TDS_SERVER_TYPE type)
Set type of column initializing all dependency.
Definition: data.c:227
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
TDSRET tds_submit_execute(TDSSOCKET *tds, TDSDYNAMIC *dyn)
Sends a previously prepared dynamic statement to the server.
Definition: query.c:1704
TDS_INT date
date, 0 = 1900-01-01
Definition: tds.h:143
char * database
database name
Definition: tds.h:978
Definition: iconv.h:91
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
TDS_INT tds_numeric_to_string(const TDS_NUMERIC *numeric, char *s)
Definition: numeric.c:95
TDS_INT8 rows_affected
rows updated/deleted/inserted/selected, TDS_NO_COUNT if not valid
Definition: tds.h:1216
TDSPACKET * send_packet
packet we are preparing to send
Definition: tds.h:1194
TDSLOGIN * login
config for login stuff.
Definition: tds.h:1221
TDS_TINYINT column_scale
scale for decimal/numeric
Definition: tds.h:710
int port
port of database service
Definition: tds.h:519
Definition: tds.h:642
TDSPARAMINFO * tds_alloc_param_result(TDSPARAMINFO *old_param)
Adds a output parameter to TDSPARAMINFO.
Definition: mem.c:284
Used by tds_datecrack.
Definition: tds.h:153
bool defer_close
true if dynamic was marker to be closed when connection is idle
Definition: tds.h:1005
Definition: proto.h:38
TDS_USMALLINT tds_version
TDS version.
Definition: tds.h:520
Definition: tds.h:1062
DSTR server_charset
charset of server e.g.
Definition: tds.h:523
unsigned char * out_buf
Output buffer.
Definition: tds.h:1168
char * cursor_name
name of the cursor
Definition: tds.h:948
Store variant informations.
Definition: tds.h:602
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:2750
Definition: thread.h:278
Definition: tds.h:572
TDS_INT second
0-59
Definition: tds.h:163
client would send data
Definition: tds.h:800
Information for a server connection.
Definition: tds.h:1148
const char * tds_skip_quoted(const char *s)
Skip quoting string (like &#39;sfsf&#39;, "dflkdj" or [dfkjd])
Definition: query.c:535
Definition: tds.h:503
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
TDS_INT day
day of month (1-31)
Definition: tds.h:158
TDS_INT weekday
day of week (0-6, 0 = sunday)
Definition: tds.h:160
TDSENV env
environment is shared between all sessions
Definition: tds.h:1087
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:1321
DSTR cafile
certificate authorities file
Definition: tds.h:530
size_t tds_quote_string(TDSSOCKET *tds, char *buffer, const char *str, int len)
Quote a string.
Definition: query.c:2277
TDSRET tds_deferred_unprepare(TDSCONNECTION *conn, TDSDYNAMIC *dyn)
Unprepare dynamic on idle.
Definition: query.c:1831
SQL server server error.
Definition: tds.h:254
struct tds_env TDSENV
Current environment as reported by the server.
DSTR server_name
server name (in freetds.conf)
Definition: tds.h:518
TDS_TINYINT blob_type
Sybase blob type (CHAR/UNICHAR/BINARY)
Definition: tds.h:740
Definition: tds.h:899
TDS_INT column_cur_size
size written in variable (ie: char, text, binary).
Definition: tds.h:744
TDSRET tds_submit_unprepare(TDSSOCKET *tds, TDSDYNAMIC *dyn)
Send a unprepare request for a prepared query.
Definition: query.c:1854
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:1439
TDS_TINYINT column_varint_size
size of length when reading from wire (0, 1, 2 or 4)
Definition: tds.h:707
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
bool in_row
true if we are getting rows
Definition: tds.h:1209
char * query
saved query, we need to know original query if prepare is impossible
Definition: tds.h:1017
TDSRET tds_get_column_declaration(TDSSOCKET *tds, TDSCOLUMN *curcol, char *out)
Return declaration for column (like "varchar(20)").
Definition: query.c:737
Definition: tds.h:626
TDS_SMALLINT offset
time offset
Definition: tds.h:144
bool defer_close
true if cursor was marker to be closed when connection is idle
Definition: tds.h:954
TDSRET tds_submit_commit(TDSSOCKET *tds, int cont)
Send a commit request.
Definition: query.c:3717
TDSLOGIN * tds_init_login(TDSLOGIN *login, TDSLOCALE *locale)
Initialize login structure with locale information and other stuff for connection.
Definition: mem.c:801
TDSRET tds_bcp_done(TDSSOCKET *tds, int *rows_copied)
Tell we finished sending BCP data to server.
Definition: bulk.c:785
Information about blobs (e.g.
Definition: tds.h:591
char * charset
character set encoding
Definition: tds.h:976
TDS_TINYINT options
read only|updatable TODO use it
Definition: tds.h:950
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
int tds_count_placeholders(const char *query)
Count the number of placeholders (&#39;?&#39;) in a query.
Definition: query.c:591
transaction in progress
Definition: tds.h:249
struct tds_dynamic TDSDYNAMIC
Holds information for a dynamic (also called prepared) query.
TDS_INT hour
0-23
Definition: tds.h:161
Definition: tds.h:1026
TDS_INT cursor_rows
< number of updatable columns
Definition: tds.h:959
TDSDYNAMIC * cur_dyn
dynamic structure in use
Definition: tds.h:1219
results are from a stored procedure
Definition: tds.h:250
TDSRESULTINFO * current_results
Current query information.
Definition: tds.h:1201
void tdsdump_close(void)
Close the TDS dump log file.
Definition: log.c:193
TDS_INT bcp_prefix_len
The length, in bytes, of any length prefix this column may have.
Definition: tds.h:769
TDS_STATE tds_set_state(TDSSOCKET *tds, TDS_STATE state)
Set state of TDS connection, with logging and checking.
Definition: util.c:58
Holds informations about a cursor.
Definition: tds.h:944
client is writing data
Definition: tds.h:799
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:876
bool tds_read_conf_file(TDSLOGIN *login, const char *server)
Read configuration info for given server return 0 on error.
Definition: config.c:344
void tds_close_socket(TDSSOCKET *tds)
Close current socket.
Definition: net.c:548
TDS_INT type
row fetched from this cursor
Definition: tds.h:964
Definition: tds.h:883
struct tds_result_info TDSRESULTINFO
Hold information for any results.
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
tds_bcp_directions
bcp direction
Definition: tds.h:1563
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
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
Structure to hold a string.
Definition: string.h:36
tds_states
values for tds->state
Definition: tds.h:796
Metadata about columns in regular and compute rows.
Definition: tds.h:694
DSTR crlfile
certificate revocation file
Definition: tds.h:531
unsigned char canonic
internal numeric index into array of all encodings
Definition: tds.h:623
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_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:3382
TDS_UINT8 tds_get_uint8(TDSSOCKET *tds)
Get an uint64 from the server.
Definition: read.c:148
int tds_goodwrite(TDSSOCKET *tds, const unsigned char *buffer, size_t buflen)
Definition: net.c:985
Definition: tds.h:494
TDSCURSOR * cursors
linked list of cursors allocated for this connection contains only cursors allocated on the server ...
Definition: tds.h:1093
int tds_goodread(TDSSOCKET *tds, unsigned char *buf, int buflen)
Loops until we have received some characters return -1 on failure.
Definition: net.c:914
int tds_write_dump
Tell if TDS debug logging is turned on or off.
Definition: log.c:58
unsigned char tds_get_byte(TDSSOCKET *tds)
Return a single byte from the input buffer.
Definition: read.c:72
Definition: tds.h:1076
TDSRET tds_submit_query(TDSSOCKET *tds, const char *query)
Sends a language string to the database server for processing.
Definition: query.c:207
TDS_SERVER_TYPE column_type
This type can be different from wire type because conversion (e.g.
Definition: tds.h:702
this structure is not directed connected to a TDS protocol but keeps any DATE/TIME information...
Definition: tds.h:140
TDS_INT timezone
-840 - 840 minutes from UTC
Definition: tds.h:165
Definition: tds.h:1054
struct addrinfo * tds_lookup_host(const char *servername)
Get the IP address for a hostname.
Definition: config.c:971
TDS_INT quarter
quarter (0-3)
Definition: tds.h:156
int block_size
packet size (512-65535)
Definition: tds.h:973
int tds_read_packet(TDSSOCKET *tds)
Read in one &#39;packet&#39; from the server.
Definition: packet.c:530
int tds_select(TDSSOCKET *tds, unsigned tds_sel, int timeout_seconds)
Select on a socket until it&#39;s available or the timeout expires.
Definition: net.c:610
Holds information for a dynamic (also called prepared) query.
Definition: tds.h:984
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:1213
DSTR server_spn
server SPN (in freetds.conf)
Definition: tds.h:528
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:363
TDSPARAMINFO * params
query parameters.
Definition: tds.h:1015
Definition: tds.h:913
TDSRET tds_alloc_row(TDSRESULTINFO *res_info)
Allocate space for row store return NULL on out of memory.
Definition: mem.c:524
void tds_set_cur_dyn(TDSSOCKET *tds, TDSDYNAMIC *dyn)
Set current dynamic.
Definition: query.c:189
TDSRET tds_bcp_start(TDSSOCKET *tds, TDSBCPINFO *bcpinfo)
Start sending BCP data to server.
Definition: bulk.c:815
void tds_start_query(TDSSOCKET *tds, unsigned char packet_type)
Start query packet of a given type.
Definition: query.c:345
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:3280
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
struct tds_variant TDSVARIANT
Store variant informations.
TDS_INT ref_count
reference counter so client can retain safely a pointer
Definition: tds.h:947
DSTR password
password of account login
Definition: tds.h:535
void tds_detach_results(TDSRESULTINFO *info)
Detach result info from it current socket.
Definition: mem.c:488
size_t tds_fix_column_size(TDSSOCKET *tds, TDSCOLUMN *curcol)
Get column size for wire.
Definition: query.c:1531
void tds_free_param_result(TDSPARAMINFO *param_info)
Delete latest parameter.
Definition: mem.c:320
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:1187
unsigned char out_flag
output buffer type
Definition: tds.h:1179
TDS_INT year
year
Definition: tds.h:155
Definition: tds.h:324
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:501
Definition: tds.h:1070
void tdsdump_on(void)
Turn logging back on.
Definition: log.c:88
A structure to hold all the compile-time settings.
Definition: tds.h:78
char * query
SQL query.
Definition: tds.h:955
Definition: tds.h:1036
unsigned out_pos
current position in out_buf
Definition: tds.h:1176
TDSRET tds_submit_rollback(TDSSOCKET *tds, int cont)
Send a rollback request.
Definition: query.c:3686
TDS_INT num_id
numeric id for mssql7+
Definition: tds.h:989
struct tds_cursor * next
next in linked list, keep first
Definition: tds.h:946
TDSRET tds_bcp_init(TDSSOCKET *tds, TDSBCPINFO *bcpinfo)
Initialize BCP information.
Definition: bulk.c:82
void tds_release_dynamic(TDSDYNAMIC **dyn)
Frees dynamic statement.
Definition: mem.c:253
void tds_unget_byte(TDSSOCKET *tds)
Unget will always work as long as you don&#39;t call it twice in a row.
Definition: read.c:89
TDSPARAMINFO * res_info
query results
Definition: tds.h:1007
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:2090
int tdsdump_open(const char *filename)
Create and truncate a human readable dump file for the TDS traffic.
Definition: log.c:112
TDSRET tds_submit_rpc(TDSSOCKET *tds, const char *rpc_name, TDSPARAMINFO *params, TDSHEADERS *head)
Calls a RPC from server.
Definition: query.c:1988
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
void tds_fix_login(TDSLOGIN *login)
Fix configuration after reading it.
Definition: config.c:283
TDSRET tds_submit_queryf(TDSSOCKET *tds, const char *queryf,...)
Format and submit a query.
Definition: query.c:487
void tdsdump_off(void)
Temporarily turn off logging.
Definition: log.c:76
int tdserror(const TDSCONTEXT *tds_ctx, TDSSOCKET *tds, int msgno, int errnum)
Call the client library&#39;s error handler (for library-generated errors only)
Definition: util.c:307
void * tds_realloc(void **pp, size_t new_size)
Reallocate a pointer and update it if success.
Definition: mem.c:1822
TDSRET tds_deferred_cursor_dealloc(TDSCONNECTION *conn, TDSCURSOR *cursor)
Deallocate cursor on idle.
Definition: query.c:3096
struct tdsdaterec TDSDATEREC
Used by tds_datecrack.
const char * tds_prtype(int token)
Returns string representation of the given type.
Definition: token.c:3052
TDSRET tds_submit_begin_tran(TDSSOCKET *tds)
Send a rollback request.
Definition: query.c:3658
error occurred
Definition: tds.h:248
TDS_INT ref_count
reference counter so client can retain safely a pointer
Definition: tds.h:987
struct tds_blob TDSBLOB
Information about blobs (e.g.
unsigned in_len
input buffer length
Definition: tds.h:1177
int tds_needs_unprepare(TDSCONNECTION *conn, TDSDYNAMIC *dyn)
Check if dynamic request must be unprepared.
Definition: query.c:1809
void tds_set_param_type(TDSCONNECTION *conn, TDSCOLUMN *curcol, TDS_SERVER_TYPE type)
Set type of column initializing all dependency.
Definition: data.c:249
TDSDYNAMIC * tds_lookup_dynamic(TDSCONNECTION *conn, const char *id)
Finds a dynamic given string id.
Definition: token.c:2583
TDS_UINT product_version
version of product (Sybase/MS and full version)
Definition: tds.h:1079
TDS_UINT8 time
time, 7 digit precision
Definition: tds.h:142
struct tds_dynamic * next
next in linked list, keep first
Definition: tds.h:986
TDS_INT ret_status
return status from store procedure
Definition: tds.h:1210
TDS_USMALLINT * tds_config_verstr(const char *tdsver, TDSLOGIN *login)
Set TDS version from given string.
Definition: config.c:902
char * tds_get_home_file(const char *file)
Return filename from HOME directory.
Definition: config.c:323
DSTR server_realm_name
server realm name (in freetds.conf)
Definition: tds.h:527
TDSRET tds_writetext_end(TDSSOCKET *tds)
Finish sending writetext data.
Definition: bulk.c:1148
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:248
TDSRET tds_process_tokens(TDSSOCKET *tds, TDS_INT *result_type, int *done_flags, unsigned flag)
process all streams.
Definition: token.c:529
TDS_TINYINT column_prec
precision for decimal/numeric
Definition: tds.h:709
no connection
Definition: tds.h:803
TDSDYNAMIC * tds_alloc_dynamic(TDSCONNECTION *conn, const char *id)
Allocate a dynamic statement.
Definition: mem.c:160
TDS_INT month
month number (0-11)
Definition: tds.h:157
count field in packet is valid
Definition: tds.h:251
DSTR new_password
new password to set (TDS 7.2+)
Definition: tds.h:536
unsigned int out_buf_max
Maximum size of packet pointed by out_buf.
Definition: tds.h:1174
Definition: tds.h:516
TDS_INT decimicrosecond
0-9999999
Definition: tds.h:164
const char * tds_next_placeholder(const char *start)
Get position of next placeholder.
Definition: query.c:555
final result set, command completed successfully.
Definition: tds.h:246
TDS_INT column_size
maximun size of data.
Definition: tds.h:700
struct addrinfo * ip_addrs
ip(s) of server
Definition: tds.h:546
cilent is waiting for data
Definition: tds.h:801
TDS_USMALLINT tds_get_usmallint(TDSSOCKET *tds)
Get an int16 from the server.
Definition: read.c:113
int tds7_get_instance_ports(FILE *output, struct addrinfo *addr)
Get port of all instances.
Definition: net.c:1091
size_t tds_quote_id(TDSSOCKET *tds, char *buffer, const char *id, int idlen)
Quote an id.
Definition: query.c:2233
unsigned char in_flag
input buffer type
Definition: tds.h:1178
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
TDSDYNAMIC * dyns
list of dynamic allocated for this connection contains only dynamic allocated on the server ...
Definition: tds.h:1098
void * tds_alloc_param_data(TDSCOLUMN *curparam)
Allocate data for a parameter.
Definition: mem.c:364
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_INT minute
0-59
Definition: tds.h:162
const char * tds_skip_comment(const char *s)
Skip a comment in a query.
Definition: query.c:510
Information relevant to libiconv.
Definition: tds.h:616
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:206
TDS_UINT tds_get_uint(TDSSOCKET *tds)
Get an int32 from the server.
Definition: read.c:131
int tds_iconv_alloc(TDSCONNECTION *conn)
Allocate iconv stuff.
Definition: iconv.c:266
TDSRET tds_bcp_start_copy_in(TDSSOCKET *tds, TDSBCPINFO *bcpinfo)
Start bulk copy to server.
Definition: bulk.c:862
TDSRET tds_set_interfaces_file_loc(const char *interfloc)
Set the full name of interface file.
Definition: config.c:945
acknowledging an attention command (usually a cancel)
Definition: tds.h:252
unsigned in_pos
current position in in_buf
Definition: tds.h:1175
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:168
const char * name
name of the encoding (ie UTF-8)
Definition: tds.h:619
bool tds_set_server(TDSLOGIN *tds_login, const char *server) TDS_WUR
Set the servername in a TDSLOGIN structure.
Definition: login.c:125
TDSRET tds_process_login_tokens(TDSSOCKET *tds)
tds_process_login_tokens() is called after sending the login packet to the server.
Definition: token.c:409
struct tds_compiletime_settings TDS_COMPILETIME_SETTINGS
A structure to hold all the compile-time settings.
void tdsdump_log(const char *file, unsigned int level_line, const char *fmt,...)
Write a message to the debug log.
Definition: log.c:354
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:1211
client is reading data
Definition: tds.h:802
TDSRET tds_datecrack(TDS_INT datetype, const void *di, TDSDATEREC *dr)
Convert from db date format to a structured date format.
Definition: convert.c:3124
TDS_SYS_SOCKET s
tcp socket, INVALID_SOCKET if not connected
Definition: tds.h:1082