-
Notifications
You must be signed in to change notification settings - Fork 986
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
53 changed files
with
4,734 additions
and
1,418 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 31 additions & 0 deletions
31
deps/mariadb-client-library/mariadb_lib.c.metadata_column_check.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
diff --git libmariadb/mariadb_lib.c libmariadb/mariadb_lib.c | ||
index 027167f1..58b8283a 100644 | ||
--- libmariadb/mariadb_lib.c | ||
+++ libmariadb/mariadb_lib.c | ||
@@ -3021,6 +3021,12 @@ MYSQL_FIELD *ma_duplicate_resultset_metadata(MYSQL_FIELD *fields, size_t count, | ||
return result; | ||
} | ||
|
||
+static uint8_t mysql_encode_length(uint64_t len) { | ||
+ if (len < 251) { return 1; } | ||
+ if (len < 65536) { return 3; } | ||
+ if (len < 16777216) { return 4; } | ||
+ return 9; | ||
+} | ||
|
||
int mthd_my_read_query_result(MYSQL *mysql) | ||
{ | ||
@@ -3070,6 +3076,13 @@ get_info: | ||
|
||
if (has_metadata) | ||
{ | ||
+ // integrity-check: the length encoding of the field count from 'column-count' packet | ||
+ // must match the packet length from header, otherwise packet is malformed. | ||
+ ulong enc_len = mysql_encode_length(field_count); | ||
+ if (enc_len != length) { | ||
+ my_set_error(mysql, CR_MALFORMED_PACKET, SQLSTATE_UNKNOWN, 0); | ||
+ return -1; | ||
+ } | ||
// read packet metadata | ||
mysql->fields = | ||
mthd_my_read_metadata(mysql, field_count, 7 + ma_extended_type_info_rows(mysql)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#ifndef __CLASS_MYSQL_QUERY_CACHE_H | ||
#define __CLASS_MYSQL_QUERY_CACHE_H | ||
|
||
#include "proxysql.h" | ||
#include "cpp.h" | ||
#include "query_cache.hpp" | ||
|
||
typedef struct _MySQL_QC_entry : public QC_entry_t { | ||
uint32_t column_eof_pkt_offset; | ||
uint32_t row_eof_pkt_offset; | ||
uint32_t ok_pkt_offset; | ||
} MySQL_QC_entry_t; | ||
|
||
class MySQL_Query_Cache : public Query_Cache<MySQL_Query_Cache> { | ||
public: | ||
MySQL_Query_Cache() = default; | ||
~MySQL_Query_Cache() = default; | ||
|
||
bool set(uint64_t user_hash, const unsigned char* kp, uint32_t kl, unsigned char* vp, uint32_t vl, | ||
uint64_t create_ms, uint64_t curtime_ms, uint64_t expire_ms, bool deprecate_eof_active); | ||
unsigned char* get(uint64_t user_hash, const unsigned char* kp, const uint32_t kl, uint32_t* lv, | ||
uint64_t curtime_ms, uint64_t cache_ttl, bool deprecate_eof_active); | ||
//void* purgeHash_thread(void*); | ||
}; | ||
|
||
#endif /* __CLASS_MYSQL_QUERY_CACHE_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#ifndef __CLASS_PGSQL_QUERY_CACHE_H | ||
#define __CLASS_PGSQL_QUERY_CACHE_H | ||
|
||
#include "proxysql.h" | ||
#include "cpp.h" | ||
#include "query_cache.hpp" | ||
|
||
typedef struct _PgSQL_QC_entry : public QC_entry_t {} PgSQL_QC_entry_t; | ||
|
||
class PgSQL_Query_Cache : public Query_Cache<PgSQL_Query_Cache> { | ||
public: | ||
PgSQL_Query_Cache() = default; | ||
~PgSQL_Query_Cache() = default; | ||
|
||
bool set(uint64_t user_hash, const unsigned char* kp, uint32_t kl, unsigned char* vp, uint32_t vl, | ||
uint64_t create_ms, uint64_t curtime_ms, uint64_t expire_ms); | ||
const std::shared_ptr<PgSQL_QC_entry_t> get(uint64_t user_hash, const unsigned char* kp, const uint32_t kl, | ||
uint64_t curtime_ms, uint64_t cache_ttl); | ||
//void* purgeHash_thread(void*); | ||
}; | ||
|
||
#endif /* __CLASS_PGSQL_QUERY_CACHE_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.