blob: e28f6bc04dd6cd1f43e838f654c67630c5330c59 [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"
Jeremy Kerr4cdc2002019-02-07 16:49:12 +080022
Matt Johnston44e64df2024-11-05 16:59:42 +080023#if MCTP_DEFAULT_CLOCK_GETTIME
24#include <time.h>
25#endif
26
Jeremy Kerr24db71f2019-02-07 21:37:35 +080027#ifndef ARRAY_SIZE
28#define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0]))
29#endif
30
Andrew Jefferyb93b6112020-06-05 14:13:44 +093031static int mctp_message_tx_on_bus(struct mctp_bus *bus, mctp_eid_t src,
Sumanth Bhatf39c3852022-01-10 17:04:10 +053032 mctp_eid_t dest, bool tag_owner,
33 uint8_t msg_tag, void *msg, size_t msg_len);
Matt Johnston61c95992024-09-16 16:50:35 +080034static void mctp_dealloc_tag(struct mctp_bus *bus, mctp_eid_t local,
35 mctp_eid_t remote, uint8_t tag);
Jeremy Kerr1a4ec3c2019-09-03 11:01:50 +080036
Jeremy Kerrdf15f7e2019-08-05 15:41:19 +080037struct mctp_pktbuf *mctp_pktbuf_alloc(struct mctp_binding *binding, size_t len)
Jeremy Kerr4cdc2002019-02-07 16:49:12 +080038{
Matt Johnston4a09e1d2024-09-13 14:55:58 +080039 size_t size =
40 binding->pkt_size + binding->pkt_header + binding->pkt_trailer;
Rashmica Gupta487b31e2022-09-14 18:49:45 +100041 if (len > size) {
42 return NULL;
43 }
Jeremy Kerr4cdc2002019-02-07 16:49:12 +080044
Matt Johnston4a09e1d2024-09-13 14:55:58 +080045 void *storage = __mctp_alloc(size + sizeof(struct mctp_pktbuf));
46 if (!storage) {
Pedro Martelletto2608b292023-03-30 13:28:28 +000047 return NULL;
Matt Johnston4a09e1d2024-09-13 14:55:58 +080048 }
49 struct mctp_pktbuf *pkt = mctp_pktbuf_init(binding, storage);
50 pkt->alloc = true;
51 pkt->end = pkt->start + len;
52 return pkt;
Jeremy Kerr4cdc2002019-02-07 16:49:12 +080053}
54
55void mctp_pktbuf_free(struct mctp_pktbuf *pkt)
56{
Matt Johnston4a09e1d2024-09-13 14:55:58 +080057 if (pkt->alloc) {
58 __mctp_free(pkt);
59 } else {
60 mctp_prdebug("pktbuf_free called for non-alloced");
61 }
62}
63
64struct mctp_pktbuf *mctp_pktbuf_init(struct mctp_binding *binding,
65 void *storage)
66{
67 size_t size =
68 binding->pkt_size + binding->pkt_header + binding->pkt_trailer;
69 struct mctp_pktbuf *buf = (struct mctp_pktbuf *)storage;
70 buf->size = size;
71 buf->start = binding->pkt_header;
72 buf->end = buf->start;
73 buf->mctp_hdr_off = buf->start;
74 buf->alloc = false;
75
76 return buf;
Jeremy Kerr4cdc2002019-02-07 16:49:12 +080077}
78
79struct mctp_hdr *mctp_pktbuf_hdr(struct mctp_pktbuf *pkt)
80{
Moritz Fischer7aaccb52022-06-28 20:04:04 -070081 return (struct mctp_hdr *)(pkt->data + pkt->mctp_hdr_off);
Jeremy Kerr4cdc2002019-02-07 16:49:12 +080082}
83
84void *mctp_pktbuf_data(struct mctp_pktbuf *pkt)
85{
Moritz Fischer7aaccb52022-06-28 20:04:04 -070086 return pkt->data + pkt->mctp_hdr_off + sizeof(struct mctp_hdr);
Jeremy Kerr4cdc2002019-02-07 16:49:12 +080087}
88
Matt Johnston4a09e1d2024-09-13 14:55:58 +080089size_t mctp_pktbuf_size(const struct mctp_pktbuf *pkt)
Jeremy Kerr4cdc2002019-02-07 16:49:12 +080090{
91 return pkt->end - pkt->start;
92}
93
Jeremy Kerrdf15f7e2019-08-05 15:41:19 +080094void *mctp_pktbuf_alloc_start(struct mctp_pktbuf *pkt, size_t size)
Jeremy Kerr4cdc2002019-02-07 16:49:12 +080095{
96 assert(size <= pkt->start);
97 pkt->start -= size;
98 return pkt->data + pkt->start;
99}
100
Jeremy Kerrdf15f7e2019-08-05 15:41:19 +0800101void *mctp_pktbuf_alloc_end(struct mctp_pktbuf *pkt, size_t size)
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800102{
103 void *buf;
104
Andrew Jeffery3ac70d62020-07-01 00:50:44 +0930105 assert(size <= (pkt->size - pkt->end));
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800106 buf = pkt->data + pkt->end;
107 pkt->end += size;
108 return buf;
109}
110
Matt Johnstondfbf0fd2024-10-28 14:40:29 +0800111int mctp_pktbuf_push(struct mctp_pktbuf *pkt, const void *data, size_t len)
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800112{
113 void *p;
114
Jeremy Kerrdf15f7e2019-08-05 15:41:19 +0800115 if (pkt->end + len > pkt->size)
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800116 return -1;
117
118 p = pkt->data + pkt->end;
119
120 pkt->end += len;
121 memcpy(p, data, len);
122
123 return 0;
124}
125
Andrew Jefferyeba19a32021-03-09 23:09:40 +1030126void *mctp_pktbuf_pop(struct mctp_pktbuf *pkt, size_t len)
127{
128 if (len > mctp_pktbuf_size(pkt))
129 return NULL;
130
131 pkt->end -= len;
132 return pkt->data + pkt->end;
133}
134
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800135/* Allocate a duplicate of the message and copy it */
136static void *mctp_msg_dup(const void *msg, size_t msg_len, struct mctp *mctp)
137{
138 void *copy = __mctp_msg_alloc(msg_len, mctp);
139 if (!copy) {
140 mctp_prdebug("msg dup len %zu failed", msg_len);
141 return NULL;
142 }
143
144 memcpy(copy, msg, msg_len);
145 return copy;
146}
147
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800148/* Message reassembly */
Patrick Williamsa721c2d2022-12-04 14:30:26 -0600149static struct mctp_msg_ctx *mctp_msg_ctx_lookup(struct mctp *mctp, uint8_t src,
150 uint8_t dest, uint8_t tag)
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800151{
152 unsigned int i;
153
154 /* @todo: better lookup, if we add support for more outstanding
155 * message contexts */
156 for (i = 0; i < ARRAY_SIZE(mctp->msg_ctxs); i++) {
157 struct mctp_msg_ctx *ctx = &mctp->msg_ctxs[i];
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800158 if (ctx->buf && ctx->src == src && ctx->dest == dest &&
159 ctx->tag == tag)
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800160 return ctx;
161 }
162
163 return NULL;
164}
165
Patrick Williamsa721c2d2022-12-04 14:30:26 -0600166static struct mctp_msg_ctx *mctp_msg_ctx_create(struct mctp *mctp, uint8_t src,
167 uint8_t dest, uint8_t tag)
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800168{
Jeremy Kerr11a234e2019-02-27 17:59:53 +0800169 struct mctp_msg_ctx *ctx = NULL;
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800170 unsigned int i;
171
172 for (i = 0; i < ARRAY_SIZE(mctp->msg_ctxs); i++) {
173 struct mctp_msg_ctx *tmp = &mctp->msg_ctxs[i];
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800174 if (!tmp->buf) {
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800175 ctx = tmp;
176 break;
177 }
178 }
179
180 if (!ctx)
181 return NULL;
182
183 ctx->src = src;
Jeremy Kerr1a4ec3c2019-09-03 11:01:50 +0800184 ctx->dest = dest;
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800185 ctx->tag = tag;
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800186
Jeremy Kerr9a3da812019-08-02 15:57:53 +0800187 ctx->buf_size = 0;
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800188 ctx->buf_alloc_size = mctp->max_message_size;
189 ctx->buf = __mctp_msg_alloc(ctx->buf_alloc_size, mctp);
190 if (!ctx->buf) {
191 return NULL;
192 }
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800193
194 return ctx;
195}
196
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800197static void mctp_msg_ctx_drop(struct mctp_bus *bus, struct mctp_msg_ctx *ctx)
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800198{
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800199 /* Free and mark as unused */
200 __mctp_msg_free(ctx->buf, bus->mctp);
201 ctx->buf = NULL;
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800202}
203
204static void mctp_msg_ctx_reset(struct mctp_msg_ctx *ctx)
205{
206 ctx->buf_size = 0;
Sumanth Bhat69f545f2021-05-18 09:16:43 +0000207 ctx->fragment_size = 0;
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800208}
209
210static int mctp_msg_ctx_add_pkt(struct mctp_msg_ctx *ctx,
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800211 struct mctp_pktbuf *pkt)
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800212{
213 size_t len;
214
215 len = mctp_pktbuf_size(pkt) - sizeof(struct mctp_hdr);
216
Sumanth Bhatbc79c242021-06-16 12:36:56 +0530217 if (len + ctx->buf_size < ctx->buf_size) {
218 return -1;
219 }
220
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800221 if (ctx->buf_size + len > ctx->buf_alloc_size) {
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800222 return -1;
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800223 }
224
Moritz Fischer7aaccb52022-06-28 20:04:04 -0700225 memcpy((uint8_t *)ctx->buf + ctx->buf_size, mctp_pktbuf_data(pkt), len);
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800226 ctx->buf_size += len;
227
228 return 0;
229}
230
231/* Core API functions */
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800232struct mctp *mctp_init(void)
233{
234 struct mctp *mctp;
235
236 mctp = __mctp_alloc(sizeof(*mctp));
Sumanth Bhat96d54492020-07-14 17:10:04 +0530237
Patrick Williamsa721c2d2022-12-04 14:30:26 -0600238 if (!mctp)
Sumanth Bhat96d54492020-07-14 17:10:04 +0530239 return NULL;
240
Matt Johnstonf9b99f12024-09-17 16:48:34 +0800241 mctp_setup(mctp, sizeof(*mctp));
Matt Johnston722d0db2024-09-13 15:51:30 +0800242 return mctp;
243}
244
Matt Johnston44e64df2024-11-05 16:59:42 +0800245#if MCTP_DEFAULT_CLOCK_GETTIME
246static uint64_t mctp_default_now(void *ctx __attribute__((unused)))
247{
248 struct timespec tp;
249 int rc = clock_gettime(CLOCK_MONOTONIC, &tp);
250 if (rc) {
251 /* Should not be possible */
252 return 0;
253 }
254 return (uint64_t)tp.tv_sec * 1000 + tp.tv_nsec / 1000000;
255}
256#endif
257
Matt Johnstonf9b99f12024-09-17 16:48:34 +0800258int mctp_setup(struct mctp *mctp, size_t struct_mctp_size)
Matt Johnston722d0db2024-09-13 15:51:30 +0800259{
Matt Johnstonf9b99f12024-09-17 16:48:34 +0800260 if (struct_mctp_size < sizeof(struct mctp)) {
261 mctp_prdebug("Mismatching struct mctp");
262 return -EINVAL;
263 }
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800264 memset(mctp, 0, sizeof(*mctp));
Sumanth Bhat2c820c52020-07-02 00:26:25 +0530265 mctp->max_message_size = MCTP_MAX_MESSAGE_SIZE;
Matt Johnston44e64df2024-11-05 16:59:42 +0800266#if MCTP_DEFAULT_CLOCK_GETTIME
267 mctp->platform_now = mctp_default_now;
268#endif
Matt Johnstonf9b99f12024-09-17 16:48:34 +0800269 return 0;
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800270}
271
Sumanth Bhat2c820c52020-07-02 00:26:25 +0530272void mctp_set_max_message_size(struct mctp *mctp, size_t message_size)
273{
274 mctp->max_message_size = message_size;
275}
276
Andrew Jeffery5d3d4e62021-08-20 16:44:40 +0930277void mctp_set_capture_handler(struct mctp *mctp, mctp_capture_fn fn, void *user)
278{
279 mctp->capture = fn;
280 mctp->capture_data = user;
281}
282
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800283static void mctp_bus_destroy(struct mctp_bus *bus, struct mctp *mctp)
Andrew Jeffery3ae89dc2021-01-28 15:24:36 +1030284{
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800285 if (bus->tx_msg) {
286 __mctp_msg_free(bus->tx_msg, mctp);
287 bus->tx_msg = NULL;
Andrew Jeffery3ae89dc2021-01-28 15:24:36 +1030288 }
289}
290
Matt Johnston722d0db2024-09-13 15:51:30 +0800291void mctp_cleanup(struct mctp *mctp)
Andrew Jefferyfa56ca52020-03-10 23:18:22 +1030292{
Andrew Jefferyb93b6112020-06-05 14:13:44 +0930293 size_t i;
Andrew Jefferyfa56ca52020-03-10 23:18:22 +1030294
295 /* Cleanup message assembly contexts */
Matt Johnston3ef47782024-12-11 15:19:06 +0800296 static_assert(ARRAY_SIZE(mctp->msg_ctxs) < SIZE_MAX, "size");
Andrew Jefferyfa56ca52020-03-10 23:18:22 +1030297 for (i = 0; i < ARRAY_SIZE(mctp->msg_ctxs); i++) {
298 struct mctp_msg_ctx *tmp = &mctp->msg_ctxs[i];
299 if (tmp->buf)
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800300 __mctp_msg_free(tmp->buf, mctp);
Andrew Jefferyfa56ca52020-03-10 23:18:22 +1030301 }
302
Andrew Jeffery3ae89dc2021-01-28 15:24:36 +1030303 while (mctp->n_busses--)
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800304 mctp_bus_destroy(&mctp->busses[mctp->n_busses], mctp);
Matt Johnston722d0db2024-09-13 15:51:30 +0800305}
Andrew Jeffery3ae89dc2021-01-28 15:24:36 +1030306
Matt Johnston722d0db2024-09-13 15:51:30 +0800307void mctp_destroy(struct mctp *mctp)
308{
309 mctp_cleanup(mctp);
Andrew Jefferyfa56ca52020-03-10 23:18:22 +1030310 __mctp_free(mctp);
311}
312
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800313int mctp_set_rx_all(struct mctp *mctp, mctp_rx_fn fn, void *data)
314{
315 mctp->message_rx = fn;
316 mctp->message_rx_data = data;
317 return 0;
318}
319
Patrick Williamsa721c2d2022-12-04 14:30:26 -0600320static struct mctp_bus *find_bus_for_eid(struct mctp *mctp, mctp_eid_t dest
321 __attribute__((unused)))
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800322{
Brad Bishop663ec392021-10-07 21:16:48 -0400323 if (mctp->n_busses == 0)
324 return NULL;
325
Jeremy Kerr1a4ec3c2019-09-03 11:01:50 +0800326 /* for now, just use the first bus. For full routing support,
327 * we will need a table of neighbours */
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800328 return &mctp->busses[0];
329}
330
Patrick Williamsa721c2d2022-12-04 14:30:26 -0600331int mctp_register_bus(struct mctp *mctp, struct mctp_binding *binding,
332 mctp_eid_t eid)
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800333{
Andrew Jeffery3e8a12a2020-06-05 16:08:30 +0930334 int rc = 0;
335
Jeremy Kerr7520cec2019-03-01 07:13:18 +0800336 /* todo: multiple busses */
Matt Johnston722d0db2024-09-13 15:51:30 +0800337 static_assert(MCTP_MAX_BUSSES >= 1, "need a bus");
Jeremy Kerr1a4ec3c2019-09-03 11:01:50 +0800338 assert(mctp->n_busses == 0);
339 mctp->n_busses = 1;
Andrew Jeffery3e8a12a2020-06-05 16:08:30 +0930340
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800341 assert(binding->tx_storage);
342
James Feist62d72362019-12-13 13:43:32 -0800343 memset(mctp->busses, 0, sizeof(struct mctp_bus));
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800344 mctp->busses[0].mctp = mctp;
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800345 mctp->busses[0].binding = binding;
346 mctp->busses[0].eid = eid;
Jeremy Kerr7520cec2019-03-01 07:13:18 +0800347 binding->bus = &mctp->busses[0];
Jeremy Kerr0a00dca2019-03-01 08:01:35 +0800348 binding->mctp = mctp;
Jeremy Kerr1a4ec3c2019-09-03 11:01:50 +0800349 mctp->route_policy = ROUTE_ENDPOINT;
Jeremy Kerr3b36d172019-09-04 11:56:09 +0800350
Andrew Jeffery3e8a12a2020-06-05 16:08:30 +0930351 if (binding->start) {
352 rc = binding->start(binding);
353 if (rc < 0) {
354 mctp_prerr("Failed to start binding: %d", rc);
Andrew Jeffery19275232021-01-29 14:13:25 +1030355 binding->bus = NULL;
Andrew Jeffery2304c832021-01-29 11:52:49 +1030356 mctp->n_busses = 0;
Andrew Jeffery3e8a12a2020-06-05 16:08:30 +0930357 }
358 }
Jeremy Kerr3b36d172019-09-04 11:56:09 +0800359
Andrew Jeffery3e8a12a2020-06-05 16:08:30 +0930360 return rc;
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800361}
362
Andrew Jeffery2094c3c2021-08-26 12:32:46 +0930363void mctp_unregister_bus(struct mctp *mctp, struct mctp_binding *binding)
364{
365 /*
366 * We only support one bus right now; once the call completes we will
367 * have no more busses
368 */
369 mctp->n_busses = 0;
370 binding->mctp = NULL;
371 binding->bus = NULL;
Andrew Jeffery2094c3c2021-08-26 12:32:46 +0930372}
373
Patrick Williamsa721c2d2022-12-04 14:30:26 -0600374int mctp_bridge_busses(struct mctp *mctp, struct mctp_binding *b1,
375 struct mctp_binding *b2)
Jeremy Kerr1a4ec3c2019-09-03 11:01:50 +0800376{
Andrew Jeffery19275232021-01-29 14:13:25 +1030377 int rc = 0;
378
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800379 assert(b1->tx_storage);
380 assert(b2->tx_storage);
381
Jeremy Kerr1a4ec3c2019-09-03 11:01:50 +0800382 assert(mctp->n_busses == 0);
Matt Johnston722d0db2024-09-13 15:51:30 +0800383 assert(MCTP_MAX_BUSSES >= 2);
James Feist62d72362019-12-13 13:43:32 -0800384 memset(mctp->busses, 0, 2 * sizeof(struct mctp_bus));
Jeremy Kerr1a4ec3c2019-09-03 11:01:50 +0800385 mctp->n_busses = 2;
386 mctp->busses[0].binding = b1;
387 b1->bus = &mctp->busses[0];
388 b1->mctp = mctp;
389 mctp->busses[1].binding = b2;
390 b2->bus = &mctp->busses[1];
391 b2->mctp = mctp;
392
393 mctp->route_policy = ROUTE_BRIDGE;
Jeremy Kerr3b36d172019-09-04 11:56:09 +0800394
Andrew Jeffery19275232021-01-29 14:13:25 +1030395 if (b1->start) {
396 rc = b1->start(b1);
397 if (rc < 0) {
398 mctp_prerr("Failed to start bridged bus %s: %d",
399 b1->name, rc);
400 goto done;
401 }
402 }
Jeremy Kerr3b36d172019-09-04 11:56:09 +0800403
Andrew Jeffery19275232021-01-29 14:13:25 +1030404 if (b2->start) {
405 rc = b2->start(b2);
406 if (rc < 0) {
407 mctp_prerr("Failed to start bridged bus %s: %d",
408 b2->name, rc);
409 goto done;
410 }
411 }
Jeremy Kerr3b36d172019-09-04 11:56:09 +0800412
Andrew Jeffery19275232021-01-29 14:13:25 +1030413done:
414 return rc;
Jeremy Kerr1a4ec3c2019-09-03 11:01:50 +0800415}
416
Wiktor GoĊ‚gowskiba6727e2020-03-13 18:25:01 +0100417static inline bool mctp_ctrl_cmd_is_transport(struct mctp_ctrl_msg_hdr *hdr)
Jeremy Kerr1a4ec3c2019-09-03 11:01:50 +0800418{
Matt Johnston3ef47782024-12-11 15:19:06 +0800419#pragma GCC diagnostic push
420#pragma GCC diagnostic ignored "-Wtype-limits"
Wiktor GoĊ‚gowskiba6727e2020-03-13 18:25:01 +0100421 return ((hdr->command_code >= MCTP_CTRL_CMD_FIRST_TRANSPORT) &&
422 (hdr->command_code <= MCTP_CTRL_CMD_LAST_TRANSPORT));
Matt Johnston3ef47782024-12-11 15:19:06 +0800423#pragma GCC diagnostic pop
Wiktor GoĊ‚gowskiba6727e2020-03-13 18:25:01 +0100424}
425
Andrew Jefferyb93b6112020-06-05 14:13:44 +0930426static bool mctp_ctrl_handle_msg(struct mctp_bus *bus, mctp_eid_t src,
Sumanth Bhatf39c3852022-01-10 17:04:10 +0530427 uint8_t msg_tag, bool tag_owner, void *buffer,
428 size_t length)
Wiktor GoĊ‚gowskiba6727e2020-03-13 18:25:01 +0100429{
430 struct mctp_ctrl_msg_hdr *msg_hdr = buffer;
431
432 /*
433 * Control message is received. If a transport control message handler
434 * is provided, it will called. If there is no dedicated handler, this
435 * function returns false and data can be handled by the generic
436 * message handler. The transport control message handler will be
437 * provided with messages in the command range 0xF0 - 0xFF.
438 */
439 if (mctp_ctrl_cmd_is_transport(msg_hdr)) {
440 if (bus->binding->control_rx != NULL) {
441 /* MCTP bus binding handler */
Sumanth Bhatf39c3852022-01-10 17:04:10 +0530442 bus->binding->control_rx(src, msg_tag, tag_owner,
Wiktor GoĊ‚gowskiba6727e2020-03-13 18:25:01 +0100443 bus->binding->control_rx_data,
444 buffer, length);
445 return true;
446 }
447 }
448
449 /*
450 * Command was not handled, due to lack of specific callback.
451 * It will be passed to regular message_rx handler.
452 */
453 return false;
454}
455
456static inline bool mctp_rx_dest_is_local(struct mctp_bus *bus, mctp_eid_t dest)
457{
458 return dest == bus->eid || dest == MCTP_EID_NULL ||
459 dest == MCTP_EID_BROADCAST;
460}
461
462static inline bool mctp_ctrl_cmd_is_request(struct mctp_ctrl_msg_hdr *hdr)
463{
464 return hdr->ic_msg_type == MCTP_CTRL_HDR_MSG_TYPE &&
465 hdr->rq_dgram_inst & MCTP_CTRL_HDR_FLAG_REQUEST;
466}
467
468/*
469 * Receive the complete MCTP message and route it.
470 * Asserts:
471 * 'buf' is not NULL.
472 */
473static void mctp_rx(struct mctp *mctp, struct mctp_bus *bus, mctp_eid_t src,
Sumanth Bhatf39c3852022-01-10 17:04:10 +0530474 mctp_eid_t dest, bool tag_owner, uint8_t msg_tag, void *buf,
475 size_t len)
Wiktor GoĊ‚gowskiba6727e2020-03-13 18:25:01 +0100476{
477 assert(buf != NULL);
478
Jeremy Kerr1a4ec3c2019-09-03 11:01:50 +0800479 if (mctp->route_policy == ROUTE_ENDPOINT &&
Wiktor GoĊ‚gowskiba6727e2020-03-13 18:25:01 +0100480 mctp_rx_dest_is_local(bus, dest)) {
Matt Johnston61c95992024-09-16 16:50:35 +0800481 /* Note responses to allocated tags */
482 if (!tag_owner) {
483 mctp_dealloc_tag(bus, dest, src, msg_tag);
484 }
485
Wiktor GoĊ‚gowskiba6727e2020-03-13 18:25:01 +0100486 /* Handle MCTP Control Messages: */
487 if (len >= sizeof(struct mctp_ctrl_msg_hdr)) {
488 struct mctp_ctrl_msg_hdr *msg_hdr = buf;
489
490 /*
491 * Identify if this is a control request message.
492 * See DSP0236 v1.3.0 sec. 11.5.
493 */
494 if (mctp_ctrl_cmd_is_request(msg_hdr)) {
495 bool handled;
Sumanth Bhatf39c3852022-01-10 17:04:10 +0530496 handled = mctp_ctrl_handle_msg(
497 bus, src, msg_tag, tag_owner, buf, len);
Wiktor GoĊ‚gowskiba6727e2020-03-13 18:25:01 +0100498 if (handled)
499 return;
500 }
501 }
Sumanth Bhatf39c3852022-01-10 17:04:10 +0530502
Wiktor GoĊ‚gowskiba6727e2020-03-13 18:25:01 +0100503 if (mctp->message_rx)
Sumanth Bhatf39c3852022-01-10 17:04:10 +0530504 mctp->message_rx(src, tag_owner, msg_tag,
505 mctp->message_rx_data, buf, len);
Wiktor GoĊ‚gowskiba6727e2020-03-13 18:25:01 +0100506 }
Jeremy Kerr1a4ec3c2019-09-03 11:01:50 +0800507
508 if (mctp->route_policy == ROUTE_BRIDGE) {
509 int i;
510
511 for (i = 0; i < mctp->n_busses; i++) {
512 struct mctp_bus *dest_bus = &mctp->busses[i];
513 if (dest_bus == bus)
514 continue;
515
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800516 void *copy = mctp_msg_dup(buf, len, mctp);
517 if (!copy) {
518 return;
519 }
520
Sumanth Bhatf39c3852022-01-10 17:04:10 +0530521 mctp_message_tx_on_bus(dest_bus, src, dest, tag_owner,
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800522 msg_tag, copy, len);
Jeremy Kerr1a4ec3c2019-09-03 11:01:50 +0800523 }
Jeremy Kerr1a4ec3c2019-09-03 11:01:50 +0800524 }
525}
526
Jeremy Kerr0a00dca2019-03-01 08:01:35 +0800527void mctp_bus_rx(struct mctp_binding *binding, struct mctp_pktbuf *pkt)
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800528{
Jeremy Kerr7520cec2019-03-01 07:13:18 +0800529 struct mctp_bus *bus = binding->bus;
Jeremy Kerr0a00dca2019-03-01 08:01:35 +0800530 struct mctp *mctp = binding->mctp;
Ed Tanousc2def9f2019-02-21 08:33:08 -0800531 uint8_t flags, exp_seq, seq, tag;
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800532 struct mctp_msg_ctx *ctx;
533 struct mctp_hdr *hdr;
Sumanth Bhatf39c3852022-01-10 17:04:10 +0530534 bool tag_owner;
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800535 size_t len;
536 void *p;
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800537 int rc;
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800538
Jeremy Kerr7520cec2019-03-01 07:13:18 +0800539 assert(bus);
540
Sumanth Bhatd97869d2020-07-02 00:46:13 +0530541 /* Drop packet if it was smaller than mctp hdr size */
Matt Johnston86e9a972024-10-28 15:06:33 +0800542 if (mctp_pktbuf_size(pkt) < sizeof(struct mctp_hdr))
Sumanth Bhatd97869d2020-07-02 00:46:13 +0530543 goto out;
544
Andrew Jeffery5d3d4e62021-08-20 16:44:40 +0930545 if (mctp->capture)
Rashmica Guptaf2988972022-11-09 12:26:44 +1100546 mctp->capture(pkt, MCTP_MESSAGE_CAPTURE_INCOMING,
547 mctp->capture_data);
Andrew Jeffery5d3d4e62021-08-20 16:44:40 +0930548
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800549 hdr = mctp_pktbuf_hdr(pkt);
550
Jeremy Kerr1a4ec3c2019-09-03 11:01:50 +0800551 /* small optimisation: don't bother reassembly if we're going to
552 * drop the packet in mctp_rx anyway */
John Chung133df7a2024-05-14 16:19:56 +0800553 if (mctp->route_policy == ROUTE_ENDPOINT &&
554 !mctp_rx_dest_is_local(bus, hdr->dest))
Jeremy Kerrc1693af2019-08-05 14:30:59 +0800555 goto out;
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800556
557 flags = hdr->flags_seq_tag & (MCTP_HDR_FLAG_SOM | MCTP_HDR_FLAG_EOM);
558 tag = (hdr->flags_seq_tag >> MCTP_HDR_TAG_SHIFT) & MCTP_HDR_TAG_MASK;
559 seq = (hdr->flags_seq_tag >> MCTP_HDR_SEQ_SHIFT) & MCTP_HDR_SEQ_MASK;
Andrew Jeffery7f7fdc12023-05-12 15:56:47 +0930560 tag_owner = (hdr->flags_seq_tag >> MCTP_HDR_TO_SHIFT) &
561 MCTP_HDR_TO_MASK;
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800562
563 switch (flags) {
564 case MCTP_HDR_FLAG_SOM | MCTP_HDR_FLAG_EOM:
565 /* single-packet message - send straight up to rx function,
566 * no need to create a message context */
567 len = pkt->end - pkt->mctp_hdr_off - sizeof(struct mctp_hdr);
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800568 p = mctp_msg_dup(pkt->data + pkt->mctp_hdr_off +
569 sizeof(struct mctp_hdr),
570 len, mctp);
571 if (p) {
572 mctp_rx(mctp, bus, hdr->src, hdr->dest, tag_owner, tag,
573 p, len);
574 __mctp_msg_free(p, mctp);
575 }
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800576 break;
577
578 case MCTP_HDR_FLAG_SOM:
579 /* start of a new message - start the new context for
580 * future message reception. If an existing context is
581 * already present, drop it. */
Jeremy Kerr1a4ec3c2019-09-03 11:01:50 +0800582 ctx = mctp_msg_ctx_lookup(mctp, hdr->src, hdr->dest, tag);
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800583 if (ctx) {
584 mctp_msg_ctx_reset(ctx);
585 } else {
Patrick Williamsa721c2d2022-12-04 14:30:26 -0600586 ctx = mctp_msg_ctx_create(mctp, hdr->src, hdr->dest,
587 tag);
Sumanth Bhat34d4c962021-06-16 12:50:48 +0530588 /* If context creation fails due to exhaution of contexts we
589 * can support, drop the packet */
590 if (!ctx) {
591 mctp_prdebug("Context buffers exhausted.");
592 goto out;
593 }
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800594 }
595
Sumanth Bhat69f545f2021-05-18 09:16:43 +0000596 /* Save the fragment size, subsequent middle fragments
597 * should of the same size */
598 ctx->fragment_size = mctp_pktbuf_size(pkt);
599
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800600 rc = mctp_msg_ctx_add_pkt(ctx, pkt);
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800601 if (rc) {
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800602 mctp_msg_ctx_drop(bus, ctx);
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800603 } else {
604 ctx->last_seq = seq;
605 }
606
607 break;
608
609 case MCTP_HDR_FLAG_EOM:
Jeremy Kerr1a4ec3c2019-09-03 11:01:50 +0800610 ctx = mctp_msg_ctx_lookup(mctp, hdr->src, hdr->dest, tag);
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800611 if (!ctx)
Jeremy Kerrc1693af2019-08-05 14:30:59 +0800612 goto out;
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800613
Ed Tanousc2def9f2019-02-21 08:33:08 -0800614 exp_seq = (ctx->last_seq + 1) % 4;
615
616 if (exp_seq != seq) {
617 mctp_prdebug(
618 "Sequence number %d does not match expected %d",
619 seq, exp_seq);
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800620 mctp_msg_ctx_drop(bus, ctx);
Jeremy Kerrc1693af2019-08-05 14:30:59 +0800621 goto out;
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800622 }
623
Sumanth Bhat69f545f2021-05-18 09:16:43 +0000624 len = mctp_pktbuf_size(pkt);
625
626 if (len > ctx->fragment_size) {
Patrick Williamsa721c2d2022-12-04 14:30:26 -0600627 mctp_prdebug("Unexpected fragment size. Expected"
628 " less than %zu, received = %zu",
629 ctx->fragment_size, len);
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800630 mctp_msg_ctx_drop(bus, ctx);
Sumanth Bhat69f545f2021-05-18 09:16:43 +0000631 goto out;
632 }
633
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800634 rc = mctp_msg_ctx_add_pkt(ctx, pkt);
Jeremy Kerr1a4ec3c2019-09-03 11:01:50 +0800635 if (!rc)
Sumanth Bhatf39c3852022-01-10 17:04:10 +0530636 mctp_rx(mctp, bus, ctx->src, ctx->dest, tag_owner, tag,
637 ctx->buf, ctx->buf_size);
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800638
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800639 mctp_msg_ctx_drop(bus, ctx);
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800640 break;
Ed Tanousc2def9f2019-02-21 08:33:08 -0800641
642 case 0:
643 /* Neither SOM nor EOM */
Patrick Williamsa721c2d2022-12-04 14:30:26 -0600644 ctx = mctp_msg_ctx_lookup(mctp, hdr->src, hdr->dest, tag);
Ed Tanousc2def9f2019-02-21 08:33:08 -0800645 if (!ctx)
Jeremy Kerrc1693af2019-08-05 14:30:59 +0800646 goto out;
Ed Tanousc2def9f2019-02-21 08:33:08 -0800647
648 exp_seq = (ctx->last_seq + 1) % 4;
649 if (exp_seq != seq) {
650 mctp_prdebug(
651 "Sequence number %d does not match expected %d",
652 seq, exp_seq);
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800653 mctp_msg_ctx_drop(bus, ctx);
Jeremy Kerrc1693af2019-08-05 14:30:59 +0800654 goto out;
Ed Tanousc2def9f2019-02-21 08:33:08 -0800655 }
656
Sumanth Bhat69f545f2021-05-18 09:16:43 +0000657 len = mctp_pktbuf_size(pkt);
658
659 if (len != ctx->fragment_size) {
Patrick Williamsa721c2d2022-12-04 14:30:26 -0600660 mctp_prdebug("Unexpected fragment size. Expected = %zu "
661 "received = %zu",
662 ctx->fragment_size, len);
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800663 mctp_msg_ctx_drop(bus, ctx);
Sumanth Bhat69f545f2021-05-18 09:16:43 +0000664 goto out;
665 }
666
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800667 rc = mctp_msg_ctx_add_pkt(ctx, pkt);
Ed Tanousc2def9f2019-02-21 08:33:08 -0800668 if (rc) {
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800669 mctp_msg_ctx_drop(bus, ctx);
Jeremy Kerrc1693af2019-08-05 14:30:59 +0800670 goto out;
Ed Tanousc2def9f2019-02-21 08:33:08 -0800671 }
672 ctx->last_seq = seq;
673
674 break;
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800675 }
Jeremy Kerrc1693af2019-08-05 14:30:59 +0800676out:
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800677 return;
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800678}
679
Patrick Williamsa721c2d2022-12-04 14:30:26 -0600680static int mctp_packet_tx(struct mctp_bus *bus, struct mctp_pktbuf *pkt)
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800681{
Andrew Jeffery5d3d4e62021-08-20 16:44:40 +0930682 struct mctp *mctp = bus->binding->mctp;
683
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800684 if (bus->state != mctp_bus_state_tx_enabled) {
685 mctp_prdebug("tx with bus disabled");
Jeremy Kerr1cd31182019-02-27 18:01:00 +0800686 return -1;
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800687 }
Jeremy Kerr1cd31182019-02-27 18:01:00 +0800688
Andrew Jeffery5d3d4e62021-08-20 16:44:40 +0930689 if (mctp->capture)
Rashmica Guptaf2988972022-11-09 12:26:44 +1100690 mctp->capture(pkt, MCTP_MESSAGE_CAPTURE_OUTGOING,
691 mctp->capture_data);
Andrew Jeffery5d3d4e62021-08-20 16:44:40 +0930692
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800693 return bus->binding->tx(bus->binding, pkt);
694}
695
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800696/* Returns a pointer to the binding's tx_storage */
697static struct mctp_pktbuf *mctp_next_tx_pkt(struct mctp_bus *bus)
698{
699 if (!bus->tx_msg) {
700 return NULL;
701 }
702
703 size_t p = bus->tx_msgpos;
704 size_t msg_len = bus->tx_msglen;
705 size_t payload_len = msg_len - p;
706 size_t max_payload_len = MCTP_BODY_SIZE(bus->binding->pkt_size);
707 if (payload_len > max_payload_len)
708 payload_len = max_payload_len;
709
710 struct mctp_pktbuf *pkt =
711 mctp_pktbuf_init(bus->binding, bus->binding->tx_storage);
712 struct mctp_hdr *hdr = mctp_pktbuf_hdr(pkt);
713
714 hdr->ver = bus->binding->version & 0xf;
715 hdr->dest = bus->tx_dest;
716 hdr->src = bus->tx_src;
717 hdr->flags_seq_tag = (bus->tx_to << MCTP_HDR_TO_SHIFT) |
718 (bus->tx_tag << MCTP_HDR_TAG_SHIFT);
719
720 if (p == 0)
721 hdr->flags_seq_tag |= MCTP_HDR_FLAG_SOM;
722 if (p + payload_len >= msg_len)
723 hdr->flags_seq_tag |= MCTP_HDR_FLAG_EOM;
724 hdr->flags_seq_tag |= bus->tx_seq << MCTP_HDR_SEQ_SHIFT;
725
726 memcpy(mctp_pktbuf_data(pkt), (uint8_t *)bus->tx_msg + p, payload_len);
727 pkt->end = pkt->start + sizeof(*hdr) + payload_len;
728 bus->tx_pktlen = payload_len;
729
730 mctp_prdebug(
731 "tx dst %d tag %d payload len %zu seq %d. msg pos %zu len %zu",
732 hdr->dest, bus->tx_tag, payload_len, bus->tx_seq, p, msg_len);
733
734 return pkt;
735}
736
737/* Called when a packet has successfully been sent */
738static void mctp_tx_complete(struct mctp_bus *bus)
739{
740 if (!bus->tx_msg) {
741 mctp_prdebug("tx complete no message");
742 return;
743 }
744
745 bus->tx_seq = (bus->tx_seq + 1) & MCTP_HDR_SEQ_MASK;
746 bus->tx_msgpos += bus->tx_pktlen;
747
748 if (bus->tx_msgpos >= bus->tx_msglen) {
749 __mctp_msg_free(bus->tx_msg, bus->binding->mctp);
750 bus->tx_msg = NULL;
751 }
752}
753
Jeremy Kerrcc2458d2019-03-01 08:23:33 +0800754static void mctp_send_tx_queue(struct mctp_bus *bus)
Jeremy Kerr1cd31182019-02-27 18:01:00 +0800755{
756 struct mctp_pktbuf *pkt;
757
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800758 while (bus->tx_msg && bus->state == mctp_bus_state_tx_enabled) {
Jeremy Kerr1cd31182019-02-27 18:01:00 +0800759 int rc;
760
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800761 pkt = mctp_next_tx_pkt(bus);
762
Jeremy Kerr1cd31182019-02-27 18:01:00 +0800763 rc = mctp_packet_tx(bus, pkt);
Andrew Jeffery0721f582022-09-29 12:12:39 +0930764 switch (rc) {
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800765 /* If transmission succeded */
Andrew Jeffery0721f582022-09-29 12:12:39 +0930766 case 0:
Andrew Jeffery0721f582022-09-29 12:12:39 +0930767 /* Drop the packet */
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800768 mctp_tx_complete(bus);
Jeremy Kerr1cd31182019-02-27 18:01:00 +0800769 break;
770
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800771 /* If the binding was busy */
Andrew Jeffery0721f582022-09-29 12:12:39 +0930772 case -EBUSY:
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800773 /* Keep the packet for next try */
774 mctp_prdebug("tx EBUSY");
775 return;
776
Andrew Jeffery0721f582022-09-29 12:12:39 +0930777 /* Some other unknown error occurred */
778 default:
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800779 /* Drop the packet */
780 mctp_prdebug("tx drop %d", rc);
781 mctp_tx_complete(bus);
782 return;
Andrew Jeffery0721f582022-09-29 12:12:39 +0930783 };
Jeremy Kerr1cd31182019-02-27 18:01:00 +0800784 }
Jeremy Kerr1cd31182019-02-27 18:01:00 +0800785}
786
787void mctp_binding_set_tx_enabled(struct mctp_binding *binding, bool enable)
788{
789 struct mctp_bus *bus = binding->bus;
Andrew Jefferyc61501c2021-01-27 23:24:18 +1030790
Patrick Williamsa721c2d2022-12-04 14:30:26 -0600791 switch (bus->state) {
Andrew Jefferyc61501c2021-01-27 23:24:18 +1030792 case mctp_bus_state_constructed:
793 if (!enable)
794 return;
795
Andrew Jeffery1fa707e2021-01-28 15:22:11 +1030796 if (binding->pkt_size < MCTP_PACKET_SIZE(MCTP_BTU)) {
Patrick Williamsa721c2d2022-12-04 14:30:26 -0600797 mctp_prerr(
798 "Cannot start %s binding with invalid MTU: %zu",
799 binding->name,
800 MCTP_BODY_SIZE(binding->pkt_size));
Andrew Jeffery1fa707e2021-01-28 15:22:11 +1030801 return;
802 }
803
Andrew Jefferyc61501c2021-01-27 23:24:18 +1030804 bus->state = mctp_bus_state_tx_enabled;
805 mctp_prinfo("%s binding started", binding->name);
806 return;
807 case mctp_bus_state_tx_enabled:
808 if (enable)
809 return;
810
811 bus->state = mctp_bus_state_tx_disabled;
812 mctp_prdebug("%s binding Tx disabled", binding->name);
813 return;
814 case mctp_bus_state_tx_disabled:
815 if (!enable)
816 return;
817
818 bus->state = mctp_bus_state_tx_enabled;
819 mctp_prdebug("%s binding Tx enabled", binding->name);
Jeremy Kerrcc2458d2019-03-01 08:23:33 +0800820 mctp_send_tx_queue(bus);
Andrew Jefferyc61501c2021-01-27 23:24:18 +1030821 return;
822 }
Jeremy Kerr1cd31182019-02-27 18:01:00 +0800823}
824
Andrew Jefferyb93b6112020-06-05 14:13:44 +0930825static int mctp_message_tx_on_bus(struct mctp_bus *bus, mctp_eid_t src,
Sumanth Bhatf39c3852022-01-10 17:04:10 +0530826 mctp_eid_t dest, bool tag_owner,
827 uint8_t msg_tag, void *msg, size_t msg_len)
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800828{
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800829 size_t max_payload_len;
830 int rc;
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800831
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800832 if (bus->state == mctp_bus_state_constructed) {
833 rc = -ENXIO;
834 goto err;
835 }
Andrew Jefferyc61501c2021-01-27 23:24:18 +1030836
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800837 if ((msg_tag & MCTP_HDR_TAG_MASK) != msg_tag) {
838 rc = -EINVAL;
839 goto err;
840 }
Sumanth Bhatf39c3852022-01-10 17:04:10 +0530841
Andrew Jeffery1fa707e2021-01-28 15:22:11 +1030842 max_payload_len = MCTP_BODY_SIZE(bus->binding->pkt_size);
843
844 {
845 const bool valid_mtu = max_payload_len >= MCTP_BTU;
846 assert(valid_mtu);
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800847 if (!valid_mtu) {
848 rc = -EINVAL;
849 goto err;
850 }
Andrew Jeffery1fa707e2021-01-28 15:22:11 +1030851 }
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800852
Patrick Williamsa721c2d2022-12-04 14:30:26 -0600853 mctp_prdebug(
854 "%s: Generating packets for transmission of %zu byte message from %hhu to %hhu",
855 __func__, msg_len, src, dest);
Andrew Jeffery298865f2020-02-06 11:51:29 +1030856
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800857 if (bus->tx_msg) {
858 mctp_prdebug("Bus busy");
859 rc = -EBUSY;
860 goto err;
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800861 }
862
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800863 /* Take the message to send */
864 bus->tx_msg = msg;
865 bus->tx_msglen = msg_len;
866 bus->tx_msgpos = 0;
867 /* bus->tx_seq is allowed to continue from previous message */
868 bus->tx_src = src;
869 bus->tx_dest = dest;
870 bus->tx_to = tag_owner;
871 bus->tx_tag = msg_tag;
Andrew Jeffery298865f2020-02-06 11:51:29 +1030872
Jeremy Kerrcc2458d2019-03-01 08:23:33 +0800873 mctp_send_tx_queue(bus);
Jeremy Kerr24db71f2019-02-07 21:37:35 +0800874 return 0;
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800875
876err:
877 __mctp_msg_free(msg, bus->binding->mctp);
878 return rc;
Jeremy Kerr4cdc2002019-02-07 16:49:12 +0800879}
Jeremy Kerr1a4ec3c2019-09-03 11:01:50 +0800880
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800881int mctp_message_tx_alloced(struct mctp *mctp, mctp_eid_t eid, bool tag_owner,
882 uint8_t msg_tag, void *msg, size_t msg_len)
Jeremy Kerr1a4ec3c2019-09-03 11:01:50 +0800883{
884 struct mctp_bus *bus;
885
Sumanth Bhatf39c3852022-01-10 17:04:10 +0530886 /* TODO: Protect against same tag being used across
887 * different callers */
888 if ((msg_tag & MCTP_HDR_TAG_MASK) != msg_tag) {
889 mctp_prerr("Incorrect message tag %u passed.", msg_tag);
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800890 __mctp_msg_free(msg, mctp);
Sumanth Bhatf39c3852022-01-10 17:04:10 +0530891 return -EINVAL;
892 }
893
Jeremy Kerr1a4ec3c2019-09-03 11:01:50 +0800894 bus = find_bus_for_eid(mctp, eid);
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800895 if (!bus) {
896 __mctp_msg_free(msg, mctp);
Brad Bishop663ec392021-10-07 21:16:48 -0400897 return 0;
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800898 }
Brad Bishop663ec392021-10-07 21:16:48 -0400899
Sumanth Bhatf39c3852022-01-10 17:04:10 +0530900 return mctp_message_tx_on_bus(bus, bus->eid, eid, tag_owner, msg_tag,
901 msg, msg_len);
Jeremy Kerr1a4ec3c2019-09-03 11:01:50 +0800902}
Matt Johnston4a09e1d2024-09-13 14:55:58 +0800903
904int mctp_message_tx(struct mctp *mctp, mctp_eid_t eid, bool tag_owner,
905 uint8_t msg_tag, const void *msg, size_t msg_len)
906{
907 void *copy = mctp_msg_dup(msg, msg_len, mctp);
908 if (!copy) {
909 return -ENOMEM;
910 }
911
912 return mctp_message_tx_alloced(mctp, eid, tag_owner, msg_tag, copy,
913 msg_len);
914}
915
Matt Johnston44e64df2024-11-05 16:59:42 +0800916void mctp_set_now_op(struct mctp *mctp, uint64_t (*now)(void *), void *ctx)
917{
918 assert(now);
919 mctp->platform_now = now;
920 mctp->platform_now_ctx = ctx;
921}
922
923uint64_t mctp_now(struct mctp *mctp)
924{
925 assert(mctp->platform_now);
926 return mctp->platform_now(mctp->platform_now_ctx);
927}
928
Matt Johnston61c95992024-09-16 16:50:35 +0800929static void mctp_dealloc_tag(struct mctp_bus *bus, mctp_eid_t local,
930 mctp_eid_t remote, uint8_t tag)
931{
932 struct mctp *mctp = bus->binding->mctp;
Matt Johnston44e64df2024-11-05 16:59:42 +0800933 if (local == 0) {
Matt Johnston61c95992024-09-16 16:50:35 +0800934 return;
935 }
936
937 for (size_t i = 0; i < ARRAY_SIZE(mctp->req_tags); i++) {
938 struct mctp_req_tag *r = &mctp->req_tags[i];
939 if (r->local == local && r->remote == remote && r->tag == tag) {
940 r->local = 0;
941 r->remote = 0;
942 r->tag = 0;
Matt Johnston44e64df2024-11-05 16:59:42 +0800943 r->expiry = 0;
Matt Johnston61c95992024-09-16 16:50:35 +0800944 return;
945 }
946 }
947}
948
949static int mctp_alloc_tag(struct mctp *mctp, mctp_eid_t local,
950 mctp_eid_t remote, uint8_t *ret_tag)
951{
952 assert(local != 0);
Matt Johnston44e64df2024-11-05 16:59:42 +0800953 uint64_t now = mctp_now(mctp);
Matt Johnston61c95992024-09-16 16:50:35 +0800954
955 uint8_t used = 0;
956 struct mctp_req_tag *spare = NULL;
957 /* Find which tags and slots are used/spare */
958 for (size_t i = 0; i < ARRAY_SIZE(mctp->req_tags); i++) {
959 struct mctp_req_tag *r = &mctp->req_tags[i];
Matt Johnston44e64df2024-11-05 16:59:42 +0800960 if (r->local == 0 || r->expiry < now) {
Matt Johnston61c95992024-09-16 16:50:35 +0800961 spare = r;
962 } else {
Matt Johnston61c95992024-09-16 16:50:35 +0800963 if (r->local == local && r->remote == remote) {
964 used |= 1 << r->tag;
965 }
966 }
967 }
968
969 if (spare == NULL) {
970 // All req_tag slots are in-use
971 return -EBUSY;
972 }
973
974 for (uint8_t t = 0; t < 8; t++) {
975 uint8_t tag = (t + mctp->tag_round_robin) % 8;
976 if ((used & 1 << tag) == 0) {
977 spare->local = local;
978 spare->remote = remote;
979 spare->tag = tag;
Matt Johnston44e64df2024-11-05 16:59:42 +0800980 spare->expiry = now + MCTP_TAG_TIMEOUT;
Matt Johnston61c95992024-09-16 16:50:35 +0800981 *ret_tag = tag;
982 mctp->tag_round_robin = (tag + 1) % 8;
983 return 0;
984 }
985 }
986
987 // All 8 tags are used for this src/dest pair
988 return -EBUSY;
989}
990
991int mctp_message_tx_request(struct mctp *mctp, mctp_eid_t eid, void *msg,
992 size_t msg_len, uint8_t *ret_alloc_msg_tag)
993{
994 int rc;
995 struct mctp_bus *bus;
996
997 bus = find_bus_for_eid(mctp, eid);
998 if (!bus) {
999 __mctp_msg_free(msg, mctp);
1000 return 0;
1001 }
1002
1003 uint8_t alloc_tag;
1004 rc = mctp_alloc_tag(mctp, bus->eid, eid, &alloc_tag);
1005 if (rc) {
1006 mctp_prdebug("Failed allocating tag");
1007 __mctp_msg_free(msg, mctp);
1008 return rc;
1009 }
1010
1011 if (ret_alloc_msg_tag) {
1012 *ret_alloc_msg_tag = alloc_tag;
1013 }
1014
1015 return mctp_message_tx_alloced(mctp, eid, true, alloc_tag, msg,
1016 msg_len);
1017}
1018
Matt Johnston4a09e1d2024-09-13 14:55:58 +08001019bool mctp_is_tx_ready(struct mctp *mctp, mctp_eid_t eid)
1020{
1021 struct mctp_bus *bus;
1022
1023 bus = find_bus_for_eid(mctp, eid);
1024 if (!bus) {
1025 return true;
1026 }
1027 return bus->tx_msg == NULL;
1028}
1029
1030void *mctp_get_alloc_ctx(struct mctp *mctp)
1031{
1032 return mctp->alloc_ctx;
1033}
1034
1035void mctp_set_alloc_ctx(struct mctp *mctp, void *ctx)
1036{
1037 mctp->alloc_ctx = ctx;
1038}