-
Notifications
You must be signed in to change notification settings - Fork 25
/
core.c
1063 lines (886 loc) · 23.7 KB
/
core.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later */
#include <assert.h>
#include <errno.h>
#include <stdarg.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#undef pr_fmt
#define pr_fmt(fmt) "core: " fmt
#include "libmctp.h"
#include "libmctp-alloc.h"
#include "libmctp-log.h"
#include "libmctp-cmds.h"
#include "range.h"
#include "compiler.h"
#include "core-internal.h"
#include "control.h"
#if MCTP_DEFAULT_CLOCK_GETTIME
#include <time.h>
#endif
#ifndef ARRAY_SIZE
#define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0]))
#endif
static int mctp_message_tx_on_bus(struct mctp_bus *bus, mctp_eid_t src,
mctp_eid_t dest, bool tag_owner,
uint8_t msg_tag, void *msg, size_t msg_len);
static void mctp_dealloc_tag(struct mctp_bus *bus, mctp_eid_t local,
mctp_eid_t remote, uint8_t tag);
struct mctp_pktbuf *mctp_pktbuf_alloc(struct mctp_binding *binding, size_t len)
{
size_t size =
binding->pkt_size + binding->pkt_header + binding->pkt_trailer;
if (len > size) {
return NULL;
}
void *storage = __mctp_alloc(size + sizeof(struct mctp_pktbuf));
if (!storage) {
return NULL;
}
struct mctp_pktbuf *pkt = mctp_pktbuf_init(binding, storage);
pkt->alloc = true;
pkt->end = pkt->start + len;
return pkt;
}
void mctp_pktbuf_free(struct mctp_pktbuf *pkt)
{
if (pkt->alloc) {
__mctp_free(pkt);
} else {
mctp_prdebug("pktbuf_free called for non-alloced");
}
}
struct mctp_pktbuf *mctp_pktbuf_init(struct mctp_binding *binding,
void *storage)
{
size_t size =
binding->pkt_size + binding->pkt_header + binding->pkt_trailer;
struct mctp_pktbuf *buf = (struct mctp_pktbuf *)storage;
buf->size = size;
buf->start = binding->pkt_header;
buf->end = buf->start;
buf->mctp_hdr_off = buf->start;
buf->alloc = false;
return buf;
}
struct mctp_hdr *mctp_pktbuf_hdr(struct mctp_pktbuf *pkt)
{
return (struct mctp_hdr *)(pkt->data + pkt->mctp_hdr_off);
}
void *mctp_pktbuf_data(struct mctp_pktbuf *pkt)
{
return pkt->data + pkt->mctp_hdr_off + sizeof(struct mctp_hdr);
}
size_t mctp_pktbuf_size(const struct mctp_pktbuf *pkt)
{
return pkt->end - pkt->start;
}
void *mctp_pktbuf_alloc_start(struct mctp_pktbuf *pkt, size_t size)
{
assert(size <= pkt->start);
pkt->start -= size;
return pkt->data + pkt->start;
}
void *mctp_pktbuf_alloc_end(struct mctp_pktbuf *pkt, size_t size)
{
void *buf;
assert(size <= (pkt->size - pkt->end));
buf = pkt->data + pkt->end;
pkt->end += size;
return buf;
}
int mctp_pktbuf_push(struct mctp_pktbuf *pkt, const void *data, size_t len)
{
void *p;
if (pkt->end + len > pkt->size)
return -1;
p = pkt->data + pkt->end;
pkt->end += len;
memcpy(p, data, len);
return 0;
}
void *mctp_pktbuf_pop(struct mctp_pktbuf *pkt, size_t len)
{
if (len > mctp_pktbuf_size(pkt))
return NULL;
pkt->end -= len;
return pkt->data + pkt->end;
}
/* Allocate a duplicate of the message and copy it */
static void *mctp_msg_dup(const void *msg, size_t msg_len, struct mctp *mctp)
{
void *copy = __mctp_msg_alloc(msg_len, mctp);
if (!copy) {
mctp_prdebug("msg dup len %zu failed", msg_len);
return NULL;
}
memcpy(copy, msg, msg_len);
return copy;
}
/* Message reassembly */
static struct mctp_msg_ctx *mctp_msg_ctx_lookup(struct mctp *mctp, uint8_t src,
uint8_t dest, uint8_t tag)
{
unsigned int i;
/* @todo: better lookup, if we add support for more outstanding
* message contexts */
for (i = 0; i < ARRAY_SIZE(mctp->msg_ctxs); i++) {
struct mctp_msg_ctx *ctx = &mctp->msg_ctxs[i];
if (ctx->buf && ctx->src == src && ctx->dest == dest &&
ctx->tag == tag)
return ctx;
}
return NULL;
}
static struct mctp_msg_ctx *mctp_msg_ctx_create(struct mctp *mctp, uint8_t src,
uint8_t dest, uint8_t tag)
{
struct mctp_msg_ctx *ctx = NULL;
unsigned int i;
for (i = 0; i < ARRAY_SIZE(mctp->msg_ctxs); i++) {
struct mctp_msg_ctx *tmp = &mctp->msg_ctxs[i];
if (!tmp->buf) {
ctx = tmp;
break;
}
}
if (!ctx)
return NULL;
ctx->src = src;
ctx->dest = dest;
ctx->tag = tag;
ctx->buf_size = 0;
ctx->buf_alloc_size = mctp->max_message_size;
ctx->buf = __mctp_msg_alloc(ctx->buf_alloc_size, mctp);
if (!ctx->buf) {
return NULL;
}
return ctx;
}
static void mctp_msg_ctx_drop(struct mctp_bus *bus, struct mctp_msg_ctx *ctx)
{
/* Free and mark as unused */
__mctp_msg_free(ctx->buf, bus->mctp);
ctx->buf = NULL;
}
static void mctp_msg_ctx_reset(struct mctp_msg_ctx *ctx)
{
ctx->buf_size = 0;
ctx->fragment_size = 0;
}
static int mctp_msg_ctx_add_pkt(struct mctp_msg_ctx *ctx,
struct mctp_pktbuf *pkt)
{
size_t len;
len = mctp_pktbuf_size(pkt) - sizeof(struct mctp_hdr);
if (len + ctx->buf_size < ctx->buf_size) {
return -1;
}
if (ctx->buf_size + len > ctx->buf_alloc_size) {
return -1;
}
memcpy((uint8_t *)ctx->buf + ctx->buf_size, mctp_pktbuf_data(pkt), len);
ctx->buf_size += len;
return 0;
}
/* Core API functions */
struct mctp *mctp_init(void)
{
struct mctp *mctp;
mctp = __mctp_alloc(sizeof(*mctp));
if (!mctp)
return NULL;
mctp_setup(mctp, sizeof(*mctp));
return mctp;
}
#if MCTP_DEFAULT_CLOCK_GETTIME
static uint64_t mctp_default_now(void *ctx __attribute__((unused)))
{
struct timespec tp;
int rc = clock_gettime(CLOCK_MONOTONIC, &tp);
if (rc) {
/* Should not be possible */
return 0;
}
return (uint64_t)tp.tv_sec * 1000 + tp.tv_nsec / 1000000;
}
#endif
int mctp_setup(struct mctp *mctp, size_t struct_mctp_size)
{
if (struct_mctp_size < sizeof(struct mctp)) {
mctp_prdebug("Mismatching struct mctp");
return -EINVAL;
}
memset(mctp, 0, sizeof(*mctp));
mctp->max_message_size = MCTP_MAX_MESSAGE_SIZE;
#if MCTP_DEFAULT_CLOCK_GETTIME
mctp->platform_now = mctp_default_now;
#endif
#if MCTP_CONTROL_HANDLER
mctp_control_add_type(mctp, MCTP_CTRL_HDR_MSG_TYPE);
#endif
return 0;
}
void mctp_set_max_message_size(struct mctp *mctp, size_t message_size)
{
mctp->max_message_size = message_size;
}
void mctp_set_capture_handler(struct mctp *mctp, mctp_capture_fn fn, void *user)
{
mctp->capture = fn;
mctp->capture_data = user;
}
static void mctp_bus_destroy(struct mctp_bus *bus, struct mctp *mctp)
{
if (bus->tx_msg) {
__mctp_msg_free(bus->tx_msg, mctp);
bus->tx_msg = NULL;
}
}
void mctp_cleanup(struct mctp *mctp)
{
size_t i;
/* Cleanup message assembly contexts */
static_assert(ARRAY_SIZE(mctp->msg_ctxs) < SIZE_MAX, "size");
for (i = 0; i < ARRAY_SIZE(mctp->msg_ctxs); i++) {
struct mctp_msg_ctx *tmp = &mctp->msg_ctxs[i];
if (tmp->buf)
__mctp_msg_free(tmp->buf, mctp);
}
while (mctp->n_busses--)
mctp_bus_destroy(&mctp->busses[mctp->n_busses], mctp);
}
void mctp_destroy(struct mctp *mctp)
{
mctp_cleanup(mctp);
__mctp_free(mctp);
}
int mctp_set_rx_all(struct mctp *mctp, mctp_rx_fn fn, void *data)
{
mctp->message_rx = fn;
mctp->message_rx_data = data;
return 0;
}
static struct mctp_bus *find_bus_for_eid(struct mctp *mctp, mctp_eid_t dest
__attribute__((unused)))
{
if (mctp->n_busses == 0)
return NULL;
/* for now, just use the first bus. For full routing support,
* we will need a table of neighbours */
return &mctp->busses[0];
}
int mctp_register_bus(struct mctp *mctp, struct mctp_binding *binding,
mctp_eid_t eid)
{
int rc = 0;
/* todo: multiple busses */
static_assert(MCTP_MAX_BUSSES >= 1, "need a bus");
assert(mctp->n_busses == 0);
mctp->n_busses = 1;
assert(binding->tx_storage);
memset(mctp->busses, 0, sizeof(struct mctp_bus));
mctp->busses[0].mctp = mctp;
mctp->busses[0].binding = binding;
mctp->busses[0].eid = eid;
binding->bus = &mctp->busses[0];
binding->mctp = mctp;
mctp->route_policy = ROUTE_ENDPOINT;
if (binding->start) {
rc = binding->start(binding);
if (rc < 0) {
mctp_prerr("Failed to start binding: %d", rc);
binding->bus = NULL;
mctp->n_busses = 0;
}
}
return rc;
}
int mctp_bus_set_eid(struct mctp_binding *binding, mctp_eid_t eid)
{
if (eid < 8 || eid == 0xff) {
return -EINVAL;
}
binding->bus->eid = eid;
return 0;
}
void mctp_unregister_bus(struct mctp *mctp, struct mctp_binding *binding)
{
/*
* We only support one bus right now; once the call completes we will
* have no more busses
*/
mctp->n_busses = 0;
binding->mctp = NULL;
binding->bus = NULL;
}
int mctp_bridge_busses(struct mctp *mctp, struct mctp_binding *b1,
struct mctp_binding *b2)
{
int rc = 0;
assert(b1->tx_storage);
assert(b2->tx_storage);
assert(mctp->n_busses == 0);
assert(MCTP_MAX_BUSSES >= 2);
memset(mctp->busses, 0, 2 * sizeof(struct mctp_bus));
mctp->n_busses = 2;
mctp->busses[0].binding = b1;
b1->bus = &mctp->busses[0];
b1->mctp = mctp;
mctp->busses[1].binding = b2;
b2->bus = &mctp->busses[1];
b2->mctp = mctp;
mctp->route_policy = ROUTE_BRIDGE;
if (b1->start) {
rc = b1->start(b1);
if (rc < 0) {
mctp_prerr("Failed to start bridged bus %s: %d",
b1->name, rc);
goto done;
}
}
if (b2->start) {
rc = b2->start(b2);
if (rc < 0) {
mctp_prerr("Failed to start bridged bus %s: %d",
b2->name, rc);
goto done;
}
}
done:
return rc;
}
static inline bool mctp_ctrl_cmd_is_transport(struct mctp_ctrl_msg_hdr *hdr)
{
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wtype-limits"
return ((hdr->command_code >= MCTP_CTRL_CMD_FIRST_TRANSPORT) &&
(hdr->command_code <= MCTP_CTRL_CMD_LAST_TRANSPORT));
#pragma GCC diagnostic pop
}
static bool mctp_ctrl_handle_msg(struct mctp_bus *bus, mctp_eid_t src,
uint8_t msg_tag, bool tag_owner, void *buffer,
size_t length)
{
struct mctp_ctrl_msg_hdr *msg_hdr = buffer;
/*
* Control message is received. If a transport control message handler
* is provided, it will called. If there is no dedicated handler, this
* function returns false and data can be handled by the generic
* message handler. The transport control message handler will be
* provided with messages in the command range 0xF0 - 0xFF.
*/
if (mctp_ctrl_cmd_is_transport(msg_hdr)) {
if (bus->binding->control_rx != NULL) {
/* MCTP bus binding handler */
bus->binding->control_rx(src, msg_tag, tag_owner,
bus->binding->control_rx_data,
buffer, length);
return true;
}
} else {
#if MCTP_CONTROL_HANDLER
/* libmctp will handle control requests */
return mctp_control_handler(bus, src, tag_owner, msg_tag,
buffer, length);
#endif
}
/*
* Command was not handled, due to lack of specific callback.
* It will be passed to regular message_rx handler.
*/
return false;
}
static inline bool mctp_rx_dest_is_local(struct mctp_bus *bus, mctp_eid_t dest)
{
return dest == bus->eid || dest == MCTP_EID_NULL ||
dest == MCTP_EID_BROADCAST;
}
static inline bool mctp_ctrl_cmd_is_request(struct mctp_ctrl_msg_hdr *hdr)
{
return hdr->ic_msg_type == MCTP_CTRL_HDR_MSG_TYPE &&
hdr->rq_dgram_inst & MCTP_CTRL_HDR_FLAG_REQUEST;
}
/*
* Receive the complete MCTP message and route it.
* Asserts:
* 'buf' is not NULL.
*/
static void mctp_rx(struct mctp *mctp, struct mctp_bus *bus, mctp_eid_t src,
mctp_eid_t dest, bool tag_owner, uint8_t msg_tag, void *buf,
size_t len)
{
assert(buf != NULL);
if (mctp->route_policy == ROUTE_ENDPOINT &&
mctp_rx_dest_is_local(bus, dest)) {
/* Note responses to allocated tags */
if (!tag_owner) {
mctp_dealloc_tag(bus, dest, src, msg_tag);
}
/* Handle MCTP Control Messages: */
if (len >= sizeof(struct mctp_ctrl_msg_hdr)) {
struct mctp_ctrl_msg_hdr *msg_hdr = buf;
/*
* Identify if this is a control request message.
* See DSP0236 v1.3.0 sec. 11.5.
*/
if (mctp_ctrl_cmd_is_request(msg_hdr)) {
bool handled;
handled = mctp_ctrl_handle_msg(
bus, src, msg_tag, tag_owner, buf, len);
if (handled)
return;
}
}
if (mctp->message_rx)
mctp->message_rx(src, tag_owner, msg_tag,
mctp->message_rx_data, buf, len);
}
if (mctp->route_policy == ROUTE_BRIDGE) {
int i;
for (i = 0; i < mctp->n_busses; i++) {
struct mctp_bus *dest_bus = &mctp->busses[i];
if (dest_bus == bus)
continue;
void *copy = mctp_msg_dup(buf, len, mctp);
if (!copy) {
return;
}
mctp_message_tx_on_bus(dest_bus, src, dest, tag_owner,
msg_tag, copy, len);
}
}
}
void mctp_bus_rx(struct mctp_binding *binding, struct mctp_pktbuf *pkt)
{
struct mctp_bus *bus = binding->bus;
struct mctp *mctp = binding->mctp;
uint8_t flags, exp_seq, seq, tag;
struct mctp_msg_ctx *ctx;
struct mctp_hdr *hdr;
bool tag_owner;
size_t len;
void *p;
int rc;
assert(bus);
/* Drop packet if it was smaller than mctp hdr size */
if (mctp_pktbuf_size(pkt) < sizeof(struct mctp_hdr))
goto out;
if (mctp->capture)
mctp->capture(pkt, MCTP_MESSAGE_CAPTURE_INCOMING,
mctp->capture_data);
hdr = mctp_pktbuf_hdr(pkt);
if (hdr->src == MCTP_EID_BROADCAST) {
/* drop packets with broadcast EID src */
goto out;
}
/* small optimisation: don't bother reassembly if we're going to
* drop the packet in mctp_rx anyway */
if (mctp->route_policy == ROUTE_ENDPOINT &&
!mctp_rx_dest_is_local(bus, hdr->dest))
goto out;
flags = hdr->flags_seq_tag & (MCTP_HDR_FLAG_SOM | MCTP_HDR_FLAG_EOM);
tag = (hdr->flags_seq_tag >> MCTP_HDR_TAG_SHIFT) & MCTP_HDR_TAG_MASK;
seq = (hdr->flags_seq_tag >> MCTP_HDR_SEQ_SHIFT) & MCTP_HDR_SEQ_MASK;
tag_owner = (hdr->flags_seq_tag >> MCTP_HDR_TO_SHIFT) &
MCTP_HDR_TO_MASK;
switch (flags) {
case MCTP_HDR_FLAG_SOM | MCTP_HDR_FLAG_EOM:
/* single-packet message - send straight up to rx function,
* no need to create a message context */
len = pkt->end - pkt->mctp_hdr_off - sizeof(struct mctp_hdr);
p = mctp_msg_dup(pkt->data + pkt->mctp_hdr_off +
sizeof(struct mctp_hdr),
len, mctp);
if (p) {
mctp_rx(mctp, bus, hdr->src, hdr->dest, tag_owner, tag,
p, len);
__mctp_msg_free(p, mctp);
}
break;
case MCTP_HDR_FLAG_SOM:
/* start of a new message - start the new context for
* future message reception. If an existing context is
* already present, drop it. */
ctx = mctp_msg_ctx_lookup(mctp, hdr->src, hdr->dest, tag);
if (ctx) {
mctp_msg_ctx_reset(ctx);
} else {
ctx = mctp_msg_ctx_create(mctp, hdr->src, hdr->dest,
tag);
/* If context creation fails due to exhaution of contexts we
* can support, drop the packet */
if (!ctx) {
mctp_prdebug("Context buffers exhausted.");
goto out;
}
}
/* Save the fragment size, subsequent middle fragments
* should of the same size */
ctx->fragment_size = mctp_pktbuf_size(pkt);
rc = mctp_msg_ctx_add_pkt(ctx, pkt);
if (rc) {
mctp_msg_ctx_drop(bus, ctx);
} else {
ctx->last_seq = seq;
}
break;
case MCTP_HDR_FLAG_EOM:
ctx = mctp_msg_ctx_lookup(mctp, hdr->src, hdr->dest, tag);
if (!ctx)
goto out;
exp_seq = (ctx->last_seq + 1) % 4;
if (exp_seq != seq) {
mctp_prdebug(
"Sequence number %d does not match expected %d",
seq, exp_seq);
mctp_msg_ctx_drop(bus, ctx);
goto out;
}
len = mctp_pktbuf_size(pkt);
if (len > ctx->fragment_size) {
mctp_prdebug("Unexpected fragment size. Expected"
" less than %zu, received = %zu",
ctx->fragment_size, len);
mctp_msg_ctx_drop(bus, ctx);
goto out;
}
rc = mctp_msg_ctx_add_pkt(ctx, pkt);
if (!rc)
mctp_rx(mctp, bus, ctx->src, ctx->dest, tag_owner, tag,
ctx->buf, ctx->buf_size);
mctp_msg_ctx_drop(bus, ctx);
break;
case 0:
/* Neither SOM nor EOM */
ctx = mctp_msg_ctx_lookup(mctp, hdr->src, hdr->dest, tag);
if (!ctx)
goto out;
exp_seq = (ctx->last_seq + 1) % 4;
if (exp_seq != seq) {
mctp_prdebug(
"Sequence number %d does not match expected %d",
seq, exp_seq);
mctp_msg_ctx_drop(bus, ctx);
goto out;
}
len = mctp_pktbuf_size(pkt);
if (len != ctx->fragment_size) {
mctp_prdebug("Unexpected fragment size. Expected = %zu "
"received = %zu",
ctx->fragment_size, len);
mctp_msg_ctx_drop(bus, ctx);
goto out;
}
rc = mctp_msg_ctx_add_pkt(ctx, pkt);
if (rc) {
mctp_msg_ctx_drop(bus, ctx);
goto out;
}
ctx->last_seq = seq;
break;
}
out:
return;
}
static int mctp_packet_tx(struct mctp_bus *bus, struct mctp_pktbuf *pkt)
{
struct mctp *mctp = bus->binding->mctp;
if (bus->state != mctp_bus_state_tx_enabled) {
mctp_prdebug("tx with bus disabled");
return -1;
}
if (mctp->capture)
mctp->capture(pkt, MCTP_MESSAGE_CAPTURE_OUTGOING,
mctp->capture_data);
return bus->binding->tx(bus->binding, pkt);
}
/* Returns a pointer to the binding's tx_storage */
static struct mctp_pktbuf *mctp_next_tx_pkt(struct mctp_bus *bus)
{
if (!bus->tx_msg) {
return NULL;
}
size_t p = bus->tx_msgpos;
size_t msg_len = bus->tx_msglen;
size_t payload_len = msg_len - p;
size_t max_payload_len = MCTP_BODY_SIZE(bus->binding->pkt_size);
if (payload_len > max_payload_len)
payload_len = max_payload_len;
struct mctp_pktbuf *pkt =
mctp_pktbuf_init(bus->binding, bus->binding->tx_storage);
struct mctp_hdr *hdr = mctp_pktbuf_hdr(pkt);
hdr->ver = bus->binding->version & 0xf;
hdr->dest = bus->tx_dest;
hdr->src = bus->tx_src;
hdr->flags_seq_tag = (bus->tx_to << MCTP_HDR_TO_SHIFT) |
(bus->tx_tag << MCTP_HDR_TAG_SHIFT);
if (p == 0)
hdr->flags_seq_tag |= MCTP_HDR_FLAG_SOM;
if (p + payload_len >= msg_len)
hdr->flags_seq_tag |= MCTP_HDR_FLAG_EOM;
hdr->flags_seq_tag |= bus->tx_seq << MCTP_HDR_SEQ_SHIFT;
memcpy(mctp_pktbuf_data(pkt), (uint8_t *)bus->tx_msg + p, payload_len);
pkt->end = pkt->start + sizeof(*hdr) + payload_len;
bus->tx_pktlen = payload_len;
mctp_prdebug(
"tx dst %d tag %d payload len %zu seq %d. msg pos %zu len %zu",
hdr->dest, bus->tx_tag, payload_len, bus->tx_seq, p, msg_len);
return pkt;
}
/* Called when a packet has successfully been sent */
static void mctp_tx_complete(struct mctp_bus *bus)
{
if (!bus->tx_msg) {
mctp_prdebug("tx complete no message");
return;
}
bus->tx_seq = (bus->tx_seq + 1) & MCTP_HDR_SEQ_MASK;
bus->tx_msgpos += bus->tx_pktlen;
if (bus->tx_msgpos >= bus->tx_msglen) {
__mctp_msg_free(bus->tx_msg, bus->binding->mctp);
bus->tx_msg = NULL;
}
}
static void mctp_send_tx_queue(struct mctp_bus *bus)
{
struct mctp_pktbuf *pkt;
while (bus->tx_msg && bus->state == mctp_bus_state_tx_enabled) {
int rc;
pkt = mctp_next_tx_pkt(bus);
rc = mctp_packet_tx(bus, pkt);
switch (rc) {
/* If transmission succeded */
case 0:
/* Drop the packet */
mctp_tx_complete(bus);
break;
/* If the binding was busy */
case -EBUSY:
/* Keep the packet for next try */
mctp_prdebug("tx EBUSY");
return;
/* Some other unknown error occurred */
default:
/* Drop the packet */
mctp_prdebug("tx drop %d", rc);
mctp_tx_complete(bus);
return;
};
}
}
void mctp_binding_set_tx_enabled(struct mctp_binding *binding, bool enable)
{
struct mctp_bus *bus = binding->bus;
switch (bus->state) {
case mctp_bus_state_constructed:
if (!enable)
return;
if (binding->pkt_size < MCTP_PACKET_SIZE(MCTP_BTU)) {
mctp_prerr(
"Cannot start %s binding with invalid MTU: %zu",
binding->name,
MCTP_BODY_SIZE(binding->pkt_size));
return;
}
bus->state = mctp_bus_state_tx_enabled;
mctp_prinfo("%s binding started", binding->name);
return;
case mctp_bus_state_tx_enabled:
if (enable)
return;
bus->state = mctp_bus_state_tx_disabled;
mctp_prdebug("%s binding Tx disabled", binding->name);
return;
case mctp_bus_state_tx_disabled:
if (!enable)
return;
bus->state = mctp_bus_state_tx_enabled;
mctp_prdebug("%s binding Tx enabled", binding->name);
mctp_send_tx_queue(bus);
return;
}
}
static int mctp_message_tx_on_bus(struct mctp_bus *bus, mctp_eid_t src,
mctp_eid_t dest, bool tag_owner,
uint8_t msg_tag, void *msg, size_t msg_len)
{
size_t max_payload_len;
int rc;
if (bus->state == mctp_bus_state_constructed) {
rc = -ENXIO;
goto err;
}
if ((msg_tag & MCTP_HDR_TAG_MASK) != msg_tag) {
rc = -EINVAL;
goto err;
}
max_payload_len = MCTP_BODY_SIZE(bus->binding->pkt_size);
{
const bool valid_mtu = max_payload_len >= MCTP_BTU;
assert(valid_mtu);
if (!valid_mtu) {
rc = -EINVAL;
goto err;
}
}
mctp_prdebug(
"%s: Generating packets for transmission of %zu byte message from %hhu to %hhu",
__func__, msg_len, src, dest);
if (bus->tx_msg) {
mctp_prdebug("Bus busy");
rc = -EBUSY;
goto err;
}
/* Take the message to send */
bus->tx_msg = msg;
bus->tx_msglen = msg_len;
bus->tx_msgpos = 0;
/* bus->tx_seq is allowed to continue from previous message */
bus->tx_src = src;
bus->tx_dest = dest;
bus->tx_to = tag_owner;
bus->tx_tag = msg_tag;
mctp_send_tx_queue(bus);
return 0;
err:
__mctp_msg_free(msg, bus->binding->mctp);
return rc;
}
int mctp_message_tx_alloced(struct mctp *mctp, mctp_eid_t eid, bool tag_owner,
uint8_t msg_tag, void *msg, size_t msg_len)
{
struct mctp_bus *bus;
/* TODO: Protect against same tag being used across
* different callers */
if ((msg_tag & MCTP_HDR_TAG_MASK) != msg_tag) {
mctp_prerr("Incorrect message tag %u passed.", msg_tag);
__mctp_msg_free(msg, mctp);
return -EINVAL;
}
bus = find_bus_for_eid(mctp, eid);
if (!bus) {
__mctp_msg_free(msg, mctp);
return 0;
}
return mctp_message_tx_on_bus(bus, bus->eid, eid, tag_owner, msg_tag,
msg, msg_len);
}
int mctp_message_tx(struct mctp *mctp, mctp_eid_t eid, bool tag_owner,
uint8_t msg_tag, const void *msg, size_t msg_len)
{
void *copy = mctp_msg_dup(msg, msg_len, mctp);
if (!copy) {
return -ENOMEM;
}
return mctp_message_tx_alloced(mctp, eid, tag_owner, msg_tag, copy,
msg_len);
}
void mctp_set_now_op(struct mctp *mctp, uint64_t (*now)(void *), void *ctx)
{
assert(now);
mctp->platform_now = now;
mctp->platform_now_ctx = ctx;
}
uint64_t mctp_now(struct mctp *mctp)
{
assert(mctp->platform_now);
return mctp->platform_now(mctp->platform_now_ctx);
}
static void mctp_dealloc_tag(struct mctp_bus *bus, mctp_eid_t local,
mctp_eid_t remote, uint8_t tag)
{
struct mctp *mctp = bus->binding->mctp;
if (local == 0) {
return;
}
for (size_t i = 0; i < ARRAY_SIZE(mctp->req_tags); i++) {
struct mctp_req_tag *r = &mctp->req_tags[i];
if (r->local == local && r->remote == remote && r->tag == tag) {
r->local = 0;
r->remote = 0;
r->tag = 0;
r->expiry = 0;
return;
}
}
}
static int mctp_alloc_tag(struct mctp *mctp, mctp_eid_t local,
mctp_eid_t remote, uint8_t *ret_tag)
{
assert(local != 0);
uint64_t now = mctp_now(mctp);
uint8_t used = 0;
struct mctp_req_tag *spare = NULL;
/* Find which tags and slots are used/spare */
for (size_t i = 0; i < ARRAY_SIZE(mctp->req_tags); i++) {
struct mctp_req_tag *r = &mctp->req_tags[i];
if (r->local == 0 || r->expiry < now) {
spare = r;
} else {
if (r->local == local && r->remote == remote) {
used |= 1 << r->tag;
}
}
}
if (spare == NULL) {
// All req_tag slots are in-use
return -EBUSY;
}
for (uint8_t t = 0; t < 8; t++) {
uint8_t tag = (t + mctp->tag_round_robin) % 8;