fix indentation, bad stack allocation of buf
[oweals/gnunet.git] / src / my / my_result_helper.c
1  /*
2   This file is part of GNUnet
3   Copyright (C) 2014, 2015, 2016 GNUnet e.V.
4
5   GNUnet is free software; you can redistribute it and/or modify it under the
6   terms of the GNU General Public License as published by the Free Software
7   Foundation; either version 3, or (at your option) any later version.
8
9   GNUnet is distributed in the hope that it will be useful, but WITHOUT ANY
10   WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
11   A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
12
13   You should have received a copy of the GNU General Public License along with
14   GNUnet; see the file COPYING.  If not, If not, see <http://www.gnu.org/licenses/>
15 */
16 /**
17  * @file my/my_result_helper.c
18  * @brief functions to extract result values
19  * @author Christophe Genevey
20  */
21
22 #include "platform.h"
23 #include "gnunet_util_lib.h"
24 #include "gnunet_my_lib.h"
25
26
27 /**
28  * extract data from a Mysql database @a result at row @a row
29  *
30  * @param cls closure
31  * @param[in,out] rs
32  * @param stmt the mysql statement that is being run
33  * @param column the column that is being processed
34  * @param[out] result mysql result
35  * @return
36  *   #GNUNET_OK if all results could be extracted
37  *   #GNUNET_SYSERR if a result was invalid
38  */
39 static int
40 pre_extract_varsize_blob (void *cls,
41                           struct GNUNET_MY_ResultSpec *rs,
42                           MYSQL_STMT *stmt,
43                           unsigned int column,
44                           MYSQL_BIND *results)
45 {
46   results[0].buffer = NULL;
47   results[0].buffer_length = 0;
48   results[0].length = &rs->mysql_bind_output_length;
49
50   return GNUNET_OK;
51 }
52
53
54 /**
55  * extract data from a Mysql database @a result at row @a row
56  *
57  * @param cls closure
58  * @param[in,out] rs
59  * @param stmt the mysql statement that is being run
60  * @param column the column that is being processed
61  * @param[out] results
62  * @return
63  *   #GNUNET_OK if all results could be extracted
64  *   #GNUNET_SYSERR if a result was invalid
65  */
66 static int
67 post_extract_varsize_blob (void *cls,
68                            struct GNUNET_MY_ResultSpec *rs,
69                            MYSQL_STMT *stmt,
70                            unsigned int column,
71                            MYSQL_BIND *results)
72 {
73   void *buf;
74   size_t size;
75
76   size = (size_t) rs->mysql_bind_output_length;
77
78   if (rs->mysql_bind_output_length != size)
79     return GNUNET_SYSERR; /* 'unsigned long' does not fit in size_t!? */
80
81   buf = GNUNET_malloc (size);
82
83   results[0].buffer = buf;
84   results[0].buffer_length = size;
85   results[0].buffer_type = MYSQL_TYPE_BLOB;
86
87   if (0 !=
88       mysql_stmt_fetch_column (stmt,
89                                results,
90                                column,
91                                0))
92   {
93     GNUNET_free (buf);
94     return GNUNET_SYSERR;
95   }
96
97   *(void **) rs->dst = buf;
98   *rs->result_size = size;
99
100   return GNUNET_OK;
101 }
102
103
104 /**
105  * extract data from a Mysql database @a result at row @a row
106  *
107  * @param cls closure
108  * @param[in,out] rs
109  */
110 static void
111 cleanup_varsize_blob (void *cls,
112                       struct GNUNET_MY_ResultSpec *rs)
113 {
114   void **ptr = (void **)rs->dst;
115
116   if (NULL != *ptr)
117   {
118     GNUNET_free (*ptr);
119     *ptr = NULL;
120   }
121 }
122
123
124 /**
125  * Variable-size result expected
126  *
127  * @param[out] dst where to store the result, allocated
128  * @param[out] ptr_size where to store the size of @a dst
129  * @return array entru for the result specification to use
130  */
131 struct GNUNET_MY_ResultSpec
132 GNUNET_MY_result_spec_variable_size (void **dst,
133                                     size_t *ptr_size)
134 {
135   struct GNUNET_MY_ResultSpec res =
136   {
137     .pre_conv = &pre_extract_varsize_blob,
138     .post_conv = &post_extract_varsize_blob,
139     .cleaner = &cleanup_varsize_blob,
140     .dst =  (void *)(dst),
141     .result_size = ptr_size,
142     .num_fields = 1
143   };
144
145   return res;
146 }
147
148
149 /**
150  * Extract data from a Mysql database @a result at row @a row
151  *
152  * @param cls closure
153  * @param[in,out] rs
154  * @param stmt the mysql statement that is being run
155  * @param column the column that is being processed
156  * @param[out] results
157  * @return
158  *  #GNUNET_OK if all results could be extracted
159  *  #GNUNET_SYSERR if a result was invalid(non-existing field or NULL)
160  */
161 static int
162 pre_extract_fixed_blob (void *cls,
163                         struct GNUNET_MY_ResultSpec *rs,
164                         MYSQL_STMT *stmt,
165                         unsigned int column,
166                         MYSQL_BIND *results)
167 {
168   results[0].buffer = rs->dst;
169   results[0].buffer_length = rs->dst_size;
170   results[0].length = &rs->mysql_bind_output_length;
171   results[0].buffer_type = MYSQL_TYPE_BLOB;
172
173   return GNUNET_OK;
174 }
175
176
177 /**
178  * Check size of extracted fixed size data from a Mysql database @a
179  * result at row @a row
180  *
181  * @param cls closure
182  * @param[in,out] rs
183  * @param stmt the mysql statement that is being run
184  * @param column the column that is being processed
185  * @param[out] results
186  * @return
187  *  #GNUNET_OK if all results could be extracted
188  *  #GNUNET_SYSERR if a result was invalid(non-existing field or NULL)
189  */
190 static int
191 post_extract_fixed_blob (void *cls,
192                          struct GNUNET_MY_ResultSpec *rs,
193                          MYSQL_STMT *stmt,
194                          unsigned int column,
195                          MYSQL_BIND *results)
196 {
197   if (rs->dst_size != rs->mysql_bind_output_length)
198     return GNUNET_SYSERR;
199   return GNUNET_OK;
200 }
201
202
203 /**
204  * Fixed-size result expected.
205  *
206  * @param name name of the field in the table
207  * @param[out] dst where to store the result
208  * @param ptr_size number of bytes in @a dst
209  * @return array entry for the result specification to use
210  */
211 struct GNUNET_MY_ResultSpec
212 GNUNET_MY_result_spec_fixed_size (void *ptr,
213                                   size_t ptr_size)
214 {
215   struct GNUNET_MY_ResultSpec res =
216   {
217     .pre_conv = &pre_extract_fixed_blob,
218     .post_conv = &post_extract_fixed_blob,
219     .cleaner = NULL,
220     .dst = (void *)(ptr),
221     .dst_size = ptr_size,
222     .num_fields = 1
223   };
224
225   return res;
226 }
227
228
229 /**
230   * Extract data from a Mysql database @a result at row @a row
231   *
232   * @param cls closure
233   * @param[in,out] rs
234   * @param stmt the mysql statement that is being run
235   * @param column the column that is being processed
236   * @param[out] results
237   * @return
238   *   #GNUNET_OK if all results could be extracted
239   *   #GNUNET_SYSERR if a result was invalid (non-existing field or NULL)
240   */
241 static int
242 pre_extract_rsa_public_key (void *cls,
243                             struct GNUNET_MY_ResultSpec *rs,
244                             MYSQL_STMT *stmt,
245                             unsigned int column,
246                             MYSQL_BIND *results)
247 {
248   results[0].buffer = NULL;
249   results[0].buffer_length = 0;
250   results[0].length = &rs->mysql_bind_output_length;
251   results[0].buffer_type = MYSQL_TYPE_BLOB;
252
253   return GNUNET_OK;
254 }
255
256
257 /**
258   * Check size of extracted fixed size data from a Mysql database @a
259   * result at row @a row
260   *
261   * @param cls closure
262   * @param[in,out] rs
263   * @param stmt the mysql statement that is being run
264   * @param column the column that is being processed
265   * @param[out] results
266   * @return
267   *   #GNUNET_OK if all results could be extracted
268   *   #GNUNET_SYSERR if a result was invalid (non-existing field or NULL)
269   */
270 static int
271 post_extract_rsa_public_key  (void *cls,
272                               struct GNUNET_MY_ResultSpec *rs,
273                               MYSQL_STMT *stmt,
274                               unsigned int column,
275                               MYSQL_BIND *results)
276
277 {
278   struct GNUNET_CRYPTO_RsaPublicKey **pk = rs->dst;
279   void *buf;
280   size_t size;
281
282   size = (size_t) rs->mysql_bind_output_length;
283
284   if (rs->mysql_bind_output_length != size)
285     return GNUNET_SYSERR; /* 'unsigned long' does not fit in size_t!? */
286   buf = GNUNET_malloc (size);
287
288   results[0].buffer = buf;
289   results[0].buffer_length = size;
290   results[0].buffer_type = MYSQL_TYPE_BLOB;
291   if (0 !=
292       mysql_stmt_fetch_column (stmt,
293                                results,
294                                column,
295                                0))
296   {
297     GNUNET_free (buf);
298     return GNUNET_SYSERR;
299   }
300
301   *pk = GNUNET_CRYPTO_rsa_public_key_decode (buf,
302                                              size);
303   GNUNET_free (buf);
304   if (NULL == *pk)
305   {
306     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
307                 "Results contains bogus public key value (fail to decode)\n");
308     return GNUNET_SYSERR;
309   }
310
311   return GNUNET_OK;
312 }
313
314
315 /**
316  * Function called to clean up memory allocated
317  * by a #GNUNET_MY_ResultConverter.
318  *
319  * @param cls closure
320  * @param rs result data to clean up
321  */
322 static void
323 clean_rsa_public_key (void *cls,
324                       struct GNUNET_MY_ResultSpec *rs)
325 {
326   struct GNUNET_CRYPTO_RsaPublicKey **pk = rs->dst;
327
328   if (NULL != *pk)
329   {
330     GNUNET_CRYPTO_rsa_public_key_free (*pk);
331     *pk = NULL;
332   }
333 }
334
335
336 /**
337   * RSA public key expected
338   *
339   * @param name name of the field in the table
340   * @param[out] rsa where to store the result
341   * @return array entry for the result specification to use
342   */
343 struct GNUNET_MY_ResultSpec
344 GNUNET_MY_result_spec_rsa_public_key (struct GNUNET_CRYPTO_RsaPublicKey **rsa)
345 {
346   struct GNUNET_MY_ResultSpec res = {
347     .pre_conv = &pre_extract_rsa_public_key,
348     .post_conv = &post_extract_rsa_public_key,
349     .cleaner = &clean_rsa_public_key,
350     .dst = (void *) rsa,
351     .dst_size = 0,
352     .num_fields = 1
353   };
354
355   return res;
356 }
357
358
359 /**
360   * Extract data from a Mysql database @a result at row @a row.
361   *
362   * @param cls closure
363   * @param[in,out] rs
364   * @param stmt the mysql statement that is being run
365   * @param column the column that is being processed
366   * @param[out] results
367   * @return
368   *    #GNUNET_OK if all results could be extracted
369   *    #GNUNET_SYSERR if a result was invalid (non-existing field or NULL)
370   */
371 static int
372 pre_extract_rsa_signature (void *cls,
373                       struct GNUNET_MY_ResultSpec *rs,
374                       MYSQL_STMT *stmt,
375                       unsigned int column,
376                       MYSQL_BIND *results)
377 {
378   results[0].buffer = 0;
379   results[0].buffer_length = 0;
380   results[0].length = &rs->mysql_bind_output_length;
381   results[0].buffer_type = MYSQL_TYPE_BLOB;
382
383   return GNUNET_OK;
384 }
385
386
387 /**
388   * Extract data from a Mysql database @a result at row @a row.
389   *
390   * @param cls closure
391   * @param[in,out] rs
392   * @param stmt the mysql statement that is being run
393   * @param column the column that is being processed
394   * @param[out] results
395   * @return
396   *    #GNUNET_OK if all results could be extracted
397   *    #GNUNET_SYSERR if a result was invalid (non-existing field or NULL)
398   */
399 static int
400 post_extract_rsa_signature (void *cls,
401                             struct GNUNET_MY_ResultSpec *rs,
402                             MYSQL_STMT *stmt,
403                             unsigned int column,
404                             MYSQL_BIND *results)
405 {
406   struct GNUNET_CRYPTO_RsaSignature **sig = rs->dst;
407   void *buf;
408   size_t size;
409
410   size = (size_t) rs->mysql_bind_output_length;
411
412   if (rs->mysql_bind_output_length != size)
413     return GNUNET_SYSERR; /* 'unsigned long' does not fit in size_t!? */
414   buf = GNUNET_malloc (size);
415
416   results[0].buffer = buf;
417   results[0].buffer_length = size;
418   results[0].buffer_type = MYSQL_TYPE_BLOB;
419   if (0 !=
420       mysql_stmt_fetch_column (stmt,
421                                results,
422                                column,
423                                0))
424   {
425     GNUNET_free (buf);
426     return GNUNET_SYSERR;
427   }
428
429   *sig = GNUNET_CRYPTO_rsa_signature_decode (buf,
430                                              size);
431   GNUNET_free (buf);
432   if (NULL == *sig)
433   {
434     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
435                 "Resuls contains bogus signature value (fails to decode)\n");
436     return GNUNET_SYSERR;
437   }
438   return GNUNET_OK;
439 }
440
441
442 /**
443  * Function called to clean up memory allocated
444  * by a #GNUNET_MY_ResultConverter.
445  *
446  * @param cls closure
447  * @param rd result data to clean up
448  */
449 static void
450 clean_rsa_signature (void *cls,
451           struct GNUNET_MY_ResultSpec *rs)
452 {
453   struct GNUNET_CRYPTO_RsaSignature **sig = rs->dst;
454
455   if (NULL != *sig)
456   {
457     GNUNET_CRYPTO_rsa_signature_free (*sig);
458     *sig = NULL;
459   }
460 }
461
462
463 /**
464   * RSA signature expected.
465   *
466   * @param[out] sig where to store the result;
467   * @return array entry for the result specification to use
468   */
469 struct GNUNET_MY_ResultSpec
470 GNUNET_MY_result_spec_rsa_signature (struct GNUNET_CRYPTO_RsaSignature **sig)
471 {
472   struct GNUNET_MY_ResultSpec res =
473   {
474     .pre_conv = &pre_extract_rsa_signature,
475     .post_conv = &post_extract_rsa_signature,
476     .cleaner = &clean_rsa_signature,
477     .dst = (void *)sig,
478     .dst_size = 0,
479     .num_fields = 1
480   };
481   return res;
482 }
483
484
485 /**
486  * Extract data from a Mysql database @a result at row @a row
487  *
488  * @param cls closure
489  * @param[in,out] rs
490  * @param stmt the mysql statement that is being run
491  * @param column the column that is being processed
492  * @param[out] results
493  * @return
494  *    #GNUNET_OK if all results could be extracted
495  *    #GNUNET_SYSERR if a result was invalid (non existing field or NULL)
496  */
497 static int
498 pre_extract_string (void * cls,
499                     struct GNUNET_MY_ResultSpec *rs,
500                     MYSQL_STMT *stmt,
501                     unsigned int column,
502                     MYSQL_BIND *results)
503 {
504   results[0].buffer = NULL;
505   results[0].buffer_length = 0;
506   results[0].length = &rs->mysql_bind_output_length;
507   results[0].buffer_type = MYSQL_TYPE_BLOB;
508
509   return GNUNET_OK;
510 }
511
512
513 /**
514  * Check size of extracted fixed size data from a Mysql database @a
515  *
516  * @param cls closure
517  * @param[in,out] rs
518  * @param stmt the mysql statement that is being run
519  * @param column the column that is being processed
520  * @param[out] results
521  * @return
522  *    #GNUNET_OK if all results could be extracted
523  *    #GNUNET_SYSERR if a result was invalid (non existing field or NULL)
524  */
525 static int
526 post_extract_string (void * cls,
527                      struct GNUNET_MY_ResultSpec *rs,
528                      MYSQL_STMT *stmt,
529                      unsigned int column,
530                      MYSQL_BIND *results)
531 {
532   size_t size = (size_t) rs->mysql_bind_output_length;
533   char *buf;
534
535   if (rs->mysql_bind_output_length != size)
536     return GNUNET_SYSERR;
537
538   buf = GNUNET_malloc (size);
539   results[0].buffer = buf;
540   results[0].buffer_length = size;
541   results[0].buffer_type = MYSQL_TYPE_BLOB;
542
543   if (0 !=
544       mysql_stmt_fetch_column (stmt,
545                                results,
546                                column,
547                                0))
548   {
549     GNUNET_free (buf);
550     return GNUNET_SYSERR;
551   }
552   rs->dst = buf;
553   return GNUNET_OK;
554 }
555
556
557 /**
558  * 0- terminated string exprected.
559  *
560  * @param[out] dst where to store the result, allocated
561  * @return array entry for the result specification to use
562  */
563 struct GNUNET_MY_ResultSpec
564 GNUNET_MY_result_spec_string (char **dst)
565 {
566   struct GNUNET_MY_ResultSpec res = {
567     .pre_conv = &pre_extract_string,
568     .post_conv = &post_extract_string,
569     .cleaner = NULL,
570     .dst = (void *) dst,
571     .dst_size = 0,
572     .num_fields = 1
573   };
574   return res;
575 }
576
577
578 /**
579  * Absolute time expected
580  *
581  * @param name name of the field in the table
582  * @param[out] at where to store the result
583  * @return array entry for the result specification to use
584   */
585 struct GNUNET_MY_ResultSpec
586 GNUNET_MY_result_spec_absolute_time (struct GNUNET_TIME_Absolute *at)
587 {
588   return GNUNET_MY_result_spec_uint64 (&at->abs_value_us);
589 }
590
591
592 /**
593   * Absolute time in network byte order expected
594   *
595   * @param[out] at where to store the result
596   * @return array entry for the result specification to use
597   */
598 struct GNUNET_MY_ResultSpec
599 GNUNET_MY_result_spec_absolute_time_nbo (struct GNUNET_TIME_AbsoluteNBO *at)
600 {
601   struct GNUNET_MY_ResultSpec res =
602     GNUNET_MY_result_spec_auto_from_type (&at->abs_value_us__);
603   return res;
604 }
605
606
607 /**
608  * Extract data from a Postgres database @a result at row @a row.
609  *
610  * @param cls closure
611  * @param[in,out] rs
612  * @param stmt the mysql statement that is being run
613  * @param column the column that is being processed
614  * @param[out] results
615  * @return
616  *   #GNUNET_YES if all results could be extracted
617  *   #GNUNET_SYSERR if a result was invalid (non-existing field or NULL)
618  */
619 static int
620 pre_extract_uint16 (void *cls,
621                     struct GNUNET_MY_ResultSpec *rs,
622                     MYSQL_STMT *stmt,
623                     unsigned int column,
624                     MYSQL_BIND *results)
625 {
626   results[0].buffer = rs->dst;
627   results[0].buffer_length = rs->dst_size;
628   results[0].length = &rs->mysql_bind_output_length;
629   results[0].buffer_type = MYSQL_TYPE_SHORT;
630
631   return GNUNET_OK;
632 }
633
634
635 /**
636  * Check size of extracted fixed size data from a Mysql datbase.
637  *
638  * @param cls closure
639  * @param[in,out] rs
640  * @param stmt the mysql statement that is being run
641  * @param column the column that is being processed
642  * @param[out] results
643  * @return
644  *   #GNUNET_YES if all results could be extracted
645  *   #GNUNET_SYSERR if a result was invalid (non-existing field or NULL)
646  */
647 static int
648 post_extract_uint16 (void *cls,
649                      struct GNUNET_MY_ResultSpec *rs,
650                      MYSQL_STMT *stmt,
651                      unsigned int column,
652                      MYSQL_BIND *results)
653 {
654   if (rs->dst_size != rs->mysql_bind_output_length)
655     return GNUNET_SYSERR;
656   return GNUNET_OK;
657 }
658
659
660 /**
661  * uint16_t expected
662  *
663  * @param[out] u16 where to store the result
664  * @return array entry for the result specification to use
665  */
666 struct GNUNET_MY_ResultSpec
667 GNUNET_MY_result_spec_uint16 (uint16_t *u16)
668 {
669   struct GNUNET_MY_ResultSpec res = {
670     .pre_conv = &pre_extract_uint16,
671     .post_conv = &post_extract_uint16,
672     .cleaner = NULL,
673     .dst = (void *) u16,
674     .dst_size = sizeof (*u16),
675     .num_fields = 1
676   };
677   return res;
678 }
679
680
681 /**
682   * Extrac data from a  MYSQL database @a result at row @a row
683   *
684   * @param cls closure
685   * @param cls closure
686   * @param[in,out] rs
687   * @param stmt the mysql statement that is being run
688   * @param column the column that is being processed
689   * @param[out] results
690   * @return
691   *      #GNUNET_OK if all results could be extracted
692   *      #GNUNET_SYSERR if a result was invalid (non-existing field or NULL)
693   */
694 static int
695 pre_extract_uint32 (void *cls,
696                     struct GNUNET_MY_ResultSpec *rs,
697                     MYSQL_STMT *stmt,
698                     unsigned int column,
699                     MYSQL_BIND *results)
700 {
701   results[0].buffer = rs->dst;
702   results[0].buffer_length = rs->dst_size;
703   results[0].length = &rs->mysql_bind_output_length;
704   results[0].buffer_type = MYSQL_TYPE_LONG;
705
706   return GNUNET_OK;
707 }
708
709
710 /**
711   * Extrac data from a  MYSQL database @a result at row @a row
712   *
713   * @param cls closure
714   * @param cls closure
715   * @param[in,out] rs
716   * @param stmt the mysql statement that is being run
717   * @param column the column that is being processed
718   * @param[out] results
719   * @return
720   *      #GNUNET_OK if all results could be extracted
721   *      #GNUNET_SYSERR if a result was invalid (non-existing field or NULL)
722   */
723 static int
724 post_extract_uint32 (void *cls,
725                      struct GNUNET_MY_ResultSpec *rs,
726                      MYSQL_STMT * stmt,
727                      unsigned int column,
728                      MYSQL_BIND *results)
729 {
730   if (rs->dst_size != rs->mysql_bind_output_length)
731       return GNUNET_SYSERR;
732   return GNUNET_OK;
733 }
734
735
736 /**
737   * uint32_t expected
738   *
739   * @param[out] u32 where to store the result
740   * @return array entry for the result specification to use
741   */
742 struct GNUNET_MY_ResultSpec
743 GNUNET_MY_result_spec_uint32 (uint32_t *u32)
744 {
745   struct GNUNET_MY_ResultSpec res = {
746     .pre_conv = &pre_extract_uint32,
747     .post_conv = &post_extract_uint32,
748     .cleaner = NULL,
749     .dst = (void *) u32,
750     .dst_size = sizeof (*u32),
751     .num_fields = 1
752   };
753   return res;
754 }
755
756
757 /**
758  * Extract data from a MYSQL database @a result at row @a row
759  *
760  * @param cls closure
761  * @param[in,out] rs
762  * @param stmt the mysql statement that is being run
763  * @param column the column that is being processed
764  * @param[out] results
765  * @return
766  *    #GNUNET_OK if all results could be extracted
767  *    #GNUNET_SYSERR if a result was invalid (non-existing field or NULL)
768  */
769 static int
770 pre_extract_uint64 (void *cls,
771                     struct GNUNET_MY_ResultSpec *rs,
772                     MYSQL_STMT *stmt,
773                     unsigned int column,
774                     MYSQL_BIND *results)
775 {
776   results[0].buffer = rs->dst;
777   results[0].buffer_length = rs->dst_size;
778   results[0].length = &rs->mysql_bind_output_length;
779   results[0].buffer_type = MYSQL_TYPE_LONGLONG;
780
781   return GNUNET_OK;
782 }
783
784
785 /**
786  * Check size of extracted fixe size data from a Mysql database
787  *
788  * @param cls closure
789  * @param[in,out] rs
790  * @param stmt the mysql statement that is being run
791  * @param column the column that is being processed
792  * @param[out] results
793  * @return
794  *    #GNUNET_OK if all results could be extracted
795  *    #GNUNET_SYSERR if a result was invalid (non-existing field or NULL)
796  */
797 static int
798 post_extract_uint64 (void *cls,
799                      struct GNUNET_MY_ResultSpec *rs,
800                      MYSQL_STMT *stmt,
801                      unsigned int column,
802                      MYSQL_BIND *results)
803 {
804   if (rs->dst_size != rs->mysql_bind_output_length)
805     return GNUNET_SYSERR;
806   return GNUNET_OK;
807 }
808
809
810 /**
811  * uint64_t expected.
812  *
813  * @param[out] u64 where to store the result
814  * @return array entry for the result specification to use
815  */
816 struct GNUNET_MY_ResultSpec
817 GNUNET_MY_result_spec_uint64 (uint64_t *u64)
818 {
819   struct GNUNET_MY_ResultSpec res = {
820     .pre_conv = &pre_extract_uint64,
821     .post_conv = &post_extract_uint64,
822     .cleaner = NULL,
823     .dst = (void *) u64,
824     .dst_size = sizeof (*u64),
825     .num_fields = 1
826   };
827   return res;
828 }
829
830
831 /* end of pq_result_helper.c */