123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510 |
- /*
- This file is part of GNUnet
- Copyright (C) 2017 GNUnet e.V.
- GNUnet is free software: you can redistribute it and/or modify it
- under the terms of the GNU Affero General Public License as published
- by the Free Software Foundation, either version 3 of the License,
- or (at your option) any later version.
- GNUnet is distributed in the hope that it will be useful, but
- WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Affero General Public License for more details.
- You should have received a copy of the GNU Affero General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
- SPDX-License-Identifier: AGPL3.0-or-later
- */
- /**
- * @file sq/sq_query_helper.c
- * @brief helper functions for queries
- * @author Christian Grothoff
- */
- #include "platform.h"
- #include "gnunet_sq_lib.h"
- /**
- * Function called to convert input argument into SQL parameters.
- *
- * @param cls closure
- * @param data pointer to input argument
- * @param data_len number of bytes in @a data (if applicable)
- * @param stmt sqlite statement to bind parameters for
- * @param off offset of the argument to bind in @a stmt, numbered from 1,
- * so immediately suitable for passing to `sqlite3_bind`-functions.
- * @return #GNUNET_SYSERR on error, #GNUNET_OK on success
- */
- static int
- bind_fixed_blob (void *cls,
- const void *data,
- size_t data_len,
- sqlite3_stmt *stmt,
- unsigned int off)
- {
- if (SQLITE_OK !=
- sqlite3_bind_blob64 (stmt,
- (int) off,
- data,
- (sqlite3_uint64) data_len,
- SQLITE_TRANSIENT))
- return GNUNET_SYSERR;
- return GNUNET_OK;
- }
- /**
- * Generate query parameter for a buffer @a ptr of
- * @a ptr_size bytes.
- *
- * @param ptr pointer to the query parameter to pass
- * @oaran ptr_size number of bytes in @a ptr
- */
- struct GNUNET_SQ_QueryParam
- GNUNET_SQ_query_param_fixed_size (const void *ptr,
- size_t ptr_size)
- {
- struct GNUNET_SQ_QueryParam qp = {
- .conv = &bind_fixed_blob,
- .data = ptr,
- .size = ptr_size,
- .num_params = 1
- };
- return qp;
- }
- /**
- * Function called to convert input argument into SQL parameters.
- *
- * @param cls closure
- * @param data pointer to input argument
- * @param data_len number of bytes in @a data (if applicable)
- * @param stmt sqlite statement to bind parameters for
- * @param off offset of the argument to bind in @a stmt, numbered from 1,
- * so immediately suitable for passing to `sqlite3_bind`-functions.
- * @return #GNUNET_SYSERR on error, #GNUNET_OK on success
- */
- static int
- bind_string (void *cls,
- const void *data,
- size_t data_len,
- sqlite3_stmt *stmt,
- unsigned int off)
- {
- if (NULL == data)
- {
- if (SQLITE_OK !=
- sqlite3_bind_null (stmt,
- (int) off))
- return GNUNET_SYSERR;
- return GNUNET_OK;
- }
- if (SQLITE_OK !=
- sqlite3_bind_text (stmt,
- (int) off,
- (const char *) data,
- -1,
- SQLITE_TRANSIENT))
- return GNUNET_SYSERR;
- return GNUNET_OK;
- }
- /**
- * Generate query parameter for a string.
- *
- * @param ptr pointer to the string query parameter to pass
- */
- struct GNUNET_SQ_QueryParam
- GNUNET_SQ_query_param_string (const char *ptr)
- {
- struct GNUNET_SQ_QueryParam qp = {
- .conv = &bind_string,
- .data = ptr,
- .num_params = 1
- };
- return qp;
- }
- /**
- * Function called to convert input argument into SQL parameters.
- *
- * @param cls closure
- * @param data pointer to input argument
- * @param data_len number of bytes in @a data (if applicable)
- * @param stmt sqlite statement to bind parameters for
- * @param off offset of the argument to bind in @a stmt, numbered from 1,
- * so immediately suitable for passing to `sqlite3_bind`-functions.
- * @return #GNUNET_SYSERR on error, #GNUNET_OK on success
- */
- static int
- bind_rsa_pub (void *cls,
- const void *data,
- size_t data_len,
- sqlite3_stmt *stmt,
- unsigned int off)
- {
- const struct GNUNET_CRYPTO_RsaPublicKey *rsa = data;
- void *buf;
- size_t buf_size;
- GNUNET_break (NULL == cls);
- buf_size = GNUNET_CRYPTO_rsa_public_key_encode (rsa,
- &buf);
- if (SQLITE_OK !=
- sqlite3_bind_blob64 (stmt,
- (int) off,
- buf,
- (sqlite3_uint64) buf_size,
- SQLITE_TRANSIENT))
- {
- GNUNET_free (buf);
- return GNUNET_SYSERR;
- }
- GNUNET_free (buf);
- return GNUNET_OK;
- }
- /**
- * Generate query parameter for an RSA public key. The
- * database must contain a BLOB type in the respective position.
- *
- * @param x the query parameter to pass.
- */
- struct GNUNET_SQ_QueryParam
- GNUNET_SQ_query_param_rsa_public_key (const struct
- GNUNET_CRYPTO_RsaPublicKey *x)
- {
- struct GNUNET_SQ_QueryParam qp = {
- .conv = &bind_rsa_pub,
- .data = x,
- .num_params = 1
- };
- return qp;
- }
- /**
- * Function called to convert input argument into SQL parameters.
- *
- * @param cls closure
- * @param data pointer to input argument
- * @param data_len number of bytes in @a data (if applicable)
- * @param stmt sqlite statement to bind parameters for
- * @param off offset of the argument to bind in @a stmt, numbered from 1,
- * so immediately suitable for passing to `sqlite3_bind`-functions.
- * @return #GNUNET_SYSERR on error, #GNUNET_OK on success
- */
- static int
- bind_rsa_sig (void *cls,
- const void *data,
- size_t data_len,
- sqlite3_stmt *stmt,
- unsigned int off)
- {
- const struct GNUNET_CRYPTO_RsaSignature *sig = data;
- void *buf;
- size_t buf_size;
- GNUNET_break (NULL == cls);
- buf_size = GNUNET_CRYPTO_rsa_signature_encode (sig,
- &buf);
- if (SQLITE_OK !=
- sqlite3_bind_blob64 (stmt,
- (int) off,
- buf,
- (sqlite3_uint64) buf_size,
- SQLITE_TRANSIENT))
- {
- GNUNET_free (buf);
- return GNUNET_SYSERR;
- }
- GNUNET_free (buf);
- return GNUNET_OK;
- }
- /**
- * Generate query parameter for an RSA signature. The
- * database must contain a BLOB type in the respective position.
- *
- * @param x the query parameter to pass
- */
- struct GNUNET_SQ_QueryParam
- GNUNET_SQ_query_param_rsa_signature (const struct GNUNET_CRYPTO_RsaSignature *x)
- {
- struct GNUNET_SQ_QueryParam qp = {
- .conv = &bind_rsa_sig,
- .data = x,
- .num_params = 1
- };
- return qp;
- }
- /**
- * Function called to convert input argument into SQL parameters.
- *
- * @param cls closure
- * @param data pointer to input argument
- * @param data_len number of bytes in @a data (if applicable)
- * @param stmt sqlite statement to bind parameters for
- * @param off offset of the argument to bind in @a stmt, numbered from 1,
- * so immediately suitable for passing to `sqlite3_bind`-functions.
- * @return #GNUNET_SYSERR on error, #GNUNET_OK on success
- */
- static int
- bind_abstime (void *cls,
- const void *data,
- size_t data_len,
- sqlite3_stmt *stmt,
- unsigned int off)
- {
- const struct GNUNET_TIME_Absolute *u = data;
- struct GNUNET_TIME_Absolute abs;
- abs = *u;
- if (abs.abs_value_us > INT64_MAX)
- abs.abs_value_us = INT64_MAX;
- GNUNET_assert (sizeof(uint64_t) == data_len);
- if (SQLITE_OK !=
- sqlite3_bind_int64 (stmt,
- (int) off,
- (sqlite3_int64) abs.abs_value_us))
- return GNUNET_SYSERR;
- return GNUNET_OK;
- }
- /**
- * Generate query parameter for an absolute time value.
- * The database must store a 64-bit integer.
- *
- * @param x pointer to the query parameter to pass
- */
- struct GNUNET_SQ_QueryParam
- GNUNET_SQ_query_param_absolute_time (const struct GNUNET_TIME_Absolute *x)
- {
- struct GNUNET_SQ_QueryParam qp = {
- .conv = &bind_abstime,
- .data = x,
- .size = sizeof(struct GNUNET_TIME_Absolute),
- .num_params = 1
- };
- return qp;
- }
- /**
- * Function called to convert input argument into SQL parameters.
- *
- * @param cls closure
- * @param data pointer to input argument
- * @param data_len number of bytes in @a data (if applicable)
- * @param stmt sqlite statement to bind parameters for
- * @param off offset of the argument to bind in @a stmt, numbered from 1,
- * so immediately suitable for passing to `sqlite3_bind`-functions.
- * @return #GNUNET_SYSERR on error, #GNUNET_OK on success
- */
- static int
- bind_nbotime (void *cls,
- const void *data,
- size_t data_len,
- sqlite3_stmt *stmt,
- unsigned int off)
- {
- const struct GNUNET_TIME_AbsoluteNBO *u = data;
- struct GNUNET_TIME_Absolute abs;
- abs = GNUNET_TIME_absolute_ntoh (*u);
- if (abs.abs_value_us > INT64_MAX)
- abs.abs_value_us = INT64_MAX;
- GNUNET_assert (sizeof(uint64_t) == data_len);
- if (SQLITE_OK !=
- sqlite3_bind_int64 (stmt,
- (int) off,
- (sqlite3_int64) abs.abs_value_us))
- return GNUNET_SYSERR;
- return GNUNET_OK;
- }
- /**
- * Generate query parameter for an absolute time value.
- * The database must store a 64-bit integer.
- *
- * @param x pointer to the query parameter to pass
- */
- struct GNUNET_SQ_QueryParam
- GNUNET_SQ_query_param_absolute_time_nbo (const struct
- GNUNET_TIME_AbsoluteNBO *x)
- {
- struct GNUNET_SQ_QueryParam qp = {
- .conv = &bind_nbotime,
- .data = x,
- .size = sizeof(struct GNUNET_TIME_AbsoluteNBO),
- .num_params = 1
- };
- return qp;
- }
- /**
- * Function called to convert input argument into SQL parameters.
- *
- * @param cls closure
- * @param data pointer to input argument
- * @param data_len number of bytes in @a data (if applicable)
- * @param stmt sqlite statement to bind parameters for
- * @param off offset of the argument to bind in @a stmt, numbered from 1,
- * so immediately suitable for passing to `sqlite3_bind`-functions.
- * @return #GNUNET_SYSERR on error, #GNUNET_OK on success
- */
- static int
- bind_u16 (void *cls,
- const void *data,
- size_t data_len,
- sqlite3_stmt *stmt,
- unsigned int off)
- {
- const uint16_t *u = data;
- GNUNET_assert (sizeof(uint16_t) == data_len);
- if (SQLITE_OK !=
- sqlite3_bind_int (stmt,
- (int) off,
- (int) *u))
- return GNUNET_SYSERR;
- return GNUNET_OK;
- }
- /**
- * Generate query parameter for an uint16_t in host byte order.
- *
- * @param x pointer to the query parameter to pass
- */
- struct GNUNET_SQ_QueryParam
- GNUNET_SQ_query_param_uint16 (const uint16_t *x)
- {
- struct GNUNET_SQ_QueryParam qp = {
- .conv = &bind_u16,
- .data = x,
- .size = sizeof(uint16_t),
- .num_params = 1
- };
- return qp;
- }
- /**
- * Function called to convert input argument into SQL parameters.
- *
- * @param cls closure
- * @param data pointer to input argument
- * @param data_len number of bytes in @a data (if applicable)
- * @param stmt sqlite statement to bind parameters for
- * @param off offset of the argument to bind in @a stmt, numbered from 1,
- * so immediately suitable for passing to `sqlite3_bind`-functions.
- * @return #GNUNET_SYSERR on error, #GNUNET_OK on success
- */
- static int
- bind_u32 (void *cls,
- const void *data,
- size_t data_len,
- sqlite3_stmt *stmt,
- unsigned int off)
- {
- const uint32_t *u = data;
- GNUNET_assert (sizeof(uint32_t) == data_len);
- if (SQLITE_OK !=
- sqlite3_bind_int64 (stmt,
- (int) off,
- (sqlite3_int64) * u))
- return GNUNET_SYSERR;
- return GNUNET_OK;
- }
- /**
- * Generate query parameter for an uint32_t in host byte order.
- *
- * @param x pointer to the query parameter to pass
- */
- struct GNUNET_SQ_QueryParam
- GNUNET_SQ_query_param_uint32 (const uint32_t *x)
- {
- struct GNUNET_SQ_QueryParam qp = {
- .conv = &bind_u32,
- .data = x,
- .size = sizeof(uint32_t),
- .num_params = 1
- };
- return qp;
- }
- /**
- * Function called to convert input argument into SQL parameters.
- *
- * @param cls closure
- * @param data pointer to input argument
- * @param data_len number of bytes in @a data (if applicable)
- * @param stmt sqlite statement to bind parameters for
- * @param off offset of the argument to bind in @a stmt, numbered from 1,
- * so immediately suitable for passing to `sqlite3_bind`-functions.
- * @return #GNUNET_SYSERR on error, #GNUNET_OK on success
- */
- static int
- bind_u64 (void *cls,
- const void *data,
- size_t data_len,
- sqlite3_stmt *stmt,
- unsigned int off)
- {
- const uint64_t *u = data;
- GNUNET_assert (sizeof(uint64_t) == data_len);
- if (SQLITE_OK !=
- sqlite3_bind_int64 (stmt,
- (int) off,
- (sqlite3_int64) * u))
- return GNUNET_SYSERR;
- return GNUNET_OK;
- }
- /**
- * Generate query parameter for an uint16_t in host byte order.
- *
- * @param x pointer to the query parameter to pass
- */
- struct GNUNET_SQ_QueryParam
- GNUNET_SQ_query_param_uint64 (const uint64_t *x)
- {
- struct GNUNET_SQ_QueryParam qp = {
- .conv = &bind_u64,
- .data = x,
- .size = sizeof(uint64_t),
- .num_params = 1
- };
- return qp;
- }
- /* end of sq_query_helper.c */
|