
Eliminated interface test (shallow) in favor of method test (correct, recursive). Also made vstmts work with virtual-connections.
546 lines
19 KiB
Racket
546 lines
19 KiB
Racket
#lang racket/base
|
|
(require racket/class
|
|
racket/match
|
|
openssl/sha1
|
|
"../generic/interfaces.rkt"
|
|
"../generic/prepared.rkt"
|
|
"../generic/sql-data.rkt"
|
|
"message.rkt"
|
|
"dbsystem.rkt")
|
|
(provide connection%
|
|
password-hash)
|
|
|
|
(define MAX-PACKET-LENGTH #x1000000)
|
|
|
|
;; ========================================
|
|
|
|
(define connection%
|
|
(class* transactions% (connection<%>)
|
|
(init-private notice-handler)
|
|
(define inport #f)
|
|
(define outport #f)
|
|
|
|
(inherit call-with-lock
|
|
call-with-lock*
|
|
add-delayed-call!
|
|
check-valid-tx-status)
|
|
(inherit-field tx-status)
|
|
|
|
(super-new)
|
|
|
|
;; with-disconnect-on-error
|
|
(define-syntax-rule (with-disconnect-on-error . body)
|
|
(with-handlers ([exn:fail? (lambda (e) (disconnect* #f) (raise e))])
|
|
. body))
|
|
|
|
;; ========================================
|
|
|
|
;; == Debugging
|
|
|
|
(define DEBUG-RESPONSES #f)
|
|
(define DEBUG-SENT-MESSAGES #f)
|
|
|
|
(define/public (debug incoming? [outgoing? incoming?])
|
|
(set! DEBUG-RESPONSES incoming?)
|
|
(set! DEBUG-SENT-MESSAGES outgoing?))
|
|
|
|
;; ========================================
|
|
|
|
;; == Communication
|
|
;; (Must be called with lock acquired.)
|
|
|
|
(define next-msg-num 0)
|
|
|
|
(define/private (fresh-exchange)
|
|
(set! next-msg-num 0))
|
|
|
|
;; send-message : message -> void
|
|
(define/private (send-message msg)
|
|
(buffer-message msg)
|
|
(flush-message-buffer))
|
|
|
|
;; buffer-message : message -> void
|
|
(define/private (buffer-message msg)
|
|
(when DEBUG-SENT-MESSAGES
|
|
(fprintf (current-error-port) " >> ~s\n" msg))
|
|
(with-disconnect-on-error
|
|
(write-packet outport msg next-msg-num)
|
|
(set! next-msg-num (add1 next-msg-num))))
|
|
|
|
;; flush-message-buffer : -> void
|
|
(define/private (flush-message-buffer)
|
|
(with-disconnect-on-error
|
|
(flush-output outport)))
|
|
|
|
;; recv : symbol/#f [(list-of symbol)] -> message
|
|
;; Automatically handles asynchronous messages
|
|
(define/private (recv fsym expectation [field-dvecs #f])
|
|
(define r
|
|
(with-disconnect-on-error
|
|
(recv* fsym expectation field-dvecs)))
|
|
(when DEBUG-RESPONSES
|
|
(eprintf " << ~s\n" r))
|
|
(when (error-packet? r)
|
|
(raise-backend-error fsym r))
|
|
r)
|
|
|
|
(define/private (recv* fsym expectation field-dvecs)
|
|
(define (advance . ss)
|
|
(unless (or (not expectation)
|
|
(null? ss)
|
|
(memq expectation ss))
|
|
(error/comm fsym)))
|
|
(define (err packet)
|
|
(error/comm fsym))
|
|
(let-values ([(msg-num next) (parse-packet inport expectation field-dvecs)])
|
|
(set! next-msg-num (add1 msg-num))
|
|
;; Update transaction status (see Transactions below)
|
|
(when (ok-packet? next)
|
|
(set! tx-status
|
|
(bitwise-bit-set? (ok-packet-server-status next) 0)))
|
|
(when (eof-packet? next)
|
|
(set! tx-status
|
|
(bitwise-bit-set? (eof-packet-server-status next) 0)))
|
|
(when (error-packet? next)
|
|
(when tx-status
|
|
(when (member (error-packet-errno next) '(1213 1205))
|
|
(set! tx-status 'invalid))))
|
|
(match next
|
|
[(? handshake-packet?)
|
|
(advance 'handshake)]
|
|
[(? ok-packet?)
|
|
(advance)]
|
|
[(? error-packet?)
|
|
(advance)]
|
|
[(struct result-set-header-packet (field-count _))
|
|
(advance 'result)]
|
|
[(? field-packet?)
|
|
(advance 'field)]
|
|
[(? row-data-packet?)
|
|
(advance 'data)]
|
|
[(? binary-row-data-packet?)
|
|
(advance 'binary-data)]
|
|
[(? ok-prepared-statement-packet? result)
|
|
(advance 'prep-ok)]
|
|
[(? parameter-packet? result)
|
|
(advance 'prep-params)]
|
|
[(? eof-packet?)
|
|
(advance 'field 'data 'binary-data 'prep-params)]
|
|
[else
|
|
(err next)])
|
|
next))
|
|
|
|
;; ========================================
|
|
|
|
;; Connection management
|
|
|
|
;; disconnect : -> (void)
|
|
(define/public (disconnect)
|
|
(disconnect* #t))
|
|
|
|
(define/private (disconnect* lock-not-held?)
|
|
(define (go politely?)
|
|
(when DEBUG-SENT-MESSAGES
|
|
(eprintf " ** Disconnecting\n"))
|
|
(let ([outport* outport]
|
|
[inport* inport])
|
|
(when outport
|
|
(when politely?
|
|
(fresh-exchange)
|
|
(send-message (make-command-packet 'quit "")))
|
|
(close-output-port outport)
|
|
(set! outport #f))
|
|
(when inport
|
|
(close-input-port inport)
|
|
(set! inport #f))))
|
|
;; If we don't hold the lock, try to acquire it and disconnect politely.
|
|
;; Except, if already disconnected, no need to acquire lock.
|
|
(cond [(and lock-not-held? (connected?))
|
|
(call-with-lock* 'disconnect
|
|
(lambda () (go #t))
|
|
(lambda () (go #f))
|
|
#f)]
|
|
[else (go #f)]))
|
|
|
|
;; connected? : -> boolean
|
|
(define/override (connected?)
|
|
(let ([outport outport])
|
|
(and outport (not (port-closed? outport)))))
|
|
|
|
(define/public (get-dbsystem)
|
|
dbsystem)
|
|
|
|
;; ========================================
|
|
|
|
;; == Connect
|
|
|
|
;; attach-to-ports : input-port output-port -> void
|
|
(define/public (attach-to-ports in out)
|
|
(set! inport in)
|
|
(set! outport out))
|
|
|
|
;; start-connection-protocol : string string string/#f -> void
|
|
(define/public (start-connection-protocol dbname username password)
|
|
(with-disconnect-on-error
|
|
(fresh-exchange)
|
|
(let ([r (recv 'mysql-connect 'handshake)])
|
|
(match r
|
|
[(struct handshake-packet (pver sver tid scramble capabilities charset status auth))
|
|
(check-required-flags capabilities)
|
|
(unless (equal? auth "mysql_native_password")
|
|
(uerror 'mysql-connect "unsupported authentication plugin: ~s" auth))
|
|
(send-message
|
|
(make-client-authentication-packet
|
|
(desired-capabilities capabilities)
|
|
MAX-PACKET-LENGTH
|
|
'utf8-general-ci ;; charset
|
|
username
|
|
(scramble-password scramble password)
|
|
dbname))
|
|
(expect-auth-confirmation)]
|
|
[_ (error/comm 'mysql-connect "during authentication")]))))
|
|
|
|
(define/private (check-required-flags capabilities)
|
|
(for-each (lambda (rf)
|
|
(unless (memq rf capabilities)
|
|
(uerror 'mysql-connect
|
|
"server does not support required capability: ~s"
|
|
rf)))
|
|
REQUIRED-CAPABILITIES))
|
|
|
|
(define/private (desired-capabilities capabilities)
|
|
(cons 'interactive
|
|
(filter (lambda (c) (memq c DESIRED-CAPABILITIES))
|
|
capabilities)))
|
|
|
|
;; expect-auth-confirmation : -> void
|
|
(define/private (expect-auth-confirmation)
|
|
(let ([r (recv 'mysql-connect 'auth)])
|
|
(match r
|
|
[(struct ok-packet (_ _ status warnings message))
|
|
(after-connect)]
|
|
[_ (error/comm 'mysql-connect "after authentication")])))
|
|
|
|
;; Set connection to use utf8 encoding
|
|
(define/private (after-connect)
|
|
(query 'mysql-connect "set names 'utf8'")
|
|
(void))
|
|
|
|
|
|
;; ========================================
|
|
|
|
;; == Query
|
|
|
|
;; name-counter : number
|
|
(define name-counter 0)
|
|
|
|
;; query : symbol Statement -> QueryResult
|
|
(define/public (query fsym stmt)
|
|
(check-valid-tx-status fsym)
|
|
(let*-values ([(stmt result)
|
|
(call-with-lock fsym
|
|
(lambda ()
|
|
(let ([stmt (check-statement fsym stmt)])
|
|
(values stmt (query1 fsym stmt #t)))))])
|
|
;; For some reason, *really* slow: (statement:after-exec stmt)
|
|
(query1:process-result fsym result)))
|
|
|
|
;; query1 : symbol Statement -> QueryResult
|
|
(define/private (query1 fsym stmt warnings?)
|
|
(let ([wbox (and warnings? (box 0))])
|
|
(fresh-exchange)
|
|
(query1:enqueue stmt)
|
|
(begin0 (query1:collect fsym (not (string? stmt)) wbox)
|
|
(when (and warnings? (not (zero? (unbox wbox))))
|
|
(fetch-warnings fsym)))))
|
|
|
|
;; check-statement : symbol any -> statement-binding
|
|
(define/private (check-statement fsym stmt)
|
|
(cond [(statement-binding? stmt)
|
|
(let ([pst (statement-binding-pst stmt)])
|
|
(send pst check-owner fsym this stmt)
|
|
(for ([typeid (in-list (send pst get-result-typeids))])
|
|
(unless (supported-result-typeid? typeid)
|
|
(error/unsupported-type fsym typeid)))
|
|
stmt)]
|
|
[(and (string? stmt) (force-prepare-sql? fsym stmt))
|
|
(let ([pst (prepare1 fsym stmt #t)])
|
|
(check-statement fsym (send pst bind fsym null)))]
|
|
[else stmt]))
|
|
|
|
;; query1:enqueue : statement -> void
|
|
(define/private (query1:enqueue stmt)
|
|
(cond [(statement-binding? stmt)
|
|
(let* ([pst (statement-binding-pst stmt)]
|
|
[id (send pst get-handle)]
|
|
[params (statement-binding-params stmt)]
|
|
[null-map (map sql-null? params)])
|
|
(send-message
|
|
(make-execute-packet id null null-map params)))]
|
|
[else ;; string
|
|
(send-message (make-command-packet 'query stmt))]))
|
|
|
|
;; query1:collect : symbol bool -> QueryResult stream
|
|
(define/private (query1:collect fsym binary? wbox)
|
|
(let ([r (recv fsym 'result)])
|
|
(match r
|
|
[(struct ok-packet (affected-rows insert-id status warnings message))
|
|
(when wbox (set-box! wbox warnings))
|
|
(vector 'command `((affected-rows . ,affected-rows)
|
|
(insert-id . ,insert-id)
|
|
(status . ,status)
|
|
(message . ,message)))]
|
|
[(struct result-set-header-packet (fields extra))
|
|
(let* ([field-dvecs (query1:get-fields fsym binary?)]
|
|
[rows (query1:get-rows fsym field-dvecs binary? wbox)])
|
|
(vector 'rows field-dvecs rows))])))
|
|
|
|
(define/private (query1:get-fields fsym binary?)
|
|
(let ([r (recv fsym 'field)])
|
|
(match r
|
|
[(? field-packet?)
|
|
(cons (parse-field-dvec r) (query1:get-fields fsym binary?))]
|
|
[(struct eof-packet (warning status))
|
|
null])))
|
|
|
|
(define/private (query1:get-rows fsym field-dvecs binary? wbox)
|
|
;; Note: binary? should always be #t, unless force-prepare-sql? misses something.
|
|
(let ([r (recv fsym (if binary? 'binary-data 'data) field-dvecs)])
|
|
(match r
|
|
[(struct row-data-packet (data))
|
|
(cons data (query1:get-rows fsym field-dvecs binary? wbox))]
|
|
[(struct binary-row-data-packet (data))
|
|
(cons data (query1:get-rows fsym field-dvecs binary? wbox))]
|
|
[(struct eof-packet (warnings status))
|
|
(when wbox (set-box! wbox warnings))
|
|
null])))
|
|
|
|
(define/private (query1:process-result fsym result)
|
|
(match result
|
|
[(vector 'rows field-dvecs rows)
|
|
(rows-result (map field-dvec->field-info field-dvecs) rows)]
|
|
[(vector 'command command-info)
|
|
(simple-result command-info)]))
|
|
|
|
;; == Prepare
|
|
|
|
;; prepare : symbol string boolean -> PreparedStatement
|
|
(define/public (prepare fsym stmt close-on-exec?)
|
|
(check-valid-tx-status fsym)
|
|
(call-with-lock fsym
|
|
(lambda ()
|
|
(prepare1 fsym stmt close-on-exec?))))
|
|
|
|
(define/private (prepare1 fsym stmt close-on-exec?)
|
|
(fresh-exchange)
|
|
(send-message (make-command-packet 'statement-prepare stmt))
|
|
(let ([r (recv fsym 'prep-ok)])
|
|
(match r
|
|
[(struct ok-prepared-statement-packet (id fields params))
|
|
(let ([param-dvecs
|
|
(if (zero? params) null (prepare1:get-field-descriptions fsym))]
|
|
[field-dvecs
|
|
(if (zero? fields) null (prepare1:get-field-descriptions fsym))])
|
|
(new prepared-statement%
|
|
(handle id)
|
|
(close-on-exec? close-on-exec?)
|
|
(param-typeids (map field-dvec->typeid param-dvecs))
|
|
(result-dvecs field-dvecs)
|
|
(owner this)))])))
|
|
|
|
(define/private (prepare1:get-field-descriptions fsym)
|
|
(let ([r (recv fsym 'field)])
|
|
(match r
|
|
[(struct eof-packet (warning-count status))
|
|
null]
|
|
[(? field-packet?)
|
|
(cons (parse-field-dvec r) (prepare1:get-field-descriptions fsym))])))
|
|
|
|
(define/public (get-base) this)
|
|
|
|
(define/public (free-statement pst)
|
|
(call-with-lock* 'free-statement
|
|
(lambda ()
|
|
(let ([id (send pst get-handle)])
|
|
(when (and id outport) ;; outport = connected?
|
|
(send pst set-handle #f)
|
|
(fresh-exchange)
|
|
(send-message (make-command:statement-packet 'statement-close id)))))
|
|
void
|
|
#f))
|
|
|
|
;; == Warnings
|
|
|
|
(define/private (fetch-warnings fsym)
|
|
(unless (eq? notice-handler void)
|
|
(let ([result (query1 fsym "SHOW WARNINGS" #f)])
|
|
(define (find-index name dvecs)
|
|
(for/or ([dvec (in-list dvecs)]
|
|
[i (in-naturals)])
|
|
(and (equal? (field-dvec->name dvec) name) i)))
|
|
(match result
|
|
[(vector 'rows field-dvecs rows)
|
|
(let ([code-index (find-index "Code" field-dvecs)]
|
|
[message-index (find-index "Message" field-dvecs)])
|
|
(for ([row (in-list rows)])
|
|
(let ([code (string->number (vector-ref row code-index))]
|
|
[message (vector-ref row message-index)])
|
|
(add-delayed-call! (lambda () (notice-handler code message))))))]))))
|
|
|
|
;; == Transactions
|
|
|
|
;; MySQL: what causes implicit commit, when is transaction rolled back
|
|
;; http://dev.mysql.com/doc/refman/5.1/en/implicit-commit.html
|
|
;; http://dev.mysql.com/doc/refman/5.1/en/innodb-error-handling.html
|
|
;; http://dev.mysql.com/doc/refman/5.1/en/innodb-error-codes.html
|
|
;;
|
|
;; Sounds like MySQL rolls back transaction (but may keep open!) on
|
|
;; - transaction deadlock = 1213 (ER_LOCK_DEADLOCK)
|
|
;; - lock wait timeout (depends on config) = 1205 (ER_LOCK_WAIT_TIMEOUT)
|
|
|
|
(define/public (transaction-status fsym)
|
|
(call-with-lock fsym (lambda () tx-status)))
|
|
|
|
(define/public (start-transaction fsym isolation)
|
|
(call-with-lock fsym
|
|
(lambda ()
|
|
(when tx-status
|
|
(error/already-in-tx fsym))
|
|
;; SET TRANSACTION ISOLATION LEVEL sets mode for *next* transaction
|
|
;; so need lock around both statements
|
|
(let* ([isolation-level (isolation-symbol->string isolation)]
|
|
[set-stmt "SET TRANSACTION ISOLATION LEVEL "])
|
|
(when isolation-level
|
|
(query1 fsym (string-append set-stmt isolation-level) #t)))
|
|
(query1 fsym "START TRANSACTION" #t)
|
|
(void))))
|
|
|
|
(define/public (end-transaction fsym mode)
|
|
(call-with-lock fsym
|
|
(lambda ()
|
|
(unless (eq? mode 'rollback)
|
|
(check-valid-tx-status fsym))
|
|
(let ([stmt (case mode
|
|
((commit) "COMMIT")
|
|
((rollback) "ROLLBACK"))])
|
|
(query1 fsym stmt #t)
|
|
(void)))))
|
|
|
|
;; Reflection
|
|
|
|
(define/public (list-tables fsym schema)
|
|
(let* ([stmt
|
|
;; schema is ignored; search = current
|
|
(string-append "SELECT table_name FROM information_schema.tables "
|
|
"WHERE table_schema = schema()")]
|
|
[rows
|
|
(vector-ref
|
|
(call-with-lock fsym
|
|
(lambda ()
|
|
(query1 fsym stmt #t)))
|
|
2)])
|
|
(for/list ([row (in-list rows)])
|
|
(vector-ref row 0))))
|
|
|
|
))
|
|
|
|
;; ========================================
|
|
|
|
;; scramble-password : bytes string -> bytes
|
|
(define (scramble-password scramble password)
|
|
(and scramble password
|
|
(let* ([stage1 (cond [(string? password) (password-hash password)]
|
|
[(pair? password)
|
|
(hex-string->bytes (cadr password))])]
|
|
[stage2 (sha1-bytes (open-input-bytes stage1))]
|
|
[stage3 (sha1-bytes (open-input-bytes (bytes-append scramble stage2)))]
|
|
[reply (bytes-xor stage1 stage3)])
|
|
reply)))
|
|
|
|
;; password-hash : string -> bytes
|
|
(define (password-hash password)
|
|
(let* ([password (string->bytes/latin-1 password)]
|
|
[stage1 (sha1-bytes (open-input-bytes password))])
|
|
stage1))
|
|
|
|
;; bytes-xor : bytes bytes -> bytes
|
|
;; Assumes args are same length
|
|
(define (bytes-xor a b)
|
|
(let ([c (make-bytes (bytes-length a))])
|
|
(let loop ([i 0])
|
|
(when (< i (bytes-length c))
|
|
(bytes-set! c i
|
|
(bitwise-xor (bytes-ref a i) (bytes-ref b i)))
|
|
(loop (add1 i))))
|
|
c))
|
|
|
|
(define REQUIRED-CAPABILITIES
|
|
'(long-flag
|
|
connect-with-db
|
|
protocol-41
|
|
secure-connection))
|
|
|
|
(define DESIRED-CAPABILITIES
|
|
'(long-password
|
|
long-flag
|
|
transactions
|
|
protocol-41
|
|
secure-connection
|
|
connect-with-db))
|
|
|
|
;; raise-backend-error : symbol ErrorPacket -> raises exn
|
|
(define (raise-backend-error who r)
|
|
(define code (error-packet-sqlstate r))
|
|
(define message (error-packet-message r))
|
|
(define props (list (cons 'errno (error-packet-errno r))
|
|
(cons 'code code)
|
|
(cons 'message message)))
|
|
(raise-sql-error who code message props))
|
|
|
|
;; ========================================
|
|
|
|
#|
|
|
MySQL allows only certain kinds of statements to be prepared; the rest
|
|
must go through the old execution path. See here:
|
|
http://dev.mysql.com/doc/refman/5.0/en/c-api-prepared-statements.html
|
|
According to that page, the following statements may be prepared:
|
|
|
|
CALL, CREATE TABLE, DELETE, DO, INSERT, REPLACE, SELECT, SET, UPDATE,
|
|
and most SHOW statements
|
|
|
|
On the other hand, we want to force all rows-returning statements
|
|
through the prepared-statement path to use the binary data
|
|
protocol. That would seem to be the following:
|
|
|
|
CALL (?) and SELECT
|
|
|
|
The following bit of heinously offensive code determines the kind of
|
|
SQL statement is contained in a string.
|
|
|
|
----
|
|
|
|
3 kinds of comments in mysql SQL:
|
|
- "#" to end of line
|
|
- "-- " to end of line
|
|
- "/*" to next "*/" (not nested), except some weird conditional-inclusion stuff
|
|
|
|
I'll ignore the third kind.
|
|
|#
|
|
|
|
(define (force-prepare-sql? fsym stmt)
|
|
(let ([kw (get-sql-keyword stmt)])
|
|
(cond [(not kw)
|
|
;; better to have unpreparable stmt rejected than
|
|
;; to have SELECT return unconvered types
|
|
#t]
|
|
[(string-ci=? kw "select") #t]
|
|
[(string-ci=? kw "call") #t]
|
|
[else #f])))
|
|
|
|
(define sql-statement-rx
|
|
#rx"^(?:(?:#[^\n\r]*[\n\r])|(?:-- [^\n\r]*[\n\r])|[ \t\n\r])*([A-Za-z]+)")
|
|
|
|
(define (get-sql-keyword stmt)
|
|
(let ([m (regexp-match sql-statement-rx stmt)])
|
|
(and m (cadr m))))
|