protocol.sgml
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:37k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. <Chapter Id="protocol">
  2. <DocInfo>
  3. <Author>
  4. <FirstName>Phil</FirstName>
  5. <Surname>Thompson</Surname>
  6. </Author>
  7. <Date>1998-08-08</Date>
  8. </DocInfo>
  9. <Title>Frontend/Backend Protocol</Title>
  10. <Para>
  11. <Note>
  12. <Para>
  13. Written by <ULink url="mailto:phil@river-bank.demon.co.uk">Phil Thompson</ULink>.
  14. Updates for protocol 2.0 by <ULink url="mailto:tgl@sss.pgh.pa.us">Tom Lane</ULink>.
  15. </Para>
  16. </Note>
  17. </para>
  18. <Para>
  19. <ProductName>Postgres</ProductName> uses a message-based protocol for communication between frontends
  20. and backends.  The protocol is implemented over <Acronym>TCP/IP</Acronym> and also on Unix sockets.
  21. <ProductName>Postgres</ProductName> v6.3 introduced version numbers into the protocol.
  22. This was done in such
  23. a way as to still allow connections from earlier versions of frontends, but
  24. this document does not cover the protocol used by those earlier versions.
  25. </para>
  26. <Para>
  27. This document describes version 2.0 of the protocol, implemented in
  28. <ProductName>Postgres</ProductName> v6.4 and later.
  29. </para>
  30. <Para>
  31. Higher level features built on this protocol (for example, how <FileName>libpq</FileName> passes
  32. certain environment variables after the connection is established)
  33. are covered elsewhere.
  34. </para>
  35. <Sect1>
  36. <Title>Overview</Title>
  37. <Para>
  38. The three major components are the frontend (running on the client) and the
  39. postmaster and backend (running on the server).  The postmaster and backend
  40. have different roles but may be implemented by the same executable.
  41. </para>
  42. <Para>
  43. A frontend sends a startup packet to the postmaster.  This includes the names
  44. of the user and the database the user wants to connect to.  The postmaster then
  45. uses this, and the information in the pg_hba.conf(5) file to determine what
  46. further authentication information it requires the frontend to send (if any)
  47. and responds to the frontend accordingly.
  48. </para>
  49. <Para>
  50. The frontend then sends any required authentication information.  Once the
  51. postmaster validates this it responds to the frontend that it is authenticated
  52. and hands over the connection to a backend.  The backend then sends a message
  53. indicating successful startup (normal case) or failure (for example, an
  54. invalid database name).
  55. </para>
  56. <Para>
  57. Subsequent communications are query and result packets exchanged between the
  58. frontend and the backend.  The postmaster takes no further part in ordinary
  59. query/result communication.  (However, the postmaster is involved when the
  60. frontend wishes to cancel a query currently being executed by its backend.
  61. Further details about that appear below.)
  62. </para>
  63. <Para>
  64. When the frontend wishes to disconnect it sends an appropriate packet and
  65. closes the connection without waiting for a response for the backend.
  66. </para>
  67. <Para>
  68. Packets are sent as a data stream.  The first byte determines what should be
  69. expected in the rest of the packet.  The exception is packets sent from a
  70. frontend to the postmaster, which comprise a packet length then the packet
  71. itself.  The difference is historical.
  72. </para>
  73. </sect1>
  74. <Sect1>
  75. <Title>Protocol</Title>
  76. <Para>
  77. This section describes the message flow.  There are four different types of
  78. flows depending on the state of the connection:
  79. startup, query, function call, and termination.
  80. There are also special provisions for notification responses and command
  81. cancellation, which can occur at any time after the startup phase.
  82. </para>
  83. <Sect2>
  84. <Title>Startup</Title>
  85. <Para>
  86. Startup is divided into an authentication phase and a backend startup phase.
  87. </para>
  88. <Para>
  89. Initially, the frontend sends a StartupPacket.  The postmaster uses this info
  90. and the contents of the pg_hba.conf(5) file to determine what authentication
  91. method the frontend must use.  The postmaster then responds with one of the
  92. following messages:
  93. </para>
  94. <Para>
  95. <VariableList>
  96. <VarListEntry>
  97. <Term>
  98. ErrorResponse
  99. </Term>
  100. <ListItem>
  101. <Para>
  102. The postmaster then immediately closes the connection.
  103. </Para>
  104. </ListItem>
  105. </VarListEntry>
  106. <VarListEntry>
  107. <Term>
  108. AuthenticationOk
  109. </Term>
  110. <ListItem>
  111. <Para>
  112. The postmaster then hands over to the backend.  The postmaster
  113. takes no further part in the communication.
  114. </Para>
  115. </ListItem>
  116. </VarListEntry>
  117. <VarListEntry>
  118. <Term>
  119. AuthenticationKerberosV4
  120. </Term>
  121. <ListItem>
  122. <Para>
  123. The frontend must then take part in a Kerberos V4
  124. authentication dialog (not described here) with the postmaster.
  125. If this is successful, the postmaster responds with an
  126. AuthenticationOk, otherwise it responds with an ErrorResponse.
  127. </Para>
  128. </ListItem>
  129. </VarListEntry>
  130. <VarListEntry>
  131. <Term>
  132. AuthenticationKerberosV5
  133. </Term>
  134. <ListItem>
  135. <Para>
  136. The frontend must then take part in a Kerberos V5
  137. authentication dialog (not described here) with the postmaster.
  138. If this is successful, the postmaster responds with an
  139. AuthenticationOk, otherwise it responds with an ErrorResponse.
  140. </Para>
  141. </ListItem>
  142. </VarListEntry>
  143. <VarListEntry>
  144. <Term>
  145. AuthenticationUnencryptedPassword
  146. </Term>
  147. <ListItem>
  148. <Para>
  149. The frontend must then send an UnencryptedPasswordPacket.
  150. If this is the correct password, the postmaster responds with
  151. an AuthenticationOk, otherwise it responds with an
  152. ErrorResponse.
  153. </Para>
  154. </ListItem>
  155. </VarListEntry>
  156. <VarListEntry>
  157. <Term>
  158. AuthenticationEncryptedPassword
  159. </Term>
  160. <ListItem>
  161. <Para>
  162. The frontend must then send an EncryptedPasswordPacket.
  163. If this is the correct password, the postmaster responds with
  164. an AuthenticationOk, otherwise it responds with an
  165. ErrorResponse.
  166. </Para>
  167. </ListItem>
  168. </VarListEntry>
  169. </VariableList>
  170. </Para>
  171. <Para>
  172. If the frontend does not support the authentication method requested by the
  173. postmaster, then it should immediately close the connection.
  174. </para>
  175. <Para>
  176. After sending AuthenticationOk, the postmaster attempts to launch a backend
  177. process.  Since this might fail, or the backend might encounter a failure
  178. during startup, the frontend must wait for the backend to acknowledge
  179. successful startup.  The frontend should send no messages at this point.
  180. The possible messages from the backend during this phase are:
  181. <VariableList>
  182. <VarListEntry>
  183. <Term>
  184. BackendKeyData
  185. </Term>
  186. <ListItem>
  187. <Para>
  188. This message is issued after successful backend startup.
  189. It provides secret-key data that the frontend must save
  190. if it wants to be able to issue cancel requests later.
  191. The frontend should not respond to this message, but should
  192. continue listening for a ReadyForQuery message.
  193. </Para>
  194. </ListItem>
  195. </VarListEntry>
  196. <VarListEntry>
  197. <Term>
  198. ReadyForQuery
  199. </Term>
  200. <ListItem>
  201. <Para>
  202. Backend startup is successful.  The frontend may now issue
  203. query or function call messages.
  204. </Para>
  205. </ListItem>
  206. </VarListEntry>
  207. <VarListEntry>
  208. <Term>
  209. ErrorResponse
  210. </Term>
  211. <ListItem>
  212. <Para>
  213. Backend startup failed.  The connection is closed after
  214. sending this message.
  215. </Para>
  216. </ListItem>
  217. </VarListEntry>
  218. <VarListEntry>
  219. <Term>
  220. NoticeResponse
  221. </Term>
  222. <ListItem>
  223. <Para>
  224. A warning message has been issued.  The frontend should
  225. display the message but continue listening for ReadyForQuery
  226. or ErrorResponse.
  227. </Para>
  228. </ListItem>
  229. </VarListEntry>
  230. </VariableList>
  231. </Para>
  232. <Para>
  233. The ReadyForQuery message is the same one that the backend will issue after
  234. each query cycle.  Depending on the coding needs of the frontend, it is
  235. reasonable to consider ReadyForQuery as starting a query cycle (and then
  236. BackendKeyData indicates successful conclusion of the startup phase),
  237. or to consider ReadyForQuery as ending the startup phase and each subsequent
  238. query cycle.
  239. </para>
  240. </sect2>
  241. <Sect2>
  242. <Title>Query</Title>
  243. <Para>
  244. A Query cycle is initiated by the frontend sending a Query message to the
  245. backend.  The backend then sends one or more response messages depending
  246. on the contents of the query command string, and finally a ReadyForQuery
  247. response message.  ReadyForQuery informs the frontend that it may safely
  248. send a new query or function call.
  249. </para>
  250. <Para>
  251. The possible response messages from the backend are:
  252. <VariableList>
  253. <VarListEntry>
  254. <Term>
  255. CompletedResponse
  256. </Term>
  257. <ListItem>
  258. <Para>
  259. An SQL command completed normally.
  260. </Para>
  261. </ListItem>
  262. </VarListEntry>
  263. <VarListEntry>
  264. <Term>
  265. CopyInResponse
  266. </Term>
  267. <ListItem>
  268. <Para>
  269. The backend is ready to copy data from the frontend to a
  270. relation.  The frontend should then send a CopyDataRows
  271. message.  The backend will then respond with a
  272. CompletedResponse message with a tag of "COPY".
  273. </Para>
  274. </ListItem>
  275. </VarListEntry>
  276. <VarListEntry>
  277. <Term>
  278. CopyOutResponse
  279. </Term>
  280. <ListItem>
  281. <Para>
  282. The backend is ready to copy data from a relation to the
  283. frontend.  It then sends a CopyDataRows message, and then a
  284. CompletedResponse message with a tag of "COPY".
  285. </Para>
  286. </ListItem>
  287. </VarListEntry>
  288. <VarListEntry>
  289. <Term>
  290. CursorResponse
  291. </Term>
  292. <ListItem>
  293. <Para>
  294. The query was either an insert(l), delete(l), update(l),
  295. fetch(l) or a select(l) command.
  296.                 If the transaction has been
  297.                 aborted then the backend sends a CompletedResponse message with
  298.                 a tag of "*ABORT STATE*".  Otherwise the following responses
  299.                 are sent.
  300. </Para>
  301. <Para>
  302. For an insert(l) command, the backend then sends a
  303. CompletedResponse message with a tag of "INSERT <Replaceable>oid</Replaceable> <Replaceable>rows</Replaceable>"
  304. where <Replaceable>rows</Replaceable> is the number of rows inserted, and <Replaceable>oid</Replaceable> is the
  305. object ID of the inserted row if <Replaceable>rows</Replaceable> is 1, otherwise <Replaceable>oid</Replaceable>
  306. is 0.
  307. </Para>
  308. <Para>
  309. For a delete(l) command, the backend then sends a
  310. CompletedResponse message with a tag of "DELETE <Replaceable>rows</Replaceable>" where
  311. <Replaceable>rows</Replaceable> is the number of rows deleted.
  312. </Para>
  313. <Para>
  314. For an update(l) command, the backend then sends a
  315. CompletedResponse message with a tag of "UPDATE <Replaceable>rows</Replaceable>" where
  316. <Replaceable>rows</Replaceable> is the number of rows deleted.
  317. </Para>
  318. <Para>
  319. For a fetch(l) or select(l) command, the backend sends a
  320. RowDescription message.  This is then followed by an AsciiRow
  321. or BinaryRow message (depending on whether a binary cursor was
  322. specified) for each row being returned to the frontend.
  323. Finally, the backend sends a CompletedResponse message with a
  324. tag of "SELECT".
  325. </Para>
  326. </ListItem>
  327. </VarListEntry>
  328. <VarListEntry>
  329. <Term>
  330. EmptyQueryResponse
  331. </Term>
  332. <ListItem>
  333. <Para>
  334. An empty query string was recognized.  (The need to specially
  335. distinguish this case is historical.)
  336. </Para>
  337. </ListItem>
  338. </VarListEntry>
  339. <VarListEntry>
  340. <Term>
  341. ErrorResponse
  342. </Term>
  343. <ListItem>
  344. <Para>
  345. An error has occurred.
  346. </Para>
  347. </ListItem>
  348. </VarListEntry>
  349. <VarListEntry>
  350. <Term>
  351. ReadyForQuery
  352. </Term>
  353. <ListItem>
  354. <Para>
  355. Processing of the query string is complete.  A separate
  356. message is sent to indicate this because the query string
  357. may contain multiple SQL commands.  (CompletedResponse marks
  358. the end of processing one SQL command, not the whole string.)
  359. ReadyForQuery will always be sent, whether processing
  360. terminates successfully or with an error.
  361. </Para>
  362. </ListItem>
  363. </VarListEntry>
  364. <VarListEntry>
  365. <Term>
  366. NoticeResponse
  367. </Term>
  368. <ListItem>
  369. <Para>
  370. A warning message has been issued in relation to the query.
  371. Notices are in addition to other responses, ie. the backend
  372. will continue processing the command.
  373. </Para>
  374. </ListItem>
  375. </VarListEntry>
  376. </VariableList>
  377. </Para>
  378. <Para>
  379. A frontend must be prepared to accept ErrorResponse and NoticeResponse
  380. messages whenever it is expecting any other type of message.
  381. </para>
  382. <Para>
  383. Actually, it is possible for NoticeResponse to arrive even when the frontend
  384. is not expecting any kind of message, that is, the backend is nominally idle.
  385. (In particular, the backend can be commanded to terminate by its postmaster.
  386. In that case it will send a NoticeResponse before closing the connection.)
  387. It is recommended that the frontend check for such asynchronous notices just
  388. before issuing any new command.
  389. </para>
  390. <Para>
  391. Also, if the frontend issues any listen(l) commands then it must be prepared
  392. to accept NotificationResponse messages at any time; see below.
  393. </para>
  394. </sect2>
  395. <Sect2>
  396. <Title>Function Call</Title>
  397. <Para>
  398. A Function Call cycle is initiated by the frontend sending a FunctionCall
  399. message to the backend.  The backend then sends one or more response messages
  400. depending on the results of the function call, and finally a ReadyForQuery
  401. response message.  ReadyForQuery informs the frontend that it may safely send
  402. a new query or function call.
  403. </para>
  404. <Para>
  405. The possible response messages from the backend are:
  406. <VariableList>
  407. <VarListEntry>
  408. <Term>
  409. ErrorResponse
  410. </Term>
  411. <ListItem>
  412. <Para>
  413. An error has occurred.
  414. </Para>
  415. </ListItem>
  416. </VarListEntry>
  417. <VarListEntry>
  418. <Term>
  419. FunctionResultResponse
  420. </Term>
  421. <ListItem>
  422. <Para>
  423. The function call was executed and returned a result.
  424. </Para>
  425. </ListItem>
  426. </VarListEntry>
  427. <VarListEntry>
  428. <Term>
  429. FunctionVoidResponse
  430. </Term>
  431. <ListItem>
  432. <Para>
  433. The function call was executed and returned no result.
  434. </Para>
  435. </ListItem>
  436. </VarListEntry>
  437. <VarListEntry>
  438. <Term>
  439. ReadyForQuery
  440. </Term>
  441. <ListItem>
  442. <Para>
  443. Processing of the function call is complete.
  444. ReadyForQuery will always be sent, whether processing
  445. terminates successfully or with an error.
  446. </Para>
  447. </ListItem>
  448. </VarListEntry>
  449. <VarListEntry>
  450. <Term>
  451. NoticeResponse
  452. </Term>
  453. <ListItem>
  454. <Para>
  455. A warning message has been issued in relation to the function
  456. call.
  457. Notices are in addition to other responses, ie. the backend
  458. will continue processing the command.
  459. </Para>
  460. </ListItem>
  461. </VarListEntry>
  462. </VariableList>
  463. </Para>
  464. <Para>
  465. A frontend must be prepared to accept ErrorResponse and NoticeResponse
  466. messages whenever it is expecting any other type of message.  Also,
  467. if it issues any listen(l) commands then it must be prepared to accept
  468. NotificationResponse messages at any time; see below.
  469. </para>
  470. </sect2>
  471. <Sect2>
  472. <Title>Notification Responses</Title>
  473. <Para>
  474. If a frontend issues a listen(l) command, then the backend will send a
  475. NotificationResponse message (not to be confused with NoticeResponse!)
  476. whenever a notify(l) command is executed for the same notification name.
  477. </para>
  478. <Para>
  479. Notification responses are permitted at any point in the protocol (after
  480. startup), except within another backend message.  Thus, the frontend
  481. must be prepared to recognize a NotificationResponse message whenever it is
  482. expecting any message.  Indeed, it should be able to handle
  483. NotificationResponse messages even when it is not engaged in a query.
  484. <VariableList>
  485. <VarListEntry>
  486. <Term>
  487. NotificationResponse
  488. </Term>
  489. <ListItem>
  490. <Para>
  491. A notify(l) command has been executed for a name for which
  492. a previous listen(l) command was executed.  Notifications
  493. may be sent at any time.
  494. </Para>
  495. </ListItem>
  496. </VarListEntry>
  497. </VariableList>
  498. </Para>
  499. <Para>
  500. It may be worth pointing out that the names used in listen and notify
  501. commands need not have anything to do with names of relations (tables)
  502. in the SQL database.  Notification names are simply arbitrarily chosen
  503. condition names.
  504. </para>
  505. </sect2>
  506. <Sect2>
  507. <Title>Cancelling Requests in Progress</Title>
  508. <Para>
  509. During the processing of a query, the frontend may request cancellation of the
  510. query by sending an appropriate request to the postmaster.  The cancel request
  511. is not sent directly to the backend for reasons of implementation efficiency:
  512. we don't want to have the backend constantly checking for new input from
  513. the frontend during query processing.  Cancel requests should be relatively
  514. infrequent, so we make them slightly cumbersome in order to avoid a penalty
  515. in the normal case.
  516. </para>
  517. <Para>
  518. To issue a cancel request, the frontend opens a new connection to the
  519. postmaster and sends a CancelRequest message, rather than the StartupPacket
  520. message that would ordinarily be sent across a new connection.  The postmaster
  521. will process this request and then close the connection.  For security
  522. reasons, no direct reply is made to the cancel request message.
  523. </para>
  524. <Para>
  525. A CancelRequest message will be ignored unless it contains the same key data
  526. (PID and secret key) passed to the frontend during connection startup.  If the
  527. request matches the PID and secret key for a currently executing backend, the
  528. postmaster signals the backend to abort processing of the current query.
  529. </para>
  530. <Para>
  531. The cancellation signal may or may not have any effect --- for example, if it
  532. arrives after the backend has finished processing the query, then it will have
  533. no effect.  If the cancellation is effective, it results in the current
  534. command being terminated early with an error message.
  535. </para>
  536. <Para>
  537. The upshot of all this is that for reasons of both security and efficiency,
  538. the frontend has no direct way to tell whether a cancel request has succeeded.
  539. It must continue to wait for the backend to respond to the query.  Issuing a
  540. cancel simply improves the odds that the current query will finish soon,
  541. and improves the odds that it will fail with an error message instead of
  542. succeeding.
  543. </para>
  544. <Para>
  545. Since the cancel request is sent to the postmaster and not across the
  546. regular frontend/backend communication link, it is possible for the cancel
  547. request to be issued by any process, not just the frontend whose query is
  548. to be canceled.  This may have some benefits of flexibility in building
  549. multiple-process applications.  It also introduces a security risk, in that
  550. unauthorized persons might try to cancel queries.  The security risk is
  551. addressed by requiring a dynamically generated secret key to be supplied
  552. in cancel requests.
  553. </para>
  554. </sect2>
  555. <Sect2>
  556. <Title>Termination</Title>
  557. <Para>
  558. The normal, graceful termination procedure is that the frontend sends a
  559. Terminate message and immediately closes the connection.  On receipt of the
  560. message, the backend immediately closes the connection and terminates.
  561. </para>
  562. <Para>
  563. An ungraceful termination may occur due to software failure (i.e., core dump)
  564. at either end.  If either frontend or backend sees an unexpected closure of
  565. the connection, it should clean up and terminate.  The frontend has the option
  566. of launching a new backend by recontacting the postmaster, if it doesn't want
  567. to terminate itself.
  568. </para>
  569. </sect2>
  570. </sect1>
  571. <Sect1>
  572. <Title>Message Data Types</Title>
  573. <Para>
  574. This section describes the base data types used in messages.
  575. <VariableList>
  576. <VarListEntry>
  577. <Term>
  578. Int<Replaceable>n</Replaceable>(<Replaceable>i</Replaceable>)
  579. </Term>
  580. <ListItem>
  581. <Para>
  582. An <Replaceable>n</Replaceable> bit integer in network byte order.
  583.                 If <Replaceable>i</Replaceable> is specified it
  584. is the literal value.  Eg. Int16, Int32(42).
  585. </Para>
  586. </ListItem>
  587. </VarListEntry>
  588. <VarListEntry>
  589. <Term>
  590. LimString<Replaceable>n</Replaceable>(<Replaceable>s</Replaceable>)
  591. </Term>
  592. <ListItem>
  593. <Para>
  594. A character array of exactly <Replaceable>n</Replaceable> bytes interpreted as a ''
  595. terminated string.  The '' is omitted if there is
  596. insufficient room.  If <Replaceable>s</Replaceable> is specified it is the literal value.
  597. Eg. LimString32, LimString64("user").
  598. </Para>
  599. </ListItem>
  600. </VarListEntry>
  601. <VarListEntry>
  602. <Term>
  603. String(<Replaceable>s</Replaceable>)
  604. </Term>
  605. <ListItem>
  606. <Para>
  607. A conventional C '' terminated string with no length
  608. limitation.  A frontend should always read the full string
  609. even though it may have to discard characters if its buffers
  610. aren't big enough.
  611. <Note>
  612. <Para>
  613. Is 8193 bytes the largest allowed size?
  614. </Para>
  615. </Note>
  616. If <Replaceable>s</Replaceable> is specified it is the literal value.
  617. Eg. String, String("user").
  618. </Para>
  619. </ListItem>
  620. </VarListEntry>
  621. <VarListEntry>
  622. <Term>
  623. Byte<Replaceable>n</Replaceable>(<Replaceable>c</Replaceable>)
  624. </Term>
  625. <ListItem>
  626. <Para>
  627. Exactly <Replaceable>n</Replaceable> bytes.  If <Replaceable>c</Replaceable> is specified it is the literal
  628. value.  Eg. Byte, Byte1('n').
  629. </Para>
  630. </ListItem>
  631. </VarListEntry>
  632. </VariableList>
  633. </Para>
  634. </sect1>
  635. <Sect1>
  636. <Title>Message Formats</Title>
  637. <Para>
  638. This section describes the detailed format of each message.  Each can be sent
  639. by either a frontend (F), a postmaster/backend (B), or both (F & B).
  640. </para>
  641. <VariableList>
  642. <VarListEntry>
  643. <Term>
  644. AsciiRow (B)
  645. </Term>
  646. <ListItem>
  647. <Para>
  648. <VariableList>
  649. <VarListEntry>
  650. <Term>
  651. Byte1('D')
  652. </Term>
  653. <ListItem>
  654. <Para>
  655. Identifies the message as an <Acronym>ASCII</Acronym> data row.
  656. (A prior RowDescription message defines the number of
  657. fields in the row and their data types.)
  658. </Para>
  659. </ListItem>
  660. </VarListEntry>
  661. <VarListEntry>
  662. <Term>
  663. Byte<Replaceable>n</Replaceable>
  664. </Term>
  665. <ListItem>
  666. <Para>
  667.                 A bit map with one bit for each field in the row.  The 1st
  668.                 field corresponds to bit 7 (MSB) of the 1st byte, the 2nd
  669.                 field corresponds to bit 6 of the 1st byte, the 8th field
  670.                 corresponds to bit 0 (LSB) of the 1st byte, the 9th field
  671.                 corresponds to bit 7 of the 2nd byte, and so on.  Each bit
  672.                 is set if the value of the corresponding field is not NULL.
  673.                 If the number of fields is not a multiple of 8, the remainder
  674.                 of the last byte in the bit map is wasted.
  675. </Para>
  676. <Para>
  677. Then, for each field with a non-NULL value, there is the following:
  678. <VariableList>
  679. <VarListEntry>
  680. <Term>
  681. Int32
  682. </Term>
  683. <ListItem>
  684. <Para>
  685. Specifies the size of the value of the field, including
  686. this size.
  687. </Para>
  688. </ListItem>
  689. </VarListEntry>
  690. <VarListEntry>
  691. <Term>
  692. Byte<Replaceable>n</Replaceable>
  693. </Term>
  694. <ListItem>
  695. <Para>
  696. Specifies the value of the field itself in <Acronym>ASCII</Acronym>
  697. characters.  <Replaceable>n</Replaceable> is the above
  698. size minus 4.
  699.                         There is no trailing '' in the field data; the front
  700. end must add one if it wants one.
  701. </Para>
  702. </ListItem>
  703. </VarListEntry>
  704. </VariableList>
  705. </Para>
  706. </ListItem>
  707. </VarListEntry>
  708. </VariableList>
  709. </Para>
  710. </ListItem>
  711. </VarListEntry>
  712. <VarListEntry>
  713. <Term>
  714. AuthenticationOk (B)
  715. </Term>
  716. <ListItem>
  717. <Para>
  718. <VariableList>
  719. <VarListEntry>
  720. <Term>
  721. Byte1('R')
  722. </Term>
  723. <ListItem>
  724. <Para>
  725. Identifies the message as an authentication request.
  726. </Para>
  727. </ListItem>
  728. </VarListEntry>
  729. <VarListEntry>
  730. <Term>
  731. Int32(0)
  732. </Term>
  733. <ListItem>
  734. <Para>
  735. Specifies that the authentication was successful.
  736. </Para>
  737. </ListItem>
  738. </VarListEntry>
  739. </VariableList>
  740. </Para>
  741. </ListItem>
  742. </VarListEntry>
  743. <VarListEntry>
  744. <Term>
  745. AuthenticationKerberosV4 (B)
  746. </Term>
  747. <ListItem>
  748. <Para>
  749. <VariableList>
  750. <VarListEntry>
  751. <Term>
  752. Byte1('R')
  753. </Term>
  754. <ListItem>
  755. <Para>
  756. Identifies the message as an authentication request.
  757. </Para>
  758. </ListItem>
  759. </VarListEntry>
  760. <VarListEntry>
  761. <Term>
  762. Int32(1)
  763. </Term>
  764. <ListItem>
  765. <Para>
  766. Specifies that Kerberos V4 authentication is required.
  767. </Para>
  768. </ListItem>
  769. </VarListEntry>
  770. </VariableList>
  771. </Para>
  772. </ListItem>
  773. </VarListEntry>
  774. <VarListEntry>
  775. <Term>
  776. AuthenticationKerberosV5 (B)
  777. </Term>
  778. <ListItem>
  779. <Para>
  780. <VariableList>
  781. <VarListEntry>
  782. <Term>
  783. Byte1('R')
  784. </Term>
  785. <ListItem>
  786. <Para>
  787. Identifies the message as an authentication request.
  788. </Para>
  789. </ListItem>
  790. </VarListEntry>
  791. <VarListEntry>
  792. <Term>
  793. Int32(2)
  794. </Term>
  795. <ListItem>
  796. <Para>
  797. Specifies that Kerberos V5 authentication is required.
  798. </Para>
  799. </ListItem>
  800. </VarListEntry>
  801. </VariableList>
  802. </Para>
  803. </ListItem>
  804. </VarListEntry>
  805. <VarListEntry>
  806. <Term>
  807. AuthenticationUnencryptedPassword (B)
  808. </Term>
  809. <ListItem>
  810. <Para>
  811. <VariableList>
  812. <VarListEntry>
  813. <Term>
  814. Byte1('R')
  815. </Term>
  816. <ListItem>
  817. <Para>
  818. Identifies the message as an authentication request.
  819. </Para>
  820. </ListItem>
  821. </VarListEntry>
  822. <VarListEntry>
  823. <Term>
  824. Int32(3)
  825. </Term>
  826. <ListItem>
  827. <Para>
  828. Specifies that an unencrypted password is required.
  829. </Para>
  830. </ListItem>
  831. </VarListEntry>
  832. </VariableList>
  833. </Para>
  834. </ListItem>
  835. </VarListEntry>
  836. <VarListEntry>
  837. <Term>
  838. AuthenticationEncryptedPassword (B)
  839. </Term>
  840. <ListItem>
  841. <Para>
  842. <VariableList>
  843. <VarListEntry>
  844. <Term>
  845. Byte1('R')
  846. </Term>
  847. <ListItem>
  848. <Para>
  849. Identifies the message as an authentication request.
  850. </Para>
  851. </ListItem>
  852. </VarListEntry>
  853. <VarListEntry>
  854. <Term>
  855. Int32(4)
  856. </Term>
  857. <ListItem>
  858. <Para>
  859. Specifies that an encrypted password is required.
  860. </Para>
  861. </ListItem>
  862. </VarListEntry>
  863. <VarListEntry>
  864. <Term>
  865. Byte2
  866. </Term>
  867. <ListItem>
  868. <Para>
  869. The salt to use when encrypting the password.
  870. </Para>
  871. </ListItem>
  872. </VarListEntry>
  873. </VariableList>
  874. </Para>
  875. </ListItem>
  876. </VarListEntry>
  877. <VarListEntry>
  878. <Term>
  879. BackendKeyData (B)
  880. </Term>
  881. <ListItem>
  882. <Para>
  883. <VariableList>
  884. <VarListEntry>
  885. <Term>
  886. Byte1('K')
  887. </Term>
  888. <ListItem>
  889. <Para>
  890. Identifies the message as cancellation key data.
  891. The frontend must save these values if it wishes to be
  892. able to issue CancelRequest messages later.
  893. </Para>
  894. </ListItem>
  895. </VarListEntry>
  896. <VarListEntry>
  897. <Term>
  898. Int32
  899. </Term>
  900. <ListItem>
  901. <Para>
  902. The process ID of this backend.
  903. </Para>
  904. </ListItem>
  905. </VarListEntry>
  906. <VarListEntry>
  907. <Term>
  908. Int32
  909. </Term>
  910. <ListItem>
  911. <Para>
  912. The secret key of this backend.
  913. </Para>
  914. </ListItem>
  915. </VarListEntry>
  916. </VariableList>
  917. </Para>
  918. </ListItem>
  919. </VarListEntry>
  920. <VarListEntry>
  921. <Term>
  922. BinaryRow (B)
  923. </Term>
  924. <ListItem>
  925. <Para>
  926. <VariableList>
  927. <VarListEntry>
  928. <Term>
  929. Byte1('B')
  930. </Term>
  931. <ListItem>
  932. <Para>
  933. Identifies the message as a binary data row.
  934. (A prior RowDescription message defines the number of
  935. fields in the row and their data types.)
  936. </Para>
  937. </ListItem>
  938. </VarListEntry>
  939. <VarListEntry>
  940. <Term>
  941. Byte<Replaceable>n</Replaceable>
  942. </Term>
  943. <ListItem>
  944. <Para>
  945.                 A bit map with one bit for each field in the row.  The 1st
  946.                 field corresponds to bit 7 (MSB) of the 1st byte, the 2nd
  947.                 field corresponds to bit 6 of the 1st byte, the 8th field
  948.                 corresponds to bit 0 (LSB) of the 1st byte, the 9th field
  949.                 corresponds to bit 7 of the 2nd byte, and so on.  Each bit
  950.                 is set if the value of the corresponding field is not NULL.
  951.                 If the number of fields is not a multiple of 8, the remainder
  952.                 of the last byte in the bit map is wasted.
  953. </Para>
  954. <Para>
  955. Then, for each field with a non-NULL value, there is the following:
  956. <VariableList>
  957. <VarListEntry>
  958. <Term>
  959. Int32
  960. </Term>
  961. <ListItem>
  962. <Para>
  963. Specifies the size of the value of the field, excluding
  964. this size.
  965. </Para>
  966. </ListItem>
  967. </VarListEntry>
  968. <VarListEntry>
  969. <Term>
  970. Byte<Replaceable>n</Replaceable>
  971. </Term>
  972. <ListItem>
  973. <Para>
  974. Specifies the value of the field itself in binary
  975. format.  <Replaceable>n</Replaceable> is the above size.
  976. </Para>
  977. </ListItem>
  978. </VarListEntry>
  979. </VariableList>
  980. </Para>
  981. </ListItem>
  982. </VarListEntry>
  983. </VariableList>
  984. </Para>
  985. </ListItem>
  986. </VarListEntry>
  987. <VarListEntry>
  988. <Term>
  989. CancelRequest (F)
  990. </Term>
  991. <ListItem>
  992. <Para>
  993. <VariableList>
  994. <VarListEntry>
  995. <Term>
  996. Int32(16)
  997. </Term>
  998. <ListItem>
  999. <Para>
  1000. The size of the packet in bytes.
  1001. </Para>
  1002. </ListItem>
  1003. </VarListEntry>
  1004. <VarListEntry>
  1005. <Term>
  1006. Int32(80877102)
  1007. </Term>
  1008. <ListItem>
  1009. <Para>
  1010. The cancel request code.  The value is chosen to contain
  1011. "1234" in the most significant 16 bits, and "5678" in the
  1012. least 16 significant bits.  (To avoid confusion, this code
  1013. must not be the same as any protocol version number.)
  1014. </Para>
  1015. </ListItem>
  1016. </VarListEntry>
  1017. <VarListEntry>
  1018. <Term>
  1019. Int32
  1020. </Term>
  1021. <ListItem>
  1022. <Para>
  1023. The process ID of the target backend.
  1024. </Para>
  1025. </ListItem>
  1026. </VarListEntry>
  1027. <VarListEntry>
  1028. <Term>
  1029. Int32
  1030. </Term>
  1031. <ListItem>
  1032. <Para>
  1033. The secret key for the target backend.
  1034. </Para>
  1035. </ListItem>
  1036. </VarListEntry>
  1037. </VariableList>
  1038. </Para>
  1039. </ListItem>
  1040. </VarListEntry>
  1041. <VarListEntry>
  1042. <Term>
  1043. CompletedResponse (B)
  1044. </Term>
  1045. <ListItem>
  1046. <Para>
  1047. <VariableList>
  1048. <VarListEntry>
  1049. <Term>
  1050. Byte1('C')
  1051. </Term>
  1052. <ListItem>
  1053. <Para>
  1054. Identifies the message as a completed response.
  1055. </Para>
  1056. </ListItem>
  1057. </VarListEntry>
  1058. <VarListEntry>
  1059. <Term>
  1060. String
  1061. </Term>
  1062. <ListItem>
  1063. <Para>
  1064. The command tag.  This is usually (but not always) a single
  1065. word that identifies which SQL command was completed.
  1066. </Para>
  1067. </ListItem>
  1068. </VarListEntry>
  1069. </VariableList>
  1070. </Para>
  1071. </ListItem>
  1072. </VarListEntry>
  1073. <VarListEntry>
  1074. <Term>
  1075. CopyDataRows (B & F)
  1076. </Term>
  1077. <ListItem>
  1078. <Para>
  1079. This is a stream of rows where each row is terminated by a Byte1('n').
  1080. This is then followed by the sequence Byte1('\'), Byte1('.'),
  1081. Byte1('n').
  1082. </Para>
  1083. </ListItem>
  1084. </VarListEntry>
  1085. <VarListEntry>
  1086. <Term>
  1087. CopyInResponse (B)
  1088. </Term>
  1089. <ListItem>
  1090. <Para>
  1091. <VariableList>
  1092. <VarListEntry>
  1093. <Term>
  1094. Byte1('G')
  1095. </Term>
  1096. <ListItem>
  1097. <Para>
  1098. Identifies the message as a Start Copy In response.
  1099. The frontend must now send a CopyDataRows message.
  1100. </Para>
  1101. </ListItem>
  1102. </VarListEntry>
  1103. </VariableList>
  1104. </Para>
  1105. </ListItem>
  1106. </VarListEntry>
  1107. <VarListEntry>
  1108. <Term>
  1109. CopyOutResponse (B)
  1110. </Term>
  1111. <ListItem>
  1112. <Para>
  1113. <VariableList>
  1114. <VarListEntry>
  1115. <Term>
  1116. Byte1('H')
  1117. </Term>
  1118. <ListItem>
  1119. <Para>
  1120. Identifies the message as a Start Copy Out response.
  1121. This message will be followed by a CopyDataRows message.
  1122. </Para>
  1123. </ListItem>
  1124. </VarListEntry>
  1125. </VariableList>
  1126. </Para>
  1127. </ListItem>
  1128. </VarListEntry>
  1129. <VarListEntry>
  1130. <Term>
  1131. CursorResponse (B)
  1132. </Term>
  1133. <ListItem>
  1134. <Para>
  1135. <VariableList>
  1136. <VarListEntry>
  1137. <Term>
  1138. Byte1('P')
  1139. </Term>
  1140. <ListItem>
  1141. <Para>
  1142. Identifies the message as a cursor response.
  1143. </Para>
  1144. </ListItem>
  1145. </VarListEntry>
  1146. <VarListEntry>
  1147. <Term>
  1148. String
  1149. </Term>
  1150. <ListItem>
  1151. <Para>
  1152. The name of the cursor.  This will be "blank" if the cursor is
  1153. implicit.
  1154. </Para>
  1155. </ListItem>
  1156. </VarListEntry>
  1157. </VariableList>
  1158. </Para>
  1159. </ListItem>
  1160. </VarListEntry>
  1161. <VarListEntry>
  1162. <Term>
  1163. EmptyQueryResponse (B)
  1164. </Term>
  1165. <ListItem>
  1166. <Para>
  1167. <VariableList>
  1168. <VarListEntry>
  1169. <Term>
  1170. Byte1('I')
  1171. </Term>
  1172. <ListItem>
  1173. <Para>
  1174. Identifies the message as a response to an empty query string.
  1175. </Para>
  1176. </ListItem>
  1177. </VarListEntry>
  1178. <VarListEntry>
  1179. <Term>
  1180. String("")
  1181. </Term>
  1182. <ListItem>
  1183. <Para>
  1184. Unused.
  1185. </Para>
  1186. </ListItem>
  1187. </VarListEntry>
  1188. </VariableList>
  1189. </Para>
  1190. </ListItem>
  1191. </VarListEntry>
  1192. <VarListEntry>
  1193. <Term>
  1194. EncryptedPasswordPacket (F)
  1195. </Term>
  1196. <ListItem>
  1197. <Para>
  1198. <VariableList>
  1199. <VarListEntry>
  1200. <Term>
  1201. Int32
  1202. </Term>
  1203. <ListItem>
  1204. <Para>
  1205. The size of the packet in bytes.
  1206. </Para>
  1207. </ListItem>
  1208. </VarListEntry>
  1209. <VarListEntry>
  1210. <Term>
  1211. String
  1212. </Term>
  1213. <ListItem>
  1214. <Para>
  1215. The encrypted (using crypt()) password.
  1216. </Para>
  1217. </ListItem>
  1218. </VarListEntry>
  1219. </VariableList>
  1220. </Para>
  1221. </ListItem>
  1222. </VarListEntry>
  1223. <VarListEntry>
  1224. <Term>
  1225. ErrorResponse (B)
  1226. </Term>
  1227. <ListItem>
  1228. <Para>
  1229. <VariableList>
  1230. <VarListEntry>
  1231. <Term>
  1232. Byte1('E')
  1233. </Term>
  1234. <ListItem>
  1235. <Para>
  1236. Identifies the message as an error.
  1237. </Para>
  1238. </ListItem>
  1239. </VarListEntry>
  1240. <VarListEntry>
  1241. <Term>
  1242. String
  1243. </Term>
  1244. <ListItem>
  1245. <Para>
  1246. The error message itself.
  1247. </Para>
  1248. </ListItem>
  1249. </VarListEntry>
  1250. </VariableList>
  1251. </Para>
  1252. </ListItem>
  1253. </VarListEntry>
  1254. <VarListEntry>
  1255. <Term>
  1256. FunctionCall (F)
  1257. </Term>
  1258. <ListItem>
  1259. <Para>
  1260. <VariableList>
  1261. <VarListEntry>
  1262. <Term>
  1263. Byte1('F')
  1264. </Term>
  1265. <ListItem>
  1266. <Para>
  1267. Identifies the message as a function call.
  1268. </Para>
  1269. </ListItem>
  1270. </VarListEntry>
  1271. <VarListEntry>
  1272. <Term>
  1273. String("")
  1274. </Term>
  1275. <ListItem>
  1276. <Para>
  1277. Unused.
  1278. </Para>
  1279. </ListItem>
  1280. </VarListEntry>
  1281. <VarListEntry>
  1282. <Term>
  1283. Int32
  1284. </Term>
  1285. <ListItem>
  1286. <Para>
  1287. Specifies the object ID of the function to call.
  1288. </Para>
  1289. </ListItem>
  1290. </VarListEntry>
  1291. <VarListEntry>
  1292. <Term>
  1293. Int32
  1294. </Term>
  1295. <ListItem>
  1296. <Para>
  1297. Specifies the number of arguments being supplied to the
  1298. function.
  1299. </Para>
  1300. <Para>
  1301. Then, for each argument, there is the following:
  1302. <VariableList>
  1303. <VarListEntry>
  1304. <Term>
  1305. Int32
  1306. </Term>
  1307. <ListItem>
  1308. <Para>
  1309. Specifies the size of the value of the argument,
  1310. excluding this size.
  1311. </Para>
  1312. </ListItem>
  1313. </VarListEntry>
  1314. <VarListEntry>
  1315. <Term>
  1316. Byte<Replaceable>n</Replaceable>
  1317. </Term>
  1318. <ListItem>
  1319. <Para>
  1320. Specifies the value of the field itself in binary
  1321. format.  <Replaceable>n</Replaceable> is the above size.
  1322. </Para>
  1323. </ListItem>
  1324. </VarListEntry>
  1325. </VariableList>
  1326. </Para>
  1327. </ListItem>
  1328. </VarListEntry>
  1329. </VariableList>
  1330. </Para>
  1331. </ListItem>
  1332. </VarListEntry>
  1333. <VarListEntry>
  1334. <Term>
  1335. FunctionResultResponse (B)
  1336. </Term>
  1337. <ListItem>
  1338. <Para>
  1339. <VariableList>
  1340. <VarListEntry>
  1341. <Term>
  1342. Byte1('V')
  1343. </Term>
  1344. <ListItem>
  1345. <Para>
  1346. Identifies the message as a function call result.
  1347. </Para>
  1348. </ListItem>
  1349. </VarListEntry>
  1350. <VarListEntry>
  1351. <Term>
  1352. Byte1('G')
  1353. </Term>
  1354. <ListItem>
  1355. <Para>
  1356. Specifies that a nonempty result was returned.
  1357. </Para>
  1358. </ListItem>
  1359. </VarListEntry>
  1360. <VarListEntry>
  1361. <Term>
  1362. Int32
  1363. </Term>
  1364. <ListItem>
  1365. <Para>
  1366. Specifies the size of the value of the result, excluding this
  1367. size.
  1368. </Para>
  1369. </ListItem>
  1370. </VarListEntry>
  1371. <VarListEntry>
  1372. <Term>
  1373. Byte<Replaceable>n</Replaceable>
  1374. </Term>
  1375. <ListItem>
  1376. <Para>
  1377. Specifies the value of the result itself in binary format.
  1378. <Replaceable>n</Replaceable> is the above size.
  1379. </Para>
  1380. </ListItem>
  1381. </VarListEntry>
  1382. <VarListEntry>
  1383. <Term>
  1384. Byte1('0')
  1385. </Term>
  1386. <ListItem>
  1387. <Para>
  1388. Unused.  (Strictly speaking, FunctionResultResponse and
  1389. FunctionVoidResponse are the same thing but with some optional
  1390. parts to the message.)
  1391. </Para>
  1392. </ListItem>
  1393. </VarListEntry>
  1394. </VariableList>
  1395. </Para>
  1396. </ListItem>
  1397. </VarListEntry>
  1398. <VarListEntry>
  1399. <Term>
  1400. FunctionVoidResponse (B)
  1401. </Term>
  1402. <ListItem>
  1403. <Para>
  1404. <VariableList>
  1405. <VarListEntry>
  1406. <Term>
  1407. Byte1('V')
  1408. </Term>
  1409. <ListItem>
  1410. <Para>
  1411. Identifies the message as a function call result.
  1412. </Para>
  1413. </ListItem>
  1414. </VarListEntry>
  1415. <VarListEntry>
  1416. <Term>
  1417. Byte1('0')
  1418. </Term>
  1419. <ListItem>
  1420. <Para>
  1421. Specifies that an empty result was returned.
  1422. </Para>
  1423. </ListItem>
  1424. </VarListEntry>
  1425. </VariableList>
  1426. </Para>
  1427. </ListItem>
  1428. </VarListEntry>
  1429. <VarListEntry>
  1430. <Term>
  1431. NoticeResponse (B)
  1432. </Term>
  1433. <ListItem>
  1434. <Para>
  1435. <VariableList>
  1436. <VarListEntry>
  1437. <Term>
  1438. Byte1('N')
  1439. </Term>
  1440. <ListItem>
  1441. <Para>
  1442. Identifies the message as a notice.
  1443. </Para>
  1444. </ListItem>
  1445. </VarListEntry>
  1446. <VarListEntry>
  1447. <Term>
  1448. String
  1449. </Term>
  1450. <ListItem>
  1451. <Para>
  1452. The notice message itself.
  1453. </Para>
  1454. </ListItem>
  1455. </VarListEntry>
  1456. </VariableList>
  1457. </Para>
  1458. </ListItem>
  1459. </VarListEntry>
  1460. <VarListEntry>
  1461. <Term>
  1462. NotificationResponse (B)
  1463. </Term>
  1464. <ListItem>
  1465. <Para>
  1466. <VariableList>
  1467. <VarListEntry>
  1468. <Term>
  1469. Byte1('A')
  1470. </Term>
  1471. <ListItem>
  1472. <Para>
  1473. Identifies the message as a notification response.
  1474. </Para>
  1475. </ListItem>
  1476. </VarListEntry>
  1477. <VarListEntry>
  1478. <Term>
  1479. Int32
  1480. </Term>
  1481. <ListItem>
  1482. <Para>
  1483. The process ID of the notifying backend process.
  1484. </Para>
  1485. </ListItem>
  1486. </VarListEntry>
  1487. <VarListEntry>
  1488. <Term>
  1489. String
  1490. </Term>
  1491. <ListItem>
  1492. <Para>
  1493. The name of the condition that the notify has been raised on.
  1494. </Para>
  1495. </ListItem>
  1496. </VarListEntry>
  1497. </VariableList>
  1498. </Para>
  1499. </ListItem>
  1500. </VarListEntry>
  1501. <VarListEntry>
  1502. <Term>
  1503. Query (F)
  1504. </Term>
  1505. <ListItem>
  1506. <Para>
  1507. <VariableList>
  1508. <VarListEntry>
  1509. <Term>
  1510. Byte1('Q')
  1511. </Term>
  1512. <ListItem>
  1513. <Para>
  1514. Identifies the message as a query.
  1515. </Para>
  1516. </ListItem>
  1517. </VarListEntry>
  1518. <VarListEntry>
  1519. <Term>
  1520. String
  1521. </Term>
  1522. <ListItem>
  1523. <Para>
  1524. The query string itself.
  1525. </Para>
  1526. </ListItem>
  1527. </VarListEntry>
  1528. </VariableList>
  1529. </Para>
  1530. </ListItem>
  1531. </VarListEntry>
  1532. <VarListEntry>
  1533. <Term>
  1534. ReadyForQuery (B)
  1535. </Term>
  1536. <ListItem>
  1537. <Para>
  1538. <VariableList>
  1539. <VarListEntry>
  1540. <Term>
  1541. Byte1('Z')
  1542. </Term>
  1543. <ListItem>
  1544. <Para>
  1545. Identifies the message type.  ReadyForQuery is sent
  1546. whenever the backend is ready for a new query cycle.
  1547. </Para>
  1548. </ListItem>
  1549. </VarListEntry>
  1550. </VariableList>
  1551. </Para>
  1552. </ListItem>
  1553. </VarListEntry>
  1554. <VarListEntry>
  1555. <Term>
  1556. RowDescription (B)
  1557. </Term>
  1558. <ListItem>
  1559. <Para>
  1560. <VariableList>
  1561. <VarListEntry>
  1562. <Term>
  1563. Byte1('T')
  1564. </Term>
  1565. <ListItem>
  1566. <Para>
  1567. Identifies the message as a row description.
  1568. </Para>
  1569. </ListItem>
  1570. </VarListEntry>
  1571. <VarListEntry>
  1572. <Term>
  1573. Int16
  1574. </Term>
  1575. <ListItem>
  1576. <Para>
  1577. Specifies the number of fields in a row (may be zero).
  1578. </Para>
  1579. <Para>
  1580. Then, for each field, there is the following:
  1581. <VariableList>
  1582. <VarListEntry>
  1583. <Term>
  1584. String
  1585. </Term>
  1586. <ListItem>
  1587. <Para>
  1588. Specifies the field name.
  1589. </Para>
  1590. </ListItem>
  1591. </VarListEntry>
  1592. <VarListEntry>
  1593. <Term>
  1594. Int32
  1595. </Term>
  1596. <ListItem>
  1597. <Para>
  1598. Specifies the object ID of the field type.
  1599. </Para>
  1600. </ListItem>
  1601. </VarListEntry>
  1602. <VarListEntry>
  1603. <Term>
  1604. Int16
  1605. </Term>
  1606. <ListItem>
  1607. <Para>
  1608. Specifies the type size.
  1609. </Para>
  1610. </ListItem>
  1611. </VarListEntry>
  1612. <VarListEntry>
  1613. <Term>
  1614. Int32
  1615. </Term>
  1616. <ListItem>
  1617. <Para>
  1618. Specifies the type modifier.
  1619. </Para>
  1620. </ListItem>
  1621. </VarListEntry>
  1622. </VariableList>
  1623. </Para>
  1624. </ListItem>
  1625. </VarListEntry>
  1626. </VariableList>
  1627. </Para>
  1628. </ListItem>
  1629. </VarListEntry>
  1630. <VarListEntry>
  1631. <Term>
  1632. StartupPacket (F)
  1633. </Term>
  1634. <ListItem>
  1635. <Para>
  1636. <VariableList>
  1637. <VarListEntry>
  1638. <Term>
  1639. Int32(296)
  1640. </Term>
  1641. <ListItem>
  1642. <Para>
  1643. The size of the packet in bytes.
  1644. </Para>
  1645. </ListItem>
  1646. </VarListEntry>
  1647. <VarListEntry>
  1648. <Term>
  1649. Int32
  1650. </Term>
  1651. <ListItem>
  1652. <Para>
  1653. The protocol version number.  The most significant 16 bits are
  1654. the major version number.  The least 16 significant bits are
  1655. the minor version number.
  1656. </Para>
  1657. </ListItem>
  1658. </VarListEntry>
  1659. <VarListEntry>
  1660. <Term>
  1661. LimString64
  1662. </Term>
  1663. <ListItem>
  1664. <Para>
  1665. The database name, defaults to the user name if empty.
  1666. </Para>
  1667. </ListItem>
  1668. </VarListEntry>
  1669. <VarListEntry>
  1670. <Term>
  1671. LimString32
  1672. </Term>
  1673. <ListItem>
  1674. <Para>
  1675. The user name.
  1676. </Para>
  1677. </ListItem>
  1678. </VarListEntry>
  1679. <VarListEntry>
  1680. <Term>
  1681. LimString64
  1682. </Term>
  1683. <ListItem>
  1684. <Para>
  1685. Any additional command line arguments to be passed to the
  1686. backend by the postmaster.
  1687. </Para>
  1688. </ListItem>
  1689. </VarListEntry>
  1690. <VarListEntry>
  1691. <Term>
  1692. LimString64
  1693. </Term>
  1694. <ListItem>
  1695. <Para>
  1696. Unused.
  1697. </Para>
  1698. </ListItem>
  1699. </VarListEntry>
  1700. <VarListEntry>
  1701. <Term>
  1702. LimString64
  1703. </Term>
  1704. <ListItem>
  1705. <Para>
  1706. The optional tty the backend should use for debugging messages.
  1707. </Para>
  1708. </ListItem>
  1709. </VarListEntry>
  1710. </VariableList>
  1711. </Para>
  1712. </ListItem>
  1713. </VarListEntry>
  1714. <VarListEntry>
  1715. <Term>
  1716. Terminate (F)
  1717. </Term>
  1718. <ListItem>
  1719. <Para>
  1720. <VariableList>
  1721. <VarListEntry>
  1722. <Term>
  1723. Byte1('X')
  1724. </Term>
  1725. <ListItem>
  1726. <Para>
  1727. Identifies the message as a termination.
  1728. </Para>
  1729. </ListItem>
  1730. </VarListEntry>
  1731. </VariableList>
  1732. </Para>
  1733. </ListItem>
  1734. </VarListEntry>
  1735. <VarListEntry>
  1736. <Term>
  1737. UnencryptedPasswordPacket (F)
  1738. </Term>
  1739. <ListItem>
  1740. <Para>
  1741. <VariableList>
  1742. <VarListEntry>
  1743. <Term>
  1744. Int32
  1745. </Term>
  1746. <ListItem>
  1747. <Para>
  1748. The size of the packet in bytes.
  1749. </Para>
  1750. </ListItem>
  1751. </VarListEntry>
  1752. <VarListEntry>
  1753. <Term>
  1754. String
  1755. </Term>
  1756. <ListItem>
  1757. <Para>
  1758. The unencrypted password.
  1759. </Para>
  1760. </ListItem>
  1761. </VarListEntry>
  1762. </VariableList>
  1763. </Para>
  1764. </ListItem>
  1765. </VarListEntry>
  1766. </VariableList>
  1767. </sect1>
  1768. </Chapter>