blob: 7b84d5a8403438f5d5d161645426cd0298208578 [file] [log] [blame]
Jeremy Kerr3d36ee22019-05-30 11:15:37 +08001/* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later */
Jeremy Kerr4cdc2002019-02-07 16:49:12 +08002
3#include <assert.h>
Andrew Jeffery3e8a12a2020-06-05 16:08:30 +09304#include <errno.h>
Jeremy Kerr4cdc2002019-02-07 16:49:12 +08005#include <stdarg.h>
6#include <stddef.h>
7#include <stdint.h>
8#include <stdio.h>
9#include <stdlib.h>
10#include <string.h>
11
12#undef pr_fmt
13#define pr_fmt(fmt) "core: " fmt
14
15#include "libmctp.h"
16#include "libmctp-alloc.h"
17#include "libmctp-log.h"
Wiktor GoĊ‚gowskiba6727e2020-03-13 18:25:01 +010018#include "libmctp-cmds.h"
Andrew Jefferyc2b833e2020-10-28 14:28:37 +103019#include "range.h"
Matt Johnston4a09e1d2024-09-13 14:55:58 +080020#include "compiler.h"
Matt Johnstonf9b99f12024-09-17 16:48:34 +080021#include "core-internal.h"
Matt Johnston4058b2c2024-11-07 14:53:50 +080022#include "control.h"
Jeremy Kerr4cdc2002019-02-07 16:49:12 +080023
Matt Johnston44e64df2024-11-05 16:59:42 +080024#if MCTP_DEFAULT_CLOCK_GETTIME
25#include <time.h>
26#endif
27
Jeremy Kerr24db71f2019-02-07 21:37:35 +080028#ifndef ARRAY_SIZE
29#define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0]))
30#endif
31
Andrew Jefferyb93b6112020-06-05 14:13:44 +093032static int mctp_message_tx_on_bus(struct mctp_bus *bus, mctp_eid_t src,
Sumanth Bhatf39c3852022-01-10 17:04:10 +053033 mctp_eid_t dest, bool tag_owner,
34 uint8_t msg_tag, void *msg, size_t msg_len);
Matt Johnston61c95992024-09-16 16:50:35 +080035static void mctp_dealloc_tag(struct mctp_bus *bus, mctp_eid_t local,
36 mctp_eid_t remote, uint8_t tag);
Jeremy Kerr1a4ec3c2019-09-03 11:01:50 +080037
Jeremy Kerrdf15f7e2019-08-05 15:41:19 +080038struct mctp_pktbuf *mctp_pktbuf_alloc(struct mctp_binding *binding, size_t len)
Jeremy Kerr4cdc2002019-02-07 16:49:12 +080039{
Matt Johnston4a09e1d2024-09-13 14:55:58 +080040 size_t size =
41 binding->pkt_size + binding->pkt_header + binding->pkt_trailer;
Rashmica Gupta487b31e2022-09-14 18:49:45 +100042 if (len > size) {
43 return NULL;
44 }
Jeremy Kerr4cdc2002019-02-07 16:49:12 +080045
Matt Johnston4a09e1d2024-09-13 14:55:58 +080046 void *storage = __mctp_alloc(size + sizeof(struct mctp_pktbuf));
47 if (!storage) {
Pedro Martelletto2608b292023-03-30 13:28:28 +000048 return NULL;
Matt Johnston4a09e1d2024-09-13 14:55:58 +080049 }
50 struct mctp_pktbuf *pkt = mctp_pktbuf_init(binding, storage);
51 pkt->alloc = true;
52 pkt->end = pkt->start + len;
53 return pkt;
Jeremy Kerr4cdc2002019-02-07 16:49:12 +080054}
55
56void mctp_pktbuf_free(struct mctp_pktbuf *pkt)
57{
Matt Johnston4a09e1d2024-09-13 14:55:58 +080058 if (pkt->alloc) {
59 __mctp_free(pkt);
60 } else {
61 mctp_prdebug("pktbuf_free called for non-alloced");
62 }
63}
64
65struct mctp_pktbuf *mctp_pktbuf_init(struct mctp_binding *binding,
66 void *storage)
67{
68 size_t size =
69 binding->pkt_size + binding->pkt_header + binding->pkt_trailer;
70 struct mctp_pktbuf *buf = (struct mctp_pktbuf *)storage;
71 buf->size = size;
72 buf->start = binding->pkt_header;
73 buf->end = buf->start;
74 buf->mctp_hdr_off = buf->start;
75 buf->alloc = false;
76
77 return buf;
Jeremy Kerr4cdc2002019-02-07 16:49:12 +080078}
79
80struct mctp_hdr *mctp_pktbuf_hdr(struct mctp_pktbuf *pkt)
81{
Moritz Fischer7aaccb52022-06-28 20:04:04 -070082 return (struct mctp_hdr *)(pkt->data + pkt->mctp_hdr_off);
Jeremy Kerr4cdc2002019-02-07 16:49:12 +080083}
84
85void *mctp_pktbuf_data(struct mctp_pktbuf *pkt)
86{
Moritz Fischer7aaccb52022-06-28 20:04:04 -070087 return pkt->data + pkt->mctp_hdr_off + sizeof(struct mctp_hdr);
Jeremy Kerr4cdc2002019-02-07 16:49:12 +080088}
89
Matt Johnston4a09e1d2024-09-13 14:55:58 +080090size_t mctp_pktbuf_size(const struct mctp_pktbuf *pkt)
Jeremy Kerr4cdc2002019-02-07 16:49:12 +080091{
92 return pkt->end - pkt->start;
93}
94
Jeremy Kerrdf15f7e2019-08-05 15:41:19 +080095void *mctp_pktbuf_alloc_start(struct mctp_pktbuf *pkt, size_t size)
Jeremy Kerr4cdc2002019-02-07 16:49:12 +080096{
97 assert(size <= pkt->start);
98 pkt->start -= size;
99 return pkt->data + pkt->start;
100}
101
Jeremy Kerrdf15f7e2019-08-05 15:41:19 +0800102void *mctp_pktbuf_alloc_end(struct mctp_pktbuf *pkt, size_t size)
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800103{
104 void *buf;
105
Andrew Jeffery3ac70d62020-07-01 00:50:44 +0930106 assert(size <= (pkt->size - pkt->end));
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800107 buf = pkt->data + pkt->end;
108 pkt->end += size;
109 return buf;
110}
111
Matt Johnstondfbf0fd2024-10-28 14:40:29 +0800112int mctp_pktbuf_push(struct mctp_pktbuf *pkt, const void *data, size_t len)
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800113{
114 void *p;
115
Jeremy Kerrdf15f7e2019-08-05 15:41:19 +0800116 if (pkt->end + len > pkt->size)
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800117 return -1;
118
119 p = pkt->data + pkt->end;
120
121 pkt->end += len;
122 memcpy(p, data, len);
123
124 return 0;
125}
126
Andrew Jefferyeba19a32021-03-09 23:09:40 +1030127void *mctp_pktbuf_pop(struct mctp_pktbuf *pkt, size_t len)
128{
129 if (len > mctp_pktbuf_size(pkt))
130 return NULL;
131
132 pkt->end -= len;
133 return pkt->data + pkt->end;
134}
135
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800136/* Allocate a duplicate of the message and copy it */
137static void *mctp_msg_dup(const void *msg, size_t msg_len, struct mctp *mctp)
138{
139 void *copy = __mctp_msg_alloc(msg_len, mctp);
140 if (!copy) {
141 mctp_prdebug("msg dup len %zu failed", msg_len);
142 return NULL;
143 }
144
145 memcpy(copy, msg, msg_len);
146 return copy;
147}
148
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800149/* Message reassembly */
Patrick Williamsa721c2d2022-12-04 14:30:26 -0600150static struct mctp_msg_ctx *mctp_msg_ctx_lookup(struct mctp *mctp, uint8_t src,
151 uint8_t dest, uint8_t tag)
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800152{
153 unsigned int i;
154
155 /* @todo: better lookup, if we add support for more outstanding
156 * message contexts */
157 for (i = 0; i < ARRAY_SIZE(mctp->msg_ctxs); i++) {
158 struct mctp_msg_ctx *ctx = &mctp->msg_ctxs[i];
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800159 if (ctx->buf && ctx->src == src && ctx->dest == dest &&
160 ctx->tag == tag)
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800161 return ctx;
162 }
163
164 return NULL;
165}
166
Patrick Williamsa721c2d2022-12-04 14:30:26 -0600167static struct mctp_msg_ctx *mctp_msg_ctx_create(struct mctp *mctp, uint8_t src,
168 uint8_t dest, uint8_t tag)
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800169{
Jeremy Kerr11a234e2019-02-27 17:59:53 +0800170 struct mctp_msg_ctx *ctx = NULL;
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800171 unsigned int i;
172
173 for (i = 0; i < ARRAY_SIZE(mctp->msg_ctxs); i++) {
174 struct mctp_msg_ctx *tmp = &mctp->msg_ctxs[i];
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800175 if (!tmp->buf) {
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800176 ctx = tmp;
177 break;
178 }
179 }
180
181 if (!ctx)
182 return NULL;
183
184 ctx->src = src;
Jeremy Kerr1a4ec3c2019-09-03 11:01:50 +0800185 ctx->dest = dest;
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800186 ctx->tag = tag;
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800187
Jeremy Kerr9a3da812019-08-02 15:57:53 +0800188 ctx->buf_size = 0;
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800189 ctx->buf_alloc_size = mctp->max_message_size;
190 ctx->buf = __mctp_msg_alloc(ctx->buf_alloc_size, mctp);
191 if (!ctx->buf) {
192 return NULL;
193 }
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800194
195 return ctx;
196}
197
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800198static void mctp_msg_ctx_drop(struct mctp_bus *bus, struct mctp_msg_ctx *ctx)
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800199{
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800200 /* Free and mark as unused */
201 __mctp_msg_free(ctx->buf, bus->mctp);
202 ctx->buf = NULL;
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800203}
204
205static void mctp_msg_ctx_reset(struct mctp_msg_ctx *ctx)
206{
207 ctx->buf_size = 0;
Sumanth Bhat69f545f2021-05-18 09:16:43 +0000208 ctx->fragment_size = 0;
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800209}
210
211static int mctp_msg_ctx_add_pkt(struct mctp_msg_ctx *ctx,
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800212 struct mctp_pktbuf *pkt)
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800213{
214 size_t len;
215
216 len = mctp_pktbuf_size(pkt) - sizeof(struct mctp_hdr);
217
Sumanth Bhatbc79c242021-06-16 12:36:56 +0530218 if (len + ctx->buf_size < ctx->buf_size) {
219 return -1;
220 }
221
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800222 if (ctx->buf_size + len > ctx->buf_alloc_size) {
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800223 return -1;
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800224 }
225
Moritz Fischer7aaccb52022-06-28 20:04:04 -0700226 memcpy((uint8_t *)ctx->buf + ctx->buf_size, mctp_pktbuf_data(pkt), len);
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800227 ctx->buf_size += len;
228
229 return 0;
230}
231
232/* Core API functions */
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800233struct mctp *mctp_init(void)
234{
235 struct mctp *mctp;
236
237 mctp = __mctp_alloc(sizeof(*mctp));
Sumanth Bhat96d54492020-07-14 17:10:04 +0530238
Patrick Williamsa721c2d2022-12-04 14:30:26 -0600239 if (!mctp)
Sumanth Bhat96d54492020-07-14 17:10:04 +0530240 return NULL;
241
Matt Johnstonf9b99f12024-09-17 16:48:34 +0800242 mctp_setup(mctp, sizeof(*mctp));
Matt Johnston722d0db2024-09-13 15:51:30 +0800243 return mctp;
244}
245
Matt Johnston44e64df2024-11-05 16:59:42 +0800246#if MCTP_DEFAULT_CLOCK_GETTIME
247static uint64_t mctp_default_now(void *ctx __attribute__((unused)))
248{
249 struct timespec tp;
250 int rc = clock_gettime(CLOCK_MONOTONIC, &tp);
251 if (rc) {
252 /* Should not be possible */
253 return 0;
254 }
255 return (uint64_t)tp.tv_sec * 1000 + tp.tv_nsec / 1000000;
256}
257#endif
258
Matt Johnstonf9b99f12024-09-17 16:48:34 +0800259int mctp_setup(struct mctp *mctp, size_t struct_mctp_size)
Matt Johnston722d0db2024-09-13 15:51:30 +0800260{
Matt Johnstonf9b99f12024-09-17 16:48:34 +0800261 if (struct_mctp_size < sizeof(struct mctp)) {
262 mctp_prdebug("Mismatching struct mctp");
263 return -EINVAL;
264 }
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800265 memset(mctp, 0, sizeof(*mctp));
Sumanth Bhat2c820c52020-07-02 00:26:25 +0530266 mctp->max_message_size = MCTP_MAX_MESSAGE_SIZE;
Matt Johnston44e64df2024-11-05 16:59:42 +0800267#if MCTP_DEFAULT_CLOCK_GETTIME
268 mctp->platform_now = mctp_default_now;
269#endif
Matt Johnston4058b2c2024-11-07 14:53:50 +0800270#if MCTP_CONTROL_HANDLER
271 mctp_control_add_type(mctp, MCTP_CTRL_HDR_MSG_TYPE);
272#endif
Matt Johnstonf9b99f12024-09-17 16:48:34 +0800273 return 0;
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800274}
275
Sumanth Bhat2c820c52020-07-02 00:26:25 +0530276void mctp_set_max_message_size(struct mctp *mctp, size_t message_size)
277{
278 mctp->max_message_size = message_size;
279}
280
Andrew Jeffery5d3d4e62021-08-20 16:44:40 +0930281void mctp_set_capture_handler(struct mctp *mctp, mctp_capture_fn fn, void *user)
282{
283 mctp->capture = fn;
284 mctp->capture_data = user;
285}
286
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800287static void mctp_bus_destroy(struct mctp_bus *bus, struct mctp *mctp)
Andrew Jeffery3ae89dc2021-01-28 15:24:36 +1030288{
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800289 if (bus->tx_msg) {
290 __mctp_msg_free(bus->tx_msg, mctp);
291 bus->tx_msg = NULL;
Andrew Jeffery3ae89dc2021-01-28 15:24:36 +1030292 }
293}
294
Matt Johnston722d0db2024-09-13 15:51:30 +0800295void mctp_cleanup(struct mctp *mctp)
Andrew Jefferyfa56ca52020-03-10 23:18:22 +1030296{
Andrew Jefferyb93b6112020-06-05 14:13:44 +0930297 size_t i;
Andrew Jefferyfa56ca52020-03-10 23:18:22 +1030298
299 /* Cleanup message assembly contexts */
Matt Johnston3ef47782024-12-11 15:19:06 +0800300 static_assert(ARRAY_SIZE(mctp->msg_ctxs) < SIZE_MAX, "size");
Andrew Jefferyfa56ca52020-03-10 23:18:22 +1030301 for (i = 0; i < ARRAY_SIZE(mctp->msg_ctxs); i++) {
302 struct mctp_msg_ctx *tmp = &mctp->msg_ctxs[i];
303 if (tmp->buf)
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800304 __mctp_msg_free(tmp->buf, mctp);
Andrew Jefferyfa56ca52020-03-10 23:18:22 +1030305 }
306
Andrew Jeffery3ae89dc2021-01-28 15:24:36 +1030307 while (mctp->n_busses--)
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800308 mctp_bus_destroy(&mctp->busses[mctp->n_busses], mctp);
Matt Johnston722d0db2024-09-13 15:51:30 +0800309}
Andrew Jeffery3ae89dc2021-01-28 15:24:36 +1030310
Matt Johnston722d0db2024-09-13 15:51:30 +0800311void mctp_destroy(struct mctp *mctp)
312{
313 mctp_cleanup(mctp);
Andrew Jefferyfa56ca52020-03-10 23:18:22 +1030314 __mctp_free(mctp);
315}
316
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800317int mctp_set_rx_all(struct mctp *mctp, mctp_rx_fn fn, void *data)
318{
319 mctp->message_rx = fn;
320 mctp->message_rx_data = data;
321 return 0;
322}
323
Patrick Williamsa721c2d2022-12-04 14:30:26 -0600324static struct mctp_bus *find_bus_for_eid(struct mctp *mctp, mctp_eid_t dest
325 __attribute__((unused)))
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800326{
Brad Bishop663ec392021-10-07 21:16:48 -0400327 if (mctp->n_busses == 0)
328 return NULL;
329
Jeremy Kerr1a4ec3c2019-09-03 11:01:50 +0800330 /* for now, just use the first bus. For full routing support,
331 * we will need a table of neighbours */
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800332 return &mctp->busses[0];
333}
334
Patrick Williamsa721c2d2022-12-04 14:30:26 -0600335int mctp_register_bus(struct mctp *mctp, struct mctp_binding *binding,
336 mctp_eid_t eid)
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800337{
Andrew Jeffery3e8a12a2020-06-05 16:08:30 +0930338 int rc = 0;
339
Jeremy Kerr7520cec2019-03-01 07:13:18 +0800340 /* todo: multiple busses */
Matt Johnston722d0db2024-09-13 15:51:30 +0800341 static_assert(MCTP_MAX_BUSSES >= 1, "need a bus");
Jeremy Kerr1a4ec3c2019-09-03 11:01:50 +0800342 assert(mctp->n_busses == 0);
343 mctp->n_busses = 1;
Andrew Jeffery3e8a12a2020-06-05 16:08:30 +0930344
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800345 assert(binding->tx_storage);
346
James Feist62d72362019-12-13 13:43:32 -0800347 memset(mctp->busses, 0, sizeof(struct mctp_bus));
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800348 mctp->busses[0].mctp = mctp;
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800349 mctp->busses[0].binding = binding;
350 mctp->busses[0].eid = eid;
Jeremy Kerr7520cec2019-03-01 07:13:18 +0800351 binding->bus = &mctp->busses[0];
Jeremy Kerr0a00dca2019-03-01 08:01:35 +0800352 binding->mctp = mctp;
Jeremy Kerr1a4ec3c2019-09-03 11:01:50 +0800353 mctp->route_policy = ROUTE_ENDPOINT;
Jeremy Kerr3b36d172019-09-04 11:56:09 +0800354
Andrew Jeffery3e8a12a2020-06-05 16:08:30 +0930355 if (binding->start) {
356 rc = binding->start(binding);
357 if (rc < 0) {
358 mctp_prerr("Failed to start binding: %d", rc);
Andrew Jeffery19275232021-01-29 14:13:25 +1030359 binding->bus = NULL;
Andrew Jeffery2304c832021-01-29 11:52:49 +1030360 mctp->n_busses = 0;
Andrew Jeffery3e8a12a2020-06-05 16:08:30 +0930361 }
362 }
Jeremy Kerr3b36d172019-09-04 11:56:09 +0800363
Andrew Jeffery3e8a12a2020-06-05 16:08:30 +0930364 return rc;
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800365}
366
Matt Johnston4058b2c2024-11-07 14:53:50 +0800367int mctp_bus_set_eid(struct mctp_binding *binding, mctp_eid_t eid)
368{
369 if (eid < 8 || eid == 0xff) {
370 return -EINVAL;
371 }
372
373 binding->bus->eid = eid;
374 return 0;
375}
376
Andrew Jeffery2094c3c2021-08-26 12:32:46 +0930377void mctp_unregister_bus(struct mctp *mctp, struct mctp_binding *binding)
378{
379 /*
380 * We only support one bus right now; once the call completes we will
381 * have no more busses
382 */
383 mctp->n_busses = 0;
384 binding->mctp = NULL;
385 binding->bus = NULL;
Andrew Jeffery2094c3c2021-08-26 12:32:46 +0930386}
387
Patrick Williamsa721c2d2022-12-04 14:30:26 -0600388int mctp_bridge_busses(struct mctp *mctp, struct mctp_binding *b1,
389 struct mctp_binding *b2)
Jeremy Kerr1a4ec3c2019-09-03 11:01:50 +0800390{
Andrew Jeffery19275232021-01-29 14:13:25 +1030391 int rc = 0;
392
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800393 assert(b1->tx_storage);
394 assert(b2->tx_storage);
395
Jeremy Kerr1a4ec3c2019-09-03 11:01:50 +0800396 assert(mctp->n_busses == 0);
Matt Johnston722d0db2024-09-13 15:51:30 +0800397 assert(MCTP_MAX_BUSSES >= 2);
James Feist62d72362019-12-13 13:43:32 -0800398 memset(mctp->busses, 0, 2 * sizeof(struct mctp_bus));
Jeremy Kerr1a4ec3c2019-09-03 11:01:50 +0800399 mctp->n_busses = 2;
400 mctp->busses[0].binding = b1;
401 b1->bus = &mctp->busses[0];
402 b1->mctp = mctp;
403 mctp->busses[1].binding = b2;
404 b2->bus = &mctp->busses[1];
405 b2->mctp = mctp;
406
407 mctp->route_policy = ROUTE_BRIDGE;
Jeremy Kerr3b36d172019-09-04 11:56:09 +0800408
Andrew Jeffery19275232021-01-29 14:13:25 +1030409 if (b1->start) {
410 rc = b1->start(b1);
411 if (rc < 0) {
412 mctp_prerr("Failed to start bridged bus %s: %d",
413 b1->name, rc);
414 goto done;
415 }
416 }
Jeremy Kerr3b36d172019-09-04 11:56:09 +0800417
Andrew Jeffery19275232021-01-29 14:13:25 +1030418 if (b2->start) {
419 rc = b2->start(b2);
420 if (rc < 0) {
421 mctp_prerr("Failed to start bridged bus %s: %d",
422 b2->name, rc);
423 goto done;
424 }
425 }
Jeremy Kerr3b36d172019-09-04 11:56:09 +0800426
Andrew Jeffery19275232021-01-29 14:13:25 +1030427done:
428 return rc;
Jeremy Kerr1a4ec3c2019-09-03 11:01:50 +0800429}
430
Wiktor GoĊ‚gowskiba6727e2020-03-13 18:25:01 +0100431static inline bool mctp_ctrl_cmd_is_transport(struct mctp_ctrl_msg_hdr *hdr)
Jeremy Kerr1a4ec3c2019-09-03 11:01:50 +0800432{
Matt Johnston3ef47782024-12-11 15:19:06 +0800433#pragma GCC diagnostic push
434#pragma GCC diagnostic ignored "-Wtype-limits"
Wiktor GoĊ‚gowskiba6727e2020-03-13 18:25:01 +0100435 return ((hdr->command_code >= MCTP_CTRL_CMD_FIRST_TRANSPORT) &&
436 (hdr->command_code <= MCTP_CTRL_CMD_LAST_TRANSPORT));
Matt Johnston3ef47782024-12-11 15:19:06 +0800437#pragma GCC diagnostic pop
Wiktor GoĊ‚gowskiba6727e2020-03-13 18:25:01 +0100438}
439
Andrew Jefferyb93b6112020-06-05 14:13:44 +0930440static bool mctp_ctrl_handle_msg(struct mctp_bus *bus, mctp_eid_t src,
Sumanth Bhatf39c3852022-01-10 17:04:10 +0530441 uint8_t msg_tag, bool tag_owner, void *buffer,
442 size_t length)
Wiktor GoĊ‚gowskiba6727e2020-03-13 18:25:01 +0100443{
444 struct mctp_ctrl_msg_hdr *msg_hdr = buffer;
445
446 /*
447 * Control message is received. If a transport control message handler
448 * is provided, it will called. If there is no dedicated handler, this
449 * function returns false and data can be handled by the generic
450 * message handler. The transport control message handler will be
451 * provided with messages in the command range 0xF0 - 0xFF.
452 */
453 if (mctp_ctrl_cmd_is_transport(msg_hdr)) {
454 if (bus->binding->control_rx != NULL) {
455 /* MCTP bus binding handler */
Sumanth Bhatf39c3852022-01-10 17:04:10 +0530456 bus->binding->control_rx(src, msg_tag, tag_owner,
Wiktor GoĊ‚gowskiba6727e2020-03-13 18:25:01 +0100457 bus->binding->control_rx_data,
458 buffer, length);
459 return true;
460 }
Matt Johnston4058b2c2024-11-07 14:53:50 +0800461 } else {
462#if MCTP_CONTROL_HANDLER
463 /* libmctp will handle control requests */
464 return mctp_control_handler(bus, src, tag_owner, msg_tag,
465 buffer, length);
466#endif
Wiktor GoĊ‚gowskiba6727e2020-03-13 18:25:01 +0100467 }
468
469 /*
470 * Command was not handled, due to lack of specific callback.
471 * It will be passed to regular message_rx handler.
472 */
473 return false;
474}
475
476static inline bool mctp_rx_dest_is_local(struct mctp_bus *bus, mctp_eid_t dest)
477{
478 return dest == bus->eid || dest == MCTP_EID_NULL ||
479 dest == MCTP_EID_BROADCAST;
480}
481
482static inline bool mctp_ctrl_cmd_is_request(struct mctp_ctrl_msg_hdr *hdr)
483{
484 return hdr->ic_msg_type == MCTP_CTRL_HDR_MSG_TYPE &&
485 hdr->rq_dgram_inst & MCTP_CTRL_HDR_FLAG_REQUEST;
486}
487
488/*
489 * Receive the complete MCTP message and route it.
490 * Asserts:
491 * 'buf' is not NULL.
492 */
493static void mctp_rx(struct mctp *mctp, struct mctp_bus *bus, mctp_eid_t src,
Sumanth Bhatf39c3852022-01-10 17:04:10 +0530494 mctp_eid_t dest, bool tag_owner, uint8_t msg_tag, void *buf,
495 size_t len)
Wiktor GoĊ‚gowskiba6727e2020-03-13 18:25:01 +0100496{
497 assert(buf != NULL);
498
Jeremy Kerr1a4ec3c2019-09-03 11:01:50 +0800499 if (mctp->route_policy == ROUTE_ENDPOINT &&
Wiktor GoĊ‚gowskiba6727e2020-03-13 18:25:01 +0100500 mctp_rx_dest_is_local(bus, dest)) {
Matt Johnston61c95992024-09-16 16:50:35 +0800501 /* Note responses to allocated tags */
502 if (!tag_owner) {
503 mctp_dealloc_tag(bus, dest, src, msg_tag);
504 }
505
Wiktor GoĊ‚gowskiba6727e2020-03-13 18:25:01 +0100506 /* Handle MCTP Control Messages: */
507 if (len >= sizeof(struct mctp_ctrl_msg_hdr)) {
508 struct mctp_ctrl_msg_hdr *msg_hdr = buf;
509
510 /*
511 * Identify if this is a control request message.
512 * See DSP0236 v1.3.0 sec. 11.5.
513 */
514 if (mctp_ctrl_cmd_is_request(msg_hdr)) {
515 bool handled;
Sumanth Bhatf39c3852022-01-10 17:04:10 +0530516 handled = mctp_ctrl_handle_msg(
517 bus, src, msg_tag, tag_owner, buf, len);
Wiktor GoĊ‚gowskiba6727e2020-03-13 18:25:01 +0100518 if (handled)
519 return;
520 }
521 }
Sumanth Bhatf39c3852022-01-10 17:04:10 +0530522
Wiktor GoĊ‚gowskiba6727e2020-03-13 18:25:01 +0100523 if (mctp->message_rx)
Sumanth Bhatf39c3852022-01-10 17:04:10 +0530524 mctp->message_rx(src, tag_owner, msg_tag,
525 mctp->message_rx_data, buf, len);
Wiktor GoĊ‚gowskiba6727e2020-03-13 18:25:01 +0100526 }
Jeremy Kerr1a4ec3c2019-09-03 11:01:50 +0800527
528 if (mctp->route_policy == ROUTE_BRIDGE) {
529 int i;
530
531 for (i = 0; i < mctp->n_busses; i++) {
532 struct mctp_bus *dest_bus = &mctp->busses[i];
533 if (dest_bus == bus)
534 continue;
535
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800536 void *copy = mctp_msg_dup(buf, len, mctp);
537 if (!copy) {
538 return;
539 }
540
Sumanth Bhatf39c3852022-01-10 17:04:10 +0530541 mctp_message_tx_on_bus(dest_bus, src, dest, tag_owner,
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800542 msg_tag, copy, len);
Jeremy Kerr1a4ec3c2019-09-03 11:01:50 +0800543 }
Jeremy Kerr1a4ec3c2019-09-03 11:01:50 +0800544 }
545}
546
Jeremy Kerr0a00dca2019-03-01 08:01:35 +0800547void mctp_bus_rx(struct mctp_binding *binding, struct mctp_pktbuf *pkt)
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800548{
Jeremy Kerr7520cec2019-03-01 07:13:18 +0800549 struct mctp_bus *bus = binding->bus;
Jeremy Kerr0a00dca2019-03-01 08:01:35 +0800550 struct mctp *mctp = binding->mctp;
Ed Tanousc2def9f2019-02-21 08:33:08 -0800551 uint8_t flags, exp_seq, seq, tag;
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800552 struct mctp_msg_ctx *ctx;
553 struct mctp_hdr *hdr;
Sumanth Bhatf39c3852022-01-10 17:04:10 +0530554 bool tag_owner;
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800555 size_t len;
556 void *p;
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800557 int rc;
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800558
Jeremy Kerr7520cec2019-03-01 07:13:18 +0800559 assert(bus);
560
Sumanth Bhatd97869d2020-07-02 00:46:13 +0530561 /* Drop packet if it was smaller than mctp hdr size */
Matt Johnston86e9a972024-10-28 15:06:33 +0800562 if (mctp_pktbuf_size(pkt) < sizeof(struct mctp_hdr))
Sumanth Bhatd97869d2020-07-02 00:46:13 +0530563 goto out;
564
Andrew Jeffery5d3d4e62021-08-20 16:44:40 +0930565 if (mctp->capture)
Rashmica Guptaf2988972022-11-09 12:26:44 +1100566 mctp->capture(pkt, MCTP_MESSAGE_CAPTURE_INCOMING,
567 mctp->capture_data);
Andrew Jeffery5d3d4e62021-08-20 16:44:40 +0930568
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800569 hdr = mctp_pktbuf_hdr(pkt);
570
Matt Johnston18b9a372024-11-22 15:41:01 +0800571 if (hdr->src == MCTP_EID_BROADCAST) {
572 /* drop packets with broadcast EID src */
573 goto out;
574 }
575
Jeremy Kerr1a4ec3c2019-09-03 11:01:50 +0800576 /* small optimisation: don't bother reassembly if we're going to
577 * drop the packet in mctp_rx anyway */
John Chung133df7a2024-05-14 16:19:56 +0800578 if (mctp->route_policy == ROUTE_ENDPOINT &&
579 !mctp_rx_dest_is_local(bus, hdr->dest))
Jeremy Kerrc1693af2019-08-05 14:30:59 +0800580 goto out;
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800581
582 flags = hdr->flags_seq_tag & (MCTP_HDR_FLAG_SOM | MCTP_HDR_FLAG_EOM);
583 tag = (hdr->flags_seq_tag >> MCTP_HDR_TAG_SHIFT) & MCTP_HDR_TAG_MASK;
584 seq = (hdr->flags_seq_tag >> MCTP_HDR_SEQ_SHIFT) & MCTP_HDR_SEQ_MASK;
Andrew Jeffery7f7fdc12023-05-12 15:56:47 +0930585 tag_owner = (hdr->flags_seq_tag >> MCTP_HDR_TO_SHIFT) &
586 MCTP_HDR_TO_MASK;
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800587
588 switch (flags) {
589 case MCTP_HDR_FLAG_SOM | MCTP_HDR_FLAG_EOM:
590 /* single-packet message - send straight up to rx function,
591 * no need to create a message context */
592 len = pkt->end - pkt->mctp_hdr_off - sizeof(struct mctp_hdr);
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800593 p = mctp_msg_dup(pkt->data + pkt->mctp_hdr_off +
594 sizeof(struct mctp_hdr),
595 len, mctp);
596 if (p) {
597 mctp_rx(mctp, bus, hdr->src, hdr->dest, tag_owner, tag,
598 p, len);
599 __mctp_msg_free(p, mctp);
600 }
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800601 break;
602
603 case MCTP_HDR_FLAG_SOM:
604 /* start of a new message - start the new context for
605 * future message reception. If an existing context is
606 * already present, drop it. */
Jeremy Kerr1a4ec3c2019-09-03 11:01:50 +0800607 ctx = mctp_msg_ctx_lookup(mctp, hdr->src, hdr->dest, tag);
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800608 if (ctx) {
609 mctp_msg_ctx_reset(ctx);
610 } else {
Patrick Williamsa721c2d2022-12-04 14:30:26 -0600611 ctx = mctp_msg_ctx_create(mctp, hdr->src, hdr->dest,
612 tag);
Sumanth Bhat34d4c962021-06-16 12:50:48 +0530613 /* If context creation fails due to exhaution of contexts we
614 * can support, drop the packet */
615 if (!ctx) {
616 mctp_prdebug("Context buffers exhausted.");
617 goto out;
618 }
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800619 }
620
Sumanth Bhat69f545f2021-05-18 09:16:43 +0000621 /* Save the fragment size, subsequent middle fragments
622 * should of the same size */
623 ctx->fragment_size = mctp_pktbuf_size(pkt);
624
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800625 rc = mctp_msg_ctx_add_pkt(ctx, pkt);
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800626 if (rc) {
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800627 mctp_msg_ctx_drop(bus, ctx);
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800628 } else {
629 ctx->last_seq = seq;
630 }
631
632 break;
633
634 case MCTP_HDR_FLAG_EOM:
Jeremy Kerr1a4ec3c2019-09-03 11:01:50 +0800635 ctx = mctp_msg_ctx_lookup(mctp, hdr->src, hdr->dest, tag);
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800636 if (!ctx)
Jeremy Kerrc1693af2019-08-05 14:30:59 +0800637 goto out;
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800638
Ed Tanousc2def9f2019-02-21 08:33:08 -0800639 exp_seq = (ctx->last_seq + 1) % 4;
640
641 if (exp_seq != seq) {
642 mctp_prdebug(
643 "Sequence number %d does not match expected %d",
644 seq, exp_seq);
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800645 mctp_msg_ctx_drop(bus, ctx);
Jeremy Kerrc1693af2019-08-05 14:30:59 +0800646 goto out;
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800647 }
648
Sumanth Bhat69f545f2021-05-18 09:16:43 +0000649 len = mctp_pktbuf_size(pkt);
650
651 if (len > ctx->fragment_size) {
Patrick Williamsa721c2d2022-12-04 14:30:26 -0600652 mctp_prdebug("Unexpected fragment size. Expected"
653 " less than %zu, received = %zu",
654 ctx->fragment_size, len);
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800655 mctp_msg_ctx_drop(bus, ctx);
Sumanth Bhat69f545f2021-05-18 09:16:43 +0000656 goto out;
657 }
658
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800659 rc = mctp_msg_ctx_add_pkt(ctx, pkt);
Jeremy Kerr1a4ec3c2019-09-03 11:01:50 +0800660 if (!rc)
Sumanth Bhatf39c3852022-01-10 17:04:10 +0530661 mctp_rx(mctp, bus, ctx->src, ctx->dest, tag_owner, tag,
662 ctx->buf, ctx->buf_size);
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800663
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800664 mctp_msg_ctx_drop(bus, ctx);
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800665 break;
Ed Tanousc2def9f2019-02-21 08:33:08 -0800666
667 case 0:
668 /* Neither SOM nor EOM */
Patrick Williamsa721c2d2022-12-04 14:30:26 -0600669 ctx = mctp_msg_ctx_lookup(mctp, hdr->src, hdr->dest, tag);
Ed Tanousc2def9f2019-02-21 08:33:08 -0800670 if (!ctx)
Jeremy Kerrc1693af2019-08-05 14:30:59 +0800671 goto out;
Ed Tanousc2def9f2019-02-21 08:33:08 -0800672
673 exp_seq = (ctx->last_seq + 1) % 4;
674 if (exp_seq != seq) {
675 mctp_prdebug(
676 "Sequence number %d does not match expected %d",
677 seq, exp_seq);
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800678 mctp_msg_ctx_drop(bus, ctx);
Jeremy Kerrc1693af2019-08-05 14:30:59 +0800679 goto out;
Ed Tanousc2def9f2019-02-21 08:33:08 -0800680 }
681
Sumanth Bhat69f545f2021-05-18 09:16:43 +0000682 len = mctp_pktbuf_size(pkt);
683
684 if (len != ctx->fragment_size) {
Patrick Williamsa721c2d2022-12-04 14:30:26 -0600685 mctp_prdebug("Unexpected fragment size. Expected = %zu "
686 "received = %zu",
687 ctx->fragment_size, len);
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800688 mctp_msg_ctx_drop(bus, ctx);
Sumanth Bhat69f545f2021-05-18 09:16:43 +0000689 goto out;
690 }
691
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800692 rc = mctp_msg_ctx_add_pkt(ctx, pkt);
Ed Tanousc2def9f2019-02-21 08:33:08 -0800693 if (rc) {
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800694 mctp_msg_ctx_drop(bus, ctx);
Jeremy Kerrc1693af2019-08-05 14:30:59 +0800695 goto out;
Ed Tanousc2def9f2019-02-21 08:33:08 -0800696 }
697 ctx->last_seq = seq;
698
699 break;
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800700 }
Jeremy Kerrc1693af2019-08-05 14:30:59 +0800701out:
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800702 return;
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800703}
704
Patrick Williamsa721c2d2022-12-04 14:30:26 -0600705static int mctp_packet_tx(struct mctp_bus *bus, struct mctp_pktbuf *pkt)
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800706{
Andrew Jeffery5d3d4e62021-08-20 16:44:40 +0930707 struct mctp *mctp = bus->binding->mctp;
708
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800709 if (bus->state != mctp_bus_state_tx_enabled) {
710 mctp_prdebug("tx with bus disabled");
Jeremy Kerr1cd31182019-02-27 18:01:00 +0800711 return -1;
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800712 }
Jeremy Kerr1cd31182019-02-27 18:01:00 +0800713
Andrew Jeffery5d3d4e62021-08-20 16:44:40 +0930714 if (mctp->capture)
Rashmica Guptaf2988972022-11-09 12:26:44 +1100715 mctp->capture(pkt, MCTP_MESSAGE_CAPTURE_OUTGOING,
716 mctp->capture_data);
Andrew Jeffery5d3d4e62021-08-20 16:44:40 +0930717
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800718 return bus->binding->tx(bus->binding, pkt);
719}
720
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800721/* Returns a pointer to the binding's tx_storage */
722static struct mctp_pktbuf *mctp_next_tx_pkt(struct mctp_bus *bus)
723{
724 if (!bus->tx_msg) {
725 return NULL;
726 }
727
728 size_t p = bus->tx_msgpos;
729 size_t msg_len = bus->tx_msglen;
730 size_t payload_len = msg_len - p;
731 size_t max_payload_len = MCTP_BODY_SIZE(bus->binding->pkt_size);
732 if (payload_len > max_payload_len)
733 payload_len = max_payload_len;
734
735 struct mctp_pktbuf *pkt =
736 mctp_pktbuf_init(bus->binding, bus->binding->tx_storage);
737 struct mctp_hdr *hdr = mctp_pktbuf_hdr(pkt);
738
739 hdr->ver = bus->binding->version & 0xf;
740 hdr->dest = bus->tx_dest;
741 hdr->src = bus->tx_src;
742 hdr->flags_seq_tag = (bus->tx_to << MCTP_HDR_TO_SHIFT) |
743 (bus->tx_tag << MCTP_HDR_TAG_SHIFT);
744
745 if (p == 0)
746 hdr->flags_seq_tag |= MCTP_HDR_FLAG_SOM;
747 if (p + payload_len >= msg_len)
748 hdr->flags_seq_tag |= MCTP_HDR_FLAG_EOM;
749 hdr->flags_seq_tag |= bus->tx_seq << MCTP_HDR_SEQ_SHIFT;
750
751 memcpy(mctp_pktbuf_data(pkt), (uint8_t *)bus->tx_msg + p, payload_len);
752 pkt->end = pkt->start + sizeof(*hdr) + payload_len;
753 bus->tx_pktlen = payload_len;
754
755 mctp_prdebug(
756 "tx dst %d tag %d payload len %zu seq %d. msg pos %zu len %zu",
757 hdr->dest, bus->tx_tag, payload_len, bus->tx_seq, p, msg_len);
758
759 return pkt;
760}
761
762/* Called when a packet has successfully been sent */
763static void mctp_tx_complete(struct mctp_bus *bus)
764{
765 if (!bus->tx_msg) {
766 mctp_prdebug("tx complete no message");
767 return;
768 }
769
770 bus->tx_seq = (bus->tx_seq + 1) & MCTP_HDR_SEQ_MASK;
771 bus->tx_msgpos += bus->tx_pktlen;
772
773 if (bus->tx_msgpos >= bus->tx_msglen) {
774 __mctp_msg_free(bus->tx_msg, bus->binding->mctp);
775 bus->tx_msg = NULL;
776 }
777}
778
Jeremy Kerrcc2458d2019-03-01 08:23:33 +0800779static void mctp_send_tx_queue(struct mctp_bus *bus)
Jeremy Kerr1cd31182019-02-27 18:01:00 +0800780{
781 struct mctp_pktbuf *pkt;
782
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800783 while (bus->tx_msg && bus->state == mctp_bus_state_tx_enabled) {
Jeremy Kerr1cd31182019-02-27 18:01:00 +0800784 int rc;
785
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800786 pkt = mctp_next_tx_pkt(bus);
787
Jeremy Kerr1cd31182019-02-27 18:01:00 +0800788 rc = mctp_packet_tx(bus, pkt);
Andrew Jeffery0721f582022-09-29 12:12:39 +0930789 switch (rc) {
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800790 /* If transmission succeded */
Andrew Jeffery0721f582022-09-29 12:12:39 +0930791 case 0:
Andrew Jeffery0721f582022-09-29 12:12:39 +0930792 /* Drop the packet */
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800793 mctp_tx_complete(bus);
Jeremy Kerr1cd31182019-02-27 18:01:00 +0800794 break;
795
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800796 /* If the binding was busy */
Andrew Jeffery0721f582022-09-29 12:12:39 +0930797 case -EBUSY:
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800798 /* Keep the packet for next try */
799 mctp_prdebug("tx EBUSY");
800 return;
801
Andrew Jeffery0721f582022-09-29 12:12:39 +0930802 /* Some other unknown error occurred */
803 default:
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800804 /* Drop the packet */
805 mctp_prdebug("tx drop %d", rc);
806 mctp_tx_complete(bus);
807 return;
Andrew Jeffery0721f582022-09-29 12:12:39 +0930808 };
Jeremy Kerr1cd31182019-02-27 18:01:00 +0800809 }
Jeremy Kerr1cd31182019-02-27 18:01:00 +0800810}
811
812void mctp_binding_set_tx_enabled(struct mctp_binding *binding, bool enable)
813{
814 struct mctp_bus *bus = binding->bus;
Andrew Jefferyc61501c2021-01-27 23:24:18 +1030815
Patrick Williamsa721c2d2022-12-04 14:30:26 -0600816 switch (bus->state) {
Andrew Jefferyc61501c2021-01-27 23:24:18 +1030817 case mctp_bus_state_constructed:
818 if (!enable)
819 return;
820
Andrew Jeffery1fa707e2021-01-28 15:22:11 +1030821 if (binding->pkt_size < MCTP_PACKET_SIZE(MCTP_BTU)) {
Patrick Williamsa721c2d2022-12-04 14:30:26 -0600822 mctp_prerr(
823 "Cannot start %s binding with invalid MTU: %zu",
824 binding->name,
825 MCTP_BODY_SIZE(binding->pkt_size));
Andrew Jeffery1fa707e2021-01-28 15:22:11 +1030826 return;
827 }
828
Andrew Jefferyc61501c2021-01-27 23:24:18 +1030829 bus->state = mctp_bus_state_tx_enabled;
830 mctp_prinfo("%s binding started", binding->name);
831 return;
832 case mctp_bus_state_tx_enabled:
833 if (enable)
834 return;
835
836 bus->state = mctp_bus_state_tx_disabled;
837 mctp_prdebug("%s binding Tx disabled", binding->name);
838 return;
839 case mctp_bus_state_tx_disabled:
840 if (!enable)
841 return;
842
843 bus->state = mctp_bus_state_tx_enabled;
844 mctp_prdebug("%s binding Tx enabled", binding->name);
Jeremy Kerrcc2458d2019-03-01 08:23:33 +0800845 mctp_send_tx_queue(bus);
Andrew Jefferyc61501c2021-01-27 23:24:18 +1030846 return;
847 }
Jeremy Kerr1cd31182019-02-27 18:01:00 +0800848}
849
Andrew Jefferyb93b6112020-06-05 14:13:44 +0930850static int mctp_message_tx_on_bus(struct mctp_bus *bus, mctp_eid_t src,
Sumanth Bhatf39c3852022-01-10 17:04:10 +0530851 mctp_eid_t dest, bool tag_owner,
852 uint8_t msg_tag, void *msg, size_t msg_len)
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800853{
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800854 size_t max_payload_len;
855 int rc;
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800856
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800857 if (bus->state == mctp_bus_state_constructed) {
858 rc = -ENXIO;
859 goto err;
860 }
Andrew Jefferyc61501c2021-01-27 23:24:18 +1030861
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800862 if ((msg_tag & MCTP_HDR_TAG_MASK) != msg_tag) {
863 rc = -EINVAL;
864 goto err;
865 }
Sumanth Bhatf39c3852022-01-10 17:04:10 +0530866
Andrew Jeffery1fa707e2021-01-28 15:22:11 +1030867 max_payload_len = MCTP_BODY_SIZE(bus->binding->pkt_size);
868
869 {
870 const bool valid_mtu = max_payload_len >= MCTP_BTU;
871 assert(valid_mtu);
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800872 if (!valid_mtu) {
873 rc = -EINVAL;
874 goto err;
875 }
Andrew Jeffery1fa707e2021-01-28 15:22:11 +1030876 }
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800877
Patrick Williamsa721c2d2022-12-04 14:30:26 -0600878 mctp_prdebug(
879 "%s: Generating packets for transmission of %zu byte message from %hhu to %hhu",
880 __func__, msg_len, src, dest);
Andrew Jeffery298865f2020-02-06 11:51:29 +1030881
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800882 if (bus->tx_msg) {
883 mctp_prdebug("Bus busy");
884 rc = -EBUSY;
885 goto err;
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800886 }
887
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800888 /* Take the message to send */
889 bus->tx_msg = msg;
890 bus->tx_msglen = msg_len;
891 bus->tx_msgpos = 0;
892 /* bus->tx_seq is allowed to continue from previous message */
893 bus->tx_src = src;
894 bus->tx_dest = dest;
895 bus->tx_to = tag_owner;
896 bus->tx_tag = msg_tag;
Andrew Jeffery298865f2020-02-06 11:51:29 +1030897
Jeremy Kerrcc2458d2019-03-01 08:23:33 +0800898 mctp_send_tx_queue(bus);
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800899 return 0;
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800900
901err:
902 __mctp_msg_free(msg, bus->binding->mctp);
903 return rc;
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800904}
Jeremy Kerr1a4ec3c2019-09-03 11:01:50 +0800905
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800906int mctp_message_tx_alloced(struct mctp *mctp, mctp_eid_t eid, bool tag_owner,
907 uint8_t msg_tag, void *msg, size_t msg_len)
Jeremy Kerr1a4ec3c2019-09-03 11:01:50 +0800908{
909 struct mctp_bus *bus;
910
Sumanth Bhatf39c3852022-01-10 17:04:10 +0530911 /* TODO: Protect against same tag being used across
912 * different callers */
913 if ((msg_tag & MCTP_HDR_TAG_MASK) != msg_tag) {
914 mctp_prerr("Incorrect message tag %u passed.", msg_tag);
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800915 __mctp_msg_free(msg, mctp);
Sumanth Bhatf39c3852022-01-10 17:04:10 +0530916 return -EINVAL;
917 }
918
Jeremy Kerr1a4ec3c2019-09-03 11:01:50 +0800919 bus = find_bus_for_eid(mctp, eid);
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800920 if (!bus) {
921 __mctp_msg_free(msg, mctp);
Brad Bishop663ec392021-10-07 21:16:48 -0400922 return 0;
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800923 }
Brad Bishop663ec392021-10-07 21:16:48 -0400924
Sumanth Bhatf39c3852022-01-10 17:04:10 +0530925 return mctp_message_tx_on_bus(bus, bus->eid, eid, tag_owner, msg_tag,
926 msg, msg_len);
Jeremy Kerr1a4ec3c2019-09-03 11:01:50 +0800927}
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800928
929int mctp_message_tx(struct mctp *mctp, mctp_eid_t eid, bool tag_owner,
930 uint8_t msg_tag, const void *msg, size_t msg_len)
931{
932 void *copy = mctp_msg_dup(msg, msg_len, mctp);
933 if (!copy) {
934 return -ENOMEM;
935 }
936
937 return mctp_message_tx_alloced(mctp, eid, tag_owner, msg_tag, copy,
938 msg_len);
939}
940
Matt Johnston44e64df2024-11-05 16:59:42 +0800941void mctp_set_now_op(struct mctp *mctp, uint64_t (*now)(void *), void *ctx)
942{
943 assert(now);
944 mctp->platform_now = now;
945 mctp->platform_now_ctx = ctx;
946}
947
948uint64_t mctp_now(struct mctp *mctp)
949{
950 assert(mctp->platform_now);
951 return mctp->platform_now(mctp->platform_now_ctx);
952}
953
Matt Johnston61c95992024-09-16 16:50:35 +0800954static void mctp_dealloc_tag(struct mctp_bus *bus, mctp_eid_t local,
955 mctp_eid_t remote, uint8_t tag)
956{
957 struct mctp *mctp = bus->binding->mctp;
Matt Johnston44e64df2024-11-05 16:59:42 +0800958 if (local == 0) {
Matt Johnston61c95992024-09-16 16:50:35 +0800959 return;
960 }
961
962 for (size_t i = 0; i < ARRAY_SIZE(mctp->req_tags); i++) {
963 struct mctp_req_tag *r = &mctp->req_tags[i];
964 if (r->local == local && r->remote == remote && r->tag == tag) {
965 r->local = 0;
966 r->remote = 0;
967 r->tag = 0;
Matt Johnston44e64df2024-11-05 16:59:42 +0800968 r->expiry = 0;
Matt Johnston61c95992024-09-16 16:50:35 +0800969 return;
970 }
971 }
972}
973
974static int mctp_alloc_tag(struct mctp *mctp, mctp_eid_t local,
975 mctp_eid_t remote, uint8_t *ret_tag)
976{
977 assert(local != 0);
Matt Johnston44e64df2024-11-05 16:59:42 +0800978 uint64_t now = mctp_now(mctp);
Matt Johnston61c95992024-09-16 16:50:35 +0800979
980 uint8_t used = 0;
981 struct mctp_req_tag *spare = NULL;
982 /* Find which tags and slots are used/spare */
983 for (size_t i = 0; i < ARRAY_SIZE(mctp->req_tags); i++) {
984 struct mctp_req_tag *r = &mctp->req_tags[i];
Matt Johnston44e64df2024-11-05 16:59:42 +0800985 if (r->local == 0 || r->expiry < now) {
Matt Johnston61c95992024-09-16 16:50:35 +0800986 spare = r;
987 } else {
Matt Johnston61c95992024-09-16 16:50:35 +0800988 if (r->local == local && r->remote == remote) {
989 used |= 1 << r->tag;
990 }
991 }
992 }
993
994 if (spare == NULL) {
995 // All req_tag slots are in-use
996 return -EBUSY;
997 }
998
999 for (uint8_t t = 0; t < 8; t++) {
1000 uint8_t tag = (t + mctp->tag_round_robin) % 8;
1001 if ((used & 1 << tag) == 0) {
1002 spare->local = local;
1003 spare->remote = remote;
1004 spare->tag = tag;
Matt Johnston44e64df2024-11-05 16:59:42 +08001005 spare->expiry = now + MCTP_TAG_TIMEOUT;
Matt Johnston61c95992024-09-16 16:50:35 +08001006 *ret_tag = tag;
1007 mctp->tag_round_robin = (tag + 1) % 8;
1008 return 0;
1009 }
1010 }
1011
1012 // All 8 tags are used for this src/dest pair
1013 return -EBUSY;
1014}
1015
1016int mctp_message_tx_request(struct mctp *mctp, mctp_eid_t eid, void *msg,
1017 size_t msg_len, uint8_t *ret_alloc_msg_tag)
1018{
1019 int rc;
1020 struct mctp_bus *bus;
1021
1022 bus = find_bus_for_eid(mctp, eid);
1023 if (!bus) {
1024 __mctp_msg_free(msg, mctp);
1025 return 0;
1026 }
1027
1028 uint8_t alloc_tag;
1029 rc = mctp_alloc_tag(mctp, bus->eid, eid, &alloc_tag);
1030 if (rc) {
1031 mctp_prdebug("Failed allocating tag");
1032 __mctp_msg_free(msg, mctp);
1033 return rc;
1034 }
1035
1036 if (ret_alloc_msg_tag) {
1037 *ret_alloc_msg_tag = alloc_tag;
1038 }
1039
1040 return mctp_message_tx_alloced(mctp, eid, true, alloc_tag, msg,
1041 msg_len);
1042}
1043
Matt Johnston4a09e1d2024-09-13 14:55:58 +08001044bool mctp_is_tx_ready(struct mctp *mctp, mctp_eid_t eid)
1045{
1046 struct mctp_bus *bus;
1047
1048 bus = find_bus_for_eid(mctp, eid);
1049 if (!bus) {
1050 return true;
1051 }
1052 return bus->tx_msg == NULL;
1053}
1054
1055void *mctp_get_alloc_ctx(struct mctp *mctp)
1056{
1057 return mctp->alloc_ctx;
1058}
1059
1060void mctp_set_alloc_ctx(struct mctp *mctp, void *ctx)
1061{
1062 mctp->alloc_ctx = ctx;
1063}