rxrpc.txt 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149
  1. ======================
  2. RxRPC NETWORK PROTOCOL
  3. ======================
  4. The RxRPC protocol driver provides a reliable two-phase transport on top of UDP
  5. that can be used to perform RxRPC remote operations. This is done over sockets
  6. of AF_RXRPC family, using sendmsg() and recvmsg() with control data to send and
  7. receive data, aborts and errors.
  8. Contents of this document:
  9. (*) Overview.
  10. (*) RxRPC protocol summary.
  11. (*) AF_RXRPC driver model.
  12. (*) Control messages.
  13. (*) Socket options.
  14. (*) Security.
  15. (*) Example client usage.
  16. (*) Example server usage.
  17. (*) AF_RXRPC kernel interface.
  18. (*) Configurable parameters.
  19. ========
  20. OVERVIEW
  21. ========
  22. RxRPC is a two-layer protocol. There is a session layer which provides
  23. reliable virtual connections using UDP over IPv4 (or IPv6) as the transport
  24. layer, but implements a real network protocol; and there's the presentation
  25. layer which renders structured data to binary blobs and back again using XDR
  26. (as does SunRPC):
  27. +-------------+
  28. | Application |
  29. +-------------+
  30. | XDR | Presentation
  31. +-------------+
  32. | RxRPC | Session
  33. +-------------+
  34. | UDP | Transport
  35. +-------------+
  36. AF_RXRPC provides:
  37. (1) Part of an RxRPC facility for both kernel and userspace applications by
  38. making the session part of it a Linux network protocol (AF_RXRPC).
  39. (2) A two-phase protocol. The client transmits a blob (the request) and then
  40. receives a blob (the reply), and the server receives the request and then
  41. transmits the reply.
  42. (3) Retention of the reusable bits of the transport system set up for one call
  43. to speed up subsequent calls.
  44. (4) A secure protocol, using the Linux kernel's key retention facility to
  45. manage security on the client end. The server end must of necessity be
  46. more active in security negotiations.
  47. AF_RXRPC does not provide XDR marshalling/presentation facilities. That is
  48. left to the application. AF_RXRPC only deals in blobs. Even the operation ID
  49. is just the first four bytes of the request blob, and as such is beyond the
  50. kernel's interest.
  51. Sockets of AF_RXRPC family are:
  52. (1) created as type SOCK_DGRAM;
  53. (2) provided with a protocol of the type of underlying transport they're going
  54. to use - currently only PF_INET is supported.
  55. The Andrew File System (AFS) is an example of an application that uses this and
  56. that has both kernel (filesystem) and userspace (utility) components.
  57. ======================
  58. RXRPC PROTOCOL SUMMARY
  59. ======================
  60. An overview of the RxRPC protocol:
  61. (*) RxRPC sits on top of another networking protocol (UDP is the only option
  62. currently), and uses this to provide network transport. UDP ports, for
  63. example, provide transport endpoints.
  64. (*) RxRPC supports multiple virtual "connections" from any given transport
  65. endpoint, thus allowing the endpoints to be shared, even to the same
  66. remote endpoint.
  67. (*) Each connection goes to a particular "service". A connection may not go
  68. to multiple services. A service may be considered the RxRPC equivalent of
  69. a port number. AF_RXRPC permits multiple services to share an endpoint.
  70. (*) Client-originating packets are marked, thus a transport endpoint can be
  71. shared between client and server connections (connections have a
  72. direction).
  73. (*) Up to a billion connections may be supported concurrently between one
  74. local transport endpoint and one service on one remote endpoint. An RxRPC
  75. connection is described by seven numbers:
  76. Local address }
  77. Local port } Transport (UDP) address
  78. Remote address }
  79. Remote port }
  80. Direction
  81. Connection ID
  82. Service ID
  83. (*) Each RxRPC operation is a "call". A connection may make up to four
  84. billion calls, but only up to four calls may be in progress on a
  85. connection at any one time.
  86. (*) Calls are two-phase and asymmetric: the client sends its request data,
  87. which the service receives; then the service transmits the reply data
  88. which the client receives.
  89. (*) The data blobs are of indefinite size, the end of a phase is marked with a
  90. flag in the packet. The number of packets of data making up one blob may
  91. not exceed 4 billion, however, as this would cause the sequence number to
  92. wrap.
  93. (*) The first four bytes of the request data are the service operation ID.
  94. (*) Security is negotiated on a per-connection basis. The connection is
  95. initiated by the first data packet on it arriving. If security is
  96. requested, the server then issues a "challenge" and then the client
  97. replies with a "response". If the response is successful, the security is
  98. set for the lifetime of that connection, and all subsequent calls made
  99. upon it use that same security. In the event that the server lets a
  100. connection lapse before the client, the security will be renegotiated if
  101. the client uses the connection again.
  102. (*) Calls use ACK packets to handle reliability. Data packets are also
  103. explicitly sequenced per call.
  104. (*) There are two types of positive acknowledgment: hard-ACKs and soft-ACKs.
  105. A hard-ACK indicates to the far side that all the data received to a point
  106. has been received and processed; a soft-ACK indicates that the data has
  107. been received but may yet be discarded and re-requested. The sender may
  108. not discard any transmittable packets until they've been hard-ACK'd.
  109. (*) Reception of a reply data packet implicitly hard-ACK's all the data
  110. packets that make up the request.
  111. (*) An call is complete when the request has been sent, the reply has been
  112. received and the final hard-ACK on the last packet of the reply has
  113. reached the server.
  114. (*) An call may be aborted by either end at any time up to its completion.
  115. =====================
  116. AF_RXRPC DRIVER MODEL
  117. =====================
  118. About the AF_RXRPC driver:
  119. (*) The AF_RXRPC protocol transparently uses internal sockets of the transport
  120. protocol to represent transport endpoints.
  121. (*) AF_RXRPC sockets map onto RxRPC connection bundles. Actual RxRPC
  122. connections are handled transparently. One client socket may be used to
  123. make multiple simultaneous calls to the same service. One server socket
  124. may handle calls from many clients.
  125. (*) Additional parallel client connections will be initiated to support extra
  126. concurrent calls, up to a tunable limit.
  127. (*) Each connection is retained for a certain amount of time [tunable] after
  128. the last call currently using it has completed in case a new call is made
  129. that could reuse it.
  130. (*) Each internal UDP socket is retained [tunable] for a certain amount of
  131. time [tunable] after the last connection using it discarded, in case a new
  132. connection is made that could use it.
  133. (*) A client-side connection is only shared between calls if they have have
  134. the same key struct describing their security (and assuming the calls
  135. would otherwise share the connection). Non-secured calls would also be
  136. able to share connections with each other.
  137. (*) A server-side connection is shared if the client says it is.
  138. (*) ACK'ing is handled by the protocol driver automatically, including ping
  139. replying.
  140. (*) SO_KEEPALIVE automatically pings the other side to keep the connection
  141. alive [TODO].
  142. (*) If an ICMP error is received, all calls affected by that error will be
  143. aborted with an appropriate network error passed through recvmsg().
  144. Interaction with the user of the RxRPC socket:
  145. (*) A socket is made into a server socket by binding an address with a
  146. non-zero service ID.
  147. (*) In the client, sending a request is achieved with one or more sendmsgs,
  148. followed by the reply being received with one or more recvmsgs.
  149. (*) The first sendmsg for a request to be sent from a client contains a tag to
  150. be used in all other sendmsgs or recvmsgs associated with that call. The
  151. tag is carried in the control data.
  152. (*) connect() is used to supply a default destination address for a client
  153. socket. This may be overridden by supplying an alternate address to the
  154. first sendmsg() of a call (struct msghdr::msg_name).
  155. (*) If connect() is called on an unbound client, a random local port will
  156. bound before the operation takes place.
  157. (*) A server socket may also be used to make client calls. To do this, the
  158. first sendmsg() of the call must specify the target address. The server's
  159. transport endpoint is used to send the packets.
  160. (*) Once the application has received the last message associated with a call,
  161. the tag is guaranteed not to be seen again, and so it can be used to pin
  162. client resources. A new call can then be initiated with the same tag
  163. without fear of interference.
  164. (*) In the server, a request is received with one or more recvmsgs, then the
  165. the reply is transmitted with one or more sendmsgs, and then the final ACK
  166. is received with a last recvmsg.
  167. (*) When sending data for a call, sendmsg is given MSG_MORE if there's more
  168. data to come on that call.
  169. (*) When receiving data for a call, recvmsg flags MSG_MORE if there's more
  170. data to come for that call.
  171. (*) When receiving data or messages for a call, MSG_EOR is flagged by recvmsg
  172. to indicate the terminal message for that call.
  173. (*) A call may be aborted by adding an abort control message to the control
  174. data. Issuing an abort terminates the kernel's use of that call's tag.
  175. Any messages waiting in the receive queue for that call will be discarded.
  176. (*) Aborts, busy notifications and challenge packets are delivered by recvmsg,
  177. and control data messages will be set to indicate the context. Receiving
  178. an abort or a busy message terminates the kernel's use of that call's tag.
  179. (*) The control data part of the msghdr struct is used for a number of things:
  180. (*) The tag of the intended or affected call.
  181. (*) Sending or receiving errors, aborts and busy notifications.
  182. (*) Notifications of incoming calls.
  183. (*) Sending debug requests and receiving debug replies [TODO].
  184. (*) When the kernel has received and set up an incoming call, it sends a
  185. message to server application to let it know there's a new call awaiting
  186. its acceptance [recvmsg reports a special control message]. The server
  187. application then uses sendmsg to assign a tag to the new call. Once that
  188. is done, the first part of the request data will be delivered by recvmsg.
  189. (*) The server application has to provide the server socket with a keyring of
  190. secret keys corresponding to the security types it permits. When a secure
  191. connection is being set up, the kernel looks up the appropriate secret key
  192. in the keyring and then sends a challenge packet to the client and
  193. receives a response packet. The kernel then checks the authorisation of
  194. the packet and either aborts the connection or sets up the security.
  195. (*) The name of the key a client will use to secure its communications is
  196. nominated by a socket option.
  197. Notes on sendmsg:
  198. (*) MSG_WAITALL can be set to tell sendmsg to ignore signals if the peer is
  199. making progress at accepting packets within a reasonable time such that we
  200. manage to queue up all the data for transmission. This requires the
  201. client to accept at least one packet per 2*RTT time period.
  202. If this isn't set, sendmsg() will return immediately, either returning
  203. EINTR/ERESTARTSYS if nothing was consumed or returning the amount of data
  204. consumed.
  205. Notes on recvmsg:
  206. (*) If there's a sequence of data messages belonging to a particular call on
  207. the receive queue, then recvmsg will keep working through them until:
  208. (a) it meets the end of that call's received data,
  209. (b) it meets a non-data message,
  210. (c) it meets a message belonging to a different call, or
  211. (d) it fills the user buffer.
  212. If recvmsg is called in blocking mode, it will keep sleeping, awaiting the
  213. reception of further data, until one of the above four conditions is met.
  214. (2) MSG_PEEK operates similarly, but will return immediately if it has put any
  215. data in the buffer rather than sleeping until it can fill the buffer.
  216. (3) If a data message is only partially consumed in filling a user buffer,
  217. then the remainder of that message will be left on the front of the queue
  218. for the next taker. MSG_TRUNC will never be flagged.
  219. (4) If there is more data to be had on a call (it hasn't copied the last byte
  220. of the last data message in that phase yet), then MSG_MORE will be
  221. flagged.
  222. ================
  223. CONTROL MESSAGES
  224. ================
  225. AF_RXRPC makes use of control messages in sendmsg() and recvmsg() to multiplex
  226. calls, to invoke certain actions and to report certain conditions. These are:
  227. MESSAGE ID SRT DATA MEANING
  228. ======================= === =========== ===============================
  229. RXRPC_USER_CALL_ID sr- User ID App's call specifier
  230. RXRPC_ABORT srt Abort code Abort code to issue/received
  231. RXRPC_ACK -rt n/a Final ACK received
  232. RXRPC_NET_ERROR -rt error num Network error on call
  233. RXRPC_BUSY -rt n/a Call rejected (server busy)
  234. RXRPC_LOCAL_ERROR -rt error num Local error encountered
  235. RXRPC_NEW_CALL -r- n/a New call received
  236. RXRPC_ACCEPT s-- n/a Accept new call
  237. RXRPC_EXCLUSIVE_CALL s-- n/a Make an exclusive client call
  238. RXRPC_UPGRADE_SERVICE s-- n/a Client call can be upgraded
  239. RXRPC_TX_LENGTH s-- data len Total length of Tx data
  240. (SRT = usable in Sendmsg / delivered by Recvmsg / Terminal message)
  241. (*) RXRPC_USER_CALL_ID
  242. This is used to indicate the application's call ID. It's an unsigned long
  243. that the app specifies in the client by attaching it to the first data
  244. message or in the server by passing it in association with an RXRPC_ACCEPT
  245. message. recvmsg() passes it in conjunction with all messages except
  246. those of the RXRPC_NEW_CALL message.
  247. (*) RXRPC_ABORT
  248. This is can be used by an application to abort a call by passing it to
  249. sendmsg, or it can be delivered by recvmsg to indicate a remote abort was
  250. received. Either way, it must be associated with an RXRPC_USER_CALL_ID to
  251. specify the call affected. If an abort is being sent, then error EBADSLT
  252. will be returned if there is no call with that user ID.
  253. (*) RXRPC_ACK
  254. This is delivered to a server application to indicate that the final ACK
  255. of a call was received from the client. It will be associated with an
  256. RXRPC_USER_CALL_ID to indicate the call that's now complete.
  257. (*) RXRPC_NET_ERROR
  258. This is delivered to an application to indicate that an ICMP error message
  259. was encountered in the process of trying to talk to the peer. An
  260. errno-class integer value will be included in the control message data
  261. indicating the problem, and an RXRPC_USER_CALL_ID will indicate the call
  262. affected.
  263. (*) RXRPC_BUSY
  264. This is delivered to a client application to indicate that a call was
  265. rejected by the server due to the server being busy. It will be
  266. associated with an RXRPC_USER_CALL_ID to indicate the rejected call.
  267. (*) RXRPC_LOCAL_ERROR
  268. This is delivered to an application to indicate that a local error was
  269. encountered and that a call has been aborted because of it. An
  270. errno-class integer value will be included in the control message data
  271. indicating the problem, and an RXRPC_USER_CALL_ID will indicate the call
  272. affected.
  273. (*) RXRPC_NEW_CALL
  274. This is delivered to indicate to a server application that a new call has
  275. arrived and is awaiting acceptance. No user ID is associated with this,
  276. as a user ID must subsequently be assigned by doing an RXRPC_ACCEPT.
  277. (*) RXRPC_ACCEPT
  278. This is used by a server application to attempt to accept a call and
  279. assign it a user ID. It should be associated with an RXRPC_USER_CALL_ID
  280. to indicate the user ID to be assigned. If there is no call to be
  281. accepted (it may have timed out, been aborted, etc.), then sendmsg will
  282. return error ENODATA. If the user ID is already in use by another call,
  283. then error EBADSLT will be returned.
  284. (*) RXRPC_EXCLUSIVE_CALL
  285. This is used to indicate that a client call should be made on a one-off
  286. connection. The connection is discarded once the call has terminated.
  287. (*) RXRPC_UPGRADE_SERVICE
  288. This is used to make a client call to probe if the specified service ID
  289. may be upgraded by the server. The caller must check msg_name returned to
  290. recvmsg() for the service ID actually in use. The operation probed must
  291. be one that takes the same arguments in both services.
  292. Once this has been used to establish the upgrade capability (or lack
  293. thereof) of the server, the service ID returned should be used for all
  294. future communication to that server and RXRPC_UPGRADE_SERVICE should no
  295. longer be set.
  296. (*) RXRPC_TX_LENGTH
  297. This is used to inform the kernel of the total amount of data that is
  298. going to be transmitted by a call (whether in a client request or a
  299. service response). If given, it allows the kernel to encrypt from the
  300. userspace buffer directly to the packet buffers, rather than copying into
  301. the buffer and then encrypting in place. This may only be given with the
  302. first sendmsg() providing data for a call. EMSGSIZE will be generated if
  303. the amount of data actually given is different.
  304. This takes a parameter of __s64 type that indicates how much will be
  305. transmitted. This may not be less than zero.
  306. The symbol RXRPC__SUPPORTED is defined as one more than the highest control
  307. message type supported. At run time this can be queried by means of the
  308. RXRPC_SUPPORTED_CMSG socket option (see below).
  309. ==============
  310. SOCKET OPTIONS
  311. ==============
  312. AF_RXRPC sockets support a few socket options at the SOL_RXRPC level:
  313. (*) RXRPC_SECURITY_KEY
  314. This is used to specify the description of the key to be used. The key is
  315. extracted from the calling process's keyrings with request_key() and
  316. should be of "rxrpc" type.
  317. The optval pointer points to the description string, and optlen indicates
  318. how long the string is, without the NUL terminator.
  319. (*) RXRPC_SECURITY_KEYRING
  320. Similar to above but specifies a keyring of server secret keys to use (key
  321. type "keyring"). See the "Security" section.
  322. (*) RXRPC_EXCLUSIVE_CONNECTION
  323. This is used to request that new connections should be used for each call
  324. made subsequently on this socket. optval should be NULL and optlen 0.
  325. (*) RXRPC_MIN_SECURITY_LEVEL
  326. This is used to specify the minimum security level required for calls on
  327. this socket. optval must point to an int containing one of the following
  328. values:
  329. (a) RXRPC_SECURITY_PLAIN
  330. Encrypted checksum only.
  331. (b) RXRPC_SECURITY_AUTH
  332. Encrypted checksum plus packet padded and first eight bytes of packet
  333. encrypted - which includes the actual packet length.
  334. (c) RXRPC_SECURITY_ENCRYPTED
  335. Encrypted checksum plus entire packet padded and encrypted, including
  336. actual packet length.
  337. (*) RXRPC_UPGRADEABLE_SERVICE
  338. This is used to indicate that a service socket with two bindings may
  339. upgrade one bound service to the other if requested by the client. optval
  340. must point to an array of two unsigned short ints. The first is the
  341. service ID to upgrade from and the second the service ID to upgrade to.
  342. (*) RXRPC_SUPPORTED_CMSG
  343. This is a read-only option that writes an int into the buffer indicating
  344. the highest control message type supported.
  345. ========
  346. SECURITY
  347. ========
  348. Currently, only the kerberos 4 equivalent protocol has been implemented
  349. (security index 2 - rxkad). This requires the rxkad module to be loaded and,
  350. on the client, tickets of the appropriate type to be obtained from the AFS
  351. kaserver or the kerberos server and installed as "rxrpc" type keys. This is
  352. normally done using the klog program. An example simple klog program can be
  353. found at:
  354. http://people.redhat.com/~dhowells/rxrpc/klog.c
  355. The payload provided to add_key() on the client should be of the following
  356. form:
  357. struct rxrpc_key_sec2_v1 {
  358. uint16_t security_index; /* 2 */
  359. uint16_t ticket_length; /* length of ticket[] */
  360. uint32_t expiry; /* time at which expires */
  361. uint8_t kvno; /* key version number */
  362. uint8_t __pad[3];
  363. uint8_t session_key[8]; /* DES session key */
  364. uint8_t ticket[0]; /* the encrypted ticket */
  365. };
  366. Where the ticket blob is just appended to the above structure.
  367. For the server, keys of type "rxrpc_s" must be made available to the server.
  368. They have a description of "<serviceID>:<securityIndex>" (eg: "52:2" for an
  369. rxkad key for the AFS VL service). When such a key is created, it should be
  370. given the server's secret key as the instantiation data (see the example
  371. below).
  372. add_key("rxrpc_s", "52:2", secret_key, 8, keyring);
  373. A keyring is passed to the server socket by naming it in a sockopt. The server
  374. socket then looks the server secret keys up in this keyring when secure
  375. incoming connections are made. This can be seen in an example program that can
  376. be found at:
  377. http://people.redhat.com/~dhowells/rxrpc/listen.c
  378. ====================
  379. EXAMPLE CLIENT USAGE
  380. ====================
  381. A client would issue an operation by:
  382. (1) An RxRPC socket is set up by:
  383. client = socket(AF_RXRPC, SOCK_DGRAM, PF_INET);
  384. Where the third parameter indicates the protocol family of the transport
  385. socket used - usually IPv4 but it can also be IPv6 [TODO].
  386. (2) A local address can optionally be bound:
  387. struct sockaddr_rxrpc srx = {
  388. .srx_family = AF_RXRPC,
  389. .srx_service = 0, /* we're a client */
  390. .transport_type = SOCK_DGRAM, /* type of transport socket */
  391. .transport.sin_family = AF_INET,
  392. .transport.sin_port = htons(7000), /* AFS callback */
  393. .transport.sin_address = 0, /* all local interfaces */
  394. };
  395. bind(client, &srx, sizeof(srx));
  396. This specifies the local UDP port to be used. If not given, a random
  397. non-privileged port will be used. A UDP port may be shared between
  398. several unrelated RxRPC sockets. Security is handled on a basis of
  399. per-RxRPC virtual connection.
  400. (3) The security is set:
  401. const char *key = "AFS:cambridge.redhat.com";
  402. setsockopt(client, SOL_RXRPC, RXRPC_SECURITY_KEY, key, strlen(key));
  403. This issues a request_key() to get the key representing the security
  404. context. The minimum security level can be set:
  405. unsigned int sec = RXRPC_SECURITY_ENCRYPTED;
  406. setsockopt(client, SOL_RXRPC, RXRPC_MIN_SECURITY_LEVEL,
  407. &sec, sizeof(sec));
  408. (4) The server to be contacted can then be specified (alternatively this can
  409. be done through sendmsg):
  410. struct sockaddr_rxrpc srx = {
  411. .srx_family = AF_RXRPC,
  412. .srx_service = VL_SERVICE_ID,
  413. .transport_type = SOCK_DGRAM, /* type of transport socket */
  414. .transport.sin_family = AF_INET,
  415. .transport.sin_port = htons(7005), /* AFS volume manager */
  416. .transport.sin_address = ...,
  417. };
  418. connect(client, &srx, sizeof(srx));
  419. (5) The request data should then be posted to the server socket using a series
  420. of sendmsg() calls, each with the following control message attached:
  421. RXRPC_USER_CALL_ID - specifies the user ID for this call
  422. MSG_MORE should be set in msghdr::msg_flags on all but the last part of
  423. the request. Multiple requests may be made simultaneously.
  424. An RXRPC_TX_LENGTH control message can also be specified on the first
  425. sendmsg() call.
  426. If a call is intended to go to a destination other than the default
  427. specified through connect(), then msghdr::msg_name should be set on the
  428. first request message of that call.
  429. (6) The reply data will then be posted to the server socket for recvmsg() to
  430. pick up. MSG_MORE will be flagged by recvmsg() if there's more reply data
  431. for a particular call to be read. MSG_EOR will be set on the terminal
  432. read for a call.
  433. All data will be delivered with the following control message attached:
  434. RXRPC_USER_CALL_ID - specifies the user ID for this call
  435. If an abort or error occurred, this will be returned in the control data
  436. buffer instead, and MSG_EOR will be flagged to indicate the end of that
  437. call.
  438. A client may ask for a service ID it knows and ask that this be upgraded to a
  439. better service if one is available by supplying RXRPC_UPGRADE_SERVICE on the
  440. first sendmsg() of a call. The client should then check srx_service in the
  441. msg_name filled in by recvmsg() when collecting the result. srx_service will
  442. hold the same value as given to sendmsg() if the upgrade request was ignored by
  443. the service - otherwise it will be altered to indicate the service ID the
  444. server upgraded to. Note that the upgraded service ID is chosen by the server.
  445. The caller has to wait until it sees the service ID in the reply before sending
  446. any more calls (further calls to the same destination will be blocked until the
  447. probe is concluded).
  448. ====================
  449. EXAMPLE SERVER USAGE
  450. ====================
  451. A server would be set up to accept operations in the following manner:
  452. (1) An RxRPC socket is created by:
  453. server = socket(AF_RXRPC, SOCK_DGRAM, PF_INET);
  454. Where the third parameter indicates the address type of the transport
  455. socket used - usually IPv4.
  456. (2) Security is set up if desired by giving the socket a keyring with server
  457. secret keys in it:
  458. keyring = add_key("keyring", "AFSkeys", NULL, 0,
  459. KEY_SPEC_PROCESS_KEYRING);
  460. const char secret_key[8] = {
  461. 0xa7, 0x83, 0x8a, 0xcb, 0xc7, 0x83, 0xec, 0x94 };
  462. add_key("rxrpc_s", "52:2", secret_key, 8, keyring);
  463. setsockopt(server, SOL_RXRPC, RXRPC_SECURITY_KEYRING, "AFSkeys", 7);
  464. The keyring can be manipulated after it has been given to the socket. This
  465. permits the server to add more keys, replace keys, etc. whilst it is live.
  466. (3) A local address must then be bound:
  467. struct sockaddr_rxrpc srx = {
  468. .srx_family = AF_RXRPC,
  469. .srx_service = VL_SERVICE_ID, /* RxRPC service ID */
  470. .transport_type = SOCK_DGRAM, /* type of transport socket */
  471. .transport.sin_family = AF_INET,
  472. .transport.sin_port = htons(7000), /* AFS callback */
  473. .transport.sin_address = 0, /* all local interfaces */
  474. };
  475. bind(server, &srx, sizeof(srx));
  476. More than one service ID may be bound to a socket, provided the transport
  477. parameters are the same. The limit is currently two. To do this, bind()
  478. should be called twice.
  479. (4) If service upgrading is required, first two service IDs must have been
  480. bound and then the following option must be set:
  481. unsigned short service_ids[2] = { from_ID, to_ID };
  482. setsockopt(server, SOL_RXRPC, RXRPC_UPGRADEABLE_SERVICE,
  483. service_ids, sizeof(service_ids));
  484. This will automatically upgrade connections on service from_ID to service
  485. to_ID if they request it. This will be reflected in msg_name obtained
  486. through recvmsg() when the request data is delivered to userspace.
  487. (5) The server is then set to listen out for incoming calls:
  488. listen(server, 100);
  489. (6) The kernel notifies the server of pending incoming connections by sending
  490. it a message for each. This is received with recvmsg() on the server
  491. socket. It has no data, and has a single dataless control message
  492. attached:
  493. RXRPC_NEW_CALL
  494. The address that can be passed back by recvmsg() at this point should be
  495. ignored since the call for which the message was posted may have gone by
  496. the time it is accepted - in which case the first call still on the queue
  497. will be accepted.
  498. (7) The server then accepts the new call by issuing a sendmsg() with two
  499. pieces of control data and no actual data:
  500. RXRPC_ACCEPT - indicate connection acceptance
  501. RXRPC_USER_CALL_ID - specify user ID for this call
  502. (8) The first request data packet will then be posted to the server socket for
  503. recvmsg() to pick up. At that point, the RxRPC address for the call can
  504. be read from the address fields in the msghdr struct.
  505. Subsequent request data will be posted to the server socket for recvmsg()
  506. to collect as it arrives. All but the last piece of the request data will
  507. be delivered with MSG_MORE flagged.
  508. All data will be delivered with the following control message attached:
  509. RXRPC_USER_CALL_ID - specifies the user ID for this call
  510. (9) The reply data should then be posted to the server socket using a series
  511. of sendmsg() calls, each with the following control messages attached:
  512. RXRPC_USER_CALL_ID - specifies the user ID for this call
  513. MSG_MORE should be set in msghdr::msg_flags on all but the last message
  514. for a particular call.
  515. (10) The final ACK from the client will be posted for retrieval by recvmsg()
  516. when it is received. It will take the form of a dataless message with two
  517. control messages attached:
  518. RXRPC_USER_CALL_ID - specifies the user ID for this call
  519. RXRPC_ACK - indicates final ACK (no data)
  520. MSG_EOR will be flagged to indicate that this is the final message for
  521. this call.
  522. (11) Up to the point the final packet of reply data is sent, the call can be
  523. aborted by calling sendmsg() with a dataless message with the following
  524. control messages attached:
  525. RXRPC_USER_CALL_ID - specifies the user ID for this call
  526. RXRPC_ABORT - indicates abort code (4 byte data)
  527. Any packets waiting in the socket's receive queue will be discarded if
  528. this is issued.
  529. Note that all the communications for a particular service take place through
  530. the one server socket, using control messages on sendmsg() and recvmsg() to
  531. determine the call affected.
  532. =========================
  533. AF_RXRPC KERNEL INTERFACE
  534. =========================
  535. The AF_RXRPC module also provides an interface for use by in-kernel utilities
  536. such as the AFS filesystem. This permits such a utility to:
  537. (1) Use different keys directly on individual client calls on one socket
  538. rather than having to open a whole slew of sockets, one for each key it
  539. might want to use.
  540. (2) Avoid having RxRPC call request_key() at the point of issue of a call or
  541. opening of a socket. Instead the utility is responsible for requesting a
  542. key at the appropriate point. AFS, for instance, would do this during VFS
  543. operations such as open() or unlink(). The key is then handed through
  544. when the call is initiated.
  545. (3) Request the use of something other than GFP_KERNEL to allocate memory.
  546. (4) Avoid the overhead of using the recvmsg() call. RxRPC messages can be
  547. intercepted before they get put into the socket Rx queue and the socket
  548. buffers manipulated directly.
  549. To use the RxRPC facility, a kernel utility must still open an AF_RXRPC socket,
  550. bind an address as appropriate and listen if it's to be a server socket, but
  551. then it passes this to the kernel interface functions.
  552. The kernel interface functions are as follows:
  553. (*) Begin a new client call.
  554. struct rxrpc_call *
  555. rxrpc_kernel_begin_call(struct socket *sock,
  556. struct sockaddr_rxrpc *srx,
  557. struct key *key,
  558. unsigned long user_call_ID,
  559. s64 tx_total_len,
  560. gfp_t gfp,
  561. rxrpc_notify_rx_t notify_rx,
  562. bool upgrade);
  563. This allocates the infrastructure to make a new RxRPC call and assigns
  564. call and connection numbers. The call will be made on the UDP port that
  565. the socket is bound to. The call will go to the destination address of a
  566. connected client socket unless an alternative is supplied (srx is
  567. non-NULL).
  568. If a key is supplied then this will be used to secure the call instead of
  569. the key bound to the socket with the RXRPC_SECURITY_KEY sockopt. Calls
  570. secured in this way will still share connections if at all possible.
  571. The user_call_ID is equivalent to that supplied to sendmsg() in the
  572. control data buffer. It is entirely feasible to use this to point to a
  573. kernel data structure.
  574. tx_total_len is the amount of data the caller is intending to transmit
  575. with this call (or -1 if unknown at this point). Setting the data size
  576. allows the kernel to encrypt directly to the packet buffers, thereby
  577. saving a copy. The value may not be less than -1.
  578. notify_rx is a pointer to a function to be called when events such as
  579. incoming data packets or remote aborts happen.
  580. upgrade should be set to true if a client operation should request that
  581. the server upgrade the service to a better one. The resultant service ID
  582. is returned by rxrpc_kernel_recv_data().
  583. If this function is successful, an opaque reference to the RxRPC call is
  584. returned. The caller now holds a reference on this and it must be
  585. properly ended.
  586. (*) End a client call.
  587. void rxrpc_kernel_end_call(struct socket *sock,
  588. struct rxrpc_call *call);
  589. This is used to end a previously begun call. The user_call_ID is expunged
  590. from AF_RXRPC's knowledge and will not be seen again in association with
  591. the specified call.
  592. (*) Send data through a call.
  593. typedef void (*rxrpc_notify_end_tx_t)(struct sock *sk,
  594. unsigned long user_call_ID,
  595. struct sk_buff *skb);
  596. int rxrpc_kernel_send_data(struct socket *sock,
  597. struct rxrpc_call *call,
  598. struct msghdr *msg,
  599. size_t len,
  600. rxrpc_notify_end_tx_t notify_end_rx);
  601. This is used to supply either the request part of a client call or the
  602. reply part of a server call. msg.msg_iovlen and msg.msg_iov specify the
  603. data buffers to be used. msg_iov may not be NULL and must point
  604. exclusively to in-kernel virtual addresses. msg.msg_flags may be given
  605. MSG_MORE if there will be subsequent data sends for this call.
  606. The msg must not specify a destination address, control data or any flags
  607. other than MSG_MORE. len is the total amount of data to transmit.
  608. notify_end_rx can be NULL or it can be used to specify a function to be
  609. called when the call changes state to end the Tx phase. This function is
  610. called with the call-state spinlock held to prevent any reply or final ACK
  611. from being delivered first.
  612. (*) Receive data from a call.
  613. int rxrpc_kernel_recv_data(struct socket *sock,
  614. struct rxrpc_call *call,
  615. void *buf,
  616. size_t size,
  617. size_t *_offset,
  618. bool want_more,
  619. u32 *_abort,
  620. u16 *_service)
  621. This is used to receive data from either the reply part of a client call
  622. or the request part of a service call. buf and size specify how much
  623. data is desired and where to store it. *_offset is added on to buf and
  624. subtracted from size internally; the amount copied into the buffer is
  625. added to *_offset before returning.
  626. want_more should be true if further data will be required after this is
  627. satisfied and false if this is the last item of the receive phase.
  628. There are three normal returns: 0 if the buffer was filled and want_more
  629. was true; 1 if the buffer was filled, the last DATA packet has been
  630. emptied and want_more was false; and -EAGAIN if the function needs to be
  631. called again.
  632. If the last DATA packet is processed but the buffer contains less than
  633. the amount requested, EBADMSG is returned. If want_more wasn't set, but
  634. more data was available, EMSGSIZE is returned.
  635. If a remote ABORT is detected, the abort code received will be stored in
  636. *_abort and ECONNABORTED will be returned.
  637. The service ID that the call ended up with is returned into *_service.
  638. This can be used to see if a call got a service upgrade.
  639. (*) Abort a call.
  640. void rxrpc_kernel_abort_call(struct socket *sock,
  641. struct rxrpc_call *call,
  642. u32 abort_code);
  643. This is used to abort a call if it's still in an abortable state. The
  644. abort code specified will be placed in the ABORT message sent.
  645. (*) Intercept received RxRPC messages.
  646. typedef void (*rxrpc_interceptor_t)(struct sock *sk,
  647. unsigned long user_call_ID,
  648. struct sk_buff *skb);
  649. void
  650. rxrpc_kernel_intercept_rx_messages(struct socket *sock,
  651. rxrpc_interceptor_t interceptor);
  652. This installs an interceptor function on the specified AF_RXRPC socket.
  653. All messages that would otherwise wind up in the socket's Rx queue are
  654. then diverted to this function. Note that care must be taken to process
  655. the messages in the right order to maintain DATA message sequentiality.
  656. The interceptor function itself is provided with the address of the socket
  657. and handling the incoming message, the ID assigned by the kernel utility
  658. to the call and the socket buffer containing the message.
  659. The skb->mark field indicates the type of message:
  660. MARK MEANING
  661. =============================== =======================================
  662. RXRPC_SKB_MARK_DATA Data message
  663. RXRPC_SKB_MARK_FINAL_ACK Final ACK received for an incoming call
  664. RXRPC_SKB_MARK_BUSY Client call rejected as server busy
  665. RXRPC_SKB_MARK_REMOTE_ABORT Call aborted by peer
  666. RXRPC_SKB_MARK_NET_ERROR Network error detected
  667. RXRPC_SKB_MARK_LOCAL_ERROR Local error encountered
  668. RXRPC_SKB_MARK_NEW_CALL New incoming call awaiting acceptance
  669. The remote abort message can be probed with rxrpc_kernel_get_abort_code().
  670. The two error messages can be probed with rxrpc_kernel_get_error_number().
  671. A new call can be accepted with rxrpc_kernel_accept_call().
  672. Data messages can have their contents extracted with the usual bunch of
  673. socket buffer manipulation functions. A data message can be determined to
  674. be the last one in a sequence with rxrpc_kernel_is_data_last(). When a
  675. data message has been used up, rxrpc_kernel_data_consumed() should be
  676. called on it.
  677. Messages should be handled to rxrpc_kernel_free_skb() to dispose of. It
  678. is possible to get extra refs on all types of message for later freeing,
  679. but this may pin the state of a call until the message is finally freed.
  680. (*) Accept an incoming call.
  681. struct rxrpc_call *
  682. rxrpc_kernel_accept_call(struct socket *sock,
  683. unsigned long user_call_ID);
  684. This is used to accept an incoming call and to assign it a call ID. This
  685. function is similar to rxrpc_kernel_begin_call() and calls accepted must
  686. be ended in the same way.
  687. If this function is successful, an opaque reference to the RxRPC call is
  688. returned. The caller now holds a reference on this and it must be
  689. properly ended.
  690. (*) Reject an incoming call.
  691. int rxrpc_kernel_reject_call(struct socket *sock);
  692. This is used to reject the first incoming call on the socket's queue with
  693. a BUSY message. -ENODATA is returned if there were no incoming calls.
  694. Other errors may be returned if the call had been aborted (-ECONNABORTED)
  695. or had timed out (-ETIME).
  696. (*) Allocate a null key for doing anonymous security.
  697. struct key *rxrpc_get_null_key(const char *keyname);
  698. This is used to allocate a null RxRPC key that can be used to indicate
  699. anonymous security for a particular domain.
  700. (*) Get the peer address of a call.
  701. void rxrpc_kernel_get_peer(struct socket *sock, struct rxrpc_call *call,
  702. struct sockaddr_rxrpc *_srx);
  703. This is used to find the remote peer address of a call.
  704. (*) Set the total transmit data size on a call.
  705. void rxrpc_kernel_set_tx_length(struct socket *sock,
  706. struct rxrpc_call *call,
  707. s64 tx_total_len);
  708. This sets the amount of data that the caller is intending to transmit on a
  709. call. It's intended to be used for setting the reply size as the request
  710. size should be set when the call is begun. tx_total_len may not be less
  711. than zero.
  712. (*) Check to see the completion state of a call so that the caller can assess
  713. whether it needs to be retried.
  714. enum rxrpc_call_completion {
  715. RXRPC_CALL_SUCCEEDED,
  716. RXRPC_CALL_REMOTELY_ABORTED,
  717. RXRPC_CALL_LOCALLY_ABORTED,
  718. RXRPC_CALL_LOCAL_ERROR,
  719. RXRPC_CALL_NETWORK_ERROR,
  720. };
  721. int rxrpc_kernel_check_call(struct socket *sock, struct rxrpc_call *call,
  722. enum rxrpc_call_completion *_compl,
  723. u32 *_abort_code);
  724. On return, -EINPROGRESS will be returned if the call is still ongoing; if
  725. it is finished, *_compl will be set to indicate the manner of completion,
  726. *_abort_code will be set to any abort code that occurred. 0 will be
  727. returned on a successful completion, -ECONNABORTED will be returned if the
  728. client failed due to a remote abort and anything else will return an
  729. appropriate error code.
  730. The caller should look at this information to decide if it's worth
  731. retrying the call.
  732. (*) Retry a client call.
  733. int rxrpc_kernel_retry_call(struct socket *sock,
  734. struct rxrpc_call *call,
  735. struct sockaddr_rxrpc *srx,
  736. struct key *key);
  737. This attempts to partially reinitialise a call and submit it again whilst
  738. reusing the original call's Tx queue to avoid the need to repackage and
  739. re-encrypt the data to be sent. call indicates the call to retry, srx the
  740. new address to send it to and key the encryption key to use for signing or
  741. encrypting the packets.
  742. For this to work, the first Tx data packet must still be in the transmit
  743. queue, and currently this is only permitted for local and network errors
  744. and the call must not have been aborted. Any partially constructed Tx
  745. packet is left as is and can continue being filled afterwards.
  746. It returns 0 if the call was requeued and an error otherwise.
  747. (*) Get call RTT.
  748. u64 rxrpc_kernel_get_rtt(struct socket *sock, struct rxrpc_call *call);
  749. Get the RTT time to the peer in use by a call. The value returned is in
  750. nanoseconds.
  751. (*) Check call still alive.
  752. u32 rxrpc_kernel_check_life(struct socket *sock,
  753. struct rxrpc_call *call);
  754. This returns a number that is updated when ACKs are received from the peer
  755. (notably including PING RESPONSE ACKs which we can elicit by sending PING
  756. ACKs to see if the call still exists on the server). The caller should
  757. compare the numbers of two calls to see if the call is still alive after
  758. waiting for a suitable interval.
  759. This allows the caller to work out if the server is still contactable and
  760. if the call is still alive on the server whilst waiting for the server to
  761. process a client operation.
  762. This function may transmit a PING ACK.
  763. =======================
  764. CONFIGURABLE PARAMETERS
  765. =======================
  766. The RxRPC protocol driver has a number of configurable parameters that can be
  767. adjusted through sysctls in /proc/net/rxrpc/:
  768. (*) req_ack_delay
  769. The amount of time in milliseconds after receiving a packet with the
  770. request-ack flag set before we honour the flag and actually send the
  771. requested ack.
  772. Usually the other side won't stop sending packets until the advertised
  773. reception window is full (to a maximum of 255 packets), so delaying the
  774. ACK permits several packets to be ACK'd in one go.
  775. (*) soft_ack_delay
  776. The amount of time in milliseconds after receiving a new packet before we
  777. generate a soft-ACK to tell the sender that it doesn't need to resend.
  778. (*) idle_ack_delay
  779. The amount of time in milliseconds after all the packets currently in the
  780. received queue have been consumed before we generate a hard-ACK to tell
  781. the sender it can free its buffers, assuming no other reason occurs that
  782. we would send an ACK.
  783. (*) resend_timeout
  784. The amount of time in milliseconds after transmitting a packet before we
  785. transmit it again, assuming no ACK is received from the receiver telling
  786. us they got it.
  787. (*) max_call_lifetime
  788. The maximum amount of time in seconds that a call may be in progress
  789. before we preemptively kill it.
  790. (*) dead_call_expiry
  791. The amount of time in seconds before we remove a dead call from the call
  792. list. Dead calls are kept around for a little while for the purpose of
  793. repeating ACK and ABORT packets.
  794. (*) connection_expiry
  795. The amount of time in seconds after a connection was last used before we
  796. remove it from the connection list. Whilst a connection is in existence,
  797. it serves as a placeholder for negotiated security; when it is deleted,
  798. the security must be renegotiated.
  799. (*) transport_expiry
  800. The amount of time in seconds after a transport was last used before we
  801. remove it from the transport list. Whilst a transport is in existence, it
  802. serves to anchor the peer data and keeps the connection ID counter.
  803. (*) rxrpc_rx_window_size
  804. The size of the receive window in packets. This is the maximum number of
  805. unconsumed received packets we're willing to hold in memory for any
  806. particular call.
  807. (*) rxrpc_rx_mtu
  808. The maximum packet MTU size that we're willing to receive in bytes. This
  809. indicates to the peer whether we're willing to accept jumbo packets.
  810. (*) rxrpc_rx_jumbo_max
  811. The maximum number of packets that we're willing to accept in a jumbo
  812. packet. Non-terminal packets in a jumbo packet must contain a four byte
  813. header plus exactly 1412 bytes of data. The terminal packet must contain
  814. a four byte header plus any amount of data. In any event, a jumbo packet
  815. may not exceed rxrpc_rx_mtu in size.