forked from open-iscsi/tcmu-runner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
libtcmu.c
1356 lines (1144 loc) · 32 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
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
/*
* This file is licensed to you under your choice of the GNU Lesser
* General Public License, version 2.1 or any later version (LGPLv2.1 or
* later), or the Apache License 2.0.
*/
#define _GNU_SOURCE
#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 <libnl3/netlink/genl/genl.h>
#include <libnl3/netlink/genl/mngt.h>
#include <libnl3/netlink/genl/ctrl.h>
#include <libnl3/netlink/errno.h>
#include "target_core_user_local.h"
#include "libtcmu.h"
#include "libtcmu_log.h"
#include "libtcmu_priv.h"
#include "scsi_defs.h"
#define TCMU_NL_VERSION 2
static struct nla_policy tcmu_attr_policy[TCMU_ATTR_MAX+1] = {
[TCMU_ATTR_DEVICE] = { .type = NLA_STRING },
[TCMU_ATTR_MINOR] = { .type = NLA_U32 },
[TCMU_ATTR_CMD_STATUS] = { .type = NLA_S32 },
[TCMU_ATTR_DEVICE_ID] = { .type = NLA_U32 },
[TCMU_ATTR_DEV_CFG] = { .type = NLA_STRING },
[TCMU_ATTR_DEV_SIZE] = { .type = NLA_U64 },
[TCMU_ATTR_WRITECACHE] = { .type = NLA_U8 },
[TCMU_ATTR_SUPP_KERN_CMD_REPLY] = { .type = NLA_U8 },
};
static int device_add(struct tcmulib_context *ctx, char *dev_name,
char *cfgstring, bool reopen);
static void device_remove(struct tcmulib_context *ctx, char *dev_name,
bool should_block);
static int handle_netlink(struct nl_cache_ops *unused, struct genl_cmd *cmd,
struct genl_info *info, void *arg);
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,
},
{
.c_id = TCMU_CMD_RECONFIG_DEVICE,
.c_name = "RECONFIG 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 int send_netlink_reply(struct tcmulib_context *ctx, int reply_cmd,
uint32_t dev_id, int status)
{
struct nl_sock *sock = ctx->nl_sock;
struct nl_msg *msg;
void *hdr;
int ret = -ENOMEM;
msg = nlmsg_alloc();
if (!msg)
return ret;
hdr = genlmsg_put(msg, NL_AUTO_PORT, NL_AUTO_SEQ, tcmu_ops.o_id,
0, 0, reply_cmd, TCMU_NL_VERSION);
if (!hdr)
goto free_msg;
ret = nla_put_s32(msg, TCMU_ATTR_CMD_STATUS, status);
if (ret < 0)
goto free_msg;
ret = nla_put_u32(msg, TCMU_ATTR_DEVICE_ID, dev_id);
if (ret < 0)
goto free_msg;
/* Ignore ack. There is nothing we can do. */
ret = nl_send_auto(sock, msg);
free_msg:
nlmsg_free(msg);
if (ret < 0)
tcmu_err("Could not send netlink cmd %d\n", reply_cmd);
return ret;
}
static struct tcmu_device *
lookup_dev_by_name(struct tcmulib_context *ctx, char *dev_name, int *index)
{
struct tcmu_device **dev_ptr;
struct tcmu_device *dev;
int i = 0;
*index = 0;
darray_foreach(dev_ptr, ctx->devices) {
dev = *dev_ptr;
if (!strcmp(dev->dev_name, dev_name)) {
*index = i;
return dev;
}
i++;
}
return NULL;
}
static const char *const tcmulib_cfg_type_lookup[] = {
[TCMULIB_CFG_DEV_CFGSTR] = "TCMULIB_CFG_DEV_CFGSTR",
[TCMULIB_CFG_DEV_SIZE] = "TCMULIB_CFG_DEV_SIZE",
[TCMULIB_CFG_WRITE_CACHE] = "TCMULIB_CFG_WRITE_CACHE",
};
static int reconfig_device(struct tcmulib_context *ctx, char *dev_name,
struct genl_info *info)
{
struct tcmu_device *dev;
struct tcmulib_cfg_info cfg;
int i, ret;
memset(&cfg, 0, sizeof(cfg));
dev = lookup_dev_by_name(ctx, dev_name, &i);
if (!dev) {
tcmu_err("Could not reconfigure device %s: not found.\n",
dev_name);
return -ENODEV;
}
if (info->attrs[TCMU_ATTR_DEV_CFG]) {
cfg.type = TCMULIB_CFG_DEV_CFGSTR;
cfg.data.dev_cfgstring =
nla_get_string(info->attrs[TCMU_ATTR_DEV_CFG]);
} else if (info->attrs[TCMU_ATTR_DEV_SIZE]) {
cfg.type = TCMULIB_CFG_DEV_SIZE;
cfg.data.dev_size = nla_get_u64(info->attrs[TCMU_ATTR_DEV_SIZE]);
} else if (info->attrs[TCMU_ATTR_WRITECACHE]) {
cfg.type = TCMULIB_CFG_WRITE_CACHE;
cfg.data.write_cache =
nla_get_u8(info->attrs[TCMU_ATTR_WRITECACHE]);
} else {
tcmu_dev_err(dev,
"Unknown reconfig attr. Try updating libtcmu.\n");
return -EOPNOTSUPP;
}
if (!dev->handler->reconfig) {
tcmu_dev_dbg(dev, "Reconfiguration is not supported with this device. "
"Request for %s.\n", tcmulib_cfg_type_lookup[cfg.type]);
return -EOPNOTSUPP;
}
ret = dev->handler->reconfig(dev, &cfg);
if (ret < 0) {
tcmu_dev_dbg(dev, "Handler reconfig for %s failed with error %s.\n",
tcmulib_cfg_type_lookup[cfg.type], strerror(-ret));
return ret;
}
return 0;
}
static int handle_netlink(struct nl_cache_ops *unused, struct genl_cmd *cmd,
struct genl_info *info, void *arg)
{
struct tcmulib_context *ctx = arg;
int ret, reply_cmd, version = info->genlhdr->version;
char buf[32];
tcmu_dbg("cmd %d. Got header version %d. Supported %d.\n",
cmd->c_id, info->genlhdr->version, TCMU_NL_VERSION);
if (!info->attrs[TCMU_ATTR_MINOR] || !info->attrs[TCMU_ATTR_DEVICE]) {
tcmu_err("TCMU_ATTR_MINOR or TCMU_ATTR_DEVICE not set, dropping netlink command.\n");
return 0;
}
if (version > 1 && !info->attrs[TCMU_ATTR_DEVICE_ID]) {
tcmu_err("TCMU_ATTR_DEVICE_ID not set in v%d cmd %d, dropping netink command.\n", version, cmd->c_id);
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:
reply_cmd = TCMU_CMD_ADDED_DEVICE_DONE;
ret = device_add(ctx, buf,
nla_get_string(info->attrs[TCMU_ATTR_DEVICE]),
false);
break;
case TCMU_CMD_REMOVED_DEVICE:
reply_cmd = TCMU_CMD_REMOVED_DEVICE_DONE;
device_remove(ctx, buf, false);
ret = 0;
break;
case TCMU_CMD_RECONFIG_DEVICE:
reply_cmd = TCMU_CMD_RECONFIG_DEVICE_DONE;
ret = reconfig_device(ctx, buf, info);
break;
default:
tcmu_err("Unknown netlink command %d. Netlink header received version %d. libtcmu supports %d\n",
cmd->c_id, version, TCMU_NL_VERSION);
return -EOPNOTSUPP;
}
if (version > 1)
ret = send_netlink_reply(ctx, reply_cmd,
nla_get_u32(info->attrs[TCMU_ATTR_DEVICE_ID]),
ret);
return ret;
}
static int set_genl_features(struct nl_sock *sock)
{
struct nl_msg *msg;
void *hdr;
int ret = -NLE_NOMEM;
msg = nlmsg_alloc();
if (!msg) {
tcmu_err("Could not allocate a new message.\n");
return ret;
}
hdr = genlmsg_put(msg, NL_AUTO_PORT, NL_AUTO_SEQ, tcmu_ops.o_id,
0, NLM_F_ACK, TCMU_CMD_SET_FEATURES, TCMU_NL_VERSION);
if (!hdr)
goto free_msg;
ret = nla_put_u8(msg, TCMU_ATTR_SUPP_KERN_CMD_REPLY, 1);
if (ret < 0)
goto free_msg;
/*
* Could be a older kernel. Ignore failure and just work in degraded
* mode.
*/
ret = nl_send_sync(sock, msg);
if (ret == -NLE_OPNOTSUPP) {
tcmu_warn("Kernel does not support the operation.\n");
ret = 0;
}
goto done;
free_msg:
nlmsg_free(msg);
done:
if (ret < 0)
tcmu_err("Could not set features. Error %d\n", ret);
return ret;
}
static struct nl_sock *setup_netlink(struct tcmulib_context *ctx)
{
struct nl_sock *sock;
int ret;
sock = nl_socket_alloc();
if (!sock) {
tcmu_err("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, ctx);
ret = genl_connect(sock);
if (ret < 0) {
tcmu_err("couldn't connect\n");
goto err_free;
}
ret = genl_register_family(&tcmu_ops);
if (ret < 0) {
tcmu_err("couldn't register family\n");
goto err_close;
}
ret = genl_ops_resolve(sock, &tcmu_ops);
if (ret < 0) {
tcmu_err("couldn't resolve ops, is target_core_user.ko loaded?\n");
goto err_unregister;
}
ret = genl_ctrl_resolve_grp(sock, "TCM-USER", "config");
if (ret < 0) {
tcmu_err("couldn't resolve netlink family group, is target_core_user.ko loaded?\n");
goto err_unregister;
}
ret = nl_socket_add_membership(sock, ret);
if (ret < 0) {
tcmu_err("couldn't add membership\n");
goto err_unregister;
}
ret = set_genl_features(sock);
if (ret < 0)
goto err_unregister;
return sock;
err_unregister:
genl_unregister_family(&tcmu_ops);
err_close:
nl_close(sock);
err_free:
nl_socket_free(sock);
return NULL;
}
static void teardown_netlink(struct nl_sock *sock)
{
int ret;
ret = genl_unregister_family(&tcmu_ops);
if (ret != 0) {
tcmu_err("genl_unregister_family failed, %d\n", ret);
}
nl_close(sock);
nl_socket_free(sock);
}
static struct tcmulib_handler *find_handler(struct tcmulib_context *ctx,
char *cfgstring)
{
struct tcmulib_handler *handler;
size_t len;
char *found_at;
found_at = strchrnul(cfgstring, '/');
len = found_at - cfgstring;
darray_foreach(handler, ctx->handlers) {
if (!strncmp(cfgstring, handler->subtype, len))
return handler;
}
return NULL;
}
void tcmu_dev_flush_ring(struct tcmu_device *dev)
{
struct tcmu_mailbox *mb = dev->map;
tcmu_dev_dbg(dev, "waiting for ring to clear\n");
while (mb->cmd_head != mb->cmd_tail)
usleep(50000);
tcmu_dev_dbg(dev, "ring clear\n");
}
bool tcmu_dev_oooc_supported(struct tcmu_device* dev)
{
return dev->map->flags & TCMU_MAILBOX_FLAG_CAP_OOOC;
}
/* Read a size_t from a file. Returns -1 on error. */
static ssize_t read_size(const char *filename)
{
int fd;
int len, rc;
char buf[256], *endbuf;
ssize_t ret;
fd = open(filename, O_RDONLY);
if (fd == -1)
goto err;
len = read(fd, buf, sizeof(buf)-1);
rc = close(fd);
if (len <= 0 || rc == -1)
goto err;
buf[len] = '\0'; /* null-terminate */
ret = strtoull(buf, &endbuf, 0);
if (buf == endbuf || ret == ULLONG_MAX)
goto err;
return ret;
err:
tcmu_warn("cannot read size from %s\n", filename);
return -1;
}
/* Extract configuration parameters into dev. */
static bool device_parse_cfg(struct tcmu_device *dev,
const char *dev_name, const char *cfgstring)
{
int len;
const char *ptr, *oldptr;
len = snprintf(dev->dev_name, sizeof(dev->dev_name), "%s", dev_name);
if (len >= sizeof(dev->dev_name)) {
tcmu_err("device name too long for tcmu_device\n");
goto err_recompile;
}
/* Check valid cfgstring */
oldptr = cfgstring;
ptr = strchr(oldptr, '/');
if (!ptr)
goto err_badcfg;
if (strncmp(cfgstring, "tcm-user", ptr-oldptr))
goto err_badcfg;
/* Get HBA name */
oldptr = ptr+1;
ptr = strchr(oldptr, '/');
if (!ptr)
goto err_badcfg;
len = ptr-oldptr;
len = snprintf(dev->tcm_hba_name, sizeof(dev->tcm_hba_name), "user_%.*s", len, oldptr);
if (len >= sizeof(dev->tcm_hba_name)) {
tcmu_err("hba name too long for tcmu_device\n");
goto err_recompile;
}
/* Get device name */
oldptr = ptr+1;
ptr = strchr(oldptr, '/');
if (!ptr)
goto err_badcfg;
len = ptr-oldptr;
len = snprintf(dev->tcm_dev_name, sizeof(dev->tcm_dev_name), "%.*s", len, oldptr);
if (len >= sizeof(dev->tcm_dev_name)) {
tcmu_err("tcm device name too long for tcmu_device\n");
goto err_recompile;
}
/* The rest is the handler-specific cfgstring */
oldptr = ptr+1;
len = snprintf(dev->cfgstring, sizeof(dev->cfgstring), "%s", oldptr);
if (len >= sizeof(dev->cfgstring)) {
tcmu_warn("additional handler cfgstring was truncated\n");
/* not a terminal error. snprintf() will null-terminate */
}
return true;
err_badcfg:
tcmu_err("invalid cfgstring: expecting \"tcm-user/<hba_name>/<tcm_device_name>/<handler_name_config>\"\n");
err_recompile: /* consider expanding string lengths in dev */
return false;
}
static void device_close_shm(struct tcmu_device *dev)
{
int ret;
ret = close(dev->fd);
if (ret != 0) {
tcmu_err("could not close device fd for %s: %d\n", dev->dev_name, errno);
}
ret = munmap(dev->map, dev->map_len);
if (ret != 0) {
tcmu_err("could not unmap device %s: %d\n", dev->dev_name, errno);
}
}
static bool device_open_shm(struct tcmu_device *dev)
{
size_t mmap_size;
char *mmap_name;
off_t mmap_offset;
/* get filename, size and offset */
mmap_name = tcmu_dev_get_memory_info(dev, NULL, &mmap_size, &mmap_offset);
if (!mmap_name)
goto err_fail;
/* cache the map size */
dev->map_len = mmap_size;
/* open the map */
dev->fd = open(mmap_name, O_RDWR | O_NONBLOCK | O_CLOEXEC);
if (dev->fd == -1) {
tcmu_err("could not open %s\n", mmap_name);
goto err_mmap_name;
}
/* bring the map into memory */
dev->map = mmap(NULL, dev->map_len, PROT_READ|PROT_WRITE, MAP_SHARED, dev->fd, mmap_offset);
if (dev->map == MAP_FAILED) {
tcmu_err("could not mmap %s\n", mmap_name);
goto err_fd_close;
}
if (dev->map->version != KERN_IFACE_VER) {
tcmu_err("Kernel interface version mismatch: wanted %d got %d\n",
KERN_IFACE_VER, dev->map->version);
goto err_munmap;
}
free(mmap_name);
return true;
err_munmap:
munmap(dev->map, dev->map_len);
err_fd_close:
close(dev->fd);
err_mmap_name:
free(mmap_name);
err_fail:
return false;
}
static int device_add(struct tcmulib_context *ctx, char *dev_name,
char *cfgstring, bool reopen)
{
struct tcmu_device *dev;
char *reason = NULL;
int rc;
bool reset_supp = true;
dev = calloc(1, sizeof(*dev));
if (!dev) {
tcmu_err("calloc failed for device_add()\n");
return -ENOMEM;
}
if (!device_parse_cfg(dev, dev_name, cfgstring))
goto err_free;
dev->handler = find_handler(ctx, dev->cfgstring);
if (!dev->handler) {
tcmu_err("could not find handler for %s\n", dev->dev_name);
goto err_free;
}
if (dev->handler->check_config &&
!dev->handler->check_config(dev->cfgstring, &reason)) {
/* It may be handled by other handlers */
tcmu_err("check_config failed for %s because of %s\n", dev->dev_name, reason);
free(reason);
goto err_free;
}
if (reopen) {
/*
* We might not have cleanly shutdown and IO might be
* running in the kernel or have timed out. Block the device
* so new IO is stopped, and reset the ring so we can start
* from a fresh slate. We will unblock below when we are
* completely setup.
*/
rc = tcmu_cfgfs_dev_exec_action(dev, "block_dev", 1);
/*
* As long as the block_dev file existed, try to reset
* just in case the kernel was in a invald state.
*/
if (rc == -ENOENT) {
reset_supp = false;
} else {
/*
* Force a retry of the outstanding commands.
*/
rc = tcmu_cfgfs_dev_exec_action(dev, "reset_ring", 1);
if (rc)
tcmu_dev_err(dev, "Could not reset ring %d.\n", rc);
}
}
if (!device_open_shm(dev))
goto err_unblock;
dev->cmd_tail = dev->map->cmd_tail;
dev->ctx = ctx;
rc = dev->handler->added(dev);
if (rc != 0) {
tcmu_err("handler open failed for %s\n", dev->dev_name);
goto err_closeshm;
}
darray_append(ctx->devices, dev);
if (reopen && reset_supp)
tcmu_cfgfs_dev_exec_action(dev, "block_dev", 0);
return 0;
err_closeshm:
device_close_shm(dev);
err_unblock:
if (reopen && reset_supp)
tcmu_cfgfs_dev_exec_action(dev, "block_dev", 0);
err_free:
free(dev);
return -ENOENT;
}
static void close_devices(struct tcmulib_context *ctx)
{
struct tcmu_device **dev_ptr;
struct tcmu_device *dev;
darray_foreach_reverse(dev_ptr, ctx->devices) {
dev = *dev_ptr;
device_remove(ctx, dev->dev_name, true);
}
}
static void device_remove(struct tcmulib_context *ctx, char *dev_name,
bool should_block)
{
struct tcmu_device *dev;
int i;
dev = lookup_dev_by_name(ctx, dev_name, &i);
if (!dev) {
tcmu_err("Could not remove device %s: not found.\n", dev_name);
return;
}
/*
* If called through nl, IO will be stopped. If called by a
* app/daemon, IO might be runnning. Try to do a ordered
* shutdown and allow IO to complete normally.
*/
if (should_block) {
tcmu_cfgfs_dev_exec_action(dev, "block_dev", 1);
tcmu_dev_flush_ring(dev);
}
darray_remove(ctx->devices, i);
dev->handler->removed(dev);
device_close_shm(dev);
if (should_block)
tcmu_cfgfs_dev_exec_action(dev, "block_dev", 0);
tcmu_dev_dbg(dev, "removed from tcmulib.\n");
free(dev);
}
static int read_uio_name(const char *uio_dev, char **dev_name)
{
int fd;
char *tmp_path;
int ret = -1;
char buf[PATH_MAX] = {'\0'};
if (asprintf(&tmp_path, "/sys/class/uio/%s/name", uio_dev) == -1)
return -1;
fd = open(tmp_path, O_RDONLY);
if (fd == -1) {
tcmu_err("could not open %s\n", tmp_path);
goto free_path;
}
ret = read(fd, buf, sizeof(buf));
if (ret <= 0 || ret >= sizeof(buf)) {
tcmu_err("read of %s had issues\n", tmp_path);
goto close;
}
buf[ret-1] = '\0'; /* null-terminate and chop off the \n */
*dev_name = strdup(buf);
ret = 0;
close:
close(fd);
free_path:
free(tmp_path);
return ret;
}
static int is_uio(const struct dirent *dirent)
{
char *dev_name = NULL;
ssize_t ret = 0;
if (strncmp(dirent->d_name, "uio", 3))
return 0;
if (read_uio_name(dirent->d_name, &dev_name))
goto out;
/* we only want uio devices whose name is a format we expect */
if (strncmp(dev_name, "tcm-user", 8))
goto out;
ret = 1;
out:
if (dev_name)
free(dev_name);
return ret;
}
static int open_devices(struct tcmulib_context *ctx)
{
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 *dev_name = NULL;
if (read_uio_name(dirent_list[i]->d_name, &dev_name))
continue;
if (device_add(ctx, dirent_list[i]->d_name, dev_name, true) < 0) {
free (dev_name);
continue;
}
free(dev_name);
num_good_devs++;
}
for (i = 0; i < num_devs; i++)
free(dirent_list[i]);
free(dirent_list);
return num_good_devs;
}
static void release_resources(struct tcmulib_context *ctx)
{
teardown_netlink(ctx->nl_sock);
darray_free(ctx->handlers);
darray_free(ctx->devices);
free(ctx);
}
struct tcmulib_context *tcmulib_initialize(
struct tcmulib_handler *handlers,
size_t handler_count)
{
struct tcmulib_context *ctx;
int ret;
int i;
ctx = calloc(1, sizeof(*ctx));
if (!ctx)
return NULL;
ctx->nl_sock = setup_netlink(ctx);
if (!ctx->nl_sock) {
free(ctx);
return NULL;
}
darray_init(ctx->handlers);
darray_init(ctx->devices);
for (i = 0; i < handler_count; i++) {
struct tcmulib_handler handler = handlers[i];
handler.ctx = ctx;
darray_append(ctx->handlers, handler);
}
ret = open_devices(ctx);
if (ret < 0) {
release_resources(ctx);
return NULL;
}
return ctx;
}
void tcmulib_close(struct tcmulib_context *ctx)
{
close_devices(ctx);
release_resources(ctx);
}
int tcmulib_get_master_fd(struct tcmulib_context *ctx)
{
return nl_socket_get_fd(ctx->nl_sock);
}
int tcmulib_master_fd_ready(struct tcmulib_context *ctx)
{
return nl_recvmsgs_default(ctx->nl_sock);
}
void *tcmu_dev_get_private(struct tcmu_device *dev)
{
return dev->hm_private;
}
void tcmu_dev_set_private(struct tcmu_device *dev, void *private)
{
dev->hm_private = private;
}
const char *tcmu_dev_get_uio_name(struct tcmu_device *dev)
{
return dev->dev_name;
}
void tcmu_set_thread_name(const char *prefix, struct tcmu_device *dev)
{
const char *uio = dev ? tcmu_dev_get_uio_name(dev) : NULL;
char *pname;
if (!prefix) {
tcmu_dev_err(dev, "Failed to set name for thread %lu\n",
pthread_self());
return;
}
if (asprintf(&pname, "%s%s%s", prefix, uio ? "-" : "", uio ? uio : "") == -1) {
tcmu_dev_err(dev, "Could not allocate thread name.\n");
return;
}
if (strlen(pname) >= TCMU_THREAD_NAME_LEN) {
tcmu_dev_warn(dev, "Cannot set thread name to %s. Name must be less than %d chars. ",
pname, TCMU_THREAD_NAME_LEN);
pname[TCMU_THREAD_NAME_LEN - 1] = '\0';
tcmu_dev_warn(dev, "Truncating to %s.\n", pname);
}
if (pthread_setname_np(pthread_self(), pname))
tcmu_dev_err(dev, "Could not set thread name to %s\n", pname);
free(pname);
}
void tcmu_dev_set_num_lbas(struct tcmu_device *dev, uint64_t num_lbas)
{
dev->num_lbas = num_lbas;
}
uint64_t tcmu_dev_get_num_lbas(struct tcmu_device *dev)
{
return dev->num_lbas;
}
uint64_t tcmu_lba_to_byte(struct tcmu_device *dev, uint64_t lba)
{
return lba << dev->block_size_shift;
}
uint64_t tcmu_byte_to_lba(struct tcmu_device *dev, uint64_t byte)
{
return byte >> dev->block_size_shift;
}
uint64_t tcmu_cdb_to_byte(struct tcmu_device *dev, uint8_t *cdb)
{
return tcmu_lba_to_byte(dev, tcmu_cdb_get_lba(cdb));
}
void tcmu_dev_set_block_size(struct tcmu_device *dev, uint32_t block_size)
{
dev->block_size = block_size;
dev->block_size_shift = ffs(block_size) - 1;
}
uint32_t tcmu_dev_get_block_size(struct tcmu_device *dev)
{
return dev->block_size;
}
/**
* tcmu_dev_set_max_xfer_len - set device's max command size
* @dev: tcmu device
* @len: max transfer length in block_size sectors
*/
void tcmu_dev_set_max_xfer_len(struct tcmu_device *dev, uint32_t len)
{
dev->max_xfer_len = len;
}
uint32_t tcmu_dev_get_max_xfer_len(struct tcmu_device *dev)
{
return dev->max_xfer_len;
}
/**
* tcmu_dev_set_opt_xcopy_rw_len - set device's emulated xcopy chunk len
* @dev: tcmu device
* @len: optimal RW len, in block_size sectors, for emulate xcopy operations
*/
void tcmu_dev_set_opt_xcopy_rw_len(struct tcmu_device *dev, uint32_t len)
{
dev->opt_xcopy_rw_len = len;
}
uint32_t tcmu_dev_get_opt_xcopy_rw_len(struct tcmu_device *dev)
{
return dev->opt_xcopy_rw_len;
}
/**
* tcmu_dev_set/get_opt_unmap_gran - set/get device's optimal unmap granularity
* @dev: tcmu device
* @len: optimal unmap granularity length in block_size sectors
* @split: true if handler needs unmaps larger then len to be split for it.
*/
void tcmu_dev_set_opt_unmap_gran(struct tcmu_device *dev, uint32_t len,
bool split)
{
dev->split_unmaps = split;
dev->opt_unmap_gran = len;
}
uint32_t tcmu_dev_get_opt_unmap_gran(struct tcmu_device *dev)
{
return dev->opt_unmap_gran;
}
/**
* tcmu_dev_set/get_max_unmap_len - set/get device's man unmap len
* @dev: tcmu device
* @len: max unmap len in block_size sectors
*/
void tcmu_dev_set_max_unmap_len(struct tcmu_device *dev, uint32_t len)
{
dev->max_unmap_len = len;
}
uint32_t tcmu_dev_get_max_unmap_len(struct tcmu_device *dev)
{
return dev->max_unmap_len;
}
/**
* tcmu_dev_set/get_unmap_gran_align - set/get device's unmap granularity alignment
* @dev: tcmu device
* @len: unmap granularity alignment length in block_size sectors
*/
void tcmu_dev_set_unmap_gran_align(struct tcmu_device *dev, uint32_t len)
{
dev->unmap_gran_align = len;
}
uint32_t tcmu_dev_get_unmap_gran_align(struct tcmu_device *dev)
{
return dev->unmap_gran_align;
}
void tcmu_dev_set_write_cache_enabled(struct tcmu_device *dev, bool enabled)
{
dev->write_cache_enabled = enabled;
}
bool tcmu_dev_get_write_cache_enabled(struct tcmu_device *dev)
{
return dev->write_cache_enabled;
}
void tcmu_dev_set_solid_state_media(struct tcmu_device *dev, bool solid_state)
{
dev->solid_state_media = solid_state;
}
bool tcmu_dev_get_solid_state_media(struct tcmu_device *dev)