tester.c 5.84 KB
Newer Older
Antoine Kaufmann's avatar
Antoine Kaufmann committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
 * Copyright 2021 Max Planck Institute for Software Systems, and
 * National University of Singapore
 *
 * Permission is hereby granted, free of charge, to any person obtaining
 * a copy of this software and associated documentation files (the
 * "Software"), to deal in the Software without restriction, including
 * without limitation the rights to use, copy, modify, merge, publish,
 * distribute, sublicense, and/or sell copies of the Software, and to
 * permit persons to whom the Software is furnished to do so, subject to
 * the following conditions:
 *
 * The above copyright notice and this permission notice shall be
 * included in all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
 * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 */

Jialin Li's avatar
Jialin Li committed
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
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <sys/socket.h>
#include <sys/un.h>
#include <sys/mman.h>
#include <unistd.h>
#include <signal.h>
#include <fcntl.h>
#include <assert.h>

#include <nicsim.h>
#include <cosim_pcie_proto.h>

static uint8_t *d2h_queue;
static size_t d2h_pos;
static size_t d2h_elen;
static size_t d2h_enum;

static uint8_t *h2d_queue;
static size_t h2d_pos;
static size_t h2d_elen;
static size_t h2d_enum;

static void sigint_handler(int dummy)
{
    exit(1);
}

static int uxsocket_init()
{
    int cfd;

    if ((cfd = socket(AF_UNIX, SOCK_STREAM, 0)) == -1) {
        return -1;
    }

    struct sockaddr_un saun;
    memset(&saun, 0, sizeof(saun));
    saun.sun_family = AF_UNIX;
    memcpy(saun.sun_path, "/tmp/cosim-pci", strlen("/tmp/cosim-pci"));

    if (connect(cfd, (struct sockaddr *)&saun, sizeof(saun)) == -1) {
        close(cfd);
        return -1;
    }

    return cfd;
}

static int queue_create(const struct cosim_pcie_proto_dev_intro di)
{
    int fd = -1;
    if ((fd = open("/dev/shm/dummy_nic_shm", O_RDWR)) == -1) {
        perror("Failed to open shm file");
        goto error;
    }

    void *addr;
    if ((addr = mmap(NULL, 32 * 1024 * 1024, PROT_READ | PROT_WRITE,
                     MAP_SHARED | MAP_POPULATE, fd, 0)) == (void *)-1) {
        perror("mmap failed");
        goto error;
    }

    d2h_queue = (uint8_t *)addr + di.d2h_offset;
    d2h_pos = 0;
    d2h_elen = di.d2h_elen;
    d2h_enum = di.d2h_nentries;

    h2d_queue = (uint8_t *)addr + di.h2d_offset;
    h2d_pos = 0;
    h2d_elen = di.h2d_elen;
    h2d_enum = di.h2d_nentries;

    return 0;

error:
    if (fd > 0) {
        close(fd);
    }
    return -1;
}

volatile union cosim_pcie_proto_h2d *h2d_alloc()
{
    volatile union cosim_pcie_proto_h2d *msg =
        (volatile union cosim_pcie_proto_h2d *)
        (h2d_queue + h2d_pos * h2d_elen);

    if ((msg->dummy.own_type & COSIM_PCIE_PROTO_H2D_OWN_MASK) !=
            COSIM_PCIE_PROTO_H2D_OWN_HOST) {
        fprintf(stderr, "cosim: failed to allocate h2d message\n");
        exit(1);
    }

    h2d_pos = (h2d_pos + 1) % h2d_enum;
    return msg;
}

volatile union cosim_pcie_proto_d2h *d2h_poll()
{
    volatile union cosim_pcie_proto_d2h *msg;

    msg = (volatile union cosim_pcie_proto_d2h *)
        (d2h_queue + d2h_pos * d2h_elen);
    if ((msg->dummy.own_type & COSIM_PCIE_PROTO_D2H_OWN_MASK) ==
            COSIM_PCIE_PROTO_D2H_OWN_DEV) {
        return NULL;
    }
    return msg;
}

void d2h_done(volatile union cosim_pcie_proto_d2h *msg)
{
Antoine Kaufmann's avatar
Antoine Kaufmann committed
140
141
    msg->dummy.own_type = (msg->dummy.own_type & COSIM_PCIE_PROTO_D2H_MSG_MASK)
        | COSIM_PCIE_PROTO_D2H_OWN_DEV;
Jialin Li's avatar
Jialin Li committed
142
143
144
145
146
147
148
149
150
151
152
    d2h_pos = (d2h_pos + 1) % d2h_enum;
}

static void dev_read(uint64_t offset, uint16_t len)
{
    volatile union cosim_pcie_proto_h2d *h2d_msg = h2d_alloc();
    volatile struct cosim_pcie_proto_h2d_read *read = &h2d_msg->read;
    read->req_id = 0xF;
    read->offset = offset;
    read->len = len;
    read->bar = 0;
Antoine Kaufmann's avatar
Antoine Kaufmann committed
153
154
    read->own_type = COSIM_PCIE_PROTO_H2D_MSG_READ |
        COSIM_PCIE_PROTO_H2D_OWN_DEV;
Jialin Li's avatar
Jialin Li committed
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

    volatile union cosim_pcie_proto_d2h *d2h_msg = NULL;
    while (d2h_msg == NULL) {
        d2h_msg = d2h_poll();
    }
    volatile struct cosim_pcie_proto_d2h_readcomp *rc;
    rc = &d2h_msg->readcomp;
    assert(rc->req_id == 0xF);
    printf("received readcomp with data ");
    for (int i = 0; i < read->len; i++) {
        printf("%x ", ((const uint8_t *)rc->data)[i]);
    }
    printf("\n");

    d2h_done(d2h_msg);
}

int main(int argc, char *argv[])
{
    signal(SIGINT, sigint_handler);

    int cfd;
    if ((cfd = uxsocket_init()) < 0) {
        fprintf(stderr, "Failed to open unix socket\n");
        return -1;
    }

    struct cosim_pcie_proto_dev_intro di;
    if (recv(cfd, &di, sizeof(di), 0) != sizeof(di)) {
        perror("Failed to receive dev_intro");
        close(cfd);
        return -1;
    }

    if (queue_create(di) != 0) {
        fprintf(stderr, "Failed to create shm queues\n");
        close(cfd);
        return -1;
    }

    struct cosim_pcie_proto_host_intro hi;
    hi.flags = COSIM_PCIE_PROTO_FLAGS_HI_SYNC;
    if (send(cfd, &hi, sizeof(hi), 0) != sizeof(hi)) {
        perror("Failed to send host_intro");
        close(cfd);
        return -1;
    }

    while (1) {
        int op_type;
        uint64_t offset;
        uint16_t len;
        printf("op type (0-read): ");
        scanf("%d", &op_type);
        printf("offset: ");
        scanf("%lx", &offset);
        printf("len: ");
        scanf("%hu", &len);
        switch (op_type) {
        case 0:
            dev_read(offset, len);
            break;
        default:
            fprintf(stderr, "Unimplemented type %u\n", op_type);
        }
    }

    close(cfd);
    return 0;
}