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