]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/extra/m_mysql.cpp
Also use SQLhost for host config.
[user/henk/code/inspircd.git] / src / modules / extra / m_mysql.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 <stdio.h>
15 #include <string>
16 #include <mysql.h>
17 #include <pthread.h>
18 #include "users.h"
19 #include "channels.h"
20 #include "modules.h"
21 #include "inspircd.h"
22 #include "m_sqlv2.h"
23
24 /* VERSION 2 API: With nonblocking (threaded) requests */
25
26 /* $ModDesc: SQL Service Provider module for all other m_sql* modules */
27 /* $CompileFlags: `mysql_config --include` */
28 /* $LinkerFlags: `mysql_config --libs_r` `perl extra/mysql_rpath.pl` */
29 /* $ModDep: m_sqlv2.h */
30
31 /* THE NONBLOCKING MYSQL API!
32  * 
33  * MySQL provides no nonblocking (asyncronous) API of its own, and its developers recommend
34  * that instead, you should thread your program. This is what i've done here to allow for
35  * asyncronous SQL requests via mysql. The way this works is as follows:
36  *
37  * The module spawns a thread via pthreads, and performs its mysql queries in this thread,
38  * using a queue with priorities. There is a mutex on either end which prevents two threads
39  * adjusting the queue at the same time, and crashing the ircd. Every 50 milliseconds, the
40  * worker thread wakes up, and checks if there is a request at the head of its queue.
41  * If there is, it processes this request, blocking the worker thread but leaving the ircd
42  * thread to go about its business as usual. During this period, the ircd thread is able
43  * to insert futher pending requests into the queue.
44  *
45  * Once the processing of a request is complete, it is removed from the incoming queue to
46  * an outgoing queue, and initialized as a 'response'. The worker thread then signals the
47  * ircd thread (via a loopback socket) of the fact a result is available, by sending the
48  * connection ID through the connection.
49  *
50  * The ircd thread then mutexes the queue once more, reads the outbound response off the head
51  * of the queue, and sends it on its way to the original calling module.
52  *
53  * XXX: You might be asking "why doesnt he just send the response from within the worker thread?"
54  * The answer to this is simple. The majority of InspIRCd, and in fact most ircd's are not
55  * threadsafe. This module is designed to be threadsafe and is careful with its use of threads,
56  * however, if we were to call a module's OnRequest even from within a thread which was not the
57  * one the module was originally instantiated upon, there is a chance of all hell breaking loose
58  * if a module is ever put in a re-enterant state (stack corruption could occur, crashes, data
59  * corruption, and worse, so DONT think about it until the day comes when InspIRCd is 100%
60  * gauranteed threadsafe!)
61  *
62  * For a diagram of this system please see http://www.inspircd.org/wiki/Mysql2
63  */
64
65
66 class SQLConnection;
67 class Notifier;
68
69
70 typedef std::map<std::string, SQLConnection*> ConnMap;
71 bool giveup = false;
72 static Module* SQLModule = NULL;
73 static Notifier* MessagePipe = NULL;
74 int QueueFD = -1;
75
76
77 #if !defined(MYSQL_VERSION_ID) || MYSQL_VERSION_ID<32224
78 #define mysql_field_count mysql_num_fields
79 #endif
80
81 typedef std::deque<SQLresult*> ResultQueue;
82
83 /** Represents a mysql query queue
84  */
85 class QueryQueue : public classbase
86 {
87 private:
88         typedef std::deque<SQLrequest> ReqDeque;
89
90         ReqDeque priority;      /* The priority queue */
91         ReqDeque normal;        /* The 'normal' queue */
92         enum { PRI, NOR, NON } which;   /* Which queue the currently active element is at the front of */
93
94 public:
95         QueryQueue()
96         : which(NON)
97         {
98         }
99
100         void push(const SQLrequest &q)
101         {
102                 if(q.pri)
103                         priority.push_back(q);
104                 else
105                         normal.push_back(q);
106         }
107
108         void pop()
109         {
110                 if((which == PRI) && priority.size())
111                 {
112                         priority.pop_front();
113                 }
114                 else if((which == NOR) && normal.size())
115                 {
116                         normal.pop_front();
117                 }
118
119                 /* Reset this */
120                 which = NON;
121
122                 /* Silently do nothing if there was no element to pop() */
123         }
124
125         SQLrequest& front()
126         {
127                 switch(which)
128                 {
129                         case PRI:
130                                 return priority.front();
131                         case NOR:
132                                 return normal.front();
133                         default:
134                                 if(priority.size())
135                                 {
136                                         which = PRI;
137                                         return priority.front();
138                                 }
139
140                                 if(normal.size())
141                                 {
142                                         which = NOR;
143                                         return normal.front();
144                                 }
145
146                                 /* This will probably result in a segfault,
147                                  * but the caller should have checked totalsize()
148                                  * first so..meh - moron :p
149                                  */
150
151                                 return priority.front();
152                 }
153         }
154
155         std::pair<int, int> size()
156         {
157                 return std::make_pair(priority.size(), normal.size());
158         }
159
160         int totalsize()
161         {
162                 return priority.size() + normal.size();
163         }
164
165         void PurgeModule(Module* mod)
166         {
167                 DoPurgeModule(mod, priority);
168                 DoPurgeModule(mod, normal);
169         }
170
171 private:
172         void DoPurgeModule(Module* mod, ReqDeque& q)
173         {
174                 for(ReqDeque::iterator iter = q.begin(); iter != q.end(); iter++)
175                 {
176                         if(iter->GetSource() == mod)
177                         {
178                                 if(iter->id == front().id)
179                                 {
180                                         /* It's the currently active query.. :x */
181                                         iter->SetSource(NULL);
182                                 }
183                                 else
184                                 {
185                                         /* It hasn't been executed yet..just remove it */
186                                         iter = q.erase(iter);
187                                 }
188                         }
189                 }
190         }
191 };
192
193 /* A mutex to wrap around queue accesses */
194 pthread_mutex_t queue_mutex = PTHREAD_MUTEX_INITIALIZER;
195
196 pthread_mutex_t results_mutex = PTHREAD_MUTEX_INITIALIZER;
197
198 pthread_mutex_t logging_mutex = PTHREAD_MUTEX_INITIALIZER;
199
200 /** Represents a mysql result set
201  */
202 class MySQLresult : public SQLresult
203 {
204         int currentrow;
205         //std::vector<std::map<std::string,std::string> > results;
206         std::vector<std::string> colnames;
207         std::vector<SQLfieldList> fieldlists;
208         SQLfieldMap* fieldmap;
209         SQLfieldMap fieldmap2;
210         SQLfieldList emptyfieldlist;
211         int rows;
212  public:
213
214         MySQLresult(Module* self, Module* to, MYSQL_RES* res, int affected_rows, unsigned int id) : SQLresult(self, to, id), currentrow(0), fieldmap(NULL)
215         {
216                 /* A number of affected rows from from mysql_affected_rows.
217                  */
218                 fieldlists.clear();
219                 rows = 0;
220                 if (affected_rows >= 1)
221                 {
222                         rows = affected_rows;
223                         fieldlists.resize(rows);
224                 }
225                 unsigned int field_count = 0;
226                 if (res)
227                 {
228                         MYSQL_ROW row;
229                         int n = 0;
230                         while ((row = mysql_fetch_row(res)))
231                         {
232                                 if (fieldlists.size() < (unsigned int)rows+1)
233                                 {
234                                         fieldlists.resize(fieldlists.size()+1);
235                                 }
236                                 field_count = 0;
237                                 MYSQL_FIELD *fields = mysql_fetch_fields(res);
238                                 if(mysql_num_fields(res) == 0)
239                                         break;
240                                 if (fields && mysql_num_fields(res))
241                                 {
242                                         colnames.clear();
243                                         while (field_count < mysql_num_fields(res))
244                                         {
245                                                 std::string a = (fields[field_count].name ? fields[field_count].name : "");
246                                                 std::string b = (row[field_count] ? row[field_count] : "");
247                                                 SQLfield sqlf(b, !row[field_count]);
248                                                 colnames.push_back(a);
249                                                 fieldlists[n].push_back(sqlf); 
250                                                 field_count++;
251                                         }
252                                         n++;
253                                 }
254                                 rows++;
255                         }
256                         mysql_free_result(res);
257                 }
258         }
259
260         MySQLresult(Module* self, Module* to, SQLerror e, unsigned int id) : SQLresult(self, to, id), currentrow(0)
261         {
262                 rows = 0;
263                 error = e;
264         }
265
266         ~MySQLresult()
267         {
268         }
269
270         virtual int Rows()
271         {
272                 return rows;
273         }
274
275         virtual int Cols()
276         {
277                 return colnames.size();
278         }
279
280         virtual std::string ColName(int column)
281         {
282                 if (column < (int)colnames.size())
283                 {
284                         return colnames[column];
285                 }
286                 else
287                 {
288                         throw SQLbadColName();
289                 }
290                 return "";
291         }
292
293         virtual int ColNum(const std::string &column)
294         {
295                 for (unsigned int i = 0; i < colnames.size(); i++)
296                 {
297                         if (column == colnames[i])
298                                 return i;
299                 }
300                 throw SQLbadColName();
301                 return 0;
302         }
303
304         virtual SQLfield GetValue(int row, int column)
305         {
306                 if ((row >= 0) && (row < rows) && (column >= 0) && (column < Cols()))
307                 {
308                         return fieldlists[row][column];
309                 }
310
311                 throw SQLbadColName();
312
313                 /* XXX: We never actually get here because of the throw */
314                 return SQLfield("",true);
315         }
316
317         virtual SQLfieldList& GetRow()
318         {
319                 if (currentrow < rows)
320                         return fieldlists[currentrow];
321                 else
322                         return emptyfieldlist;
323         }
324
325         virtual SQLfieldMap& GetRowMap()
326         {
327                 fieldmap2.clear();
328
329                 if (currentrow < rows)
330                 {
331                         for (int i = 0; i < Cols(); i++)
332                         {
333                                 fieldmap2.insert(std::make_pair(colnames[i],GetValue(currentrow, i)));
334                         }
335                         currentrow++;
336                 }
337
338                 return fieldmap2;
339         }
340
341         virtual SQLfieldList* GetRowPtr()
342         {
343                 SQLfieldList* fieldlist = new SQLfieldList();
344
345                 if (currentrow < rows)
346                 {
347                         for (int i = 0; i < Rows(); i++)
348                         {
349                                 fieldlist->push_back(fieldlists[currentrow][i]);
350                         }
351                         currentrow++;
352                 }
353                 return fieldlist;
354         }
355
356         virtual SQLfieldMap* GetRowMapPtr()
357         {
358                 fieldmap = new SQLfieldMap();
359                 
360                 if (currentrow < rows)
361                 {
362                         for (int i = 0; i < Cols(); i++)
363                         {
364                                 fieldmap->insert(std::make_pair(colnames[i],GetValue(currentrow, i)));
365                         }
366                         currentrow++;
367                 }
368
369                 return fieldmap;
370         }
371
372         virtual void Free(SQLfieldMap* fm)
373         {
374                 delete fm;
375         }
376
377         virtual void Free(SQLfieldList* fl)
378         {
379                 delete fl;
380         }
381 };
382
383 class SQLConnection;
384
385 void NotifyMainThread(SQLConnection* connection_with_new_result);
386
387 /** Represents a connection to a mysql database
388  */
389 class SQLConnection : public classbase
390 {
391  protected:
392
393         MYSQL connection;
394         MYSQL_RES *res;
395         MYSQL_ROW row;
396         SQLhost host;
397         std::map<std::string,std::string> thisrow;
398         bool Enabled;
399
400  public:
401
402         QueryQueue queue;
403         ResultQueue rq;
404
405         // This constructor creates an SQLConnection object with the given credentials, but does not connect yet.
406         SQLConnection(const SQLhost &hi) : host(hi), Enabled(true)
407         {
408         }
409
410         ~SQLConnection()
411         {
412                 Close();
413         }
414
415         // This method connects to the database using the credentials supplied to the constructor, and returns
416         // true upon success.
417         bool Connect()
418         {
419                 unsigned int timeout = 1;
420                 mysql_init(&connection);
421                 mysql_options(&connection,MYSQL_OPT_CONNECT_TIMEOUT,(char*)&timeout);
422                 return mysql_real_connect(&connection, host.host.c_str(), host.user.c_str(), host.pass.c_str(), host.name.c_str(), host.port, NULL, 0);
423         }
424
425         void DoLeadingQuery()
426         {
427                 if (!CheckConnection())
428                         return;
429
430                 /* Parse the command string and dispatch it to mysql */
431                 SQLrequest& req = queue.front();
432
433                 /* Pointer to the buffer we screw around with substitution in */
434                 char* query;
435
436                 /* Pointer to the current end of query, where we append new stuff */
437                 char* queryend;
438
439                 /* Total length of the unescaped parameters */
440                 unsigned long paramlen;
441
442                 /* Total length of query, used for binary-safety in mysql_real_query */
443                 unsigned long querylength = 0;
444
445                 paramlen = 0;
446
447                 for(ParamL::iterator i = req.query.p.begin(); i != req.query.p.end(); i++)
448                 {
449                         paramlen += i->size();
450                 }
451
452                 /* To avoid a lot of allocations, allocate enough memory for the biggest the escaped query could possibly be.
453                  * sizeofquery + (totalparamlength*2) + 1
454                  *
455                  * The +1 is for null-terminating the string for mysql_real_escape_string
456                  */
457
458                 query = new char[req.query.q.length() + (paramlen*2) + 1];
459                 queryend = query;
460
461                 /* Okay, now we have a buffer large enough we need to start copying the query into it and escaping and substituting
462                  * the parameters into it...
463                  */
464
465                 for(unsigned long i = 0; i < req.query.q.length(); i++)
466                 {
467                         if(req.query.q[i] == '?')
468                         {
469                                 /* We found a place to substitute..what fun.
470                                  * use mysql calls to escape and write the
471                                  * escaped string onto the end of our query buffer,
472                                  * then we "just" need to make sure queryend is
473                                  * pointing at the right place.
474                                  */
475                                 if(req.query.p.size())
476                                 {
477                                         unsigned long len = mysql_real_escape_string(&connection, queryend, req.query.p.front().c_str(), req.query.p.front().length());
478
479                                         queryend += len;
480                                         req.query.p.pop_front();
481                                 }
482                                 else
483                                         break;
484                         }
485                         else
486                         {
487                                 *queryend = req.query.q[i];
488                                 queryend++;
489                         }
490                         querylength++;
491                 }
492
493                 *queryend = 0;
494
495                 pthread_mutex_lock(&queue_mutex);
496                 req.query.q = query;
497                 pthread_mutex_unlock(&queue_mutex);
498
499                 if (!mysql_real_query(&connection, req.query.q.data(), req.query.q.length()))
500                 {
501                         /* Successfull query */
502                         res = mysql_use_result(&connection);
503                         unsigned long rows = mysql_affected_rows(&connection);
504                         MySQLresult* r = new MySQLresult(SQLModule, req.GetSource(), res, rows, req.id);
505                         r->dbid = this->GetID();
506                         r->query = req.query.q;
507                         /* Put this new result onto the results queue.
508                          * XXX: Remember to mutex the queue!
509                          */
510                         pthread_mutex_lock(&results_mutex);
511                         rq.push_back(r);
512                         pthread_mutex_unlock(&results_mutex);
513                 }
514                 else
515                 {
516                         /* XXX: See /usr/include/mysql/mysqld_error.h for a list of
517                          * possible error numbers and error messages */
518                         SQLerror e(QREPLY_FAIL, ConvToStr(mysql_errno(&connection)) + std::string(": ") + mysql_error(&connection));
519                         MySQLresult* r = new MySQLresult(SQLModule, req.GetSource(), e, req.id);
520                         r->dbid = this->GetID();
521                         r->query = req.query.q;
522
523                         pthread_mutex_lock(&results_mutex);
524                         rq.push_back(r);
525                         pthread_mutex_unlock(&results_mutex);
526                 }
527
528                 /* Now signal the main thread that we've got a result to process.
529                  * Pass them this connection id as what to examine
530                  */
531
532                 delete[] query;
533
534                 NotifyMainThread(this);
535         }
536
537         bool ConnectionLost()
538         {
539                 if (&connection) {
540                         return (mysql_ping(&connection) != 0);
541                 }
542                 else return false;
543         }
544
545         bool CheckConnection()
546         {
547                 if (ConnectionLost()) {
548                         return Connect();
549                 }
550                 else return true;
551         }
552
553         std::string GetError()
554         {
555                 return mysql_error(&connection);
556         }
557
558         const std::string& GetID()
559         {
560                 return host.id;
561         }
562
563         std::string GetHost()
564         {
565                 return host.host;
566         }
567
568         void SetEnable(bool Enable)
569         {
570                 Enabled = Enable;
571         }
572
573         bool IsEnabled()
574         {
575                 return Enabled;
576         }
577
578         void Close()
579         {
580                 mysql_close(&connection);
581         }
582
583 };
584
585 ConnMap Connections;
586
587 void ConnectDatabases(InspIRCd* ServerInstance)
588 {
589         for (ConnMap::iterator i = Connections.begin(); i != Connections.end(); i++)
590         {
591                 i->second->SetEnable(true);
592                 if (!i->second->Connect())
593                 {
594                         /* XXX: MUTEX */
595                         pthread_mutex_lock(&logging_mutex);
596                         ServerInstance->Log(DEFAULT,"SQL: Failed to connect database "+i->second->GetHost()+": Error: "+i->second->GetError());
597                         i->second->SetEnable(false);
598                         pthread_mutex_unlock(&logging_mutex);
599                 }
600         }
601 }
602
603 void ClearDatabases()
604 {
605         ConnMap::iterator i;
606         while ((i = Connections.begin()) != Connections.end())
607         {
608                 Connections.erase(i);
609                 DELETE(i->second);
610         }
611 }
612
613 void LoadDatabases(ConfigReader* conf, InspIRCd* ServerInstance)
614 {
615         ClearDatabases();
616         for (int j =0; j < conf->Enumerate("database"); j++)
617         {
618                 SQLhost host;
619                 host.id         = conf->ReadValue("database", "id", j);
620                 host.host       = conf->ReadValue("database", "hostname", j);
621                 host.port       = conf->ReadInteger("database", "port", j, true);
622                 host.name       = conf->ReadValue("database", "name", j);
623                 host.user       = conf->ReadValue("database", "username", j);
624                 host.pass       = conf->ReadValue("database", "password", j);
625
626                 if (!host.id.empty() && !host.host.empty() && !host.name.empty() && !host.user.empty() && !host.pass.empty())
627                 {
628                         SQLConnection* ThisSQL = new SQLConnection(host);
629                         Connections[host.id] = ThisSQL;
630                 }
631         }
632         ConnectDatabases(ServerInstance);
633 }
634
635 void NotifyMainThread(SQLConnection* connection_with_new_result)
636 {
637         /* Here we write() to the socket the main thread has open
638          * and we connect()ed back to before our thread became active.
639          * The main thread is using a nonblocking socket tied into
640          * the socket engine, so they wont block and they'll receive
641          * nearly instant notification. Because we're in a seperate
642          * thread, we can just use standard connect(), and we can
643          * block if we like. We just send the connection id of the
644          * connection back.
645          */
646         send(QueueFD, connection_with_new_result->GetID().c_str(), connection_with_new_result->GetID().length()+1, 0);
647 }
648
649 void* DispatcherThread(void* arg);
650
651 /** Used by m_mysql to notify one thread when the other has a result
652  */
653 class Notifier : public InspSocket
654 {
655         insp_sockaddr sock_us;
656         socklen_t uslen;
657         
658
659  public:
660
661         /* Create a socket on a random port. Let the tcp stack allocate us an available port */
662 #ifdef IPV6
663         Notifier(InspIRCd* SI) : InspSocket(SI, "::1", 0, true, 3000)
664 #else
665         Notifier(InspIRCd* SI) : InspSocket(SI, "127.0.0.1", 0, true, 3000)
666 #endif
667         {
668                 uslen = sizeof(sock_us);
669                 if (getsockname(this->fd,(sockaddr*)&sock_us,&uslen))
670                 {
671                         throw ModuleException("Could not create random listening port on localhost");
672                 }
673         }
674
675         Notifier(InspIRCd* SI, int newfd, char* ip) : InspSocket(SI, newfd, ip)
676         {
677                 Instance->Log(DEBUG,"Constructor of new socket");
678         }
679
680         /* Using getsockname and ntohs, we can determine which port number we were allocated */
681         int GetPort()
682         {
683 #ifdef IPV6
684                 return ntohs(sock_us.sin6_port);
685 #else
686                 return ntohs(sock_us.sin_port);
687 #endif
688         }
689
690         virtual int OnIncomingConnection(int newsock, char* ip)
691         {
692                 Instance->Log(DEBUG,"Inbound connection on fd %d!",newsock);
693                 Notifier* n = new Notifier(this->Instance, newsock, ip);
694                 n = n; /* Stop bitching at me, GCC */
695                 return true;
696         }
697
698         virtual bool OnDataReady()
699         {
700                 Instance->Log(DEBUG,"Inbound data!");
701                 char* data = this->Read();
702                 ConnMap::iterator iter;
703
704                 if (data && *data)
705                 {
706                         Instance->Log(DEBUG,"Looking for connection %s",data);
707                         /* We expect to be sent a null terminated string */
708                         if((iter = Connections.find(data)) != Connections.end())
709                         {
710                                 Instance->Log(DEBUG,"Found it!");
711
712                                 /* Lock the mutex, send back the data */
713                                 pthread_mutex_lock(&results_mutex);
714                                 ResultQueue::iterator n = iter->second->rq.begin();
715                                 (*n)->Send();
716                                 iter->second->rq.pop_front();
717                                 pthread_mutex_unlock(&results_mutex);
718                                 return true;
719                         }
720                 }
721
722                 return false;
723         }
724 };
725
726 /** MySQL module
727  */
728 class ModuleSQL : public Module
729 {
730  public:
731         
732         ConfigReader *Conf;
733         InspIRCd* PublicServerInstance;
734         pthread_t Dispatcher;
735         int currid;
736
737         ModuleSQL(InspIRCd* Me)
738         : Module::Module(Me)
739         {
740                 ServerInstance->UseInterface("SQLutils");
741
742                 Conf = new ConfigReader(ServerInstance);
743                 PublicServerInstance = ServerInstance;
744                 currid = 0;
745                 SQLModule = this;
746
747                 MessagePipe = new Notifier(ServerInstance);
748                 ServerInstance->Log(DEBUG,"Bound notifier to 127.0.0.1:%d",MessagePipe->GetPort());
749                 
750                 pthread_attr_t attribs;
751                 pthread_attr_init(&attribs);
752                 pthread_attr_setdetachstate(&attribs, PTHREAD_CREATE_DETACHED);
753                 if (pthread_create(&this->Dispatcher, &attribs, DispatcherThread, (void *)this) != 0)
754                 {
755                         throw ModuleException("m_mysql: Failed to create dispatcher thread: " + std::string(strerror(errno)));
756                 }
757
758                 if (!ServerInstance->PublishFeature("SQL", this))
759                 {
760                         /* Tell worker thread to exit NOW */
761                         giveup = true;
762                         throw ModuleException("m_mysql: Unable to publish feature 'SQL'");
763                 }
764
765                 ServerInstance->PublishInterface("SQL", this);
766         }
767
768         virtual ~ModuleSQL()
769         {
770                 giveup = true;
771                 ClearDatabases();
772                 DELETE(Conf);
773                 ServerInstance->UnpublishInterface("SQL", this);
774                 ServerInstance->UnpublishFeature("SQL");
775                 ServerInstance->DoneWithInterface("SQLutils");
776         }
777
778
779         void Implements(char* List)
780         {
781                 List[I_OnRehash] = List[I_OnRequest] = 1;
782         }
783
784         unsigned long NewID()
785         {
786                 if (currid+1 == 0)
787                         currid++;
788                 return ++currid;
789         }
790
791         char* OnRequest(Request* request)
792         {
793                 if(strcmp(SQLREQID, request->GetId()) == 0)
794                 {
795                         SQLrequest* req = (SQLrequest*)request;
796
797                         /* XXX: Lock */
798                         pthread_mutex_lock(&queue_mutex);
799
800                         ConnMap::iterator iter;
801
802                         char* returnval = NULL;
803
804                         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());
805
806                         if((iter = Connections.find(req->dbid)) != Connections.end())
807                         {
808                                 req->id = NewID();
809                                 iter->second->queue.push(*req);
810                                 returnval = SQLSUCCESS;
811                         }
812                         else
813                         {
814                                 req->error.Id(BAD_DBID);
815                         }
816
817                         pthread_mutex_unlock(&queue_mutex);
818                         /* XXX: Unlock */
819
820                         return returnval;
821                 }
822
823                 ServerInstance->Log(DEBUG, "Got unsupported API version string: %s", request->GetId());
824
825                 return NULL;
826         }
827
828         virtual void OnRehash(userrec* user, const std::string &parameter)
829         {
830                 /* TODO: set rehash bool here, which makes the dispatcher thread rehash at next opportunity */
831         }
832         
833         virtual Version GetVersion()
834         {
835                 return Version(1,1,0,0,VF_VENDOR|VF_SERVICEPROVIDER,API_VERSION);
836         }
837         
838 };
839
840 void* DispatcherThread(void* arg)
841 {
842         ModuleSQL* thismodule = (ModuleSQL*)arg;
843         LoadDatabases(thismodule->Conf, thismodule->PublicServerInstance);
844
845         /* Connect back to the Notifier */
846
847         if ((QueueFD = socket(AF_FAMILY, SOCK_STREAM, 0)) == -1)
848         {
849                 /* crap, we're out of sockets... */
850                 return NULL;
851         }
852
853         insp_sockaddr addr;
854
855 #ifdef IPV6
856         insp_aton("::1", &addr.sin6_addr);
857         addr.sin6_family = AF_FAMILY;
858         addr.sin6_port = htons(MessagePipe->GetPort());
859 #else
860         insp_inaddr ia;
861         insp_aton("127.0.0.1", &ia);
862         addr.sin_family = AF_FAMILY;
863         addr.sin_addr = ia;
864         addr.sin_port = htons(MessagePipe->GetPort());
865 #endif
866
867         if (connect(QueueFD, (sockaddr*)&addr,sizeof(addr)) == -1)
868         {
869                 /* wtf, we cant connect to it, but we just created it! */
870                 return NULL;
871         }
872
873         while (!giveup)
874         {
875                 SQLConnection* conn = NULL;
876                 /* XXX: Lock here for safety */
877                 pthread_mutex_lock(&queue_mutex);
878                 for (ConnMap::iterator i = Connections.begin(); i != Connections.end(); i++)
879                 {
880                         if (i->second->queue.totalsize())
881                         {
882                                 conn = i->second;
883                                 break;
884                         }
885                 }
886                 pthread_mutex_unlock(&queue_mutex);
887                 /* XXX: Unlock */
888
889                 /* Theres an item! */
890                 if (conn)
891                 {
892                         conn->DoLeadingQuery();
893
894                         /* XXX: Lock */
895                         pthread_mutex_lock(&queue_mutex);
896                         conn->queue.pop();
897                         pthread_mutex_unlock(&queue_mutex);
898                         /* XXX: Unlock */
899                 }
900
901                 usleep(50);
902         }
903
904         return NULL;
905 }
906
907
908 // stuff down here is the module-factory stuff. For basic modules you can ignore this.
909
910 class ModuleSQLFactory : public ModuleFactory
911 {
912  public:
913         ModuleSQLFactory()
914         {
915         }
916         
917         ~ModuleSQLFactory()
918         {
919         }
920         
921         virtual Module * CreateModule(InspIRCd* Me)
922         {
923                 return new ModuleSQL(Me);
924         }
925         
926 };
927
928
929 extern "C" void * init_module( void )
930 {
931         return new ModuleSQLFactory;
932 }