missing definition
[oweals/gnunet.git] / src / dht / plugin_dhtlog_mysql_dump.c
1 /*
2      This file is part of GNUnet.
3      (C) 2006 - 2009 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 2, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file src/dht/plugin_dhtlog_mysql_dump.c
23  * @brief MySQL logging plugin to record DHT operations to MySQL server,
24  *        but write all queries to file instead of the actual server
25  *        so that they can be imported later.  The idea is that connecting
26  *        to the MySQL server X times can be really problematic, but hopefully
27  *        writing to a single file is more reliable.
28  * @author Nathan Evans
29  *
30  * Database: MySQL
31  */
32
33 #include "platform.h"
34 #include "gnunet_util_lib.h"
35 #include "dhtlog.h"
36
37
38 #define DEBUG_DHTLOG GNUNET_NO
39
40 /**
41  * Maximum number of supported parameters for a prepared
42  * statement.  Increase if needed.
43  */
44 #define MAX_PARAM 32
45
46
47 static unsigned long max_varchar_len;
48
49 /**
50  * The configuration the DHT service is running with
51  */
52 static const struct GNUNET_CONFIGURATION_Handle *cfg;
53
54 #define INSERT_QUERIES_STMT "prepare insert_query from 'INSERT INTO queries (trialuid, querytype, hops, dhtkeyuid, dhtqueryid, succeeded, nodeuid) "\
55                           "VALUES (@temp_trial, ?, ?, ?, ?, ?, ?)'"
56
57 #define INSERT_ROUTES_STMT "prepare insert_route from 'INSERT INTO routes (trialuid, querytype, hops, dhtkeyuid, dhtqueryid, succeeded, nodeuid, from_node, to_node) "\
58                           "VALUES (@temp_trial, ?, ?, ?, ?, ?, ?, ?, ?)'"
59
60 #define INSERT_NODES_STMT "prepare insert_node from 'INSERT ignore INTO nodes (trialuid, nodeid) "\
61                           "VALUES (@temp_trial, ?)'"
62
63 #define INSERT_TOPOLOGY_STMT "prepare insert_topology from 'INSERT INTO topology (trialuid, date, connections) "\
64                              "VALUES (@temp_trial, ?, ?)'"
65
66 #define EXTEND_TOPOLOGY_STMT "prepare extend_topology from 'INSERT INTO extended_topology (topology_uid, uid_first, uid_second) "\
67                              "VALUES (@temp_topology, ?, ?)'"
68
69 #define UPDATE_TOPOLOGY_STMT "prepare update_topology from 'update topology set connections = ?  where topology_uid = @temp_topology'"
70
71 #define SET_MALICIOUS_STMT "prepare set_malicious from 'update nodes set malicious_dropper = 1  where trialuid = @temp_trial and nodeid = @temp_node'"
72
73 #define INSERT_TRIALS_STMT "prepare insert_trial from 'INSERT INTO trials"\
74                            "(starttime, numnodes, topology,"\
75                            "topology_percentage, topology_probability,"\
76                            "blacklist_topology, connect_topology, connect_topology_option,"\
77                            "connect_topology_option_modifier, puts, gets, "\
78                            "concurrent, settle_time, num_rounds, malicious_getters,"\
79                            "malicious_putters, malicious_droppers, malicious_get_frequency,"\
80                            "malicious_put_frequency, stop_closest, stop_found, strict_kademlia, "\
81                            "gets_succeeded, message) "\
82                            "VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)'"
83
84 #define INSERT_GENERIC_STAT_STMT "prepare insert_generic_stat from 'INSERT INTO generic_stats" \
85                                  "(trialuid, nodeuid, section, name, value)"\
86                                  "VALUES (@temp_trial, @temp_node, @temp_section, @temp_stat, @temp_value)'"
87
88 #define INSERT_STAT_STMT "prepare insert_stat from 'INSERT INTO node_statistics"\
89                             "(trialuid, nodeuid, route_requests,"\
90                             "route_forwards, result_requests,"\
91                             "client_results, result_forwards, gets,"\
92                             "puts, data_inserts, find_peer_requests, "\
93                             "find_peers_started, gets_started, puts_started, find_peer_responses_received,"\
94                             "get_responses_received, find_peer_responses_sent, get_responses_sent) "\
95                             "VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)'"
96
97 #define INSERT_DHTKEY_STMT "prepare insert_dhtkey from 'INSERT ignore INTO dhtkeys (dhtkey, trialuid) "\
98                            "VALUES (?, @temp_trial)'"
99
100 #define UPDATE_TRIALS_STMT "prepare update_trial from 'UPDATE trials set endtime= ?, gets_succeeded = ? where trialuid = @temp_trial'"
101
102 #define UPDATE_CONNECTIONS_STMT "prepare update_conn from 'UPDATE trials set totalConnections = ? where trialuid = @temp_trial'"
103
104 #define GET_TRIAL_STMT "prepare select_trial from 'SELECT MAX( trialuid ) FROM trials into @temp_trial'"
105
106 #define GET_TOPOLOGY_STMT "prepare select_topology from 'SELECT MAX( topology_uid ) FROM topology into @temp_topology'"
107
108 #define GET_DHTKEYUID_STMT "prepare get_dhtkeyuid from 'SELECT dhtkeyuid FROM dhtkeys where dhtkey = ? and trialuid = @temp_trial'"
109
110 #define GET_NODEUID_STMT "prepare get_nodeuid from 'SELECT nodeuid FROM nodes where trialuid = @temp_trial and nodeid = ?'"
111
112 #define DATE_STR_SIZE 50
113
114 /**
115  * File to dump all sql statements to.
116  */
117 FILE *outfile;
118
119
120 static char *
121 get_sql_time()
122 {
123   static char date[DATE_STR_SIZE];
124   time_t timetmp;
125   struct tm *tmptr;
126
127   time (&timetmp);
128   memset (date, 0, DATE_STR_SIZE);
129   tmptr = localtime (&timetmp);
130   if (NULL != tmptr)
131     strftime (date, DATE_STR_SIZE, "%Y-%m-%d %H:%M:%S", tmptr);
132   else
133     strcpy (date, "");
134
135   return date;
136 }
137
138 /**
139  * Create a prepared statement.
140  *
141  * @return GNUNET_OK on success, GNUNET_SYSERR on failure
142  */
143 static int
144 prepared_statement_create (const char *statement)
145 {
146   if (fprintf(outfile, "%s;\n", statement) > 0)
147     return GNUNET_OK;
148
149   return GNUNET_SYSERR;
150 }
151
152 /*
153  * Initialize the prepared statements for use with dht test logging
154  */
155 static int
156 iopen ()
157 {
158 #define PINIT(a) (GNUNET_OK != (prepared_statement_create(a)))
159   if (PINIT (INSERT_QUERIES_STMT) ||
160       PINIT (INSERT_ROUTES_STMT) ||
161       PINIT (INSERT_TRIALS_STMT) ||
162       PINIT (SET_MALICIOUS_STMT) ||
163       PINIT (INSERT_GENERIC_STAT_STMT) ||
164       PINIT (INSERT_STAT_STMT) ||
165       PINIT (INSERT_NODES_STMT) ||
166       PINIT (INSERT_DHTKEY_STMT) ||
167       PINIT (UPDATE_TRIALS_STMT) ||
168       PINIT (GET_DHTKEYUID_STMT) ||
169       PINIT (GET_NODEUID_STMT) ||
170       PINIT (UPDATE_CONNECTIONS_STMT) ||
171       PINIT (INSERT_TOPOLOGY_STMT) ||
172       PINIT (EXTEND_TOPOLOGY_STMT) ||
173       PINIT (UPDATE_TOPOLOGY_STMT) ||
174       PINIT (GET_TRIAL_STMT) ||
175       PINIT (GET_TOPOLOGY_STMT))
176     {
177       return GNUNET_SYSERR;
178     }
179 #undef PINIT
180
181   return GNUNET_OK;
182 }
183
184
185
186 /*
187  * Records the current topology (number of connections, time, trial)
188  *
189  * @param num_connections how many connections are in the topology
190  *
191  * @return GNUNET_OK on success, GNUNET_SYSERR on failure
192  */
193 int
194 add_topology (int num_connections)
195 {
196   int ret;
197   if (outfile == NULL)
198     return GNUNET_SYSERR;
199
200   ret = fprintf(outfile, "set @date = \"%s\", @num = %d;\n", get_sql_time(), num_connections);
201
202   if (ret < 0)
203     return GNUNET_SYSERR;
204   ret = fprintf(outfile, "execute insert_topology using "
205                          "@date, @num;\n");
206   if (ret < 0)
207     return GNUNET_SYSERR;
208
209   ret = fprintf(outfile, "execute select_topology;\n");
210
211   if (ret >= 0)
212     return GNUNET_OK;
213   return GNUNET_SYSERR;
214 }
215
216 /*
217  * Records a connection between two peers in the current topology
218  *
219  * @param first one side of the connection
220  * @param second other side of the connection
221  *
222  * @return GNUNET_OK on success, GNUNET_SYSERR on failure
223  */
224 int
225 add_extended_topology (const struct GNUNET_PeerIdentity *first, const struct GNUNET_PeerIdentity *second)
226 {
227   int ret;
228   if (outfile == NULL)
229     return GNUNET_SYSERR;
230
231   if (first != NULL)
232     ret = fprintf(outfile, "select nodeuid from nodes where trialuid = @temp_trial and nodeid = \"%s\" into @temp_first_node;\n", GNUNET_h2s_full(&first->hashPubKey));
233   else
234     ret = fprintf(outfile, "set @temp_first_node = 0;\n");
235
236   if (ret < 0)
237     return GNUNET_SYSERR;
238
239   if (second != NULL)
240     ret = fprintf(outfile, "select nodeuid from nodes where trialuid = @temp_trial and nodeid = \"%s\" into @temp_second_node;\n", GNUNET_h2s_full(&second->hashPubKey));
241   else
242     ret = fprintf(outfile, "set @temp_second_node = 0;\n");
243
244   if (ret < 0)
245     return GNUNET_SYSERR;
246
247   ret = fprintf(outfile, "execute extend_topology using "
248                          "@temp_first_node, @temp_second_node;\n");
249
250   if (ret >= 0)
251     return GNUNET_OK;
252   return GNUNET_SYSERR;
253 }
254
255
256 /*
257  * Inserts the specified trial into the dhttests.trials table
258  *
259  * @param trialuid return the trialuid of the newly inserted trial
260  * @param num_nodes how many nodes are in the trial
261  * @param topology integer representing topology for this trial
262  * @param blacklist_topology integer representing blacklist topology for this trial
263  * @param connect_topology integer representing connect topology for this trial
264  * @param connect_topology_option integer representing connect topology option
265  * @param connect_topology_option_modifier float to modify connect option
266  * @param topology_percentage percentage modifier for certain topologies
267  * @param topology_probability probability modifier for certain topologies
268  * @param puts number of puts to perform
269  * @param gets number of gets to perform
270  * @param concurrent number of concurrent requests
271  * @param settle_time time to wait between creating topology and starting testing
272  * @param num_rounds number of times to repeat the trial
273  * @param malicious_getters number of malicious GET peers in the trial
274  * @param malicious_putters number of malicious PUT peers in the trial
275  * @param malicious_droppers number of malicious DROP peers in the trial
276  * @param malicious_get_frequency how often malicious gets are sent
277  * @param malicious_put_frequency how often malicious puts are sent
278  * @param stop_closest stop forwarding PUTs if closest node found
279  * @param stop_found stop forwarding GETs if data found
280  * @param strict_kademlia test used kademlia routing algorithm
281  * @param gets_succeeded how many gets did the test driver report success on
282  * @param message string to put into DB for this trial
283  *
284  * @return GNUNET_OK on success, GNUNET_SYSERR on failure
285  */
286 int add_trial (unsigned long long *trialuid, unsigned int num_nodes, unsigned int topology,
287                unsigned int blacklist_topology, unsigned int connect_topology,
288                unsigned int connect_topology_option, float connect_topology_option_modifier,
289                float topology_percentage, float topology_probability,
290                unsigned int puts, unsigned int gets, unsigned int concurrent, unsigned int settle_time,
291                unsigned int num_rounds, unsigned int malicious_getters, unsigned int malicious_putters,
292                unsigned int malicious_droppers, unsigned int malicious_get_frequency,
293                unsigned int malicious_put_frequency, unsigned int stop_closest, unsigned int stop_found,
294                unsigned int strict_kademlia, unsigned int gets_succeeded,
295                char *message)
296 {
297   int ret;
298   if (trialuid != NULL)
299     *trialuid = 0;
300   if (outfile == NULL)
301     return GNUNET_SYSERR;
302
303   ret = fprintf(outfile, "set @date = \"%s\", @num = %u, @topology = %u, @bl = %u, "
304                    "@connect = %u, @c_t_o = %u, @c_t_o_m = %f, @t_p = %f, "
305                    "@t_pr = %f, @puts = %u, @gets = %u, "
306                    "@concurrent = %u, @settle = %u, @rounds = %u, "
307                    "@m_gets = %u, @m_puts = %u, @m_drops = %u, "
308                    "@m_g_f = %u, @m_p_f = %u, @s_c = %u, @s_f = %u,"
309                    "@s_k = %u, @g_s = %u, @message = \"%s\";\n",
310                    get_sql_time(), num_nodes, topology,
311                    blacklist_topology, connect_topology,
312                    connect_topology_option, connect_topology_option_modifier,
313                    topology_percentage, topology_probability,
314                    puts, gets, concurrent, settle_time,
315                    num_rounds, malicious_getters, malicious_putters,
316                    malicious_droppers, malicious_get_frequency, malicious_put_frequency,
317                    stop_closest, stop_found, strict_kademlia, gets_succeeded, message);
318
319   if (ret < 0)
320     return GNUNET_SYSERR;
321   ret = fprintf(outfile, "execute insert_trial using "
322                          "@date, @num, @topology, @t_p, @t_pr,"
323                          " @bl, @connect, @c_t_o,"
324                          "@c_t_o_m, @puts, @gets,"
325                          "@concurrent, @settle, @rounds,"
326                          "@m_gets, @m_puts, @m_drops,"
327                          "@m_g_f, @m_p_f, @s_c, @s_f,"
328                          "@s_k, @g_s, @message;\n");
329   if (ret < 0)
330     return GNUNET_SYSERR;
331   ret = fprintf(outfile, "execute select_trial;\n");
332
333   if (ret >= 0)
334     return GNUNET_OK;
335   return GNUNET_SYSERR;
336 }
337
338
339 /*
340  * Inserts the specified stats into the dhttests.generic_stats table
341  *
342  * @param peer the peer inserting the statistic
343  * @param name the name of the statistic
344  * @param section the section of the statistic
345  * @param value the value of the statistic
346  *
347  * @return GNUNET_OK on success, GNUNET_SYSERR on failure
348  */
349 int
350 add_generic_stat (const struct GNUNET_PeerIdentity *peer,
351                   const char *name,
352                   const char *section, uint64_t value)
353 {
354   int ret;
355   if (outfile == NULL)
356     return GNUNET_SYSERR;
357
358   if (peer != NULL)
359     ret = fprintf(outfile, "select nodeuid from nodes where trialuid = @temp_trial and nodeid = \"%s\" into @temp_node;\n", GNUNET_h2s_full(&peer->hashPubKey));
360   else
361     ret = fprintf(outfile, "set @temp_node = 0;\n");
362
363   if (ret < 0)
364     return GNUNET_SYSERR;
365
366   ret = fprintf(outfile, "set @temp_section = \"%s\", @temp_stat = \"%s\", @temp_value = %llu;\n",
367                          section, name, (unsigned long long)value);
368
369   if (ret < 0)
370     return GNUNET_SYSERR;
371
372   ret = fprintf(outfile, "execute insert_generic_stat;\n");
373
374   if (ret < 0)
375     return GNUNET_SYSERR;
376   return GNUNET_OK;
377 }
378
379
380 /*
381  * Inserts the specified stats into the dhttests.node_statistics table
382  *
383  * @param peer the peer inserting the statistic
384  * @param route_requests route requests seen
385  * @param route_forwards route requests forwarded
386  * @param result_requests route result requests seen
387  * @param client_requests client requests initiated
388  * @param result_forwards route results forwarded
389  * @param gets get requests handled
390  * @param puts put requests handle
391  * @param data_inserts data inserted at this node
392  * @param find_peer_requests find peer requests seen
393  * @param find_peers_started find peer requests initiated at this node
394  * @param gets_started get requests initiated at this node
395  * @param puts_started put requests initiated at this node
396  * @param find_peer_responses_received find peer responses received locally
397  * @param get_responses_received get responses received locally
398  * @param find_peer_responses_sent find peer responses sent from this node
399  * @param get_responses_sent get responses sent from this node
400  *
401  * @return GNUNET_OK on success, GNUNET_SYSERR on failure
402  */
403 int
404 add_stat (const struct GNUNET_PeerIdentity *peer, unsigned int route_requests,
405           unsigned int route_forwards, unsigned int result_requests,
406           unsigned int client_requests, unsigned int result_forwards,
407           unsigned int gets, unsigned int puts,
408           unsigned int data_inserts, unsigned int find_peer_requests,
409           unsigned int find_peers_started, unsigned int gets_started,
410           unsigned int puts_started, unsigned int find_peer_responses_received,
411           unsigned int get_responses_received, unsigned int find_peer_responses_sent,
412           unsigned int get_responses_sent)
413 {
414   int ret;
415   if (outfile == NULL)
416     return GNUNET_SYSERR;
417
418   if (peer != NULL)
419     ret = fprintf(outfile, "select nodeuid from nodes where trialuid = @temp_trial and nodeid = \"%s\" into @temp_node;\n", GNUNET_h2s_full(&peer->hashPubKey));
420   else
421     ret = fprintf(outfile, "set @temp_node = 0;\n");
422   if (ret < 0)
423     return GNUNET_SYSERR;
424
425   ret = fprintf(outfile, "set @r_r = %u, @r_f = %u, @res_r = %u, @c_r = %u, "
426                          "@res_f = %u, @gets = %u, @puts = %u, @d_i = %u, "
427                          "@f_p_r = %u, @f_p_s = %u, @g_s = %u, @p_s = %u, "
428                          "@f_p_r_r = %u, @g_r_r = %u, @f_p_r_s = %u, @g_r_s = %u;\n",
429                          route_requests, route_forwards, result_requests,
430                          client_requests, result_forwards, gets, puts,
431                          data_inserts, find_peer_requests, find_peers_started,
432                          gets_started, puts_started, find_peer_responses_received,
433                          get_responses_received, find_peer_responses_sent,
434                          get_responses_sent);
435
436   if (ret < 0)
437     return GNUNET_SYSERR;
438
439   ret = fprintf(outfile, "execute insert_stat using "
440                          "@temp_trial, @temp_node, @r_r, @r_f, @res_r, @c_r, "
441                          "@res_f, @gets, @puts, @d_i, "
442                          "@f_p_r, @f_p_s, @g_s, @p_s, "
443                          "@f_p_r_r, @g_r_r, @f_p_r_s, @g_r_s;\n");
444   if (ret < 0)
445     return GNUNET_SYSERR;
446   return GNUNET_OK;
447 }
448 /*
449  * Inserts the specified dhtkey into the dhttests.dhtkeys table,
450  * stores return value of dhttests.dhtkeys.dhtkeyuid into dhtkeyuid
451  *
452  * @param dhtkeyuid return value
453  * @param dhtkey hashcode of key to insert
454  *
455  * @return GNUNET_OK on success, GNUNET_SYSERR on failure
456  */
457 int
458 add_dhtkey (unsigned long long *dhtkeyuid, const GNUNET_HashCode * dhtkey)
459 {
460   int ret;
461   if (dhtkeyuid != NULL)
462     *dhtkeyuid = 0;
463
464   if (outfile == NULL)
465     return GNUNET_SYSERR;
466
467   if (dhtkey != NULL)
468     ret = fprintf(outfile, "set @dhtkey = \"%s\";\n", GNUNET_h2s_full(dhtkey));
469   else
470     ret = fprintf(outfile, "set @dhtkey = XXXXX;\n");
471
472   if (ret < 0)
473     return GNUNET_SYSERR;
474   ret = fprintf(outfile, "execute insert_dhtkey using @dhtkey;\n");
475
476   if (ret >= 0)
477     return GNUNET_OK;
478   return GNUNET_SYSERR;
479 }
480
481 /*
482  * Inserts the specified node into the dhttests.nodes table
483  *
484  * @param nodeuid the inserted node uid
485  * @param node the node to insert
486  *
487  * @return GNUNET_OK on success, GNUNET_SYSERR on failure
488  */
489 int
490 add_node (unsigned long long *nodeuid, struct GNUNET_PeerIdentity * node)
491 {
492   int ret;
493
494   if (node == NULL)
495     return GNUNET_SYSERR;
496
497   if (outfile == NULL)
498     return GNUNET_SYSERR;
499
500   if (node != NULL)
501     ret = fprintf(outfile, "set @node = \"%s\";\n", GNUNET_h2s_full(&node->hashPubKey));
502   else
503     return GNUNET_SYSERR;
504
505   if (ret < 0)
506     return GNUNET_SYSERR;
507
508   ret = fprintf(outfile, "execute insert_node using @node;\n");
509
510   if (ret >= 0)
511     return GNUNET_OK;
512   return GNUNET_SYSERR;
513 }
514
515 /*
516  * Update dhttests.trials table with current server time as end time
517  *
518  * @param trialuid trial to update
519  * @param gets_succeeded how many gets did the testcase report as successful
520  *
521  * @return GNUNET_OK on success, GNUNET_SYSERR on failure.
522  */
523 int
524 update_trials (unsigned long long trialuid,
525                unsigned int gets_succeeded)
526 {
527   int ret;
528 #if DEBUG_DHTLOG
529   if (trialuid != current_trial)
530     {
531       fprintf (stderr,
532                _("Trialuid to update is not equal to current_trial\n"));
533     }
534 #endif
535
536   if (outfile == NULL)
537     return GNUNET_SYSERR;
538
539   ret = fprintf(outfile, "set @date = \"%s\", @g_s = %u;\n", get_sql_time(), gets_succeeded);
540
541   if (ret < 0)
542     return GNUNET_SYSERR;
543
544   ret = fprintf(outfile, "execute update_trial using @date, @g_s;\n");
545
546   if (ret >= 0)
547     return GNUNET_OK;
548   else
549     return GNUNET_SYSERR;
550 }
551
552
553 /*
554  * Update dhttests.nodes table setting the identified
555  * node as a malicious dropper.
556  *
557  * @param peer the peer that was set to be malicious
558  *
559  * @return GNUNET_OK on success, GNUNET_SYSERR on failure.
560  */
561 int
562 set_malicious (struct GNUNET_PeerIdentity *peer)
563 {
564   int ret;
565
566   if (outfile == NULL)
567     return GNUNET_SYSERR;
568
569   ret = fprintf(outfile, "set @temp_node = \"%s\";\n", GNUNET_h2s_full(&peer->hashPubKey));
570
571   if (ret < 0)
572     return GNUNET_SYSERR;
573
574   ret = fprintf(outfile, "execute set_malicious;\n");
575
576   if (ret >= 0)
577     return GNUNET_OK;
578   else
579     return GNUNET_SYSERR;
580 }
581
582
583 /*
584  * Update dhttests.trials table with total connections information
585  *
586  * @param trialuid the trialuid to update
587  * @param totalConnections the number of connections
588  *
589  * @return GNUNET_OK on success, GNUNET_SYSERR on failure.
590  */
591 int
592 add_connections (unsigned long long trialuid, unsigned int totalConnections)
593 {
594   int ret;
595 #if DEBUG_DHTLOG
596   if (trialuid != current_trial)
597     {
598       fprintf (stderr,
599                _("Trialuid to update is not equal to current_trial(!)(?)\n"));
600     }
601 #endif
602   if (outfile == NULL)
603     return GNUNET_SYSERR;
604
605   ret = fprintf(outfile, "set @conns = %u;\n", totalConnections);
606
607   if (ret < 0)
608     return GNUNET_SYSERR;
609
610   ret = fprintf(outfile, "execute update_conn using @conns;\n");
611
612   if (ret >= 0)
613     return GNUNET_OK;
614   else
615     return GNUNET_SYSERR;
616 }
617
618
619 /*
620  * Update dhttests.topology table with total connections information
621  *
622  * @param totalConnections the number of connections
623  *
624  * @return GNUNET_OK on success, GNUNET_SYSERR on failure.
625  */
626 int
627 update_topology (unsigned int connections)
628 {
629   int ret;
630   if (outfile == NULL)
631     return GNUNET_SYSERR;
632
633   ret = fprintf(outfile, "set @temp_conns = %u;\n", connections);
634
635   if (ret < 0)
636     return GNUNET_SYSERR;
637
638   ret = fprintf(outfile, "execute update_topology using @temp_conns;\n");
639
640   if (ret >= 0)
641     return GNUNET_OK;
642   else
643     return GNUNET_SYSERR;
644 }
645
646 /*
647  * Inserts the specified query into the dhttests.queries table
648  *
649  * @param sqlqueruid inserted query uid
650  * @param queryid dht query id
651  * @param type type of the query
652  * @param hops number of hops query traveled
653  * @param succeeded whether or not query was successful
654  * @param node the node the query hit
655  * @param key the key of the query
656  *
657  * @return GNUNET_OK on success, GNUNET_SYSERR on failure.
658  */
659 int
660 add_query (unsigned long long *sqlqueryuid, unsigned long long queryid,
661            unsigned int type, unsigned int hops, int succeeded,
662            const struct GNUNET_PeerIdentity * node, const GNUNET_HashCode * key)
663 {
664   int ret;
665
666   if (outfile == NULL)
667     return GNUNET_SYSERR;
668
669   if (sqlqueryuid != NULL)
670     *sqlqueryuid = 0;
671
672   if (key != NULL)
673     ret = fprintf(outfile, "select dhtkeyuid from dhtkeys where trialuid = @temp_trial and dhtkey = \"%s\" into @temp_dhtkey;\n", GNUNET_h2s_full(key));
674   else
675     ret = fprintf(outfile, "set @temp_dhtkey = 0;\n");
676
677   if (ret < 0)
678     return GNUNET_SYSERR;
679
680   if (node != NULL)
681     ret = fprintf(outfile, "select nodeuid from nodes where trialuid = @temp_trial and nodeid = \"%s\" into @temp_node;\n", GNUNET_h2s_full(&node->hashPubKey));
682   else
683     ret = fprintf(outfile, "set @temp_node = 0;\n");
684
685   if (ret < 0)
686     return GNUNET_SYSERR;
687
688   ret = fprintf(outfile, "set @qid = %llu, @type = %u, @hops = %u, @succ = %d;\n", queryid, type, hops, succeeded);
689
690   if (ret < 0)
691     return GNUNET_SYSERR;
692
693   ret = fprintf(outfile, "execute insert_query using @type, @hops, @temp_dhtkey, @qid, @succ, @temp_node;\n");
694
695   if (ret >= 0)
696     return GNUNET_OK;
697   else
698     return GNUNET_SYSERR;
699 }
700
701 /*
702  * Inserts the specified route information into the dhttests.routes table
703  *
704  * @param sqlqueruid inserted query uid
705  * @param queryid dht query id
706  * @param type type of the query
707  * @param hops number of hops query traveled
708  * @param succeeded whether or not query was successful
709  * @param node the node the query hit
710  * @param key the key of the query
711  * @param from_node the node that sent the message to node
712  * @param to_node next node to forward message to
713  *
714  * @return GNUNET_OK on success, GNUNET_SYSERR on failure.
715  */
716 int
717 add_route (unsigned long long *sqlqueryuid, unsigned long long queryid,
718            unsigned int type, unsigned int hops,
719            int succeeded, const struct GNUNET_PeerIdentity * node,
720            const GNUNET_HashCode * key, const struct GNUNET_PeerIdentity * from_node,
721            const struct GNUNET_PeerIdentity * to_node)
722 {
723   int ret;
724
725   if (outfile == NULL)
726     return GNUNET_SYSERR;
727
728   if (sqlqueryuid != NULL)
729     *sqlqueryuid = 0;
730
731   if (key != NULL)
732     ret = fprintf(outfile, "select dhtkeyuid from dhtkeys where trialuid = @temp_trial and dhtkey = \"%s\" into @temp_dhtkey;\n", GNUNET_h2s_full(key));
733   else
734     ret = fprintf(outfile, "set @temp_dhtkey = 0;\n");
735
736   if (ret < 0)
737     return GNUNET_SYSERR;
738
739   if (node != NULL)
740     ret = fprintf(outfile, "select nodeuid from nodes where trialuid = @temp_trial and nodeid = \"%s\" into @temp_node;\n", GNUNET_h2s_full(&node->hashPubKey));
741   else
742     ret = fprintf(outfile, "set @temp_node = 0;\n");
743
744   if (ret < 0)
745     return GNUNET_SYSERR;
746
747   if (from_node != NULL)
748     ret = fprintf(outfile, "select nodeuid from nodes where trialuid = @temp_trial and nodeid = \"%s\" into @temp_from_node;\n", GNUNET_h2s_full(&from_node->hashPubKey));
749   else
750     ret = fprintf(outfile, "set @temp_from_node = 0;\n");
751
752   if (ret < 0)
753     return GNUNET_SYSERR;
754
755   if (to_node != NULL)
756     ret = fprintf(outfile, "select nodeuid from nodes where trialuid = @temp_trial and nodeid = \"%s\" into @temp_to_node;\n", GNUNET_h2s_full(&to_node->hashPubKey));
757   else
758     ret = fprintf(outfile, "set @temp_to_node = 0;\n");
759
760   if (ret < 0)
761     return GNUNET_SYSERR;
762
763   ret = fprintf(outfile, "set @qid = %llu, @type = %u, @hops = %u, @succ = %d;\n", queryid, type, hops, succeeded);
764
765   if (ret < 0)
766     return GNUNET_SYSERR;
767
768   ret = fprintf(outfile, "execute insert_route using @type, @hops, @temp_dhtkey, @qid, @succ, @temp_node, @temp_from_node, @temp_to_node;\n");
769
770   if (ret >= 0)
771     return GNUNET_OK;
772   else
773     return GNUNET_SYSERR;
774 }
775
776 /*
777  * Provides the dhtlog api
778  *
779  * @param c the configuration to use to connect to a server
780  *
781  * @return the handle to the server, or NULL on error
782  */
783 void *
784 libgnunet_plugin_dhtlog_mysql_dump_init (void * cls)
785 {
786   struct GNUNET_DHTLOG_Plugin *plugin = cls;
787   char *outfile_name;
788   char *outfile_path;
789   char *fn;
790   int dirwarn;
791
792   cfg = plugin->cfg;
793   max_varchar_len = 255;
794
795   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MySQL (DUMP) DHT Logger: initializing\n");
796
797   if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_string (plugin->cfg,
798                                                          "MYSQLDUMP", "PATH",
799                                                          &outfile_path))
800     {
801       outfile_path = GNUNET_strdup("");
802     }
803
804   GNUNET_asprintf (&outfile_name,
805                    "%s%s-%d",
806                    outfile_path,
807                    "mysqldump",
808                    getpid());
809
810   fn = GNUNET_STRINGS_filename_expand (outfile_name);
811
812   if (fn == NULL)
813     {
814       GNUNET_log (GNUNET_ERROR_TYPE_WARNING, _("Failed to get full path for `%s'\n"), outfile_name);
815       GNUNET_free(outfile_path);
816       GNUNET_free(outfile_name);
817       return NULL;
818     }
819
820   dirwarn = (GNUNET_OK !=  GNUNET_DISK_directory_create_for_file (fn));
821   outfile = FOPEN (fn, "w");
822
823   if (outfile == NULL)
824     {
825       GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_ERROR, "fopen", fn);
826       if (dirwarn)
827         GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
828                     _("Failed to create or access directory for log file `%s'\n"),
829                     fn);
830       GNUNET_free(outfile_path);
831       GNUNET_free(outfile_name);
832       GNUNET_free (fn);
833       return NULL;
834     }
835
836   GNUNET_free (outfile_path);
837   GNUNET_free (outfile_name);
838   GNUNET_free (fn);
839
840   if (iopen () != GNUNET_OK)
841     {
842       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
843                   _("Failed to create file for dhtlog.\n"));
844       return NULL;
845     }
846   GNUNET_assert(plugin->dhtlog_api == NULL);
847   plugin->dhtlog_api = GNUNET_malloc(sizeof(struct GNUNET_DHTLOG_Handle));
848   plugin->dhtlog_api->insert_trial = &add_trial;
849   plugin->dhtlog_api->insert_stat = &add_stat;
850   plugin->dhtlog_api->insert_query = &add_query;
851   plugin->dhtlog_api->update_trial = &update_trials;
852   plugin->dhtlog_api->insert_route = &add_route;
853   plugin->dhtlog_api->insert_node = &add_node;
854   plugin->dhtlog_api->insert_dhtkey = &add_dhtkey;
855   plugin->dhtlog_api->update_connections = &add_connections;
856   plugin->dhtlog_api->insert_topology = &add_topology;
857   plugin->dhtlog_api->insert_extended_topology = &add_extended_topology;
858   plugin->dhtlog_api->update_topology = &update_topology;
859   plugin->dhtlog_api->set_malicious = &set_malicious;
860   plugin->dhtlog_api->add_generic_stat = &add_generic_stat;
861
862   return plugin;
863 }
864
865 /**
866  * Shutdown the plugin.
867  */
868 void *
869 libgnunet_plugin_dhtlog_mysql_dump_done (void * cls)
870 {
871   struct GNUNET_DHTLOG_Handle *dhtlog_api = cls;
872   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
873               "MySQL DHT Logger: database shutdown\n");
874   GNUNET_assert(dhtlog_api != NULL);
875
876   GNUNET_free(dhtlog_api);
877   return NULL;
878 }
879
880 /* end of plugin_dhtlog_mysql.c */