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 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775
|
# rubocop:disable all
# You need to call this with the PostgreSQL source directory as the first commandline agument, and the output dir as the second
# ./scripts/extract_source.rb ./tmp/postgres ./src/postgres
require 'ffi/clang'
require 'json'
module FFI::Clang::Lib
enum :storage_class, [
:invalid, 0,
:none, 1,
:extern, 2,
:static, 3,
:private_extern, 4,
:opencl_workgroup_local, 5,
:auto, 6,
:register, 7,
]
attach_function :get_storage_class, :clang_Cursor_getStorageClass, [FFI::Clang::Lib::CXCursor.by_value], :storage_class
end
module FFI::Clang
class Cursor
def storage_class
Lib.get_storage_class(@cursor)
end
# Copy of clang::VarDecl::hasExternalStorage http://clang.llvm.org/doxygen/Decl_8h_source.html#l00982
def has_external_storage
storage_class == :extern || storage_class == :private_extern
end
end
end
class Runner
attr_reader :unresolved
attr_reader :code_for_resolve
def initialize
@file_analysis = {}
@global_method_to_base_filename = {}
@file_to_method_and_pos = {}
@external_variables = []
@resolved_static_by_base_filename = {}
@resolved_global = []
@symbols_to_output = {}
@include_files_to_output = []
@unresolved = []
@blocklist = []
@mock = {}
@basepath = File.absolute_path(ARGV[0]) + '/'
@out_path = File.absolute_path(ARGV[1]) + '/'
end
def blocklist(symbol)
@blocklist << symbol
end
def mock(symbol, code)
@mock[symbol] = code
end
def run
files = Dir.glob(@basepath + 'src/backend/**/*.c') +
Dir.glob(@basepath + 'src/common/**/*.c') +
Dir.glob(@basepath + 'src/port/**/*.c') +
Dir.glob(@basepath + 'src/timezone/**/*.c') +
Dir.glob(@basepath + 'src/pl/plpgsql/src/*.c') +
Dir.glob(@basepath + 'contrib/pgcrypto/*.c') -
[ # blocklist
@basepath + 'src/backend/libpq/be-secure-openssl.c', # OpenSSL include error
@basepath + 'src/backend/utils/adt/levenshtein.c', # Built through varlena.c
@basepath + 'src/backend/utils/adt/like_match.c', # Built through like.c
@basepath + 'src/backend/utils/adt/jsonpath_scan.c', # Built through jsonpath.c
@basepath + 'src/backend/utils/misc/guc-file.c', # Built through guc.c
@basepath + 'src/backend/utils/sort/qsort_tuple.c', # Built through tuplesort.c
@basepath + 'src/backend/bootstrap/bootscanner.c', # Built through bootparse.c
@basepath + 'src/backend/regex/regc_color.c', # Built through regcomp.c
@basepath + 'src/backend/regex/regc_cvec.c', # Built through regcomp.c
@basepath + 'src/backend/regex/regc_lex.c', # Built through regcomp.c
@basepath + 'src/backend/regex/regc_pg_locale.c', # Built through regcomp.c
@basepath + 'src/backend/regex/regc_locale.c', # Built through regcomp.c
@basepath + 'src/backend/regex/regc_nfa.c', # Built through regcomp.c
@basepath + 'src/backend/regex/rege_dfa.c', # Built through regexec.c
@basepath + 'src/backend/replication/repl_scanner.c', # Built through repl_gram.c
@basepath + 'src/backend/replication/libpqwalreceiver/libpqwalreceiver.c', # Dynamic module
@basepath + 'src/backend/replication/syncrep_scanner.c', # Built through syncrep.c
@basepath + 'src/backend/port/posix_sema.c', # Linux only
@basepath + 'src/common/fe_memutils.c', # This file is not expected to be compiled for backend code
@basepath + 'src/common/restricted_token.c', # This file is not expected to be compiled for backend code
@basepath + 'src/common/unicode/norm_test.c', # This file is not expected to be compiled for backend code
@basepath + 'src/backend/utils/mb/win866.c', # Win32 only
@basepath + 'src/backend/utils/mb/win1251.c', # Win32 only
@basepath + 'src/backend/utils/mb/iso.c', # Win32 only
@basepath + 'src/port/dirent.c', # Win32 only
@basepath + 'src/port/win32error.c', # Win32 only
@basepath + 'src/port/win32env.c', # Win32 only
@basepath + 'src/port/win32security.c', # Win32 only
@basepath + 'src/port/win32gettimeofday.c', # Win32 only
@basepath + 'src/port/win32pwrite.c', # Win32 only
@basepath + 'src/port/win32pread.c', # Win32 only
@basepath + 'src/port/win32link.c', # Win32 only
@basepath + 'src/port/win32getrusage.c', # Win32 only
@basepath + 'src/port/strnlen.c', # Not needed and conflicts with available function
@basepath + 'src/port/strlcat.c', # Not needed and conflicts with available function
@basepath + 'src/port/unsetenv.c', # Not needed and conflicts with available function
@basepath + 'src/port/getaddrinfo.c', # Not needed and conflicts with available function
@basepath + 'src/port/getrusage.c', # Not needed and conflicts with available function
@basepath + 'src/port/pg_crc32c_armv8.c', # Can't be parsed outside of ARMv8 compatible environments
@basepath + 'src/port/pg_crc32c_armv8_choose.c', # Can't be parsed outside of ARMv8 compatible environments
@basepath + 'src/backend/jit/llvm/llvmjit_expr.c', # Requires LLVM-C library (which we don't want to require)
@basepath + 'src/backend/jit/llvm/llvmjit_deform.c', # Requires LLVM-C library (which we don't want to require)
@basepath + 'src/backend/jit/llvm/llvmjit.c', # Requires LLVM-C library (which we don't want to require)
@basepath + 'src/backend/libpq/be-gssapi-common.c', # Requires GSSAPI (which we don't want to require)
@basepath + 'src/backend/libpq/be-secure-gssapi.c', # Requires GSSAPI (which we don't want to require)
@basepath + 'src/common/protocol_openssl.c', # Requires OpenSSL (which we don't want to require)
@basepath + 'contrib/pgcrypto/pgp-mpi-openssl.c', # Requires OpenSSL (which we don't want to require)
@basepath + 'contrib/pgcrypto/openssl.c', # Requires OpenSSL (which we don't want to require)
] -
Dir.glob(@basepath + 'src/backend/port/dynloader/*.c') -
Dir.glob(@basepath + 'src/backend/port/win32/*.c') -
Dir.glob(@basepath + 'src/backend/port/win32_*.c') -
Dir.glob(@basepath + 'src/backend/snowball/**/*.c') -
Dir.glob(@basepath + 'src/backend/nodes/*.switch.c') -
Dir.glob(@basepath + 'src/backend/nodes/*.funcs.c')
#files = [@basepath + 'src/backend/parser/keywords.c']
files.each do |file|
if files == [file]
puts format('Analysing single file: %s', file)
analysis = analyze_file(file)
analysis_file = analysis.save
puts format('Result: %s', analysis_file)
exit 1
end
print '.'
analysis = FileAnalysis.restore(file, @basepath) || analyze_file(file)
analysis.save
@file_analysis[file] = analysis
analysis.symbol_to_file.each do |symbol, _|
next if analysis.static_symbols.include?(symbol)
if @global_method_to_base_filename[symbol] && !['main', 'Pg_magic_func', 'pg_open_tzfile', '_PG_init'].include?(symbol) && !@global_method_to_base_filename[symbol].end_with?('c')
puts format('Error processing %s, symbol %s already defined by %s', file, symbol, @global_method_to_base_filename[symbol])
end
@global_method_to_base_filename[symbol] = file
end
analysis.file_to_symbol_positions.each do |file, method_and_pos|
@file_to_method_and_pos[file] = method_and_pos
end
analysis.external_variables.each do |symbol|
@external_variables << symbol
end
end
#puts @caller_to_static_callees['/Users/lfittl/Code/libpg_query/postgres/src/backend/regex/regc_locale.c']['cclass'].inspect
puts "\nFinished parsing"
end
class FileAnalysis
attr_accessor :references, :static_symbols, :symbol_to_file, :file_to_symbol_positions, :external_variables, :included_files
def initialize(filename, basepath, references = {}, static_symbols = [],
symbol_to_file = {}, file_to_symbol_positions = {}, external_variables = [],
included_files = [])
@filename = filename
@basepath = basepath
@references = references
@static_symbols = static_symbols
@symbol_to_file = symbol_to_file
@file_to_symbol_positions = file_to_symbol_positions
@external_variables = external_variables
@included_files = included_files
end
def save
json = JSON.pretty_generate({
references: @references,
static_symbols: @static_symbols,
symbol_to_file: @symbol_to_file,
file_to_symbol_positions: @file_to_symbol_positions,
external_variables: @external_variables,
included_files: @included_files,
})
file = self.class.analysis_filename(@filename, @basepath)
FileUtils.mkdir_p(File.dirname(file))
File.write(file, json)
file
end
def self.restore(filename, basepath)
json = File.read(analysis_filename(filename, basepath))
hsh = JSON.parse(json)
new(filename, basepath, hsh['references'], hsh['static_symbols'],
hsh['symbol_to_file'], hsh['file_to_symbol_positions'], hsh['external_variables'],
hsh['included_files'])
rescue Errno::ENOENT
nil
end
private
def self.analysis_filename(filename, basepath)
File.absolute_path('./tmp/analysis') + '/' + filename.gsub(%r{^#{basepath}}, '').gsub(/.c$/, '.json')
end
end
def analyze_file(file)
index = FFI::Clang::Index.new(true, true)
flags = [
'-I', @basepath + 'src/include',
'-I', '/usr/local/opt/openssl/include',
'-I', `xcrun --sdk macosx --show-sdk-path`.strip + '/usr/include',
'-DDLSUFFIX=".bundle"',
'-g',
'-ferror-limit=0',
'-DUSE_ASSERT_CHECKING',
# EXEC_BACKEND is used on Windows, and can always be safely set during code analysis
'-DEXEC_BACKEND',
]
# For certain files, use WIN32 define - we can't always do this since it pulls unnecessary code in other cases
if file == @basepath + 'src/backend/utils/error/elog.c' || file == @basepath + 'src/backend/utils/mb/mbutils.c'
flags << '-DWIN32'
flags << '-D__CYGWIN__' # Avoid pulling in win32_port.h (which includes a bunch of system headers we don't actually have)
end
# To override built-ins, we must avoid pulling in any system headers, so pretend we already defined c.h
if file == @basepath + 'src/port/strlcpy.c'
flags << '-DC_H'
flags << '-DHAVE_DECL_STRLCPY=0'
flags << '-Dsize_t=unsigned'
end
translation_unit = index.parse_translation_unit(file, flags)
cursor = translation_unit.cursor
func_cursor = nil
analysis = FileAnalysis.new(file, @basepath)
included_files = []
translation_unit.inclusions do |included_file, _inclusions|
next if !included_file.start_with?(@basepath) || included_file == file
included_files << included_file
end
analysis.included_files = included_files.uniq.sort
cursor.visit_children do |cursor, parent|
if cursor.location.file && (File.dirname(file) == File.dirname(cursor.location.file) || cursor.location.file.end_with?('_impl.h'))
if parent.kind == :cursor_translation_unit
if (cursor.kind == :cursor_function && cursor.definition?) || (cursor.kind == :cursor_variable && !cursor.has_external_storage)
analysis.symbol_to_file[cursor.spelling] = cursor.location.file
if cursor.linkage == :external
# Nothing special
elsif cursor.linkage == :internal
(analysis.static_symbols << cursor.spelling).uniq!
else
fail format('Unknown linkage: %s', cursor.linkage.inspect)
end
start_offset = cursor.extent.start.offset
end_offset = cursor.extent.end.offset
end_offset += 1 if cursor.kind == :cursor_variable # The ";" isn't counted correctly by clang
if cursor.kind == :cursor_variable && (cursor.linkage == :external || cursor.linkage == :internal) &&
!cursor.type.const_qualified? && !(cursor.type.is_a?(FFI::Clang::Types::Array) && cursor.type.element_type.const_qualified?) &&
!(cursor.type.is_a?(FFI::Clang::Types::Pointer) && cursor.type.pointee.kind == :type_function_proto)
analysis.external_variables << cursor.spelling
end
analysis.file_to_symbol_positions[cursor.location.file] ||= {}
analysis.file_to_symbol_positions[cursor.location.file][cursor.spelling] = [start_offset, end_offset]
cursor.visit_children do |child_cursor, parent|
# There seems to be a bug here on modern Clang versions where the
# cursor kind gets modified once we call "child_cursor.definition"
# - thus we make a copy ahead of calling that, for later use
child_cursor_kind = child_cursor.kind
# Ignore variable definitions from the local scope
next :recurse if child_cursor.definition.semantic_parent == cursor
if child_cursor_kind == :cursor_decl_ref_expr || child_cursor_kind == :cursor_call_expr
analysis.references[cursor.spelling] ||= []
(analysis.references[cursor.spelling] << child_cursor.spelling).uniq!
end
:recurse
end
end
end
end
next :recurse
end
analysis
end
RESOLVE_MAX_DEPTH = 100
def deep_resolve(method_name, depth: 0, trail: [], global_resolved_by_parent: [], static_resolved_by_parent: [], static_base_filename: nil)
if @blocklist.include?(method_name)
puts 'ERROR: Hit blocklist entry ' + method_name
puts 'Trail: ' + trail.inspect
exit 1
end
if depth > RESOLVE_MAX_DEPTH
puts 'ERROR: Exceeded max depth'
puts method_name.inspect
puts trail.inspect
exit 1
end
base_filename = static_base_filename || @global_method_to_base_filename[method_name]
if !base_filename
(@unresolved << method_name).uniq!
return
end
analysis = @file_analysis[base_filename]
fail "could not find analysis data for #{base_filename}" if analysis.nil?
# We need to determine if we can lookup the place where the method lives
implementation_filename = analysis.symbol_to_file[method_name]
if !implementation_filename
(@unresolved << method_name).uniq!
return
end
@symbols_to_output[implementation_filename] ||= []
@symbols_to_output[implementation_filename] << method_name
(@include_files_to_output += analysis.included_files).uniq!
if @mock.key?(method_name)
# Code will be overwritten at output time, no need to investigate dependents
return
end
# Now we need to resolve all symbols called by this one
dependents = (analysis.references[method_name] || [])
global_dependents = dependents.select { |c| !analysis.static_symbols.include?(c) } - global_resolved_by_parent
static_dependents = dependents.select { |c| analysis.static_symbols.include?(c) } - static_resolved_by_parent
# First, make sure we exclude all that have been visited before
@resolved_static_by_base_filename[base_filename] ||= []
global_dependents.delete_if { |s| @resolved_global.include?(s) }
static_dependents.delete_if { |s| @resolved_static_by_base_filename[base_filename].include?(s) }
# Second, make sure we never visit any of the dependents again
global_dependents.each { |s| @resolved_global << s }
static_dependents.each { |s| @resolved_static_by_base_filename[base_filename] << s }
# Third, actually traverse into the remaining, non-visited, dependents
global_dependents.each do |symbol|
deep_resolve(
symbol, depth: depth + 1, trail: trail + [method_name],
global_resolved_by_parent: global_resolved_by_parent + global_dependents
)
end
static_dependents.each do |symbol|
deep_resolve(
symbol, depth: depth + 1, trail: trail + [method_name],
global_resolved_by_parent: global_resolved_by_parent + global_dependents,
static_resolved_by_parent: static_resolved_by_parent + static_dependents,
static_base_filename: base_filename
)
end
end
def special_include_file?(filename)
filename[/\/(reg(c|e)_[\w_]+|guc-file|qsort_tuple|repl_scanner|levenshtein|bootscanner|like_match)\.c$/] || filename[/\/[\w_]+\.funcs.c$/] || filename[/\/[\w_]+_impl.h$/]
end
def write_out
all_thread_local_variables = []
@symbols_to_output.each do |filename, symbols|
file_thread_local_variables = []
dead_positions = (@file_to_method_and_pos[filename] || {}).dup
symbols.each do |symbol|
next if @mock.key?(symbol)
next if @external_variables.include?(symbol)
alive_pos = dead_positions[symbol]
# In some cases there are other symbols at the same location (macros), so delete by position instead of name
dead_positions.delete_if { |_,pos| pos == alive_pos }
end
full_code = File.read(filename)
str = "/*--------------------------------------------------------------------\n"
str += " * Symbols referenced in this file:\n"
symbols.each do |symbol|
str += format(" * - %s\n", symbol)
end
str += " *--------------------------------------------------------------------\n"
str += " */\n\n"
next_start_pos = 0
dead_positions.each do |symbol, pos|
fail format("Position overrun for %s in %s, next_start_pos (%d) > file length (%d)", symbol, filename, next_start_pos, full_code.size) if next_start_pos > full_code.size
fail format("Position overrun for %s in %s, dead position pos[0]-1 (%d) > file length (%d)", symbol, filename, pos[0]-1, full_code.size) if pos[0]-1 > full_code.size
str += full_code[next_start_pos...(pos[0]-1)]
skipped_code = full_code[(pos[0]-1)...pos[1]]
if @mock.key?(symbol)
str += "\n" + @mock[symbol] + "\n"
elsif @external_variables.include?(symbol) && symbols.include?(symbol)
file_thread_local_variables << symbol
if skipped_code.include?('static')
str += "\n" + skipped_code.strip.gsub('static', 'static __thread') + "\n"
else
str += "\n__thread " + skipped_code.strip + "\n"
end
else
# In the off chance that part of a macro is before a symbol (e.g. ifdef),
# but the closing part is inside (e.g. endif) we need to output all macros inside skipped parts
str += "\n" + skipped_code.scan(/^(#\s*(?:define|undef|if|ifdef|ifndef|else|endif))((?:[^\n]*\\\s*\n)*)([^\n]*)$/m).map { |m| m.compact.join }.join("\n")
end
next_start_pos = pos[1]
end
str += full_code[next_start_pos..-1]
# In some cases we also need to take care of definitions in the same file
file_thread_local_variables.each do |variable|
str.gsub!(/(PGDLLIMPORT|extern)\s+(const|volatile)?\s*(\w+)\s+(\*{0,2})#{variable}(\[\])?;/, "\\1 __thread \\2 \\3 \\4#{variable}\\5;")
end
all_thread_local_variables += file_thread_local_variables
unless special_include_file?(filename)
out_name = filename.gsub(%r{^#{@basepath}}, '').gsub('/', '_')
File.write(@out_path + out_name, str)
end
end
#return
additional_includes = Dir.glob(@basepath + 'src/include/storage/dsm_impl.h') +
Dir.glob(@basepath + 'src/include/port/atomics/**/*.h') +
Dir.glob(@basepath + 'src/include/port/win32/**/*.h') +
Dir.glob(@basepath + 'src/include/port/win32_msvc/**/*.h') +
Dir.glob(@basepath + 'src/include/port/win32.h') +
Dir.glob(@basepath + 'src/include/port/win32_port.h')
(@include_files_to_output + additional_includes).each do |include_file|
if include_file.start_with?(@basepath + 'src/include')
out_file = @out_path + include_file.gsub(%r{^#{@basepath}src/}, '')
else
out_file = @out_path + 'include/' + File.basename(include_file)
end
code = File.read(include_file)
all_thread_local_variables.each do |variable|
code.gsub!(/(extern\s+)(PGDLLIMPORT\s+)?(const\s+)?(volatile\s+)?(\w+)\s+(\*{0,2})#{variable}(\[\])?;/, "\\1\\2__thread \\3\\4\\5 \\6#{variable}\\7;")
end
FileUtils.mkdir_p File.dirname(out_file)
File.write(out_file, code)
end
end
end
runner = Runner.new
runner.run
runner.blocklist('SearchSysCache')
runner.blocklist('heap_open')
runner.blocklist('relation_open')
runner.blocklist('RelnameGetRelid')
runner.blocklist('ProcessClientWriteInterrupt')
runner.blocklist('typeStringToTypeName')
runner.blocklist('LWLockAcquire')
runner.blocklist('SPI_freeplan')
runner.blocklist('get_ps_display')
runner.blocklist('pq_beginmessage')
# We have to mock this as it calls `hash_search`, which eventually makes
# calls down to `pgstat_report_wait_start` and `pgstat_report_wait_end`.
# These functions depend on the existence of a global variable
# `my_wait_event_info`.
#
# The problem here is we can't reasonably compile the source file
# `backend/utils/activity/wait_event.c` which provides this symbol, as it
# initializes the value by-default to a reference to another global.
# Normally this is fine, but we transform both of these globals so that they
# are thread local via `__thread`, and it is not valid to initialize one thread
# local with the address of another.
#
# Instead of tackling this directly, we just return `NULL` in the mock below,
# observing that we do not need to support the registration of custom nodes.
runner.mock('GetExtensibleNodeMethods', %(
const ExtensibleNodeMethods *
GetExtensibleNodeMethods(const char *extnodename, bool missing_ok)
{
return NULL;
}
))
# Mocks REQUIRED for basic operations (error handling, memory management)
runner.mock('ProcessInterrupts', 'void ProcessInterrupts(void) {}') # Required by errfinish
runner.mock('PqCommMethods', 'const PQcommMethods *PqCommMethods = NULL;') # Required by errfinish
runner.mock('proc_exit', 'void proc_exit(int code) { printf("Terminating process due to FATAL error\n"); exit(1); }') # Required by errfinish (we use PG_TRY/PG_CATCH, so this should never be reached in practice)
runner.mock('send_message_to_server_log', 'static void send_message_to_server_log(ErrorData *edata) {}')
runner.mock('send_message_to_frontend', 'static void send_message_to_frontend(ErrorData *edata) {}')
# Mocks REQUIRED for PL/pgSQL parsing
runner.mock('format_type_be', 'char * format_type_be(Oid type_oid) { return pstrdup("-"); }')
runner.mock('build_row_from_class', 'static PLpgSQL_row *build_row_from_class(Oid classOid) { return NULL; }')
runner.mock('plpgsql_build_datatype', %(
PLpgSQL_type * plpgsql_build_datatype(Oid typeOid, int32 typmod, Oid collation, TypeName *origtypname)
{
PLpgSQL_type *typ;
char *ident = NULL, *ns = NULL;
typ = (PLpgSQL_type *) palloc0(sizeof(PLpgSQL_type));
typ->ttype = PLPGSQL_TTYPE_SCALAR;
typ->atttypmod = typmod;
typ->collation = collation;
if (origtypname) {
typ->typoid = origtypname->typeOid;
if (list_length(origtypname->names) == 1) {
ident = linitial_node(String, origtypname->names)->sval;
} else if (list_length(origtypname->names) == 2) {
ns = linitial_node(String, origtypname->names)->sval;
ident = lsecond_node(String, origtypname->names)->sval;
if (strcmp(ns, "pg_catalog") != 0)
typ->ttype = PLPGSQL_TTYPE_REC;
}
} else {
typ->typoid = typeOid;
ns = "pg_catalog";
switch(typeOid)
{
case BOOLOID:
ident = "boolean";
break;
case INT4OID:
ident = "integer";
break;
case TEXTOID:
ident = "text";
break;
case REFCURSOROID:
ident = "refcursor";
break;
}
}
if (ident) {
typ->typname = quote_qualified_identifier(ns, ident);
}
return typ;
}
))
runner.mock('parse_datatype', %(
#include "catalog/pg_collation_d.h"
static PLpgSQL_type * parse_datatype(const char *string, int location) {
PLpgSQL_type *typ;
/* Ignore trailing spaces */
size_t len = strlen(string);
while (len > 0 && scanner_isspace(string[len - 1])) --len;
typ = (PLpgSQL_type *) palloc0(sizeof(PLpgSQL_type));
typ->typname = pstrdup(string);
typ->ttype = pg_strncasecmp(string, "RECORD", len) == 0 ? PLPGSQL_TTYPE_REC : PLPGSQL_TTYPE_SCALAR;
if (pg_strncasecmp(string, "REFCURSOR", len) == 0 || pg_strncasecmp(string, "CURSOR", len) == 0)
{
typ->typoid = REFCURSOROID;
}
else if (pg_strncasecmp(string, "TEXT", len) == 0)
{
typ->typoid = TEXTOID;
typ->collation = DEFAULT_COLLATION_OID;
}
return typ;
}
))
runner.mock('plpgsql_build_datatype_arrayof', %(
PLpgSQL_type * plpgsql_build_datatype_arrayof(PLpgSQL_type *dtype)
{
if (dtype->typisarray)
return dtype;
PLpgSQL_type *array_type;
array_type = (PLpgSQL_type *) palloc0(sizeof(PLpgSQL_type));
array_type->ttype = PLPGSQL_TTYPE_REC;
array_type->atttypmod = dtype->atttypmod;
array_type->collation = dtype->collation;
array_type->typisarray = true;
switch(dtype->typoid)
{
case BOOLOID:
array_type->typoid = BOOLARRAYOID;
array_type->typname = pstrdup("boolean[]");
break;
case INT4OID:
array_type->typoid = INT4ARRAYOID;
array_type->typname = pstrdup("integer[]");
break;
case TEXTOID:
array_type->typoid = TEXTARRAYOID;
array_type->typname = pstrdup("text[]");
break;
default:
array_type->typname = pstrdup("UNKNOWN");
break;
}
array_type->typoid = dtype->typoid;
return array_type;
}
))
runner.mock('get_collation_oid', 'Oid get_collation_oid(List *name, bool missing_ok) { return DEFAULT_COLLATION_OID; }')
runner.mock('plpgsql_parse_wordtype', 'PLpgSQL_type * plpgsql_parse_wordtype(char *ident) { return NULL; }')
runner.mock('plpgsql_parse_wordrowtype', 'PLpgSQL_type * plpgsql_parse_wordrowtype(char *ident) { return NULL; }')
runner.mock('plpgsql_parse_cwordtype', 'PLpgSQL_type * plpgsql_parse_cwordtype(List *idents) { return NULL; }')
runner.mock('plpgsql_parse_cwordrowtype', 'PLpgSQL_type * plpgsql_parse_cwordrowtype(List *idents) { return NULL; }')
runner.mock('function_parse_error_transpose', 'bool function_parse_error_transpose(const char *prosrc) { return false; }')
runner.mock('free_expr', "static void free_expr(PLpgSQL_expr *expr) {}") # This would free a cached plan, which does not apply to us
runner.mock('make_return_stmt', %(
static PLpgSQL_stmt *
make_return_stmt(int location)
{
PLpgSQL_stmt_return *new;
Assert(plpgsql_curr_compile->fn_rettype == VOIDOID);
new = palloc0(sizeof(PLpgSQL_stmt_return));
new->cmd_type = PLPGSQL_STMT_RETURN;
new->lineno = plpgsql_location_to_lineno(location);
new->expr = NULL;
new->retvarno = -1;
int tok = yylex();
if (tok != ';')
{
plpgsql_push_back_token(tok);
new->expr = read_sql_expression(';', ";");
}
return (PLpgSQL_stmt *) new;
}
)) # We're always working with fn_rettype = VOIDOID, due to our use of plpgsql_compile_inline
# Mocks REQUIRED for Windows support
runner.mock('write_stderr', %(
void
write_stderr(const char *fmt,...)
{
va_list ap;
va_start(ap, fmt);
vfprintf(stderr, fmt, ap);
fflush(stderr);
va_end(ap);
}
)) # Avoid pulling in write_console/write_eventlog, and instead always output to stderr (like on POSIX)
runner.mock('should_output_to_client', 'static inline bool should_output_to_client(int elevel) { return false; }') # Avoid pulling in postmaster.c, which has a bunch of Windows-specific code hidden behind a define
## ---
# SQL Parsing
runner.deep_resolve('raw_parser')
# PL/pgSQL Parsing
runner.deep_resolve('plpgsql_compile_inline')
runner.deep_resolve('plpgsql_free_function_memory')
runner.deep_resolve('quote_qualified_identifier')
# Basic Postgres needed to call parser
runner.deep_resolve('SetDatabaseEncoding')
# Memory management needed to call parser
runner.deep_resolve('MemoryContextInit')
runner.deep_resolve('AllocSetContextCreate')
runner.deep_resolve('MemoryContextSwitchTo')
runner.deep_resolve('CurrentMemoryContext')
runner.deep_resolve('MemoryContextDelete')
runner.deep_resolve('MemoryContextAllocZero')
runner.deep_resolve('MemoryContextSizeFailure')
runner.deep_resolve('AllocSetDeleteFreeList')
runner.deep_resolve('palloc0')
# Error handling needed to call parser
runner.deep_resolve('CopyErrorData')
runner.deep_resolve('FlushErrorState')
# Needed for output funcs
runner.deep_resolve('bms_first_member')
runner.deep_resolve('bms_free')
runner.deep_resolve('bms_next_member')
runner.deep_resolve('bms_num_members')
runner.deep_resolve('makeBitString')
# Needed for deparse
runner.deep_resolve('pg_toupper')
runner.deep_resolve('makeStringInfo')
runner.deep_resolve('list_delete_last')
runner.deep_resolve('list_insert_nth')
runner.deep_resolve('bms_add_member')
runner.deep_resolve('bms_is_member')
# Needed for normalize
runner.deep_resolve('pg_qsort')
runner.deep_resolve('pg_qsort_strcmp')
runner.deep_resolve('raw_expression_tree_walker_impl')
# Needed to work with simplehash (in fingerprinting logic)
runner.deep_resolve('hash_bytes')
runner.deep_resolve('MemoryContextAllocExtended')
# Needed for summary
runner.deep_resolve('makeRangeVarFromNameList')
runner.deep_resolve('list_sort')
runner.deep_resolve('pg_mbcharcliplen')
runner.deep_resolve('pg_mbstrlen')
runner.deep_resolve('destroyStringInfo')
# Other required functions
runner.deep_resolve('pg_printf')
runner.deep_resolve('pg_strncasecmp')
# Retain these functions for optional 32-bit support
# (see BITS_PER_BITMAPWORD checks in bitmapset.c)
runner.deep_resolve('pg_leftmost_one_pos32')
runner.deep_resolve('pg_rightmost_one_pos32')
runner.deep_resolve('pg_popcount32')
# Required for Windows support
runner.deep_resolve('newNodeMacroHolder')
runner.deep_resolve('pg_leftmost_one_pos')
runner.deep_resolve('pg_rightmost_one_pos')
runner.deep_resolve('pg_number_of_ones')
runner.deep_resolve('GetMessageEncoding')
runner.deep_resolve('strlcpy')
runner.deep_resolve('pg_signal_queue')
runner.deep_resolve('pg_signal_mask')
runner.deep_resolve('pgwin32_dispatch_queued_signals')
runner.write_out
#puts runner.unresolved.inspect
# Debugging:
# clang -Xclang -ast-dump -fsyntax-only -I src/include/ src/backend/utils/init/globals.c
|