forked from open-iscsi/tcmu-runner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibtcmu.c
625 lines (507 loc) · 14 KB
/
libtcmu.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
/*
* Licensed under the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License. You may obtain
* a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*/
#define _GNU_SOURCE
#define _BITS_UIO_H
#include <memory.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <limits.h>
#include <sys/mman.h>
#include <string.h>
#include <stdint.h>
#include <stdarg.h>
#include <errno.h>
#include <dirent.h>
#include <scsi/scsi.h>
#include <linux/target_core_user.h>
#include <libnl3/netlink/genl/genl.h>
#include <libnl3/netlink/genl/mngt.h>
#include <libnl3/netlink/genl/ctrl.h>
#include "libtcmu.h"
#include "libtcmu_priv.h"
#define ARRAY_SIZE(X) (sizeof(X) / sizeof((X)[0]))
static struct nla_policy tcmu_attr_policy[TCMU_ATTR_MAX+1] = {
[TCMU_ATTR_DEVICE] = { .type = NLA_STRING },
[TCMU_ATTR_MINOR] = { .type = NLA_U32 },
};
static void my_errp(struct tcmulib_context *cxt, char *fmt, ...)
{
if (cxt->err_print) {
va_list va;
va_start(va, fmt);
cxt->err_print(fmt, va);
va_end(va);
}
}
static int add_device(struct tcmulib_context *cxt, char *dev_name, char *cfgstring);
static void remove_device(struct tcmulib_context *cxt, char *dev_name, char *cfgstring);
static int handle_netlink(struct nl_cache_ops *unused, struct genl_cmd *cmd,
struct genl_info *info, void *arg)
{
struct tcmulib_context *cxt = arg;
char buf[32];
if (!info->attrs[TCMU_ATTR_MINOR] || !info->attrs[TCMU_ATTR_DEVICE]) {
my_errp(cxt, "TCMU_ATTR_MINOR or TCMU_ATTR_DEVICE not set, doing nothing\n");
return 0;
}
snprintf(buf, sizeof(buf), "uio%d", nla_get_u32(info->attrs[TCMU_ATTR_MINOR]));
switch (cmd->c_id) {
case TCMU_CMD_ADDED_DEVICE:
add_device(cxt, buf, nla_get_string(info->attrs[TCMU_ATTR_DEVICE]));
break;
case TCMU_CMD_REMOVED_DEVICE:
remove_device(cxt, buf, nla_get_string(info->attrs[TCMU_ATTR_DEVICE]));
break;
default:
my_errp(cxt, "Unknown notification %d\n", cmd->c_id);
}
return 0;
}
static struct genl_cmd tcmu_cmds[] = {
{
.c_id = TCMU_CMD_ADDED_DEVICE,
.c_name = "ADDED DEVICE",
.c_msg_parser = handle_netlink,
.c_maxattr = TCMU_ATTR_MAX,
.c_attr_policy = tcmu_attr_policy,
},
{
.c_id = TCMU_CMD_REMOVED_DEVICE,
.c_name = "REMOVED DEVICE",
.c_msg_parser = handle_netlink,
.c_maxattr = TCMU_ATTR_MAX,
.c_attr_policy = tcmu_attr_policy,
},
};
static struct genl_ops tcmu_ops = {
.o_name = "TCM-USER",
.o_cmds = tcmu_cmds,
.o_ncmds = ARRAY_SIZE(tcmu_cmds),
};
static struct nl_sock *setup_netlink(struct tcmulib_context *cxt)
{
struct nl_sock *sock;
int ret;
sock = nl_socket_alloc();
if (!sock) {
my_errp(cxt, "couldn't alloc socket\n");
return NULL;
}
nl_socket_disable_seq_check(sock);
nl_socket_modify_cb(sock, NL_CB_VALID, NL_CB_CUSTOM, genl_handle_msg, cxt);
ret = genl_connect(sock);
if (ret < 0) {
my_errp(cxt, "couldn't connect\n");
goto err_free;
}
ret = genl_register_family(&tcmu_ops);
if (ret < 0) {
my_errp(cxt, "couldn't register family\n");
goto err_close;
}
ret = genl_ops_resolve(sock, &tcmu_ops);
if (ret < 0) {
my_errp(cxt, "couldn't resolve ops, is target_core_user.ko loaded?\n");
goto err_close;
}
ret = genl_ctrl_resolve_grp(sock, "TCM-USER", "config");
ret = nl_socket_add_membership(sock, ret);
if (ret < 0) {
my_errp(cxt, "couldn't add membership\n");
goto err_close;
}
return sock;
err_close:
nl_close(sock);
err_free:
nl_socket_free(sock);
return NULL;
}
static void teardown_netlink(struct nl_sock *sock)
{
nl_close(sock);
nl_socket_free(sock);
}
static struct tcmulib_handler *find_handler(struct tcmulib_context *cxt,
char *cfgstring)
{
struct tcmulib_handler *handler;
size_t len;
char *found_at;
found_at = strchrnul(cfgstring, '/');
len = found_at - cfgstring;
darray_foreach(handler, cxt->handlers) {
if (!strncmp(cfgstring, handler->subtype, len))
return handler;
}
return NULL;
}
static int add_device(struct tcmulib_context *cxt,
char *dev_name, char *cfgstring)
{
struct tcmu_device *dev;
struct tcmu_mailbox *mb;
char str_buf[256];
int fd;
int ret;
char *ptr, *oldptr;
int len;
dev = calloc(1, sizeof(*dev));
if (!dev) {
my_errp(cxt, "calloc failed in add_device\n");
return -ENOMEM;
}
snprintf(dev->dev_name, sizeof(dev->dev_name), "%s", dev_name);
oldptr = cfgstring;
ptr = strchr(oldptr, '/');
if (!ptr) {
my_errp(cxt, "invalid cfgstring\n");
goto err_free;
}
if (strncmp(cfgstring, "tcm-user", ptr-oldptr)) {
my_errp(cxt, "invalid cfgstring\n");
goto err_free;
}
/* Get HBA name */
oldptr = ptr+1;
ptr = strchr(oldptr, '/');
if (!ptr) {
my_errp(cxt, "invalid cfgstring\n");
goto err_free;
}
len = ptr-oldptr;
snprintf(dev->tcm_hba_name, sizeof(dev->tcm_hba_name), "user_%.*s", len, oldptr);
/* Get device name */
oldptr = ptr+1;
ptr = strchr(oldptr, '/');
if (!ptr) {
my_errp(cxt, "invalid cfgstring\n");
goto err_free;
}
len = ptr-oldptr;
snprintf(dev->tcm_dev_name, sizeof(dev->tcm_dev_name), "%.*s", len, oldptr);
/* The rest is the handler-specific cfgstring */
oldptr = ptr+1;
ptr = strchr(oldptr, '/');
snprintf(dev->cfgstring, sizeof(dev->cfgstring), "%s", oldptr);
snprintf(str_buf, sizeof(str_buf), "/dev/%s", dev_name);
dev->fd = open(str_buf, O_RDWR | O_NONBLOCK | O_CLOEXEC);
if (dev->fd == -1) {
my_errp(cxt, "could not open %s\n", str_buf);
goto err_free;
}
snprintf(str_buf, sizeof(str_buf), "/sys/class/uio/%s/maps/map0/size", dev->dev_name);
fd = open(str_buf, O_RDONLY);
if (fd == -1) {
my_errp(cxt, "could not open %s\n", str_buf);
goto err_fd_close;
}
ret = read(fd, str_buf, sizeof(str_buf));
close(fd);
if (ret <= 0) {
my_errp(cxt, "could not read size of map0\n");
goto err_fd_close;
}
str_buf[ret-1] = '\0'; /* null-terminate and chop off the \n */
dev->map_len = strtoull(str_buf, NULL, 0);
if (dev->map_len == ULLONG_MAX) {
my_errp(cxt, "could not get map length\n");
goto err_fd_close;
}
dev->map = mmap(NULL, dev->map_len, PROT_READ|PROT_WRITE, MAP_SHARED, dev->fd, 0);
if (dev->map == MAP_FAILED) {
my_errp(cxt, "could not mmap: %m\n");
goto err_fd_close;
}
mb = dev->map;
if (mb->version != KERN_IFACE_VER) {
my_errp(cxt, "Kernel interface version mismatch: wanted %d got %d\n",
KERN_IFACE_VER, mb->version);
goto err_munmap;
}
dev->cmd_tail = mb->cmd_tail;
dev->handler = find_handler(cxt, dev->cfgstring);
if (!dev->handler) {
my_errp(cxt, "could not find handler for %s\n", dev->dev_name);
goto err_munmap;
}
dev->cxt = cxt;
darray_append(cxt->devices, dev);
ret = dev->handler->added(dev);
if (ret < 0) {
my_errp(cxt, "handler open failed for %s\n", dev->dev_name);
goto err_munmap;
}
return 0;
err_munmap:
munmap(dev->map, dev->map_len);
err_fd_close:
close(dev->fd);
err_free:
free(dev);
return -ENOENT;
}
static void remove_device(struct tcmulib_context *cxt,
char *dev_name, char *cfgstring)
{
struct tcmu_device **dev_ptr;
struct tcmu_device *dev;
int i = 0;
bool found = false;
darray_foreach(dev_ptr, cxt->devices) {
dev = *dev_ptr;
size_t len = strnlen(dev->dev_name, sizeof(dev->dev_name));
if (strncmp(dev->dev_name, dev_name, len)) {
i++;
} else {
found = true;
break;
}
}
if (!found) {
my_errp(cxt, "could not remove device %s: not found\n", dev_name);
return;
}
dev->handler->removed(dev);
darray_remove(cxt->devices, i);
}
static int is_uio(const struct dirent *dirent)
{
int fd;
char tmp_path[64];
char buf[256];
ssize_t ret;
if (strncmp(dirent->d_name, "uio", 3))
return 0;
snprintf(tmp_path, sizeof(tmp_path), "/sys/class/uio/%s/name", dirent->d_name);
fd = open(tmp_path, O_RDONLY);
if (fd == -1)
return 0;
ret = read(fd, buf, sizeof(buf));
if (ret <= 0 || ret >= sizeof(buf))
return 0;
buf[ret-1] = '\0'; /* null-terminate and chop off the \n */
/* we only want uio devices whose name is a format we expect */
if (strncmp(buf, "tcm-user", 8))
return 0;
return 1;
}
static int open_devices(struct tcmulib_context *cxt)
{
struct dirent **dirent_list;
int num_devs;
int num_good_devs = 0;
int i;
num_devs = scandir("/dev", &dirent_list, is_uio, alphasort);
if (num_devs == -1)
return -1;
for (i = 0; i < num_devs; i++) {
char tmp_path[64];
char buf[256];
int fd;
int ret;
snprintf(tmp_path, sizeof(tmp_path), "/sys/class/uio/%s/name",
dirent_list[i]->d_name);
fd = open(tmp_path, O_RDONLY);
if (fd == -1) {
my_errp(cxt, "could not open %s!\n", tmp_path);
continue;
}
ret = read(fd, buf, sizeof(buf));
close(fd);
if (ret <= 0 || ret >= sizeof(buf)) {
my_errp(cxt, "read of %s had issues\n", tmp_path);
continue;
}
buf[ret-1] = '\0'; /* null-terminate and chop off the \n */
ret = add_device(cxt, dirent_list[i]->d_name, buf);
if (ret < 0)
continue;
num_good_devs++;
}
for (i = 0; i < num_devs; i++)
free(dirent_list[i]);
free(dirent_list);
return num_good_devs;
}
struct tcmulib_context *tcmulib_initialize(
struct tcmulib_handler *handlers,
size_t handler_count,
void (*err_print)(const char *fmt, ...))
{
struct tcmulib_context *cxt;
int ret;
int i;
cxt = calloc(1, sizeof(*cxt));
if (!cxt)
return NULL;
// Stash this away early, so that debug output works from here forth
cxt->err_print = err_print;
cxt->nl_sock = setup_netlink(cxt);
if (!cxt->nl_sock) {
free(cxt);
return NULL;
}
darray_init(cxt->handlers);
darray_init(cxt->devices);
for (i = 0; i < handler_count; i++)
darray_append(cxt->handlers, handlers[i]);
ret = open_devices(cxt);
if (ret < 0) {
teardown_netlink(cxt->nl_sock);
darray_free(cxt->handlers);
darray_free(cxt->devices);
return NULL;
}
return cxt;
}
void tcmulib_close(struct tcmulib_context *cxt)
{
teardown_netlink(cxt->nl_sock);
darray_free(cxt->handlers);
darray_free(cxt->devices);
free(cxt);
}
int tcmulib_get_master_fd(struct tcmulib_context *cxt)
{
return nl_socket_get_fd(cxt->nl_sock);
}
int tcmulib_master_fd_ready(struct tcmulib_context *cxt)
{
return nl_recvmsgs_default(cxt->nl_sock);
}
void *tcmu_get_dev_private(struct tcmu_device *dev)
{
return dev->hm_private;
}
void tcmu_set_dev_private(struct tcmu_device *dev, void *private)
{
dev->hm_private = private;
}
int tcmu_get_dev_fd(struct tcmu_device *dev)
{
return dev->fd;
}
char *tcmu_get_dev_cfgstring(struct tcmu_device *dev)
{
return dev->cfgstring;
}
struct tcmulib_handler *tcmu_get_dev_handler(struct tcmu_device *dev)
{
return dev->handler;
}
static inline struct tcmu_cmd_entry *
device_cmd_head(struct tcmu_device *dev)
{
struct tcmu_mailbox *mb = dev->map;
return (struct tcmu_cmd_entry *) ((char *) mb + mb->cmdr_off + mb->cmd_head);
}
static inline struct tcmu_cmd_entry *
device_cmd_tail(struct tcmu_device *dev)
{
struct tcmu_mailbox *mb = dev->map;
return (struct tcmu_cmd_entry *) ((char *) mb + mb->cmdr_off + dev->cmd_tail);
}
struct tcmulib_cmd *tcmulib_get_next_command(struct tcmu_device *dev)
{
struct tcmu_mailbox *mb = dev->map;
struct tcmu_cmd_entry *ent;
while ((ent = device_cmd_tail(dev)) != device_cmd_head(dev)) {
switch (tcmu_hdr_get_op(ent->hdr.len_op)) {
case TCMU_OP_PAD:
/* do nothing */
break;
case TCMU_OP_CMD: {
int i;
struct tcmulib_cmd *cmd;
uint8_t *cdb = (uint8_t *) mb + ent->req.cdb_off;
unsigned cdb_len = tcmu_get_cdb_length(cdb);
/* Alloc memory for cmd itself, iovec and cdb */
cmd = malloc(sizeof(*cmd) + sizeof(*cmd->iovec) * ent->req.iov_cnt + cdb_len);
if (!cmd)
return NULL;
cmd->cmd_id = ent->hdr.cmd_id;
/* Convert iovec addrs in-place to not be offsets */
cmd->iov_cnt = ent->req.iov_cnt;
cmd->iovec = (struct iovec *) (cmd + 1);
for (i = 0; i < ent->req.iov_cnt; i++) {
cmd->iovec[i].iov_base = (void *) mb +
(size_t) ent->req.iov[i].iov_base;
cmd->iovec[i].iov_len = ent->req.iov[i].iov_len;
}
/* Copy cdb that currently points to the command ring */
cmd->cdb = (uint8_t *) (cmd->iovec + cmd->iov_cnt);
memcpy(cmd->cdb, (void *) mb + ent->req.cdb_off, cdb_len);
dev->cmd_tail = (dev->cmd_tail + tcmu_hdr_get_len(ent->hdr.len_op)) % mb->cmdr_size;
return cmd;
}
default:
/* We don't even know how to handle this TCMU opcode. */
ent->hdr.uflags |= TCMU_UFLAG_UNKNOWN_OP;
}
dev->cmd_tail = (dev->cmd_tail + tcmu_hdr_get_len(ent->hdr.len_op)) % mb->cmdr_size;
}
return NULL;
}
void tcmulib_command_complete(
struct tcmu_device *dev,
struct tcmulib_cmd *cmd,
int result)
{
struct tcmu_mailbox *mb = dev->map;
struct tcmu_cmd_entry *ent = (void *) mb + mb->cmdr_off + mb->cmd_tail;
/* current command could be PAD in async case */
while (ent != (void *) mb + mb->cmdr_off + mb->cmd_head) {
if (tcmu_hdr_get_op(ent->hdr.len_op) == TCMU_OP_CMD)
break;
mb->cmd_tail = (mb->cmd_tail + tcmu_hdr_get_len(ent->hdr.len_op)) % mb->cmdr_size;
ent = (void *) mb + mb->cmdr_off + mb->cmd_tail;
}
/* cmd_id could be different in async case */
if (cmd->cmd_id != ent->hdr.cmd_id) {
ent->hdr.cmd_id = cmd->cmd_id;
}
if (result == TCMU_NOT_HANDLED) {
/* Tell the kernel we didn't handle it */
char *buf = ent->rsp.sense_buffer;
ent->rsp.scsi_status = SAM_STAT_CHECK_CONDITION;
buf[0] = 0x70; /* fixed, current */
buf[2] = 0x5; /* illegal request */
buf[7] = 0xa;
buf[12] = 0x20; /* ASC: invalid command operation code */
buf[13] = 0x0; /* ASCQ: (none) */
} else {
if (result != SAM_STAT_GOOD) {
memcpy(ent->rsp.sense_buffer, cmd->sense_buf,
TCMU_SENSE_BUFFERSIZE);
}
ent->rsp.scsi_status = result;
}
mb->cmd_tail = (mb->cmd_tail + tcmu_hdr_get_len(ent->hdr.len_op)) % mb->cmdr_size;
free(cmd);
}
void tcmulib_processing_start(struct tcmu_device *dev)
{
uint32_t buf;
/* Clear the event on the fd */
read(dev->fd, &buf, 4);
}
void tcmulib_processing_complete(struct tcmu_device *dev)
{
uint32_t buf;
/* Tell the kernel there are completed commands */
write(dev->fd, &buf, 4);
}