forked from linux-nvme/libnvme
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtree.h
More file actions
1574 lines (1402 loc) · 42.2 KB
/
tree.h
File metadata and controls
1574 lines (1402 loc) · 42.2 KB
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: LGPL-2.1-or-later
/*
* This file is part of libnvme.
* Copyright (c) 2020 Western Digital Corporation or its affiliates.
*
* Authors: Keith Busch <[email protected]>
* Chaitanya Kulkarni <[email protected]>
*/
#ifndef _LIBNVME_TREE_H
#define _LIBNVME_TREE_H
#include <stdio.h>
#include <stdbool.h>
#include <stddef.h>
#include <sys/types.h>
#include <netinet/in.h>
#include <nvme/ioctl.h>
#include <nvme/util.h>
/**
* DOC: tree.h
*
* libnvme tree object interface
*/
typedef struct nvme_ns *nvme_ns_t;
typedef struct nvme_path *nvme_path_t;
typedef struct nvme_ctrl *nvme_ctrl_t;
typedef struct nvme_subsystem *nvme_subsystem_t;
typedef struct nvme_host *nvme_host_t;
typedef struct nvme_root *nvme_root_t;
typedef bool (*nvme_scan_filter_t)(nvme_subsystem_t, nvme_ctrl_t,
nvme_ns_t, void *);
/**
* nvme_create_root() - Initialize root object
* @fp: File descriptor for logging messages
* @log_level: Logging level to use
*
* Return: Initialized &nvme_root_t object
*/
nvme_root_t nvme_create_root(FILE *fp, int log_level);
/**
* nvme_root_set_application - Specify managing application
* @r: &nvme_root_t object
* @a: Application string
*
* Sets the managing application string for @r.
*/
void nvme_root_set_application(nvme_root_t r, const char *a);
/**
* nvme_root_get_application - Get managing application
* @r: &nvme_root_t object
*
* Returns the managing application string for @r or NULL if not set.
*/
const char *nvme_root_get_application(nvme_root_t r);
/**
* nvme_root_skip_namespaces - Skip namespace scanning
* @r: &nvme_root_t object
*
* Sets a flag to skip namespaces during scanning.
*/
void nvme_root_skip_namespaces(nvme_root_t r);
/**
* nvme_root_release_fds - Close all opened file descriptors in the tree
* @r: &nvme_root_t object
*
* Controller and Namespace objects cache the file descriptors
* of opened nvme devices. This API can be used to close and
* clear all cached fds in the tree.
*
*/
void nvme_root_release_fds(nvme_root_t r);
/**
* nvme_free_tree() - Free root object
* @r: &nvme_root_t object
*
* Free an &nvme_root_t object and all attached objects
*/
void nvme_free_tree(nvme_root_t r);
/**
* nvme_first_host() - Start host iterator
* @r: &nvme_root_t object
*
* Return: First &nvme_host_t object in an iterator
*/
nvme_host_t nvme_first_host(nvme_root_t r);
/**
* nvme_next_host() - Next host iterator
* @r: &nvme_root_t object
* @h: Previous &nvme_host_t iterator
*
* Return: Next &nvme_host_t object in an iterator
*/
nvme_host_t nvme_next_host(nvme_root_t r, nvme_host_t h);
/**
* nvme_host_get_root() - Returns nvme_root_t object
* @h: &nvme_host_t object
*
* Return: &nvme_root_t object from @h
*/
nvme_root_t nvme_host_get_root(nvme_host_t h);
/**
* nvme_lookup_host() - Lookup nvme_host_t object
* @r: &nvme_root_t object
* @hostnqn: Host NQN
* @hostid: Host ID
*
* Lookup a nvme_host_t object based on @hostnqn and @hostid
* or create one if not found.
*
* Return: &nvme_host_t object
*/
nvme_host_t nvme_lookup_host(nvme_root_t r, const char *hostnqn,
const char *hostid);
/**
* nvme_host_get_dhchap_key() - Return host key
* @h: Host for which the key should be returned
*
* Return: DH-HMAC-CHAP host key or NULL if not set
*/
const char *nvme_host_get_dhchap_key(nvme_host_t h);
/**
* nvme_host_set_dhchap_key() - set host key
* @h: Host for which the key should be set
* @key: DH-HMAC-CHAP Key to set or NULL to clear existing key
*/
void nvme_host_set_dhchap_key(nvme_host_t h, const char *key);
/**
* nvme_host_set_pdc_enabled() - Set Persistent Discovery Controller flag
* @h: Host for which the falg should be set
* @enabled: The bool to set the enabled flag
*
* When nvme_host_set_pdc_enabled() is not used to set the PDC flag,
* nvme_host_is_pdc_enabled() will return the default value which was
* passed into the function and not the undefined flag value.
*/
void nvme_host_set_pdc_enabled(nvme_host_t h, bool enabled);
/**
* nvme_host_is_pdc_enabled() - Is Persistenct Discovery Controller enabled
* @h: Host which to check if PDC is enabled
* @fallback: The fallback default value of the flag when
* @nvme_host_set_pdc_enabled has not be used
* to set the flag.
*
* Return: true if PDC is enabled for @h, else false
*/
bool nvme_host_is_pdc_enabled(nvme_host_t h, bool fallback);
/**
* nvme_default_host() - Initializes the default host
* @r: &nvme_root_t object
*
* Initializes the default host object based on the hostnqn/hostid
* values returned by nvme_host_get_ids() and attaches it to @r.
*
* Return: &nvme_host_t object
*/
nvme_host_t nvme_default_host(nvme_root_t r);
/**
* nvme_host_get_ids - Retrieve host ids from various sources
*
* @r: &nvme_root_t object
* @hostnqn_arg: Input hostnqn (command line) argument
* @hostid_arg: Input hostid (command line) argument
* @hostnqn: Output hostnqn
* @hostid: Output hostid
*
* nvme_host_get_ids figures out which hostnqn/hostid is to be used.
* There are several sources where this information can be retrieved.
*
* The order is:
*
* - Start with informartion from DMI or device-tree
* - Override hostnqn and hostid from /etc/nvme files
* - Override hostnqn or hostid with values from JSON
* configuration file. The first host entry in the file is
* considered the default host.
* - Override hostnqn or hostid with values from the command line
* (@hostnqn_arg, @hostid_arg).
*
* If the IDs are still NULL after the lookup algorithm, the function
* will generate random IDs.
*
* The function also verifies that hostnqn and hostid matches. The Linux
* NVMe implementation expects a 1:1 matching between the IDs.
*
* Return: 0 on success (@hostnqn and @hostid contain valid strings
* which the caller needs to free), -1 otherwise and errno is set.
*/
int nvme_host_get_ids(nvme_root_t r,
char *hostnqn_arg, char *hostid_arg,
char **hostnqn, char **hostid);
/**
* nvme_first_subsystem() - Start subsystem iterator
* @h: &nvme_host_t object
*
* Return: first &nvme_subsystem_t object in an iterator
*/
nvme_subsystem_t nvme_first_subsystem(nvme_host_t h);
/**
* nvme_next_subsystem() - Next subsystem iterator
* @h: &nvme_host_t object
* @s: Previous &nvme_subsystem_t iterator
*
* Return: next &nvme_subsystem_t object in an iterator
*/
nvme_subsystem_t nvme_next_subsystem(nvme_host_t h, nvme_subsystem_t s);
/**
* nvme_lookup_subsystem() - Lookup nvme_subsystem_t object
* @h: &nvme_host_t object
* @name: Name of the subsystem (may be NULL)
* @subsysnqn: Subsystem NQN
*
* Lookup a &nvme_subsystem_t object in @h base on @name (if present)
* and @subsysnqn or create one if not found.
*
* Return: nvme_subsystem_t object
*/
nvme_subsystem_t nvme_lookup_subsystem(struct nvme_host *h,
const char *name,
const char *subsysnqn);
/**
* nvme_free_subsystem() - Free a subsystem
* @s: subsystem
*
* Frees @s and all related objects.
*/
void nvme_free_subsystem(struct nvme_subsystem *s);
/**
* nvme_subsystem_get_host() - Returns nvme_host_t object
* @s: subsystem
*
* Return: &nvme_host_t object from @s
*/
nvme_host_t nvme_subsystem_get_host(nvme_subsystem_t s);
/**
* nvme_ctrl_first_ns() - Start namespace iterator
* @c: Controller instance
*
* Return: First &nvme_ns_t object of an @c iterator
*/
nvme_ns_t nvme_ctrl_first_ns(nvme_ctrl_t c);
/**
* nvme_ctrl_next_ns() - Next namespace iterator
* @c: Controller instance
* @n: Previous nvme_ns_t iterator
*
* Return: Next nvme_ns_t object of an @c iterator
*/
nvme_ns_t nvme_ctrl_next_ns(nvme_ctrl_t c, nvme_ns_t n);
/**
* nvme_ctrl_first_path() - Start path iterator
* @c: Controller instance
*
* Return: First &nvme_path_t object of an @c iterator
*/
nvme_path_t nvme_ctrl_first_path(nvme_ctrl_t c);
/**
* nvme_ctrl_next_path() - Next path iterator
* @c: Controller instance
* @p: Previous &nvme_path_t object of an @c iterator
*
* Return: Next &nvme_path_t object of an @c iterator
*/
nvme_path_t nvme_ctrl_next_path(nvme_ctrl_t c, nvme_path_t p);
/**
* nvme_subsystem_first_ctrl() - First ctrl iterator
* @s: &nvme_subsystem_t object
*
* Return: First controller of an @s iterator
*/
nvme_ctrl_t nvme_subsystem_first_ctrl(nvme_subsystem_t s);
/**
* nvme_subsystem_next_ctrl() - Next ctrl iterator
* @s: &nvme_subsystem_t object
* @c: Previous controller instance of an @s iterator
*
* Return: Next controller of an @s iterator
*/
nvme_ctrl_t nvme_subsystem_next_ctrl(nvme_subsystem_t s, nvme_ctrl_t c);
/**
* nvme_namespace_first_path() - Start path iterator
* @ns: Namespace instance
*
* Return: First &nvme_path_t object of an @ns iterator
*/
nvme_path_t nvme_namespace_first_path(nvme_ns_t ns);
/**
* nvme_namespace_next_path() - Next path iterator
* @ns: Namespace instance
* @p: Previous &nvme_path_t object of an @ns iterator
*
* Return: Next &nvme_path_t object of an @ns iterator
*/
nvme_path_t nvme_namespace_next_path(nvme_ns_t ns, nvme_path_t p);
/**
* nvme_lookup_ctrl() - Lookup nvme_ctrl_t object
* @s: &nvme_subsystem_t object
* @transport: Transport name
* @traddr: Transport address
* @host_traddr: Host transport address
* @host_iface: Host interface name
* @trsvcid: Transport service identifier
* @p: Previous controller instance
*
* Lookup a controller in @s based on @transport, @traddr,
* @host_traddr, @host_iface, and @trsvcid. @transport must be specified,
* other fields may be required depending on the transport. A new
* object is created if none is found. If @p is specified the lookup
* will start at @p instead of the first controller.
*
* Return: Controller instance
*/
nvme_ctrl_t nvme_lookup_ctrl(nvme_subsystem_t s, const char *transport,
const char *traddr, const char *host_traddr,
const char *host_iface, const char *trsvcid,
nvme_ctrl_t p);
/**
* nvme_ctrl_find() - Locate an existing controller
* @s: &nvme_subsystem_t object
* @transport: Transport name
* @traddr: Transport address
* @trsvcid: Transport service identifier
* @subsysnqn: Subsystem NQN
* @host_traddr: Host transport address
* @host_iface: Host interface name
*
* Lookup a controller in @s based on @transport, @traddr, @trsvcid,
* @subsysnqn, @host_traddr, and @host_iface. @transport must be specified,
* other fields may be required depending on the transport. Parameters set
* to NULL will be ignored.
*
* Unlike nvme_lookup_ctrl(), this function does not create a new object if
* an existing controller cannot be found.
*
* Return: Controller instance on success, NULL otherwise.
*/
nvme_ctrl_t nvme_ctrl_find(nvme_subsystem_t s, const char *transport,
const char *traddr, const char *trsvcid,
const char *subsysnqn, const char *host_traddr,
const char *host_iface);
/**
* nvme_ctrl_config_match() - Check if ctrl @c matches config params
* @c: An existing controller instance
* @transport: Transport name
* @traddr: Transport address
* @trsvcid: Transport service identifier
* @subsysnqn: Subsystem NQN
* @host_traddr: Host transport address
* @host_iface: Host interface name
*
* Check that controller @c matches parameters: @transport, @traddr,
* @trsvcid, @subsysnqn, @host_traddr, and @host_iface. Parameters set
* to NULL will be ignored.
*
* Return: true if there's a match, false otherwise.
*/
bool nvme_ctrl_config_match(struct nvme_ctrl *c, const char *transport,
const char *traddr, const char *trsvcid,
const char *subsysnqn, const char *host_traddr,
const char *host_iface);
/**
* nvme_create_ctrl() - Allocate an unconnected NVMe controller
* @r: NVMe root element
* @subsysnqn: Subsystem NQN
* @transport: Transport type
* @traddr: Transport address
* @host_traddr: Host transport address
* @host_iface: Host interface name
* @trsvcid: Transport service ID
*
* Creates an unconnected controller to be used for nvme_add_ctrl().
*
* Return: Controller instance
*/
nvme_ctrl_t nvme_create_ctrl(nvme_root_t r,
const char *subsysnqn, const char *transport,
const char *traddr, const char *host_traddr,
const char *host_iface, const char *trsvcid);
/**
* nvme_subsystem_first_ns() - Start namespace iterator
* @s: &nvme_subsystem_t object
*
* Return: First &nvme_ns_t object of an @s iterator
*/
nvme_ns_t nvme_subsystem_first_ns(nvme_subsystem_t s);
/**
* nvme_subsystem_next_ns() - Next namespace iterator
* @s: &nvme_subsystem_t object
* @n: Previous &nvme_ns_t iterator
*
* Return: Next &nvme_ns_t object of an @s iterator
*/
nvme_ns_t nvme_subsystem_next_ns(nvme_subsystem_t s, nvme_ns_t n);
/**
* nvme_for_each_host_safe() - Traverse host list
* @r: &nvme_root_t object
* @h: &nvme_host_t object
* @_h: Temporary &nvme_host_t object
*/
#define nvme_for_each_host_safe(r, h, _h) \
for (h = nvme_first_host(r), \
_h = nvme_next_host(r, h); \
h != NULL; \
h = _h, _h = nvme_next_host(r, h))
/**
* nvme_for_each_host() - Traverse host list
* @r: &nvme_root_t object
* @h: &nvme_host_t object
*/
#define nvme_for_each_host(r, h) \
for (h = nvme_first_host(r); h != NULL; \
h = nvme_next_host(r, h))
/**
* nvme_for_each_subsystem_safe() - Traverse subsystems
* @h: &nvme_host_t object
* @s: &nvme_subsystem_t object
* @_s: Temporary &nvme_subsystem_t object
*/
#define nvme_for_each_subsystem_safe(h, s, _s) \
for (s = nvme_first_subsystem(h), \
_s = nvme_next_subsystem(h, s); \
s != NULL; \
s = _s, _s = nvme_next_subsystem(h, s))
/**
* nvme_for_each_subsystem() - Traverse subsystems
* @h: &nvme_host_t object
* @s: &nvme_subsystem_t object
*/
#define nvme_for_each_subsystem(h, s) \
for (s = nvme_first_subsystem(h); s != NULL; \
s = nvme_next_subsystem(h, s))
/**
* nvme_subsystem_for_each_ctrl_safe() - Traverse controllers
* @s: &nvme_subsystem_t object
* @c: Controller instance
* @_c: A &nvme_ctrl_t_node to use as temporary storage
*/
#define nvme_subsystem_for_each_ctrl_safe(s, c, _c) \
for (c = nvme_subsystem_first_ctrl(s), \
_c = nvme_subsystem_next_ctrl(s, c); \
c != NULL; \
c = _c, _c = nvme_subsystem_next_ctrl(s, c))
/**
* nvme_subsystem_for_each_ctrl() - Traverse controllers
* @s: &nvme_subsystem_t object
* @c: Controller instance
*/
#define nvme_subsystem_for_each_ctrl(s, c) \
for (c = nvme_subsystem_first_ctrl(s); c != NULL; \
c = nvme_subsystem_next_ctrl(s, c))
/**
* nvme_ctrl_for_each_ns_safe() - Traverse namespaces
* @c: Controller instance
* @n: &nvme_ns_t object
* @_n: A &nvme_ns_t_node to use as temporary storage
*/
#define nvme_ctrl_for_each_ns_safe(c, n, _n) \
for (n = nvme_ctrl_first_ns(c), \
_n = nvme_ctrl_next_ns(c, n); \
n != NULL; \
n = _n, _n = nvme_ctrl_next_ns(c, n))
/**
* nvme_ctrl_for_each_ns() - Traverse namespaces
* @c: Controller instance
* @n: &nvme_ns_t object
*/
#define nvme_ctrl_for_each_ns(c, n) \
for (n = nvme_ctrl_first_ns(c); n != NULL; \
n = nvme_ctrl_next_ns(c, n))
/**
* nvme_ctrl_for_each_path_safe() - Traverse paths
* @c: Controller instance
* @p: &nvme_path_t object
* @_p: A &nvme_path_t_node to use as temporary storage
*/
#define nvme_ctrl_for_each_path_safe(c, p, _p) \
for (p = nvme_ctrl_first_path(c), \
_p = nvme_ctrl_next_path(c, p); \
p != NULL; \
p = _p, _p = nvme_ctrl_next_path(c, p))
/**
* nvme_ctrl_for_each_path() - Traverse paths
* @c: Controller instance
* @p: &nvme_path_t object
*/
#define nvme_ctrl_for_each_path(c, p) \
for (p = nvme_ctrl_first_path(c); p != NULL; \
p = nvme_ctrl_next_path(c, p))
/**
* nvme_subsystem_for_each_ns_safe() - Traverse namespaces
* @s: &nvme_subsystem_t object
* @n: &nvme_ns_t object
* @_n: A &nvme_ns_t_node to use as temporary storage
*/
#define nvme_subsystem_for_each_ns_safe(s, n, _n) \
for (n = nvme_subsystem_first_ns(s), \
_n = nvme_subsystem_next_ns(s, n); \
n != NULL; \
n = _n, _n = nvme_subsystem_next_ns(s, n))
/**
* nvme_subsystem_for_each_ns() - Traverse namespaces
* @s: &nvme_subsystem_t object
* @n: &nvme_ns_t object
*/
#define nvme_subsystem_for_each_ns(s, n) \
for (n = nvme_subsystem_first_ns(s); n != NULL; \
n = nvme_subsystem_next_ns(s, n))
/**
* nvme_namespace_for_each_path_safe() - Traverse paths
* @n: Namespace instance
* @p: &nvme_path_t object
* @_p: A &nvme_path_t_node to use as temporary storage
*/
#define nvme_namespace_for_each_path_safe(n, p, _p) \
for (p = nvme_namespace_first_path(n), \
_p = nvme_namespace_next_path(n, p); \
p != NULL; \
p = _p, _p = nvme_namespace_next_path(n, p))
/**
* nvme_namespace_for_each_path() - Traverse paths
* @n: Namespace instance
* @p: &nvme_path_t object
*/
#define nvme_namespace_for_each_path(n, p) \
for (p = nvme_namespace_first_path(n); p != NULL; \
p = nvme_namespace_next_path(n, p))
/**
* nvme_ns_get_fd() - Get associated file descriptor
* @n: Namespace instance
*
* libnvme will open() the file (if not already opened) and keep
* an internal copy of the file descriptor. Following calls to
* this API retrieve the internal cached copy of the file
* descriptor. The file will remain opened and the fd will
* remain cached until the ns object is deleted or
* nvme_ns_release_fd() is called.
*
* Return: File descriptor associated with @n or -1
*/
int nvme_ns_get_fd(nvme_ns_t n);
/**
* nvme_ns_release_fd() - Close fd and clear fd from ns object
* @n: Namespace instance
*
*/
void nvme_ns_release_fd(nvme_ns_t n);
/**
* nvme_ns_get_nsid() - NSID of a namespace
* @n: Namespace instance
*
* Return: NSID of @n
*/
int nvme_ns_get_nsid(nvme_ns_t n);
/**
* nvme_ns_get_lba_size() - LBA size of a namespace
* @n: Namespace instance
*
* Return: LBA size of @n
*/
int nvme_ns_get_lba_size(nvme_ns_t n);
/**
* nvme_ns_get_meta_size() - Metadata size of a namespace
* @n: Namespace instance
*
* Return: Metadata size of @n
*/
int nvme_ns_get_meta_size(nvme_ns_t n);
/**
* nvme_ns_get_lba_count() - LBA count of a namespace
* @n: Namespace instance
*
* Return: LBA count of @n
*/
uint64_t nvme_ns_get_lba_count(nvme_ns_t n);
/**
* nvme_ns_get_lba_util() - LBA utilization of a namespace
* @n: Namespace instance
*
* Return: LBA utilization of @n
*/
uint64_t nvme_ns_get_lba_util(nvme_ns_t n);
/**
* nvme_ns_get_csi() - Command set identifier of a namespace
* @n: Namespace instance
*
* Return: The namespace's command set identifier in use
*/
enum nvme_csi nvme_ns_get_csi(nvme_ns_t n);
/**
* nvme_ns_get_eui64() - 64-bit eui of a namespace
* @n: Namespace instance
*
* Return: A pointer to the 64-bit eui
*/
const uint8_t *nvme_ns_get_eui64(nvme_ns_t n);
/**
* nvme_ns_get_nguid() - 128-bit nguid of a namespace
* @n: Namespace instance
*
* Return: A pointer to the 128-bit nguid
*/
const uint8_t *nvme_ns_get_nguid(nvme_ns_t n);
/**
* nvme_ns_get_uuid() - UUID of a namespace
* @n: Namespace instance
* @out: buffer for the UUID
*
* Copies the namespace's uuid into @out
*/
void nvme_ns_get_uuid(nvme_ns_t n, unsigned char out[NVME_UUID_LEN]);
/**
* nvme_ns_get_sysfs_dir() - sysfs directory of a namespace
* @n: Namespace instance
*
* Return: sysfs directory name of @n
*/
const char *nvme_ns_get_sysfs_dir(nvme_ns_t n);
/**
* nvme_ns_get_name() - sysfs name of a namespace
* @n: Namespace instance
*
* Return: sysfs name of @n
*/
const char *nvme_ns_get_name(nvme_ns_t n);
/**
* nvme_ns_get_generic_name() - Returns name of generic namespace chardev.
* @n: Namespace instance
*
* Return: Name of generic namespace chardev
*/
const char *nvme_ns_get_generic_name(nvme_ns_t n);
/**
* nvme_ns_get_firmware() - Firmware string of a namespace
* @n: Namespace instance
*
* Return: Firmware string of @n
*/
const char *nvme_ns_get_firmware(nvme_ns_t n);
/**
* nvme_ns_get_serial() - Serial number of a namespace
* @n: Namespace instance
*
* Return: Serial number string of @n
*/
const char *nvme_ns_get_serial(nvme_ns_t n);
/**
* nvme_ns_get_model() - Model of a namespace
* @n: Namespace instance
*
* Return: Model string of @n
*/
const char *nvme_ns_get_model(nvme_ns_t n);
/**
* nvme_ns_get_subsystem() - &nvme_subsystem_t of a namespace
* @n: Namespace instance
*
* Return: nvme_subsystem_t object of @n
*/
nvme_subsystem_t nvme_ns_get_subsystem(nvme_ns_t n);
/**
* nvme_ns_get_ctrl() - &nvme_ctrl_t of a namespace
* @n: Namespace instance
*
* nvme_ctrl_t object may be NULL for a multipathed namespace
*
* Return: nvme_ctrl_t object of @n if present
*/
nvme_ctrl_t nvme_ns_get_ctrl(nvme_ns_t n);
/**
* nvme_free_ns() - Free a namespace object
* @n: Namespace instance
*/
void nvme_free_ns(struct nvme_ns *n);
/**
* nvme_ns_read() - Read from a namespace
* @n: Namespace instance
* @buf: Buffer into which the data will be transferred
* @offset: LBA offset of @n
* @count: Number of sectors in @buf
*
* Return: Number of sectors read or -1 on error.
*/
int nvme_ns_read(nvme_ns_t n, void *buf, off_t offset, size_t count);
/**
* nvme_ns_write() - Write to a namespace
* @n: Namespace instance
* @buf: Buffer with data to be written
* @offset: LBA offset of @n
* @count: Number of sectors in @buf
*
* Return: Number of sectors written or -1 on error
*/
int nvme_ns_write(nvme_ns_t n, void *buf, off_t offset, size_t count);
/**
* nvme_ns_verify() - Verify data on a namespace
* @n: Namespace instance
* @offset: LBA offset of @n
* @count: Number of sectors to be verified
*
* Return: Number of sectors verified
*/
int nvme_ns_verify(nvme_ns_t n, off_t offset, size_t count);
/**
* nvme_ns_compare() - Compare data on a namespace
* @n: Namespace instance
* @buf: Buffer with data to be compared
* @offset: LBA offset of @n
* @count: Number of sectors in @buf
*
* Return: Number of sectors compared
*/
int nvme_ns_compare(nvme_ns_t n, void *buf, off_t offset, size_t count);
/**
* nvme_ns_write_zeros() - Write zeros to a namespace
* @n: Namespace instance
* @offset: LBA offset in @n
* @count: Number of sectors to be written
*
* Return: Number of sectors written
*/
int nvme_ns_write_zeros(nvme_ns_t n, off_t offset, size_t count);
/**
* nvme_ns_write_uncorrectable() - Issus a 'write uncorrectable' command
* @n: Namespace instance
* @offset: LBA offset in @n
* @count: Number of sectors to be written
*
* Return: Number of sectors written
*/
int nvme_ns_write_uncorrectable(nvme_ns_t n, off_t offset, size_t count);
/**
* nvme_ns_flush() - Flush data to a namespace
* @n: Namespace instance
*
* Return: 0 on success, -1 on error.
*/
int nvme_ns_flush(nvme_ns_t n);
/**
* nvme_ns_identify() - Issue an 'identify namespace' command
* @n: Namespace instance
* @ns: &nvme_id_ns buffer
*
* Writes the data returned by the 'identify namespace' command
* into @ns.
*
* Return: 0 on success, -1 on error.
*/
int nvme_ns_identify(nvme_ns_t n, struct nvme_id_ns *ns);
/**
* nvme_ns_identify_descs() - Issue an 'identify descriptors' command
* @n: Namespace instance
* @descs: List of identify descriptors
*
* Writes the data returned by the 'identify descriptors' command
* into @descs.
*
* Return: 0 on success, -1 on error.
*/
int nvme_ns_identify_descs(nvme_ns_t n, struct nvme_ns_id_desc *descs);
/**
* nvme_path_get_name() - sysfs name of an &nvme_path_t object
* @p: &nvme_path_t object
*
* Return: sysfs name of @p
*/
const char *nvme_path_get_name(nvme_path_t p);
/**
* nvme_path_get_sysfs_dir() - sysfs directory of an nvme_path_t object
* @p: &nvme_path_t object
*
* Return: sysfs directory of @p
*/
const char *nvme_path_get_sysfs_dir(nvme_path_t p);
/**
* nvme_path_get_ana_state() - ANA state of an nvme_path_t object
* @p: &nvme_path_t object
*
* Return: ANA (Asynchronous Namespace Access) state of @p
*/
const char *nvme_path_get_ana_state(nvme_path_t p);
/**
* nvme_path_get_ctrl() - Parent controller of an nvme_path_t object
* @p: &nvme_path_t object
*
* Return: Parent controller if present
*/
nvme_ctrl_t nvme_path_get_ctrl(nvme_path_t p);
/**
* nvme_path_get_ns() - Parent namespace of an nvme_path_t object
* @p: &nvme_path_t object
*
* Return: Parent namespace if present
*/
nvme_ns_t nvme_path_get_ns(nvme_path_t p);
/**
* nvme_ctrl_get_fd() - Get associated file descriptor
* @c: Controller instance
*
* libnvme will open() the file (if not already opened) and keep
* an internal copy of the file descriptor. Following calls to
* this API retrieve the internal cached copy of the file
* descriptor. The file will remain opened and the fd will
* remain cached until the controller object is deleted or
* nvme_ctrl_release_fd() is called.
*
* Return: File descriptor associated with @c or -1
*/
int nvme_ctrl_get_fd(nvme_ctrl_t c);
/**
* nvme_ctrl_release_fd() - Close fd and clear fd from controller object
* @c: Controller instance
*
*/
void nvme_ctrl_release_fd(nvme_ctrl_t c);
/**
* nvme_ctrl_get_name() - sysfs name of a controller
* @c: Controller instance
*
* Return: sysfs name of @c
*/
const char *nvme_ctrl_get_name(nvme_ctrl_t c);
/**
* nvme_ctrl_get_sysfs_dir() - sysfs directory of a controller
* @c: Controller instance
*
* Return: sysfs directory name of @c
*/
const char *nvme_ctrl_get_sysfs_dir(nvme_ctrl_t c);
/**
* nvme_ctrl_get_address() - Address string of a controller
* @c: Controller instance
*
* Return: NVMe-over-Fabrics address string of @c or empty string
* of no address is present.
*/
const char *nvme_ctrl_get_address(nvme_ctrl_t c);
/**
* nvme_ctrl_get_src_addr() - Extract src_addr from the c->address string
* @c: Controller instance
* @src_addr: Where to copy the src_addr. Size must be at least INET6_ADDRSTRLEN.
* @src_addr_len: Length of the buffer @src_addr.
*
* Return: Pointer to @src_addr on success. NULL on failure to extract the src_addr.
*/
char *nvme_ctrl_get_src_addr(nvme_ctrl_t c, char *src_addr, size_t src_addr_len);
/**
* nvme_ctrl_get_phy_slot() - PCI physical slot number of a controller
* @c: Controller instance
*
* Return: PCI physical slot number of @c or empty string if slot
* number is not present.
*/
const char *nvme_ctrl_get_phy_slot(nvme_ctrl_t c);
/**
* nvme_ctrl_get_firmware() - Firmware string of a controller
* @c: Controller instance
*
* Return: Firmware string of @c
*/
const char *nvme_ctrl_get_firmware(nvme_ctrl_t c);
/**
* nvme_ctrl_get_model() - Model of a controller
* @c: Controller instance
*
* Return: Model string of @c
*/
const char *nvme_ctrl_get_model(nvme_ctrl_t c);
/**
* nvme_ctrl_get_state() - Running state of a controller
* @c: Controller instance
*
* Return: String indicating the running state of @c
*/
const char *nvme_ctrl_get_state(nvme_ctrl_t c);
/**
* nvme_ctrl_get_numa_node() - NUMA node of a controller
* @c: Controller instance
*
* Return: String indicating the NUMA node
*/
const char *nvme_ctrl_get_numa_node(nvme_ctrl_t c);
/**
* nvme_ctrl_get_queue_count() - Queue count of a controller
* @c: Controller instance
*
* Return: Queue count of @c
*/
const char *nvme_ctrl_get_queue_count(nvme_ctrl_t c);
/**
* nvme_ctrl_get_serial() - Serial number of a controller
* @c: Controller instance
*
* Return: Serial number string of @c
*/
const char *nvme_ctrl_get_serial(nvme_ctrl_t c);
/**
* nvme_ctrl_get_sqsize() - SQ size of a controller