1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295
|
// Ensure we have asprintf's definition on glibc-based platforms to avoid compiler warnings
#define _GNU_SOURCE
#include <stdio.h>
#include "pg_query.h"
#include "pg_query_internal.h"
#include "pg_query_fingerprint.h"
#include "postgres.h"
#include "xxhash/xxhash.h"
#include "lib/ilist.h"
#include "parser/parser.h"
#include "parser/scanner.h"
#include "parser/scansup.h"
#include "nodes/parsenodes.h"
#include "nodes/value.h"
#include <unistd.h>
#include <fcntl.h>
// Definitions
typedef struct FingerprintContext
{
XXH3_state_t *xxh_state;
bool write_tokens;
dlist_head tokens;
} FingerprintContext;
typedef struct FingerprintListContext
{
XXH64_hash_t hash;
size_t list_pos;
} FingerprintListContext;
typedef struct FingerprintToken
{
char *str;
dlist_node list_node;
} FingerprintToken;
static void _fingerprintNode(FingerprintContext *ctx, const void *obj, const void *parent, char *parent_field_name, unsigned int depth);
static void _fingerprintInitContext(FingerprintContext *ctx, bool write_tokens);
static void _fingerprintFreeContext(FingerprintContext *ctx);
#define PG_QUERY_FINGERPRINT_VERSION 3
// Implementations
static void
_fingerprintString(FingerprintContext *ctx, const char *str)
{
if (ctx->xxh_state != NULL) {
XXH3_64bits_update(ctx->xxh_state, str, strlen(str));
}
if (ctx->write_tokens) {
FingerprintToken *token = palloc0(sizeof(FingerprintToken));
token->str = pstrdup(str);
dlist_push_tail(&ctx->tokens, &token->list_node);
}
}
static void
_fingerprintInteger(FingerprintContext *ctx, const Value *node)
{
if (node->val.ival != 0) {
_fingerprintString(ctx, "Integer");
_fingerprintString(ctx, "ival");
char buffer[50];
sprintf(buffer, "%d", node->val.ival);
_fingerprintString(ctx, buffer);
}
}
static void
_fingerprintFloat(FingerprintContext *ctx, const Value *node)
{
if (node->val.str != NULL) {
_fingerprintString(ctx, "Float");
_fingerprintString(ctx, "str");
_fingerprintString(ctx, node->val.str);
}
}
static void
_fingerprintBitString(FingerprintContext *ctx, const Value *node)
{
if (node->val.str != NULL) {
_fingerprintString(ctx, "BitString");
_fingerprintString(ctx, "str");
_fingerprintString(ctx, node->val.str);
}
}
static int compareFingerprintListContext(const void *a, const void *b)
{
FingerprintListContext *ca = *(FingerprintListContext**) a;
FingerprintListContext *cb = *(FingerprintListContext**) b;
if (ca->hash > cb->hash)
return 1;
else if (ca->hash < cb->hash)
return -1;
return 0;
}
static void
_fingerprintList(FingerprintContext *ctx, const List *node, const void *parent, char *field_name, unsigned int depth)
{
if (field_name != NULL && (strcmp(field_name, "fromClause") == 0 || strcmp(field_name, "targetList") == 0 ||
strcmp(field_name, "cols") == 0 || strcmp(field_name, "rexpr") == 0 || strcmp(field_name, "valuesLists") == 0 ||
strcmp(field_name, "args") == 0)) {
FingerprintListContext** listCtxArr = palloc0(node->length * sizeof(FingerprintListContext*));
size_t listCtxCount = 0;
const ListCell *lc;
foreach(lc, node)
{
FingerprintContext subCtx;
FingerprintListContext* listCtx = palloc0(sizeof(FingerprintListContext));
_fingerprintInitContext(&subCtx, false);
_fingerprintNode(&subCtx, lfirst(lc), parent, field_name, depth + 1);
listCtx->hash = XXH3_64bits_digest(subCtx.xxh_state);
listCtx->list_pos = listCtxCount;
_fingerprintFreeContext(&subCtx);
listCtxArr[listCtxCount] = listCtx;
listCtxCount += 1;
}
pg_qsort(listCtxArr, listCtxCount, sizeof(FingerprintListContext*), compareFingerprintListContext);
for (size_t i = 0; i < listCtxCount; i++)
{
if (i > 0 && listCtxArr[i - 1]->hash == listCtxArr[i]->hash)
continue; // Ignore duplicates
_fingerprintNode(ctx, lfirst(list_nth_cell(node, listCtxArr[i]->list_pos)), parent, field_name, depth + 1);
}
} else {
const ListCell *lc;
foreach(lc, node)
{
_fingerprintNode(ctx, lfirst(lc), parent, field_name, depth + 1);
lnext(node, lc);
}
}
}
static void
_fingerprintInitContext(FingerprintContext *ctx, bool write_tokens) {
ctx->xxh_state = XXH3_createState();
if (ctx->xxh_state == NULL) abort();
if (XXH3_64bits_reset_withSeed(ctx->xxh_state, PG_QUERY_FINGERPRINT_VERSION) == XXH_ERROR) abort();
if (write_tokens) {
ctx->write_tokens = true;
dlist_init(&ctx->tokens);
} else {
ctx->write_tokens = false;
}
}
static void
_fingerprintFreeContext(FingerprintContext *ctx) {
XXH3_freeState(ctx->xxh_state);
}
#include "pg_query_enum_defs.c"
#include "pg_query_fingerprint_defs.c"
void
_fingerprintNode(FingerprintContext *ctx, const void *obj, const void *parent, char *field_name, unsigned int depth)
{
// Some queries are overly complex in their parsetree - lets consistently cut them off at 100 nodes deep
if (depth >= 100) {
return;
}
if (obj == NULL)
{
return; // Ignore
}
switch (nodeTag(obj))
{
case T_List:
_fingerprintList(ctx, obj, parent, field_name, depth);
break;
case T_Integer:
_fingerprintInteger(ctx, obj);
break;
case T_Float:
_fingerprintFloat(ctx, obj);
break;
case T_String:
_fingerprintString(ctx, "String");
_fingerprintString(ctx, "str");
_fingerprintString(ctx, ((Value*) obj)->val.str);
break;
case T_BitString:
_fingerprintBitString(ctx, obj);
break;
#include "pg_query_fingerprint_conds.c"
default:
elog(WARNING, "could not fingerprint unrecognized node type: %d",
(int) nodeTag(obj));
return;
}
}
PgQueryFingerprintResult pg_query_fingerprint_with_opts(const char* input, bool printTokens)
{
MemoryContext ctx = NULL;
PgQueryInternalParsetreeAndError parsetree_and_error;
PgQueryFingerprintResult result = {0};
ctx = pg_query_enter_memory_context();
parsetree_and_error = pg_query_raw_parse(input);
// These are all malloc-ed and will survive exiting the memory context, the caller is responsible to free them now
result.stderr_buffer = parsetree_and_error.stderr_buffer;
result.error = parsetree_and_error.error;
if (parsetree_and_error.tree != NULL || result.error == NULL) {
FingerprintContext ctx;
XXH64_canonical_t chash;
_fingerprintInitContext(&ctx, printTokens);
if (parsetree_and_error.tree != NULL) {
_fingerprintNode(&ctx, parsetree_and_error.tree, NULL, NULL, 0);
}
if (printTokens) {
dlist_iter iter;
printf("[");
dlist_foreach(iter, &ctx.tokens)
{
FingerprintToken *token = dlist_container(FingerprintToken, list_node, iter.cur);
printf("\"%s\", ", token->str);
}
printf("]\n");
}
result.fingerprint = XXH3_64bits_digest(ctx.xxh_state);
_fingerprintFreeContext(&ctx);
XXH64_canonicalFromHash(&chash, result.fingerprint);
int err = asprintf(&result.fingerprint_str, "%02x%02x%02x%02x%02x%02x%02x%02x",
chash.digest[0], chash.digest[1], chash.digest[2], chash.digest[3],
chash.digest[4], chash.digest[5], chash.digest[6], chash.digest[7]);
if (err == -1) {
PgQueryError* error = malloc(sizeof(PgQueryError));
error->message = strdup("Failed to output fingerprint string due to asprintf failure");
result.error = error;
}
}
pg_query_exit_memory_context(ctx);
return result;
}
PgQueryFingerprintResult pg_query_fingerprint(const char* input)
{
return pg_query_fingerprint_with_opts(input, false);
}
void pg_query_free_fingerprint_result(PgQueryFingerprintResult result)
{
if (result.error) {
free(result.error->message);
free(result.error->filename);
free(result.error);
}
free(result.fingerprint_str);
free(result.stderr_buffer);
}
|