forked from arnaudsj/ChatScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpostgres.cpp
More file actions
528 lines (474 loc) · 14.7 KB
/
postgres.cpp
File metadata and controls
528 lines (474 loc) · 14.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
#include "common.h"
#ifndef DISCARDPOSTGRES
#include "postgres/libpq-fe.h"
static PGconn *conn; // shared db open stuff
static bool connDummy = false;
static char pguserFilename[MAX_WORD_SIZE];
// user files stored in postgres instead of file system
static PGconn *usersconn; // shared db open stuff used instead of files for userwrites
static char* pgfilesbuffer = 0;
char postgresparams[300]; // init string for pguser
// allow override of sql for user read and write
char postgresuserread[300];
char postgresuserinsert[300];
char postgresuserupdate[300];
char *pguserread = 0;
char *pguserinsert = 0;
char *pguserupdate = 0;
// default SQL to manage userfile info
//
// Note: PG code now uses parameter queries (see PQexecParams) so the insert
// and update sql must use the same parameters: $1 = userid, $2 = file.
//
char const * pgdefault_usercreate = "CREATE TABLE userfiles (userid varchar(400) PRIMARY KEY, file bytea);";
char const * pgdefault_userread = "SELECT file FROM userfiles WHERE userid = $1::varchar ;";
char const * pgdefault_userinsert = "INSERT INTO userfiles (file, userid) VALUES ($1::bytea, $2::varchar) ;";
char const * pgdefault_userupdate = "UPDATE userfiles SET file = $1::bytea WHERE userid = $2::varchar ;";
#ifdef WIN32
#pragma comment(lib, "../SRC/postgres/libpq.lib")
#endif
void PostgresShutDown() // script opened file
{
if (conn) PQfinish(conn);
conn = NULL;
}
FunctionResult DBCloseCode(char* buffer)
{
if (!conn)
{
if (connDummy)
{
connDummy = false;
return NOPROBLEM_BIT;
}
char* msg = "db not open\r\n";
SetUserVariable((char*)"$$db_error",msg); // pass along the error
Log(STDTRACELOG,msg);
return FAILRULE_BIT;
}
PostgresShutDown();
return (buffer == NULL) ? FAILRULE_BIT : NOPROBLEM_BIT; // special call requesting error return (not done in script)
}
FunctionResult DBInitCode(char* buffer)
{
char query[MAX_WORD_SIZE * 2];
char* ptr = SkipWhitespace(ARGUMENT(1));
if (!strnicmp(ptr,"EXISTS ",7))
{
ptr = ReadCompiledWord(ptr,query);
if (conn) return NOPROBLEM_BIT;
}
if (conn)
{
char* msg = "DB already opened\r\n";
SetUserVariable((char*)"$$db_error",msg); // pass along the error
if (trace & TRACE_SQL && CheckTopicTrace()) Log(STDTRACELOG,msg);
return FAILRULE_BIT;
}
FunctionResult result;
*query = 0;
FreshOutput(ptr,query,result,0, MAX_WORD_SIZE * 2);
if (result != NOPROBLEM_BIT) return result;
if (!stricmp(query,(char*)"null"))
{
connDummy = true;
return NOPROBLEM_BIT;
}
#ifdef WIN32
if (InitWinsock() == FAILRULE_BIT)
{
if (trace & TRACE_SQL && CheckTopicTrace()) Log(STDTRACELOG, "WSAStartup failed\r\n");
return FAILRULE_BIT;
}
#endif
/* Make a connection to the database */
conn = PQconnectdb(query);
/* Check to see that the backend connection was successfully made */
if (PQstatus(conn) != CONNECTION_OK)
{
char msg[MAX_WORD_SIZE];
sprintf(msg,(char*)"%s - %s\r\n",query,PQerrorMessage(conn));
SetUserVariable((char*)"$$db_error",msg); // pass along the error
if (trace & TRACE_SQL && CheckTopicTrace()) Log(STDTRACELOG, "Connection failed: %s", msg);
return DBCloseCode(NULL);
}
return NOPROBLEM_BIT;
}
char hexbytes[] = {'0','1','2','3','4','5','6','7','8','9','a','b','c','d','e','f'};
static void AdjustQuotes(char* fix,bool nocloser)
{
char* start = fix;
while ((fix = strchr(fix,'\'')))
{
char* end = fix + 1;
while ((end = strchr(end,'\''))) // finding end
{
if (end[1] == ' ' || end[1] == ';' || end[1] == '\t' || end[1] == '\n' || end[1] == '\r' || end[1] == ')'|| end[1] == '('|| end[1] == ',') // real end of token
{
fix = end;
}
else // internal ' needs converting
{
memmove(fix+1,fix,strlen(fix)+1);
fix++; // should we find no real end, this will move us past
}
break;
}
if (!end && nocloser)
{
memmove(fix+1,fix,strlen(fix)+1);
fix++; // should we find no real end, this will move us past
}
++fix; // always make progress
}
}
void PGUserFilesCloseCode()
{
if (!usersconn) return;
conn = usersconn;
FunctionResult result = DBCloseCode(NULL);
InitUserFiles(); // default back to normal filesystem
usersconn = NULL;
FreeBuffer();
pgfilesbuffer = 0;
}
FILE* pguserCreate(const char* name)
{
strcpy(pguserFilename,name);
return (FILE*)pguserFilename;
}
FILE* pguserOpen(const char* name)
{
strcpy(pguserFilename,name);
return (FILE*)pguserFilename;
}
int pguserClose(FILE*)
{
return 0;
}
static size_t convertFromHex(unsigned char* ptr,unsigned char* from)
{
unsigned char* start = ptr;
*ptr = 0;
if (!from || !*from) return 0;
if (*from++ != '\\') return 0;
else if (*from++ != 'x') return 0;
while (*from)
{
unsigned char c = *from++;
unsigned char d = *from++;
c = (c <= '9') ? (c - '0') : (c - 'a' + 10);
d = (d <= '9') ? (d - '0') : (d - 'a' + 10);
*ptr++ = (c << 4) | d;
if ((ptr-start+10) > (int)userCacheSize)
{
*start = 0;
ReportBug("User %s file too big",loginID);
return 0;
}
}
*ptr = 0;
return ptr - start;
}
size_t pguserRead(void* buf,size_t size, size_t count, FILE* file)
{
char* buffer = (char*)buf;
// has read sql been overridden?
const char * readsql = 0;
if (pguserread != 0) readsql = pguserread;
else readsql = pgdefault_userread; // // use default sql one table per user
if (trace) Log(STDTRACELOG,buffer);
const char* paramValues[1] = {(char*)pguserFilename};
PGresult *res = PQexecParams(usersconn,
readsql,
1,
NULL,
paramValues,
NULL,
NULL,
0);
int status = (int) PQresultStatus(res);
if (status == PGRES_BAD_RESPONSE || status == PGRES_FATAL_ERROR || status == PGRES_NONFATAL_ERROR)
{
//char* msg = PQerrorMessage(usersconn);
PQclear(res);
return 0;
}
size = 0;
*buffer = 0;
// process answers
if (status == PGRES_TUPLES_OK && PQntuples(res) == 1) // shall only be 1 record matching at most and we get back just one field
{
size = convertFromHex((unsigned char*)buffer,(unsigned char*)PQgetvalue(res, 0, 0));
}
PQclear(res);
return size;
}
static void convert2Hex(unsigned char* ptr, size_t len, unsigned char* buffer)
{
strcpy((char*)buffer,(char*)"E'\\\\x");
buffer += strlen((char*) buffer);
while (len--)
{
unsigned char first = (*ptr) >> 4;
unsigned char second = *ptr++ & 0x0f;
*buffer++ = hexbytes[first];
*buffer++ = hexbytes[second];
}
*buffer++ = '\'';
*buffer++ = 0;
}
size_t pguserWrite(const void* buf,size_t size, size_t count, FILE* file)
{
const char *insertsql = pgdefault_userinsert;
const char *updatesql = pgdefault_userupdate;
if (pguserinsert)
{
insertsql = pguserinsert;
// expectation is that insert and update sql will be overridded,
// or insertsql will be overridden and no update will be provided.
// e.g. if the insertsql is a stored proc that does an upsert
updatesql = 0; // can be null
}
if (pguserupdate) updatesql = pguserupdate;
// convert user data to hex
unsigned char* buffer = (unsigned char*)buf;
convert2Hex(buffer, size * count,(unsigned char*) pgfilesbuffer); // does an update
// run insert sql
// params are
// $1::bytea - filedata
// $2::varchar - userid
const char *paramValues[2] = {(char*)buffer, (char*)pguserFilename};
PGresult *res = PQexecParams(usersconn,
insertsql,
2,
NULL,
paramValues,
NULL,
NULL,
0);
int status = (int) PQresultStatus(res);
PQclear(res);
if (status == PGRES_FATAL_ERROR && updatesql) // we don't already have a record
{
// call update sql with same args as insert sql
res = PQexecParams(usersconn,
updatesql,
2,
NULL,
paramValues,
NULL,
NULL,
0);
status = (int) PQresultStatus(res);
PQclear(res);
}
if (status == PGRES_BAD_RESPONSE || status == PGRES_FATAL_ERROR || status == PGRES_NONFATAL_ERROR)
{
ReportBug("Postgres filessys write failed for %s",pguserFilename);
}
return size * count;
}
void PGUserFilesCode()
{
#ifdef WIN32
if (InitWinsock() == FAILRULE_BIT) ReportBug((char*)"FATAL: WSAStartup failed\r\n");
#endif
/* Make a connection to the database */
char query[MAX_WORD_SIZE];
int dbname_specified = 0;
// Do not hardcode the database name if it is already specified
if (strstr(postgresparams, "dbname=") || strstr(postgresparams, "dbname ="))
{
// dbname already specified
dbname_specified = 1;
sprintf(query,(char*)"%s",postgresparams);
}
else
{
// original code: connect to users db
sprintf(query,(char*)"%s dbname = users ",postgresparams);
}
usersconn = PQconnectdb(query);
if (PQstatus(usersconn) != CONNECTION_OK) // users not there yet...
{
if (dbname_specified)
{
DBCloseCode(NULL);
ReportBug((char*)"FATAL: Failed to open postgres db %s",postgresparams);
}
// dbname not specified; attempt to create users db
sprintf(query,(char*)"%s dbname = postgres ",postgresparams);
usersconn = PQconnectdb(query);
ConnStatusType statusType = PQstatus(usersconn);
if (statusType != CONNECTION_OK) // cant reach postgres
{
DBCloseCode(NULL);
ReportBug((char*)"FATAL: Failed to open postgres db %s and root db postgres",postgresparams);
}
PGresult *res = PQexec(usersconn, "CREATE DATABASE users;");
int status = (int) PQresultStatus(res);
char* msg;
if (status == PGRES_BAD_RESPONSE || status == PGRES_FATAL_ERROR || status == PGRES_NONFATAL_ERROR) msg = PQerrorMessage(usersconn);
if (PQstatus(usersconn) != CONNECTION_OK) // cant reach postgres
{
DBCloseCode(NULL);
ReportBug((char*)"FATAL: Failed to open users db %s",postgresparams);
}
sprintf(query,(char*)"%s dbname = users ",postgresparams);
usersconn = PQconnectdb(query);
if (PQstatus(usersconn) != CONNECTION_OK) // users not there yet...
{
DBCloseCode(NULL);
ReportBug((char*)"FATAL: Failed to open users db %s",postgresparams);
}
}
// these are dynamically stored, so CS can be a DLL.
pgfilesbuffer = AllocateBuffer(); // stays globally locked down - may not be big enough
userFileSystem.userCreate = pguserCreate;
userFileSystem.userOpen = pguserOpen;
userFileSystem.userClose = pguserClose;
userFileSystem.userRead = pguserRead;
userFileSystem.userWrite = pguserWrite;
userFileSystem.userDelete = NULL;
filesystemOverride = POSTGRESFILES;
if (!dbname_specified)
{
// if dbname is not specified, original behavior is to attempt to create a userfiles table
PGresult *res = PQexec(usersconn, "CREATE TABLE userfiles (userid varchar(400) PRIMARY KEY, file bytea);");
int status = (int) PQresultStatus(res);
char* msg;
if (status == PGRES_BAD_RESPONSE || status == PGRES_FATAL_ERROR || status == PGRES_NONFATAL_ERROR) msg = PQerrorMessage(usersconn);
msg = NULL;
}
}
FunctionResult DBExecuteCode(char* buffer)
{
if (!conn)
{
if (connDummy) return NOPROBLEM_BIT;
if (buffer)
{
char* msg = "DB not opened\r\n";
SetUserVariable((char*)"$$db_error",msg); // pass along the error
if (trace & TRACE_SQL && CheckTopicTrace()) Log(STDTRACELOG,msg);
}
return FAILRULE_BIT;
}
char* arg1 = ARGUMENT(1);
PGresult *res;
FunctionResult result = NOPROBLEM_BIT;
char query[MAX_WORD_SIZE * 2];
char fn[MAX_WORD_SIZE];
char* ptr = GetCommandArg(arg1,buffer,result,OUTPUT_NOQUOTES);
if (result != NOPROBLEM_BIT) return result;
if (strlen(buffer) >= (MAX_WORD_SIZE * 2)) return FAILRULE_BIT;
strcpy(query,buffer);
ReadShortCommandArg(ptr,fn,result,OUTPUT_NOQUOTES);
if (result != NOPROBLEM_BIT) return result;
// convert \" to " within params
char* fix;
while ((fix = strchr(query,'\\'))) memmove(fix,fix+1,strlen(fix)); // remove protective backslash
// fix ' to '' inside a param
AdjustQuotes(query,false);
// adjust function reference name
char* function = fn;
if (*function == '\'') ++function; // skip over the '
unsigned int argflags = 0;
WORDP FN = (*function) ? FindWord(function) : NULL;
if (FN)
{
unsigned char* defn = GetDefinition(FN);
char junk[MAX_WORD_SIZE];
defn = (unsigned char*) ReadCompiledWord((char*)defn, junk); // skip over botid
int flags;
ReadInt((char*)defn, flags);
argflags = flags;
}
if (trace & TRACE_SQL && CheckTopicTrace()) Log(STDTRACELOG, "DBExecute command %s\r\n", query);
res = PQexec(conn, query);
int status = (int) PQresultStatus(res);
if (status == PGRES_BAD_RESPONSE || status == PGRES_FATAL_ERROR || status == PGRES_NONFATAL_ERROR)
{
char* msg = PQerrorMessage(conn);
if (buffer)
{
SetUserVariable((char*)"$$db_error",msg); // pass along the error
if (trace & TRACE_SQL && CheckTopicTrace()) Log(STDTRACELOG, "DBExecute command failed: %s %s status:%d\r\n", arg1,msg,status);
}
PQclear(res);
return FAILRULE_BIT;
}
char* psBuffer = AllocateStack(NULL,MAX_BUFFER_SIZE);
if (*function && status == PGRES_TUPLES_OK) // do something with the answers
{
psBuffer[0] = '(';
psBuffer[1] = ' ';
// process answers
unsigned int limit = (unsigned int) PQntuples(res);
unsigned int fields = (unsigned int) PQnfields(res);
for (unsigned int i = 0; i < limit; i++) // for each row
{
char* at = psBuffer+2;
for (unsigned int j = 0; j < fields; j++)
{
// char *PQfname(const PGresult *res,int column_number); // get colum name
// int PQfnumber(const PGresult *res, const char *column_name);
Oid type = PQftype(res, j);
bool keepQuotes = (argflags & ( 1 << j)) ? 1 : 0; // want to use quotes
*at = 0;
char* val = PQgetvalue(res, i, j);
size_t len = strlen(val);
if (len > (maxBufferSize - 100)) // overflow
{
PQclear(res);
ReleaseStack(psBuffer); // short term
return FAILRULE_BIT;
}
if (keepQuotes)
{
*at++ = '"';
strcpy(at,val);
char* x = at;
while ((x = strchr(x,'"'))) // protect internal quotes
{
memmove(x+1,x,strlen(x)+1);
*x = '\\';
x += 2;
}
at += strlen(at);
*at++ = '"';
}
else // normal procesing
{
sprintf(at,(char*)"%s",val);
at += strlen(at);
}
*at++ = ' ';
if ((unsigned int)(at - psBuffer) > (maxBufferSize - 100))
{
ReportBug((char*)"postgres answer overflow %s -> %s\r\n",query,psBuffer);
break;
}
}
*at = 0;
strcpy(at,(char*)")"); // ending paren
if (trace & TRACE_SQL && CheckTopicTrace()) Log(STDTRACELOG, "DBExecute results %s\r\n", psBuffer);
if (stricmp(function,(char*)"null")) DoFunction(function,psBuffer,buffer,result);
buffer += strlen(buffer);
if (result != 0)
{
if (result == UNDEFINED_FUNCTION) result = FAILRULE_BIT;
char msg[MAX_WORD_SIZE];
sprintf(msg,(char*)"Failed %s%s\r\n",function,psBuffer);
SetUserVariable((char*)"$$db_error",msg); // pass along the error
if (trace & TRACE_SQL && CheckTopicTrace()) Log(STDTRACELOG,msg);
break; // failed somehow
}
}
}
ReleaseStack(psBuffer); // short term
PQclear(res);
return result;
}
#endif