blob: fa7f4607c2629ae0d1152a15b5c9023f707b5880 [file] [log] [blame]
Jeremy Kerr3d36ee22019-05-30 11:15:37 +08001/* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later */
Jeremy Kerr18925112019-03-13 15:43:08 +08002
3#include <string.h>
4#include <assert.h>
5
6#include <libmctp.h>
7#include <libmctp-alloc.h>
8
9#include "test-utils.h"
10
11struct mctp_binding_test {
12 struct mctp_binding binding;
13};
14
15static int mctp_binding_test_tx(struct mctp_binding *b __attribute__((unused)),
16 struct mctp_pktbuf *pkt __attribute__((unused)))
17{
18 /* we are not expecting TX packets */
19 assert(0);
Andrew Jefferya501a582020-03-10 22:25:16 +103020 return 0;
Jeremy Kerr18925112019-03-13 15:43:08 +080021}
22
23struct mctp_binding_test *mctp_binding_test_init(void)
24{
25 struct mctp_binding_test *test;
26
27 test = __mctp_alloc(sizeof(*test));
28 test->binding.name = "test";
29 test->binding.version = 1;
30 test->binding.tx = mctp_binding_test_tx;
Andrew Jeffery73c268e2020-01-30 10:16:09 +103031 test->binding.pkt_size = MCTP_PACKET_SIZE(MCTP_BTU);
Jeremy Kerrdf15f7e2019-08-05 15:41:19 +080032 test->binding.pkt_pad = 0;
Jeremy Kerr18925112019-03-13 15:43:08 +080033 return test;
34}
35
36void mctp_binding_test_rx_raw(struct mctp_binding_test *test,
37 void *buf, size_t len)
38{
39 struct mctp_pktbuf *pkt;
40
Jeremy Kerrdf15f7e2019-08-05 15:41:19 +080041 pkt = mctp_pktbuf_alloc(&test->binding, len);
Jeremy Kerr18925112019-03-13 15:43:08 +080042 assert(pkt);
43 memcpy(mctp_pktbuf_hdr(pkt), buf, len);
44 mctp_bus_rx(&test->binding, pkt);
Jeremy Kerr18925112019-03-13 15:43:08 +080045}
46
47void mctp_binding_test_register_bus(struct mctp_binding_test *binding,
48 struct mctp *mctp, mctp_eid_t eid)
49{
50 mctp_register_bus(mctp, &binding->binding, eid);
51}
52
53void mctp_test_stack_init(struct mctp **mctp,
54 struct mctp_binding_test **binding,
55 mctp_eid_t eid)
56{
57 *mctp = mctp_init();
58 assert(*mctp);
59
60 *binding = mctp_binding_test_init();
61 assert(*binding);
62
63 mctp_binding_test_register_bus(*binding, *mctp, eid);
64}