/usr/lib/python3/dist-packages/postgresql/protocol/xact3.py is in python3-postgresql 1.1.0-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | ##
# .protocol.xact3 - protocol state machine
##
'PQ version 3.0 client transactions'
import sys
import os
import pprint
from abc import ABCMeta, abstractmethod
from itertools import chain
from operator import itemgetter
get0 = itemgetter(0)
get1 = itemgetter(1)
from ..python.functools import Composition as compose
from . import element3 as element
from hashlib import md5
from crypt import crypt
try:
from ..port.optimized import consume_tuple_messages
except ImportError:
pass
Receiving = True
Sending = False
Complete = (None, None)
AsynchronousMap = {
element.Notice.type : element.Notice.parse,
element.Notify.type : element.Notify.parse,
element.ShowOption.type : element.ShowOption.parse,
}
def return_arg(x):
return x
message_expectation = \
"expected message of types {expected}, " \
"but received {received} instead".format
class Transaction(object, metaclass = ABCMeta):
"""
If the fatal attribute is not None, an error occurred, and the
`error_message` attribute should be set to a element3.Error instance.
"""
fatal = None
@abstractmethod
def messages_received(self):
"""
Return an iterable to the messages received that have been processed.
"""
class Closing(Transaction):
"""
Send the disconnect message and mark the connection as closed.
"""
error_message = element.ClientError((
(b'S', 'FATAL'),
# pg_exc.ConnectionDoesNotExistError.code
(b'C', '08003'),
(b'M', 'operation on closed connection'),
(b'H', "A new connection needs to be "\
"created in order to query the server."),
))
def messages_received(self):
return ()
def sent(self):
"""
Empty messages and mark complete.
"""
self.messages = ()
self.fatal = True
self.state = Complete
def __init__(self):
self.messages = (element.DisconnectMessage,)
self.state = (Sending, self.sent)
class Negotiation(Transaction):
"""
Negotiation is a protocol transaction used to manage the initial stage of a
connection to PostgreSQL.
This transaction revolves around the `state_machine` method which is a
generator that takes individual messages and progresses the state of the
connection negotiation. This was chosen over the route taken by
`Transaction`, seen later, as it's not terribly performance intensive and
there are many conditions which make a generator ideal for managing the
state.
"""
state = None
def __init__(self,
startup_message : "startup message to send",
password : "password source data(encoded password bytes)",
):
self.startup_message = startup_message
self.password = password
self.received = [()]
self.asyncs = []
self.authtype = None
self.killinfo = None
self.authok = None
self.last_ready = None
self.machine = self.state_machine()
self.messages = next(self.machine)
self.state = (Sending, self.sent)
def __repr__(self):
s = type(self).__module__ + "." + type(self).__name__
s += pprint.pformat((self.startup_message, self.password)).lstrip()
return s
def messages_received(self):
return self.processed
def sent(self):
"""
Empty messages and switch state to receiving.
This is called by the user after the `messages` have been sent to the
remote end. That is, this merely finalizes the "Sending" state.
"""
self.messages = ()
self.state = (Receiving, self.put_messages)
def put_messages(self, messages):
# Record everything received.
out_messages = ()
if messages is not self.received[-1]:
self.received.append(messages)
else:
raise RuntimeError("negotiation was interrupted")
# if an Error message was found, complete and leave.
count = 0
try:
for x in messages:
count += 1
if x[0] == element.Error.type:
if self.fatal is None:
self.error_message = element.Error.parse(x[1])
self.fatal = True
self.state = Complete
return count
elif x[0] in AsynchronousMap:
self.asyncs.append(
AsynchronousMap[x[0]](x[1])
)
else:
out_messages = self.machine.send(x)
if out_messages:
break
except StopIteration:
# generator is complete, negotiation is complete..
self.state = Complete
return count
if out_messages:
self.messages = out_messages
self.state = (Sending, self.sent)
return count
def unsupported_auth_request(self, req):
self.fatal = True
self.error_message = element.ClientError((
(b'S', "FATAL"),
(b'C', "--AUT"),
(b'M', "unsupported authentication request %r(%d)" %(
element.AuthNameMap.get(req, '<unknown>'), req,
)),
(b'H', "'postgresql.protocol' only supports: MD5, crypt, plaintext, and trust."),
))
self.state = Complete
def state_machine(self):
"""
Generator keeping the state of the connection negotiation process.
"""
x = (yield (self.startup_message,))
if x[0] != element.Authentication.type:
self.fatal = True
self.error_message = element.ClientError((
(b'S', 'FATAL'),
(b'C', '08P01'),
(b'M', message_expectation(
expected = element.Authentication.type,
received = x[0],
)),
))
return
self.authtype = element.Authentication.parse(x[1])
req = self.authtype.request
if req != element.AuthRequest_OK:
if req == element.AuthRequest_Cleartext:
pw = self.password
elif req == element.AuthRequest_Crypt:
pw = crypt(self.password, self.authtype.salt)
elif req == element.AuthRequest_MD5:
pw = md5(self.password + self.startup_message[b'user']).hexdigest().encode('ascii')
pw = b'md5' + md5(pw + self.authtype.salt).hexdigest().encode('ascii')
else:
##
# Not going to work. Sorry :(
# The many authentication types supported by PostgreSQL are not
# easy to implement, especially when implementations for the
# type don't exist for Python.
self.unsupported_auth_request(req)
return
x = (yield (element.Password(pw),))
self.authok = element.Authentication.parse(x[1])
if self.authok.request != element.AuthRequest_OK:
self.fatal = True
self.error_message = element.ClientError((
(b'S', 'FATAL'),
(b'C', "08P01"),
(b'M', "expected OK from the authentication " \
"message, but received %s(%s) instead" %(
repr(element.AuthNameMap.get(
self.authok.request, '<unknown>'
)),
repr(self.authok.request),
),
)
))
return
else:
self.authok = self.authtype
# Done authenticating, pick up the killinfo and the ready message.
x = (yield None)
if x[0] != element.KillInformation.type:
self.fatal = True
self.error_message = element.ClientError((
(b'S', 'FATAL'),
(b'C', '08P01'),
(b'M', message_expectation(
expected = element.KillInformation.type,
received = repr(x[0]),
)),
))
return
self.killinfo = element.KillInformation.parse(x[1])
x = (yield None)
if x[0] != element.Ready.type:
self.fatal = True
self.error_message = element.ClientError((
(b'S', "FATAL"),
(b'C', "08P01"),
(b'M', message_expectation(
expected = repr(element.Ready.type),
received = repr(x[0]),
))
))
return
self.last_ready = element.Ready.parse(x[1])
class Instruction(Transaction):
"""
Manage the state of a sequence of request messages to be sent to the server.
It provides the messages to be sent and takes the response messages for order
and integrity validation:
Instruction([.element3.Message(), ..])
A message must be one of:
* `.element3.Query`
* `.element3.Function`
* `.element3.Parse`
* `.element3.Bind`
* `.element3.Describe`
* `.element3.Close`
* `.element3.Execute`
* `.element3.Synchronize`
* `.element3.Flush`
"""
state = None
CopyFailMessage = element.CopyFail(b"invalid termination")
# The hook is the dictionary that provides the path for the
# current working message. The received messages ultimately come
# through here and get parsed using the associated callable.
# Messages that complete a command are paired with None.
hook = {
element.Query.type : (
# 0: Start.
{
element.TupleDescriptor.type : (element.TupleDescriptor.parse, 3),
element.Null.type : (element.Null.parse, 0),
element.Complete.type : (element.Complete.parse, 0),
element.CopyToBegin.type : (element.CopyToBegin.parse, 2),
element.CopyFromBegin.type : (element.CopyFromBegin.parse, 1),
element.Ready.type : (element.Ready.parse, None),
},
# 1: Complete.
{
element.Complete.type : (element.Complete.parse, 0),
},
# 2: Copy Data.
# CopyData until CopyDone.
# Complete comes next.
{
element.CopyData.type : (return_arg, 2),
element.CopyDone.type : (element.CopyDone.parse, 1),
},
# 3: Row Data.
{
element.Tuple.type : (element.Tuple.parse, 3),
element.Complete.type : (element.Complete.parse, 0),
element.Ready.type : (element.Ready.parse, None),
},
),
element.Function.type : (
{element.FunctionResult.type : (element.FunctionResult.parse, 1)},
{element.Ready.type : (element.Ready.parse, None)},
),
# Extended Protocol
element.Parse.type : (
{element.ParseComplete.type : (element.ParseComplete.parse, None)},
),
element.Bind.type : (
{element.BindComplete.type : (element.BindComplete.parse, None)},
),
element.Describe.type : (
# Still needs the descriptor.
{
element.AttributeTypes.type : (element.AttributeTypes.parse, 1),
element.TupleDescriptor.type : (
element.TupleDescriptor.parse, None
),
},
# NoData or TupleDescriptor
{
element.NoData.type : (element.NoData.parse, None),
element.TupleDescriptor.type : (
element.TupleDescriptor.parse, None
),
},
),
element.Close.type : (
{element.CloseComplete.type : (element.CloseComplete.parse, None)},
),
element.Execute.type : (
# 0: Start.
{
element.Tuple.type : (element.Tuple.parse, 1),
element.CopyToBegin.type : (element.CopyToBegin.parse, 2),
element.CopyFromBegin.type : (element.CopyFromBegin.parse, 3),
element.Null.type : (element.Null.parse, None),
element.Complete.type : (element.Complete.parse, None),
},
# 1: Row Data.
{
element.Tuple.type : (element.Tuple.parse, 1),
element.Suspension.type : (element.Suspension.parse, None),
element.Complete.type : (element.Complete.parse, None),
},
# 2: Copy Data.
{
element.CopyData.type : (return_arg, 2),
element.CopyDone.type : (element.CopyDone.parse, 3),
},
# 3: Complete.
{
element.Complete.type : (element.Complete.parse, None),
},
),
element.Synchronize.type : (
{element.Ready.type : (element.Ready.parse, None)},
),
element.Flush.type : None,
}
initial_state = (
(), # last messages,
(0, 0), # request position, response position
(0, 0), # last request position, last response position
)
def __init__(self, commands, asynchook = return_arg):
"""
Initialize an `Instruction` instance using the given commands.
Commands are `postgresql.protocol.element3.Message` instances:
* `.element3.Query`
* `.element3.Function`
* `.element3.Parse`
* `.element3.Bind`
* `.element3.Describe`
* `.element3.Close`
* `.element3.Execute`
* `.element3.Synchronize`
* `.element3.Flush`
"""
# Commands are accessed by index.
self.commands = tuple(commands)
self.asynchook = asynchook
self.completed = []
self.last = self.initial_state
self.messages = list(self.commands)
self.state = (Sending, self.standard_sent)
self.fatal = None
for cmd in self.commands:
if cmd.type not in self.hook:
raise TypeError(
"unknown message type for PQ 3.0 protocol", cmd.type
)
def __repr__(self, format = '{mod}.{name}({nl}{args})'.format):
return format(
mod = type(self).__module__,
name = type(self).__name__,
nl = os.linesep,
args = pprint.pformat(self.commands)
)
def messages_received(self):
'Received and validate messages'
return chain.from_iterable(map(get1, self.completed))
def reverse(self,
chaining = chain.from_iterable,
map = map,
transform = compose((get1, reversed)),
reversed = reversed
):
"""
A iterator that producing the completed messages in reverse
order. Last in, first out.
"""
return chaining(map(transform, reversed(self.completed)))
def standard_put(self, messages,
SWITCH_TYPES = element.Execute.type + element.Query.type,
ERROR_TYPE = element.Error.type,
READY_TYPE = element.Ready.type,
ERROR_PARSE = element.Error.parse,
len = len,
):
"""
Attempt to forward the state of the transaction using the given
messages. "put" messages into the transaction for processing.
If an invalid command is initialized on the `Transaction` object, an
`IndexError` will be thrown.
"""
COMMANDS = self.commands
NCOMMANDS = len(COMMANDS)
HOOK = self.hook
# We processed it, but apparently something went wrong,
# so go ahead and reprocess it.
if messages is self.last[0]:
offset, current_step = self.last[1]
# don't clear the asyncs. they have already been process by the hook.
else:
offset, current_step = self.last[2]
# it's a new set, so we can clear the asyncs record.
self._asyncs = []
cmd = COMMANDS[offset]
paths = HOOK[cmd.type]
processed = []
count = 0
for x in messages:
count += 1
# For the current message, get the path for the message
# and whether it signals the end of the current command
path, next_step = paths[current_step].get(x[0], (None, None))
if path is None:
# No path for message type, could be a protocol error.
if x[0] == ERROR_TYPE:
em = ERROR_PARSE(x[1])
# Is it fatal?
self.fatal = fatal = em[b'S'].upper() != b'ERROR'
self.error_message = em
if fatal is True:
# Can't sync up if the session is closed.
self.state = Complete
return count
# Error occurred, so sync up with backend if
# the current command is not 'Q' or 'F' as they
# imply a sync message.
if cmd.type not in (
element.Function.type, element.Query.type
):
# Adjust the offset forward until the Sync message is found.
for offset in range(offset, NCOMMANDS):
if COMMANDS[offset] is element.SynchronizeMessage:
break
else:
##
# It's done.
self.state = Complete
return count
##
# Not quite done, the state(Ready) message still
# needs to be received.
cmd = COMMANDS[offset]
paths = HOOK[cmd.type]
# On a new command, setup the new step.
current_step = 0
continue
elif x[0] in AsynchronousMap:
if x not in self._asyncs:
msg = AsynchronousMap[x[0]](x[1])
try:
self.asynchook(msg)
except Exception as err:
# exception thrown by async message handler?
# notify the user, but continue...
sys.excepthook(*sys.exc_info())
# it's been processed, so don't process it again.
self._asyncs.append(x)
else:
##
# Procotol violation.
self.fatal = True
self.error_message = element.ClientError((
(b'S', 'FATAL'),
(b'C', '08P01'),
(b'M', message_expectation(
expected = tuple(paths[current_step].keys()),
received = x[0]
)),
))
self.state = Complete
return count
else:
# Process a valid message.
r = path(x[1])
processed.append(r)
if next_step is not None:
current_step = next_step
else:
current_step = 0
if r.type == READY_TYPE:
self.last_ready = r.xact_state
# Done with the current command. Increment the offset, and
# try to process the new command with the remaining data.
paths = None
while paths is None:
# Increment the offset past any commands
# whose hook is None (FlushMessage)
offset += 1
# If the offset is the length,
# the transaction is complete.
if offset == NCOMMANDS:
# Done with transaction.
break
cmd = COMMANDS[offset]
paths = HOOK[cmd.type]
else:
# More commands to process in this transaction.
continue
# The while loop was broken offset == len(self.commands)
# So, that's all there is to this transaction.
break
# Push the messages onto the completed list if they
# have not been put there already.
if not self.completed or self.completed[-1][0] != id(messages):
self.completed.append((id(messages), processed))
# Store the state for the next transition.
self.last = (messages, self.last[2], (offset, current_step),)
if offset == NCOMMANDS:
# transaction complete.
self.state = Complete
elif cmd.type in SWITCH_TYPES and processed:
# Check the context to identify if the state should be
# switched to an optimized processor.
last = processed[-1]
if last.__class__ is bytes:
# Fast path for COPY data, 'd' messages.
self.state = (Receiving, self.put_copydata)
elif last.__class__ is tuple:
# Fast path for Tuples, 'D' messages.
self.state = (Receiving, self.put_tupledata)
elif last.type == element.CopyFromBegin.type:
# In this case, the commands that were sent past
# message starting the COPY, need to be re-issued
# once the COPY is complete. PG cleared its buffer.
self.CopyFailSequence = (self.CopyFailMessage,) + \
self.commands[offset+1:]
self.CopyDoneSequence = (element.CopyDoneMessage,) + \
self.commands[offset+1:]
self.state = (Sending, self.sent_from_stdin)
elif last.type == element.CopyToBegin.type:
# Should be seeing COPY data soon.
self.state = (Receiving, self.put_copydata)
return count
def put_copydata(self, messages):
"""
In the context of a copy, `put_copydata` is used as a fast path for
storing `element.CopyData` messages. When a non-`element.CopyData.type`
message is received, it reverts the ``state`` attribute back to
`standard_put` to process the message-sequence.
"""
copydata = element.CopyData.type
# "Fail" quickly if the last message is not copy data.
if messages[-1][0] != copydata:
self.state = (Receiving, self.standard_put)
return self.standard_put(messages)
lines = [x[1] for x in messages if x[0] == copydata]
if len(lines) != len(messages):
self.state = (Receiving, self.standard_put)
return self.standard_put(messages)
if not self.completed or self.completed[-1][0] != id(messages):
self.completed.append((id(messages), lines))
self.last = (messages, self.last[2], self.last[2],)
return len(messages)
try:
def put_tupledata(self, messages,
consume = consume_tuple_messages,
):
tuplemessages = consume(messages)
if not tuplemessages:
# bad handler switch?
self.state = (Receiving, self.standard_put)
return self.standard_put(messages)
if not self.completed or self.completed[-1][0] != id(messages):
self.completed.append(((id(messages), tuplemessages)))
self.last = (messages, self.last[2], self.last[2],)
return len(tuplemessages)
except NameError:
##
# No consume_tuple_messages function.
def put_tupledata(self, messages,
p = element.Tuple.parse,
t = element.Tuple.type,
):
"""
Fast path used when inside an Execute command. As soon as tuple
data is seen.
"""
# Fallback to `standard_put` quickly if the last
# message is not tuple data.
if messages[-1][0] is not t:
self.state = (Receiving, self.standard_put)
return self.standard_put(messages)
tuplemessages = [p(x[1]) for x in messages if x[0] == t]
if len(tuplemessages) != len(messages):
self.state = (Receiving, self.standard_put)
return self.standard_put(messages)
if not self.completed or self.completed[-1][0] != id(messages):
self.completed.append(((id(messages), tuplemessages)))
self.last = (messages, self.last[2], self.last[2],)
return len(messages)
def standard_sent(self):
"""
Empty messages and switch state to receiving.
This is called by the user after the `messages` have been sent to the
remote end. That is, this merely finalizes the "Sending" state.
"""
self.messages = ()
self.state = (Receiving, self.standard_put)
sent = standard_sent
def sent_from_stdin(self):
"""
The state method for sending copy data.
After each call to `sent_from_stdin`, the `messages` attribute is set
to a `CopyFailSequence`. This sequence of messages assures that the
COPY will be properly terminated.
If new copy data is not provided, or `messages` is *not* set to
`CopyDoneSequence`, the transaction will instruct the remote end to
cause the COPY to fail.
"""
if self.messages is self.CopyDoneSequence or \
self.messages is self.CopyFailSequence:
# If the last sent `messages` is CopyDone or CopyFail, finish out the
# transaction.
##
self.messages = ()
self.state = (Receiving, self.standard_put)
else:
##
# Initialize to CopyFail, if the messages attribute is not
# set properly before each invocation, the transaction is
# being misused and will be terminated.
self.messages = self.CopyFailSequence
|