]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/extra/m_pgsql.cpp
Fix for rehash/load/unload.
[user/henk/code/inspircd.git] / src / modules / extra / m_pgsql.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #include <cstdlib>
15 #include <sstream>
16 #include <string>
17 #include <deque>
18 #include <map>
19 #include <libpq-fe.h>
20
21 #include "users.h"
22 #include "channels.h"
23 #include "modules.h"
24
25 #include "inspircd.h"
26 #include "configreader.h"
27
28 #include "m_sqlv2.h"
29
30 /* $ModDesc: PostgreSQL Service Provider module for all other m_sql* modules, uses v2 of the SQL API */
31 /* $CompileFlags: -I`pg_config --includedir` `perl extra/pgsql_config.pl` */
32 /* $LinkerFlags: -L`pg_config --libdir` -lpq */
33 /* $ModDep: m_sqlv2.h */
34
35 /* UGH, UGH, UGH, UGH, UGH, UGH
36  * I'm having trouble seeing how I
37  * can avoid this. The core-defined
38  * constructors for InspSocket just
39  * aren't suitable...and if I'm
40  * reimplementing them I need this so
41  * I can access the socket engine :\
42  */
43
44 /* Forward declare, so we can have the typedef neatly at the top */
45 class SQLConn;
46 /* Also needs forward declaration, as it's used inside SQLconn */
47 class ModulePgSQL;
48
49 typedef std::map<std::string, SQLConn*> ConnMap;
50
51 /* CREAD,       Connecting and wants read event
52  * CWRITE,      Connecting and wants write event
53  * WREAD,       Connected/Working and wants read event
54  * WWRITE,      Connected/Working and wants write event
55  * RREAD,       Resetting and wants read event
56  * RWRITE,      Resetting and wants write event
57  */
58 enum SQLstatus { CREAD, CWRITE, WREAD, WWRITE, RREAD, RWRITE };
59
60 /** SQLhost, simple structure to store information about a SQL-connection-to-be
61  * We use this struct simply to make it neater passing around host information
62  * when we're creating connections and resolving hosts.
63  * Rather than giving SQLresolver a parameter for every field here so it can in
64  * turn call SQLConn's constructor with them all, both can simply use a SQLhost.
65  */
66 class SQLhost
67 {
68  public:
69         std::string     id;     /* Database handle id */
70         std::string     host;   /* Database server hostname */
71         unsigned int    port;   /* Database server port */
72         std::string     name;   /* Database name */
73         std::string     user;   /* Database username */
74         std::string     pass;   /* Database password */
75         bool            ssl;    /* If we should require SSL */
76  
77         SQLhost()
78         {
79         }               
80
81         SQLhost(const std::string& i, const std::string& h, unsigned int p, const std::string& n, const std::string& u, const std::string& pa, bool s)
82         : id(i), host(h), port(p), name(n), user(u), pass(pa), ssl(s)
83         {
84         }
85 };
86
87 /** Used to resolve sql server hostnames
88  */
89 class SQLresolver : public Resolver
90 {
91  private:
92         SQLhost host;
93         ModulePgSQL* mod;
94  public:
95         SQLresolver(ModulePgSQL* m, InspIRCd* Instance, const SQLhost& hi)
96         : Resolver(Instance, hi.host, DNS_QUERY_FORWARD, (Module*)m), host(hi), mod(m)
97         {
98         }
99
100         virtual void OnLookupComplete(const std::string &result);
101
102         virtual void OnError(ResolverError e, const std::string &errormessage)
103         {
104                 ServerInstance->Log(DEBUG, "DNS lookup failed (%s), dying horribly", errormessage.c_str());
105         }
106
107         virtual ~SQLresolver()
108         {
109         }
110 };
111
112 /** QueryQueue, a queue of queries waiting to be executed.
113  * This maintains two queues internally, one for 'priority'
114  * queries and one for less important ones. Each queue has
115  * new queries appended to it and ones to execute are popped
116  * off the front. This keeps them flowing round nicely and no
117  * query should ever get 'stuck' for too long. If there are
118  * queries in the priority queue they will be executed first,
119  * 'unimportant' queries will only be executed when the
120  * priority queue is empty.
121  *
122  * We store lists of SQLrequest's here, by value as we want to avoid storing
123  * any data allocated inside the client module (in case that module is unloaded
124  * while the query is in progress).
125  *
126  * Because we want to work on the current SQLrequest in-situ, we need a way
127  * of accessing the request we are currently processing, QueryQueue::front(),
128  * but that call needs to always return the same request until that request
129  * is removed from the queue, this is what the 'which' variable is. New queries are
130  * always added to the back of one of the two queues, but if when front()
131  * is first called then the priority queue is empty then front() will return
132  * a query from the normal queue, but if a query is then added to the priority
133  * queue then front() must continue to return the front of the *normal* queue
134  * until pop() is called.
135  */
136
137 class QueryQueue : public classbase
138 {
139 private:
140         typedef std::deque<SQLrequest> ReqDeque;        
141
142         ReqDeque priority;      /* The priority queue */
143         ReqDeque normal;        /* The 'normal' queue */
144         enum { PRI, NOR, NON } which;   /* Which queue the currently active element is at the front of */
145
146 public:
147         QueryQueue()
148         : which(NON)
149         {
150         }
151         
152         void push(const SQLrequest &q)
153         {
154                 //ServerInstance->Log(DEBUG, "QueryQueue::push(): Adding %s query to queue: %s", ((q.pri) ? "priority" : "non-priority"), q.query.q.c_str());
155                 
156                 if(q.pri)
157                         priority.push_back(q);
158                 else
159                         normal.push_back(q);
160         }
161         
162         void pop()
163         {
164                 if((which == PRI) && priority.size())
165                 {
166                         priority.pop_front();
167                 }
168                 else if((which == NOR) && normal.size())
169                 {
170                         normal.pop_front();
171                 }
172                 
173                 /* Reset this */
174                 which = NON;
175                 
176                 /* Silently do nothing if there was no element to pop() */
177         }
178         
179         SQLrequest& front()
180         {
181                 switch(which)
182                 {
183                         case PRI:
184                                 return priority.front();
185                         case NOR:
186                                 return normal.front();
187                         default:
188                                 if(priority.size())
189                                 {
190                                         which = PRI;
191                                         return priority.front();
192                                 }
193                                 
194                                 if(normal.size())
195                                 {
196                                         which = NOR;
197                                         return normal.front();
198                                 }
199                                 
200                                 /* This will probably result in a segfault,
201                                  * but the caller should have checked totalsize()
202                                  * first so..meh - moron :p
203                                  */
204                                 
205                                 return priority.front();
206                 }
207         }
208         
209         std::pair<int, int> size()
210         {
211                 return std::make_pair(priority.size(), normal.size());
212         }
213         
214         int totalsize()
215         {
216                 return priority.size() + normal.size();
217         }
218         
219         void PurgeModule(Module* mod)
220         {
221                 DoPurgeModule(mod, priority);
222                 DoPurgeModule(mod, normal);
223         }
224         
225 private:
226         void DoPurgeModule(Module* mod, ReqDeque& q)
227         {
228                 for(ReqDeque::iterator iter = q.begin(); iter != q.end(); iter++)
229                 {
230                         if(iter->GetSource() == mod)
231                         {
232                                 if(iter->id == front().id)
233                                 {
234                                         /* It's the currently active query.. :x */
235                                         iter->SetSource(NULL);
236                                 }
237                                 else
238                                 {
239                                         /* It hasn't been executed yet..just remove it */
240                                         iter = q.erase(iter);
241                                 }
242                         }
243                 }
244         }
245 };
246
247 /** PgSQLresult is a subclass of the mostly-pure-virtual class SQLresult.
248  * All SQL providers must create their own subclass and define it's methods using that
249  * database library's data retriveal functions. The aim is to avoid a slow and inefficient process
250  * of converting all data to a common format before it reaches the result structure. This way
251  * data is passes to the module nearly as directly as if it was using the API directly itself.
252  */
253
254 class PgSQLresult : public SQLresult
255 {
256         PGresult* res;
257         int currentrow;
258         int rows;
259         int cols;
260         
261         SQLfieldList* fieldlist;
262         SQLfieldMap* fieldmap;
263 public:
264         PgSQLresult(Module* self, Module* to, unsigned long id, PGresult* result)
265         : SQLresult(self, to, id), res(result), currentrow(0), fieldlist(NULL), fieldmap(NULL)
266         {
267                 rows = PQntuples(res);
268                 cols = PQnfields(res);
269                 
270                 //ServerInstance->Log(DEBUG, "Created new PgSQL result; %d rows, %d columns, %s affected", rows, cols, PQcmdTuples(res));
271         }
272         
273         ~PgSQLresult()
274         {
275                 /* If we allocated these, free them... */
276                 if(fieldlist)
277                         DELETE(fieldlist);
278                 
279                 if(fieldmap)
280                         DELETE(fieldmap);
281                 
282                 PQclear(res);
283         }
284         
285         virtual int Rows()
286         {
287                 if(!cols && !rows)
288                 {
289                         return atoi(PQcmdTuples(res));
290                 }
291                 else
292                 {
293                         return rows;
294                 }
295         }
296         
297         virtual int Cols()
298         {
299                 return PQnfields(res);
300         }
301         
302         virtual std::string ColName(int column)
303         {
304                 char* name = PQfname(res, column);
305                 
306                 return (name) ? name : "";
307         }
308         
309         virtual int ColNum(const std::string &column)
310         {
311                 int n = PQfnumber(res, column.c_str());
312                 
313                 if(n == -1)
314                 {
315                         throw SQLbadColName();
316                 }
317                 else
318                 {
319                         return n;
320                 }
321         }
322         
323         virtual SQLfield GetValue(int row, int column)
324         {
325                 char* v = PQgetvalue(res, row, column);
326                 
327                 if(v)
328                 {
329                         return SQLfield(std::string(v, PQgetlength(res, row, column)), PQgetisnull(res, row, column));
330                 }
331                 else
332                 {
333                         //ServerInstance->Log(DEBUG, "PQgetvalue returned a null pointer..nobody wants to tell us what this means");
334                         throw SQLbadColName();
335                 }
336         }
337         
338         virtual SQLfieldList& GetRow()
339         {
340                 /* In an effort to reduce overhead we don't actually allocate the list
341                  * until the first time it's needed...so...
342                  */
343                 if(fieldlist)
344                 {
345                         fieldlist->clear();
346                 }
347                 else
348                 {
349                         fieldlist = new SQLfieldList;
350                 }
351                 
352                 if(currentrow < PQntuples(res))
353                 {
354                         int cols = PQnfields(res);
355                         
356                         for(int i = 0; i < cols; i++)
357                         {
358                                 fieldlist->push_back(GetValue(currentrow, i));
359                         }
360                         
361                         currentrow++;
362                 }
363                 
364                 return *fieldlist;
365         }
366         
367         virtual SQLfieldMap& GetRowMap()
368         {
369                 /* In an effort to reduce overhead we don't actually allocate the map
370                  * until the first time it's needed...so...
371                  */
372                 if(fieldmap)
373                 {
374                         fieldmap->clear();
375                 }
376                 else
377                 {
378                         fieldmap = new SQLfieldMap;
379                 }
380                 
381                 if(currentrow < PQntuples(res))
382                 {
383                         int cols = PQnfields(res);
384                         
385                         for(int i = 0; i < cols; i++)
386                         {
387                                 fieldmap->insert(std::make_pair(ColName(i), GetValue(currentrow, i)));
388                         }
389                         
390                         currentrow++;
391                 }
392                 
393                 return *fieldmap;
394         }
395         
396         virtual SQLfieldList* GetRowPtr()
397         {
398                 SQLfieldList* fl = new SQLfieldList;
399                 
400                 if(currentrow < PQntuples(res))
401                 {
402                         int cols = PQnfields(res);
403                         
404                         for(int i = 0; i < cols; i++)
405                         {
406                                 fl->push_back(GetValue(currentrow, i));
407                         }
408                         
409                         currentrow++;
410                 }
411                 
412                 return fl;
413         }
414         
415         virtual SQLfieldMap* GetRowMapPtr()
416         {
417                 SQLfieldMap* fm = new SQLfieldMap;
418                 
419                 if(currentrow < PQntuples(res))
420                 {
421                         int cols = PQnfields(res);
422                         
423                         for(int i = 0; i < cols; i++)
424                         {
425                                 fm->insert(std::make_pair(ColName(i), GetValue(currentrow, i)));
426                         }
427                         
428                         currentrow++;
429                 }
430                 
431                 return fm;
432         }
433         
434         virtual void Free(SQLfieldMap* fm)
435         {
436                 DELETE(fm);
437         }
438         
439         virtual void Free(SQLfieldList* fl)
440         {
441                 DELETE(fl);
442         }
443 };
444
445 /** SQLConn represents one SQL session.
446  * Each session has its own persistent connection to the database.
447  * This is a subclass of InspSocket so it can easily recieve read/write events from the core socket
448  * engine, unlike the original MySQL module this module does not block. Ever. It gets a mild stabbing
449  * if it dares to.
450  */
451
452 class SQLConn : public InspSocket
453 {
454 private:
455         ModulePgSQL* us;                /* Pointer to the SQL provider itself */
456         std::string     dbhost; /* Database server hostname */
457         unsigned int    dbport; /* Database server port */
458         std::string     dbname; /* Database name */
459         std::string     dbuser; /* Database username */
460         std::string     dbpass; /* Database password */
461         bool                    ssl;    /* If we should require SSL */
462         PGconn*                 sql;    /* PgSQL database connection handle */
463         SQLstatus               status; /* PgSQL database connection status */
464         bool                    qinprog;/* If there is currently a query in progress */
465         QueryQueue              queue;  /* Queue of queries waiting to be executed on this connection */
466         time_t                  idle;   /* Time we last heard from the database */
467
468 public:
469
470         /* This class should only ever be created inside this module, using this constructor, so we don't have to worry about the default ones */
471
472         SQLConn(InspIRCd* SI, ModulePgSQL* self, const SQLhost& hostinfo);
473
474         ~SQLConn();
475
476         bool DoConnect();
477
478         virtual void Close();
479         
480         bool DoPoll();
481         
482         bool DoConnectedPoll();
483
484         bool DoResetPoll();
485         
486         void ShowStatus();      
487         
488         virtual bool OnDataReady();
489
490         virtual bool OnWriteReady();
491         
492         virtual bool OnConnected();
493         
494         bool DoEvent();
495         
496         bool Reconnect();
497         
498         std::string MkInfoStr();
499         
500         const char* StatusStr();
501         
502         SQLerror DoQuery(SQLrequest &req);
503         
504         SQLerror Query(const SQLrequest &req);
505         
506         void OnUnloadModule(Module* mod);
507 };
508
509 class ModulePgSQL : public Module
510 {
511 private:
512         
513         ConnMap connections;
514         unsigned long currid;
515         char* sqlsuccess;
516
517 public:
518         ModulePgSQL(InspIRCd* Me)
519         : Module::Module(Me), currid(0)
520         {
521                 ServerInstance->UseInterface("SQLutils");
522
523                 sqlsuccess = new char[strlen(SQLSUCCESS)+1];
524                 
525                 strlcpy(sqlsuccess, SQLSUCCESS, strlen(SQLSUCCESS)+1);
526
527                 if (!ServerInstance->PublishFeature("SQL", this))
528                 {
529                         throw ModuleException("m_pgsql: Unable to publish feature 'SQL'");
530                 }
531
532                 OnRehash("");
533
534                 ServerInstance->PublishInterface("SQL", this);
535         }
536
537         virtual ~ModulePgSQL()
538         {
539                 DELETE(sqlsuccess);
540                 ClearConnections();
541                 ServerInstance->UnpublishInterface("SQL", this);
542                 ServerInstance->UnpublishFeature("SQL");
543                 ServerInstance->DoneWithInterface("SQLutils");
544         }       
545
546
547         void Implements(char* List)
548         {
549                 List[I_OnUnloadModule] = List[I_OnRequest] = List[I_OnRehash] = List[I_OnUserRegister] = List[I_OnCheckReady] = List[I_OnUserDisconnect] = 1;
550         }
551
552         void ClearConnections()
553         {
554                 ConnMap::iterator iter;
555                 while ((iter = connections.begin()) != connections.end())
556                 {
557                         connections.erase(iter);
558                         DELETE(iter->second);
559                 }
560         }
561
562         virtual void OnRehash(const std::string &parameter)
563         {
564                 
565                 ServerInstance->Log(DEBUG, "<*********> OnRehash parameter: " + parameter);
566                 
567                 ConfigReader conf(ServerInstance);
568
569                 ClearConnections();             
570
571                 for(int i = 0; i < conf.Enumerate("database"); i++)
572                 {
573                         SQLhost host;                   
574                         int ipvalid;
575                         insp_inaddr blargle;
576                         
577                         host.id         = conf.ReadValue("database", "id", i);
578                         host.host       = conf.ReadValue("database", "hostname", i);
579                         host.port       = conf.ReadInteger("database", "port", i, true);
580                         host.name       = conf.ReadValue("database", "name", i);
581                         host.user       = conf.ReadValue("database", "username", i);
582                         host.pass       = conf.ReadValue("database", "password", i);
583                         host.ssl        = conf.ReadFlag("database", "ssl", i);
584                         
585                         ipvalid = insp_aton(host.host.c_str(), &blargle);
586                         
587                         if(ipvalid > 0)
588                         {
589                                 /* The conversion succeeded, we were given an IP and we can give it straight to SQLConn */
590                                 this->AddConn(host);
591                         }
592                         else if(ipvalid == 0)
593                         {
594                                 /* Conversion failed, assume it's a host */
595                                 SQLresolver* resolver;
596                                 
597                                 try
598                                 {
599                                         resolver = new SQLresolver(this, ServerInstance, host);
600                                         
601                                         ServerInstance->AddResolver(resolver);
602                                 }
603                                 catch(...)
604                                 {
605                                         ServerInstance->Log(DEBUG, "Couldn't make a SQLresolver..this connection is gonna diiiiiie...actually we just won't create it");
606                                 }
607                         }
608                         else
609                         {
610                                 /* Invalid address family, die horribly. */
611                                 ServerInstance->Log(DEBUG, "insp_aton failed returning -1, oh noes.");
612                         }
613                 }       
614         }
615         
616         void AddConn(const SQLhost& hi)
617         {
618                 SQLConn* newconn;
619                                 
620                 /* The conversion succeeded, we were given an IP and we can give it straight to SQLConn */
621                 newconn = new SQLConn(ServerInstance, this, hi);
622                                 
623                 connections.insert(std::make_pair(hi.id, newconn));
624         }
625         
626         virtual char* OnRequest(Request* request)
627         {
628                 if(strcmp(SQLREQID, request->GetId()) == 0)
629                 {
630                         SQLrequest* req = (SQLrequest*)request;
631                         ConnMap::iterator iter;
632                 
633                         ServerInstance->Log(DEBUG, "Got query: '%s' with %d replacement parameters on id '%s'", req->query.q.c_str(), req->query.p.size(), req->dbid.c_str());
634
635                         if((iter = connections.find(req->dbid)) != connections.end())
636                         {
637                                 /* Execute query */
638                                 req->id = NewID();
639                                 req->error = iter->second->Query(*req);
640                                 
641                                 return (req->error.Id() == NO_ERROR) ? sqlsuccess : NULL;
642                         }
643                         else
644                         {
645                                 req->error.Id(BAD_DBID);
646                                 return NULL;
647                         }
648                 }
649
650                 ServerInstance->Log(DEBUG, "Got unsupported API version string: %s", request->GetId());
651                 
652                 return NULL;
653         }
654         
655         virtual void OnUnloadModule(Module* mod, const std::string&     name)
656         {
657                 /* When a module unloads we have to check all the pending queries for all our connections
658                  * and set the Module* specifying where the query came from to NULL. If the query has already
659                  * been dispatched then when it is processed it will be dropped if the pointer is NULL.
660                  *
661                  * If the queries we find are not already being executed then we can simply remove them immediately.
662                  */
663                 for(ConnMap::iterator iter = connections.begin(); iter != connections.end(); iter++)
664                 {
665                         iter->second->OnUnloadModule(mod);
666                 }
667         }
668
669         unsigned long NewID()
670         {
671                 if (currid+1 == 0)
672                         currid++;
673                 
674                 return ++currid;
675         }
676                 
677         virtual Version GetVersion()
678         {
679                 return Version(1, 1, 0, 0, VF_VENDOR|VF_SERVICEPROVIDER, API_VERSION);
680         }
681
682 };
683
684 SQLConn::SQLConn(InspIRCd* SI, ModulePgSQL* self, const SQLhost& hi)
685 : InspSocket::InspSocket(SI), us(self), dbhost(hi.host), dbport(hi.port), dbname(hi.name), dbuser(hi.user), dbpass(hi.pass), ssl(hi.ssl), sql(NULL), status(CWRITE), qinprog(false)
686 {
687         //ServerInstance->Log(DEBUG, "Creating new PgSQL connection to database %s on %s:%u (%s/%s)", dbname.c_str(), dbhost.c_str(), dbport, dbuser.c_str(), dbpass.c_str());
688
689         /* Some of this could be reviewed, unsure if I need to fill 'host' etc...
690          * just copied this over from the InspSocket constructor.
691          */
692         strlcpy(this->host, dbhost.c_str(), MAXBUF);
693         strlcpy(this->IP, dbhost.c_str(), MAXBUF);
694         this->port = dbport;
695         idle = this->Instance->Time();
696         
697         this->ClosePending = false;
698                         
699         Instance->Log(DEBUG,"No need to resolve %s", this->host);
700         
701         if(!this->DoConnect())
702         {
703                 throw ModuleException("Connect failed");
704         }
705 }
706
707 SQLConn::~SQLConn()
708 {
709         Close();
710 }
711
712 bool SQLConn::DoConnect()
713 {
714         //ServerInstance->Log(DEBUG, "SQLConn::DoConnect()");
715         
716         if(!(sql = PQconnectStart(MkInfoStr().c_str())))
717         {
718                 Instance->Log(DEBUG, "Couldn't allocate PGconn structure, aborting: %s", PQerrorMessage(sql));
719                 Close();
720                 return false;
721         }
722         
723         if(PQstatus(sql) == CONNECTION_BAD)
724         {
725                 Instance->Log(DEBUG, "PQconnectStart failed: %s", PQerrorMessage(sql));
726                 Close();
727                 return false;
728         }
729         
730         ShowStatus();
731         
732         if(PQsetnonblocking(sql, 1) == -1)
733         {
734                 Instance->Log(DEBUG, "Couldn't set connection nonblocking: %s", PQerrorMessage(sql));
735                 Close();
736                 return false;
737         }
738         
739         /* OK, we've initalised the connection, now to get it hooked into the socket engine
740          * and then start polling it.
741          */
742         
743         //ServerInstance->Log(DEBUG, "Old DNS socket: %d", this->fd);
744         this->fd = PQsocket(sql);
745         Instance->Log(DEBUG, "New SQL socket: %d", this->fd);
746         
747         if(this->fd <= -1)
748         {
749                 Instance->Log(DEBUG, "PQsocket says we have an invalid FD: %d", this->fd);
750                 Close();
751                 return false;
752         }
753         
754         this->state = I_CONNECTING;
755         if (!this->Instance->SE->AddFd(this))
756         {
757                 Instance->Log(DEBUG, "A PQsocket cant be added to the socket engine!");
758                 Close();
759                 return false;
760         }
761         
762         /* Socket all hooked into the engine, now to tell PgSQL to start connecting */
763         
764         return DoPoll();
765 }
766
767 void SQLConn::Close()
768 {
769         Instance->Log(DEBUG,"SQLConn::Close");
770
771         if (!this->Instance->SE->DelFd(this))
772         {
773                 Instance->Log(DEBUG, "PQsocket cant be removed from the socket engine!");
774         }
775         this->fd = -1;
776         this->state = I_ERROR;
777         this->OnError(I_ERR_SOCKET);
778         this->ClosePending = true;
779         
780         if(sql)
781         {
782                 PQfinish(sql);
783                 sql = NULL;
784         }
785 }
786
787 bool SQLConn::DoPoll()
788 {
789         switch(PQconnectPoll(sql))
790         {
791                 case PGRES_POLLING_WRITING:
792                         //ServerInstance->Log(DEBUG, "PGconnectPoll: PGRES_POLLING_WRITING");
793                         WantWrite();
794                         status = CWRITE;
795                         return DoPoll();
796                 case PGRES_POLLING_READING:
797                         //ServerInstance->Log(DEBUG, "PGconnectPoll: PGRES_POLLING_READING");
798                         status = CREAD;
799                         return true;
800                 case PGRES_POLLING_FAILED:
801                         //ServerInstance->Log(DEBUG, "PGconnectPoll: PGRES_POLLING_FAILED: %s", PQerrorMessage(sql));
802                         return false;
803                 case PGRES_POLLING_OK:
804                         //ServerInstance->Log(DEBUG, "PGconnectPoll: PGRES_POLLING_OK");
805                         status = WWRITE;
806                         return DoConnectedPoll();
807                 default:
808                         //ServerInstance->Log(DEBUG, "PGconnectPoll: wtf?");
809                         return true;
810         }
811 }
812
813 bool SQLConn::DoConnectedPoll()
814 {
815         if(!qinprog && queue.totalsize())
816         {
817                 /* There's no query currently in progress, and there's queries in the queue. */
818                 SQLrequest& query = queue.front();
819                 DoQuery(query);
820         }
821         
822         if(PQconsumeInput(sql))
823         {
824                 Instance->Log(DEBUG, "PQconsumeInput succeeded");
825                 
826                 /* We just read stuff from the server, that counts as it being alive
827                  * so update the idle-since time :p
828                  */
829                 idle = this->Instance->Time();
830                         
831                 if(PQisBusy(sql))
832                 {
833                         //ServerInstance->Log(DEBUG, "Still busy processing command though");
834                 }
835                 else if(qinprog)
836                 {
837                         //ServerInstance->Log(DEBUG, "Looks like we have a result to process!");
838                         
839                         /* Grab the request we're processing */
840                         SQLrequest& query = queue.front();
841                         
842                         Instance->Log(DEBUG, "ID is %lu", query.id);
843                         
844                         /* Get a pointer to the module we're about to return the result to */
845                         Module* to = query.GetSource();
846                         
847                         /* Fetch the result.. */
848                         PGresult* result = PQgetResult(sql);
849                         
850                         /* PgSQL would allow a query string to be sent which has multiple
851                          * queries in it, this isn't portable across database backends and
852                          * we don't want modules doing it. But just in case we make sure we
853                          * drain any results there are and just use the last one.
854                          * If the module devs are behaving there will only be one result.
855                          */
856                         while (PGresult* temp = PQgetResult(sql))
857                         {
858                                 PQclear(result);
859                                 result = temp;
860                         }
861                         
862                         if(to)
863                         {
864                                 /* ..and the result */
865                                 PgSQLresult reply(us, to, query.id, result);
866
867                                 /* Fix by brain, make sure the original query gets sent back in the reply */
868                                 reply.query = query.query.q;
869                                 
870                                 Instance->Log(DEBUG, "Got result, status code: %s; error message: %s", PQresStatus(PQresultStatus(result)), PQresultErrorMessage(result));      
871                                 
872                                 switch(PQresultStatus(result))
873                                 {
874                                         case PGRES_EMPTY_QUERY:
875                                         case PGRES_BAD_RESPONSE:
876                                         case PGRES_FATAL_ERROR:
877                                                 reply.error.Id(QREPLY_FAIL);
878                                                 reply.error.Str(PQresultErrorMessage(result));
879                                         default:;
880                                                 /* No action, other values are not errors */
881                                 }
882                                 
883                                 reply.Send();
884                                 
885                                 /* PgSQLresult's destructor will free the PGresult */
886                         }
887                         else
888                         {
889                                 /* If the client module is unloaded partway through a query then the provider will set
890                                  * the pointer to NULL. We cannot just cancel the query as the result will still come
891                                  * through at some point...and it could get messy if we play with invalid pointers...
892                                  */
893                                 Instance->Log(DEBUG, "Looks like we're handling a zombie query from a module which unloaded before it got a result..fun. ID: %lu", query.id);
894                                 PQclear(result);
895                         }
896                         
897                         qinprog = false;
898                         queue.pop();                            
899                         DoConnectedPoll();
900                 }
901                 else
902                 {
903                         Instance->Log(DEBUG, "Eh!? We just got a read event, and connection isn't busy..but no result :(");
904                 }
905                 
906                 return true;
907         }
908         else
909         {
910                 /* I think we'll assume this means the server died...it might not,
911                  * but I think that any error serious enough we actually get here
912                  * deserves to reconnect [/excuse]
913                  * Returning true so the core doesn't try and close the connection.
914                  */
915                 Instance->Log(DEBUG, "PQconsumeInput failed: %s", PQerrorMessage(sql));
916                 Reconnect();
917                 return true;
918         }
919 }
920
921 bool SQLConn::DoResetPoll()
922 {
923         switch(PQresetPoll(sql))
924         {
925                 case PGRES_POLLING_WRITING:
926                         //ServerInstance->Log(DEBUG, "PGresetPoll: PGRES_POLLING_WRITING");
927                         WantWrite();
928                         status = CWRITE;
929                         return DoPoll();
930                 case PGRES_POLLING_READING:
931                         //ServerInstance->Log(DEBUG, "PGresetPoll: PGRES_POLLING_READING");
932                         status = CREAD;
933                         return true;
934                 case PGRES_POLLING_FAILED:
935                         //ServerInstance->Log(DEBUG, "PGresetPoll: PGRES_POLLING_FAILED: %s", PQerrorMessage(sql));
936                         return false;
937                 case PGRES_POLLING_OK:
938                         //ServerInstance->Log(DEBUG, "PGresetPoll: PGRES_POLLING_OK");
939                         status = WWRITE;
940                         return DoConnectedPoll();
941                 default:
942                         //ServerInstance->Log(DEBUG, "PGresetPoll: wtf?");
943                         return true;
944         }
945 }
946
947 void SQLConn::ShowStatus()
948 {
949         switch(PQstatus(sql))
950         {
951                 case CONNECTION_STARTED:
952                         Instance->Log(DEBUG, "PQstatus: CONNECTION_STARTED: Waiting for connection to be made.");
953                         break;
954
955                 case CONNECTION_MADE:
956                         Instance->Log(DEBUG, "PQstatus: CONNECTION_MADE: Connection OK; waiting to send.");
957                         break;
958                 
959                 case CONNECTION_AWAITING_RESPONSE:
960                         Instance->Log(DEBUG, "PQstatus: CONNECTION_AWAITING_RESPONSE: Waiting for a response from the server.");
961                         break;
962                 
963                 case CONNECTION_AUTH_OK:
964                         Instance->Log(DEBUG, "PQstatus: CONNECTION_AUTH_OK: Received authentication; waiting for backend start-up to finish.");
965                         break;
966                 
967                 case CONNECTION_SSL_STARTUP:
968                         Instance->Log(DEBUG, "PQstatus: CONNECTION_SSL_STARTUP: Negotiating SSL encryption.");
969                         break;
970                 
971                 case CONNECTION_SETENV:
972                         Instance->Log(DEBUG, "PQstatus: CONNECTION_SETENV: Negotiating environment-driven parameter settings.");
973                         break;
974                 
975                 default:
976                         Instance->Log(DEBUG, "PQstatus: ???");
977         }
978 }
979
980 bool SQLConn::OnDataReady()
981 {
982         /* Always return true here, false would close the socket - we need to do that ourselves with the pgsql API */
983         Instance->Log(DEBUG, "OnDataReady(): status = %s", StatusStr());
984         
985         return DoEvent();
986 }
987
988 bool SQLConn::OnWriteReady()
989 {
990         /* Always return true here, false would close the socket - we need to do that ourselves with the pgsql API */
991         Instance->Log(DEBUG, "OnWriteReady(): status = %s", StatusStr());
992         
993         return DoEvent();
994 }
995
996 bool SQLConn::OnConnected()
997 {
998         Instance->Log(DEBUG, "OnConnected(): status = %s", StatusStr());
999         
1000         return DoEvent();
1001 }
1002
1003 bool SQLConn::Reconnect()
1004 {
1005         Instance->Log(DEBUG, "Initiating reconnect");
1006         
1007         if(PQresetStart(sql))
1008         {
1009                 /* Successfully initiatied database reconnect,
1010                  * set flags so PQresetPoll() will be called appropriately
1011                  */
1012                 status = RWRITE;
1013                 qinprog = false;
1014                 return true;
1015         }
1016         else
1017         {
1018                 Instance->Log(DEBUG, "Failed to initiate reconnect...fun");
1019                 return false;
1020         }       
1021 }
1022
1023 bool SQLConn::DoEvent()
1024 {
1025         bool ret;
1026         
1027         if((status == CREAD) || (status == CWRITE))
1028         {
1029                 ret = DoPoll();
1030         }
1031         else if((status == RREAD) || (status == RWRITE))
1032         {
1033                 ret = DoResetPoll();
1034         }
1035         else
1036         {
1037                 ret = DoConnectedPoll();
1038         }
1039         
1040         switch(PQflush(sql))
1041         {
1042                 case -1:
1043                         Instance->Log(DEBUG, "Error flushing write queue: %s", PQerrorMessage(sql));
1044                         break;
1045                 case 0:
1046                         Instance->Log(DEBUG, "Successfully flushed write queue (or there was nothing to write)");
1047                         break;
1048                 case 1:
1049                         Instance->Log(DEBUG, "Not all of the write queue written, triggering write event so we can have another go");
1050                         WantWrite();
1051                         break;
1052         }
1053
1054         return ret;
1055 }
1056
1057 std::string SQLConn::MkInfoStr()
1058 {                       
1059         std::ostringstream conninfo("connect_timeout = '2'");
1060         
1061         if(dbhost.length())
1062                 conninfo << " hostaddr = '" << dbhost << "'";
1063         
1064         if(dbport)
1065                 conninfo << " port = '" << dbport << "'";
1066         
1067         if(dbname.length())
1068                 conninfo << " dbname = '" << dbname << "'";
1069         
1070         if(dbuser.length())
1071                 conninfo << " user = '" << dbuser << "'";
1072         
1073         if(dbpass.length())
1074                 conninfo << " password = '" << dbpass << "'";
1075         
1076         if(ssl)
1077                 conninfo << " sslmode = 'require'";
1078         
1079         return conninfo.str();
1080 }
1081
1082 const char* SQLConn::StatusStr()
1083 {
1084         if(status == CREAD) return "CREAD";
1085         if(status == CWRITE) return "CWRITE";
1086         if(status == WREAD) return "WREAD";
1087         if(status == WWRITE) return "WWRITE";
1088         return "Err...what, erm..BUG!";
1089 }
1090
1091 SQLerror SQLConn::DoQuery(SQLrequest &req)
1092 {
1093         if((status == WREAD) || (status == WWRITE))
1094         {
1095                 if(!qinprog)
1096                 {
1097                         /* Parse the command string and dispatch it */
1098                         
1099                         /* Pointer to the buffer we screw around with substitution in */
1100                         char* query;
1101                         /* Pointer to the current end of query, where we append new stuff */
1102                         char* queryend;
1103                         /* Total length of the unescaped parameters */
1104                         unsigned int paramlen;
1105                         
1106                         paramlen = 0;
1107                         
1108                         for(ParamL::iterator i = req.query.p.begin(); i != req.query.p.end(); i++)
1109                         {
1110                                 paramlen += i->size();
1111                         }
1112                         
1113                         /* To avoid a lot of allocations, allocate enough memory for the biggest the escaped query could possibly be.
1114                          * sizeofquery + (totalparamlength*2) + 1
1115                          * 
1116                          * The +1 is for null-terminating the string for PQsendQuery()
1117                          */
1118                         
1119                         query = new char[req.query.q.length() + (paramlen*2) + 1];
1120                         queryend = query;
1121                         
1122                         /* Okay, now we have a buffer large enough we need to start copying the query into it and escaping and substituting
1123                          * the parameters into it...
1124                          */
1125                         
1126                         for(unsigned int i = 0; i < req.query.q.length(); i++)
1127                         {
1128                                 if(req.query.q[i] == '?')
1129                                 {
1130                                         /* We found a place to substitute..what fun.
1131                                          * Use the PgSQL calls to escape and write the
1132                                          * escaped string onto the end of our query buffer,
1133                                          * then we "just" need to make sure queryend is
1134                                          * pointing at the right place.
1135                                          */
1136                                         
1137                                         if(req.query.p.size())
1138                                         {
1139                                                 int error = 0;
1140                                                 size_t len = 0;
1141
1142 #ifdef PGSQL_HAS_ESCAPECONN
1143                                                 len = PQescapeStringConn(sql, queryend, req.query.p.front().c_str(), req.query.p.front().length(), &error);
1144 #else
1145                                                 len = PQescapeString         (queryend, req.query.p.front().c_str(), req.query.p.front().length());
1146 #endif
1147                                                 if(error)
1148                                                 {
1149                                                         Instance->Log(DEBUG, "Apparently PQescapeStringConn() failed somehow...don't know how or what to do...");
1150                                                 }
1151                                                 
1152                                                 Instance->Log(DEBUG, "Appended %d bytes of escaped string onto the query", len);
1153                                                 
1154                                                 /* Incremenet queryend to the end of the newly escaped parameter */
1155                                                 queryend += len;
1156                                                 
1157                                                 /* Remove the parameter we just substituted in */
1158                                                 req.query.p.pop_front();
1159                                         }
1160                                         else
1161                                         {
1162                                                 Instance->Log(DEBUG, "Found a substitution location but no parameter to substitute :|");
1163                                                 break;
1164                                         }
1165                                 }
1166                                 else
1167                                 {
1168                                         *queryend = req.query.q[i];
1169                                         queryend++;
1170                                 }
1171                         }
1172                         
1173                         /* Null-terminate the query */
1174                         *queryend = 0;
1175         
1176                         Instance->Log(DEBUG, "Attempting to dispatch query: %s", query);
1177                         
1178                         req.query.q = query;
1179
1180                         if(PQsendQuery(sql, query))
1181                         {
1182                                 Instance->Log(DEBUG, "Dispatched query successfully");
1183                                 qinprog = true;
1184                                 delete[] query;
1185                                 return SQLerror();
1186                         }
1187                         else
1188                         {
1189                                 Instance->Log(DEBUG, "Failed to dispatch query: %s", PQerrorMessage(sql));
1190                                 delete[] query;
1191                                 return SQLerror(QSEND_FAIL, PQerrorMessage(sql));
1192                         }
1193                 }
1194         }
1195
1196         Instance->Log(DEBUG, "Can't query until connection is complete");
1197         return SQLerror(BAD_CONN, "Can't query until connection is complete");
1198 }
1199
1200 SQLerror SQLConn::Query(const SQLrequest &req)
1201 {
1202         queue.push(req);
1203         
1204         if(!qinprog && queue.totalsize())
1205         {
1206                 /* There's no query currently in progress, and there's queries in the queue. */
1207                 SQLrequest& query = queue.front();
1208                 return DoQuery(query);
1209         }
1210         else
1211         {
1212                 return SQLerror();
1213         }
1214 }
1215
1216 void SQLConn::OnUnloadModule(Module* mod)
1217 {
1218         queue.PurgeModule(mod);
1219 }
1220
1221 void SQLresolver::OnLookupComplete(const std::string &result)
1222 {
1223         host.host = result;
1224         mod->AddConn(host);
1225 }
1226
1227 class ModulePgSQLFactory : public ModuleFactory
1228 {
1229  public:
1230         ModulePgSQLFactory()
1231         {
1232         }
1233         
1234         ~ModulePgSQLFactory()
1235         {
1236         }
1237         
1238         virtual Module * CreateModule(InspIRCd* Me)
1239         {
1240                 return new ModulePgSQL(Me);
1241         }
1242 };
1243
1244
1245 extern "C" void * init_module( void )
1246 {
1247         return new ModulePgSQLFactory;
1248 i}