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
|
.. _util.h:
**util.h**
libnvme utility functions
.. c:enum:: nvme_connect_err
nvme connect error codes
**Constants**
``ENVME_CONNECT_RESOLVE``
failed to resolve host
``ENVME_CONNECT_ADDRFAM``
unrecognized address family
``ENVME_CONNECT_TRADDR``
failed to get traddr
``ENVME_CONNECT_TARG``
need a transport (-t) argument
``ENVME_CONNECT_AARG``
need a address (-a) argument
``ENVME_CONNECT_OPEN``
failed to open nvme-fabrics device
``ENVME_CONNECT_WRITE``
failed to write to nvme-fabrics device
``ENVME_CONNECT_READ``
failed to read from nvme-fabrics device
``ENVME_CONNECT_PARSE``
failed to parse ctrl info
``ENVME_CONNECT_INVAL_TR``
invalid transport type
``ENVME_CONNECT_LOOKUP_SUBSYS_NAME``
failed to lookup subsystem name
``ENVME_CONNECT_LOOKUP_SUBSYS``
failed to lookup subsystem
``ENVME_CONNECT_ALREADY``
the connect attempt failed, already connected
``ENVME_CONNECT_INVAL``
invalid arguments/configuration
``ENVME_CONNECT_ADDRINUSE``
hostnqn already in use
``ENVME_CONNECT_NODEV``
invalid interface
``ENVME_CONNECT_OPNOTSUPP``
not supported
``ENVME_CONNECT_CONNREFUSED``
connection refused
``ENVME_CONNECT_ADDRNOTAVAIL``
cannot assign requested address
``ENVME_CONNECT_IGNORED``
connect attempt is ignored due to configuration
``ENVME_CONNECT_NOKEY``
the TLS key is missing
.. c:function:: __u8 nvme_status_to_errno (int status, bool fabrics)
Converts nvme return status to errno
**Parameters**
``int status``
Return status from an nvme passthrough command
``bool fabrics``
Set to true if :c:type:`status` is to a fabrics target.
**Return**
An errno representing the nvme status if it is an nvme status field,
or unchanged status is < 0 since errno is already set.
.. c:function:: const char * nvme_status_to_string (int status, bool fabrics)
Returns string describing nvme return status.
**Parameters**
``int status``
Return status from an nvme passthrough command
``bool fabrics``
Set to true if :c:type:`status` is to a fabrics target.
**Return**
String representation of the nvme status if it is an nvme status field,
or a standard errno string if status is < 0.
.. c:function:: const char * nvme_errno_to_string (int err)
Returns string describing nvme connect failures
**Parameters**
``int err``
Returned error code from nvme_add_ctrl()
**Return**
String representation of the nvme connect error codes
.. c:function:: void nvme_init_ctrl_list (struct nvme_ctrl_list *cntlist, __u16 num_ctrls, __u16 *ctrlist)
Initialize an nvme_ctrl_list structure from an array.
**Parameters**
``struct nvme_ctrl_list *cntlist``
The controller list structure to initialize
``__u16 num_ctrls``
The number of controllers in the array, :c:type:`ctrlist`.
``__u16 *ctrlist``
An array of controller identifiers in CPU native endian.
**Description**
This is intended to be used with any command that takes a controller list
argument. See nvme_ns_attach_ctrls() and nvme_ns_detach().
.. c:function:: void nvme_init_dsm_range (struct nvme_dsm_range *dsm, __u32 *ctx_attrs, __u32 *llbas, __u64 *slbas, __u16 nr_ranges)
Constructs a data set range structure
**Parameters**
``struct nvme_dsm_range *dsm``
DSM range array
``__u32 *ctx_attrs``
Array of context attributes
``__u32 *llbas``
Array of length in logical blocks
``__u64 *slbas``
Array of starting logical blocks
``__u16 nr_ranges``
The size of the dsm arrays
**Description**
Each array must be the same size of size 'nr_ranges'. This is intended to be
used with constructing a payload for nvme_dsm().
**Return**
The nvme command status if a response was received or -errno
otherwise.
.. c:function:: void nvme_init_copy_range (struct nvme_copy_range *copy, __u16 *nlbs, __u64 *slbas, __u32 *eilbrts, __u32 *elbatms, __u32 *elbats, __u16 nr)
Constructs a copy range structure
**Parameters**
``struct nvme_copy_range *copy``
Copy range array
``__u16 *nlbs``
Number of logical blocks
``__u64 *slbas``
Starting LBA
``__u32 *eilbrts``
Expected initial logical block reference tag
``__u32 *elbatms``
Expected logical block application tag mask
``__u32 *elbats``
Expected logical block application tag
``__u16 nr``
Number of descriptors to construct
.. c:function:: void nvme_init_copy_range_f1 (struct nvme_copy_range_f1 *copy, __u16 *nlbs, __u64 *slbas, __u64 *eilbrts, __u32 *elbatms, __u32 *elbats, __u16 nr)
Constructs a copy range f1 structure
**Parameters**
``struct nvme_copy_range_f1 *copy``
Copy range array
``__u16 *nlbs``
Number of logical blocks
``__u64 *slbas``
Starting LBA
``__u64 *eilbrts``
Expected initial logical block reference tag
``__u32 *elbatms``
Expected logical block application tag mask
``__u32 *elbats``
Expected logical block application tag
``__u16 nr``
Number of descriptors to construct
.. c:function:: void nvme_init_copy_range_f2 (struct nvme_copy_range_f2 *copy, __u32 *snsids, __u16 *nlbs, __u64 *slbas, __u16 *sopts, __u32 *eilbrts, __u32 *elbatms, __u32 *elbats, __u16 nr)
Constructs a copy range f2 structure
**Parameters**
``struct nvme_copy_range_f2 *copy``
Copy range array
``__u32 *snsids``
Source namespace identifier
``__u16 *nlbs``
Number of logical blocks
``__u64 *slbas``
Starting LBA
``__u16 *sopts``
Source options
``__u32 *eilbrts``
Expected initial logical block reference tag
``__u32 *elbatms``
Expected logical block application tag mask
``__u32 *elbats``
Expected logical block application tag
``__u16 nr``
Number of descriptors to construct
.. c:function:: void nvme_init_copy_range_f3 (struct nvme_copy_range_f3 *copy, __u32 *snsids, __u16 *nlbs, __u64 *slbas, __u16 *sopts, __u64 *eilbrts, __u32 *elbatms, __u32 *elbats, __u16 nr)
Constructs a copy range f3 structure
**Parameters**
``struct nvme_copy_range_f3 *copy``
Copy range array
``__u32 *snsids``
Source namespace identifier
``__u16 *nlbs``
Number of logical blocks
``__u64 *slbas``
Starting LBA
``__u16 *sopts``
Source options
``__u64 *eilbrts``
Expected initial logical block reference tag
``__u32 *elbatms``
Expected logical block application tag mask
``__u32 *elbats``
Expected logical block application tag
``__u16 nr``
Number of descriptors to construct
.. c:function:: int nvme_get_feature_length (int fid, __u32 cdw11, __u32 *len)
Retreive the command payload length for a specific feature identifier
**Parameters**
``int fid``
Feature identifier, see :c:type:`enum nvme_features_id <nvme_features_id>`.
``__u32 cdw11``
The cdw11 value may affect the transfer (only known fid is
``NVME_FEAT_FID_HOST_ID``)
``__u32 *len``
On success, set to this features payload length in bytes.
**Return**
0 on success, -1 with errno set to EINVAL if the function did not
recognize :c:type:`fid`.
.. c:function:: int nvme_get_feature_length2 (int fid, __u32 cdw11, enum nvme_data_tfr dir, __u32 *len)
Retreive the command payload length for a specific feature identifier
**Parameters**
``int fid``
Feature identifier, see :c:type:`enum nvme_features_id <nvme_features_id>`.
``__u32 cdw11``
The cdw11 value may affect the transfer (only known fid is
``NVME_FEAT_FID_HOST_ID``)
``enum nvme_data_tfr dir``
Data transfer direction: false - host to controller, true -
controller to host may affect the transfer (only known fid is
``NVME_FEAT_FID_HOST_MEM_BUF``).
``__u32 *len``
On success, set to this features payload length in bytes.
**Return**
0 on success, -1 with errno set to EINVAL if the function did not
recognize :c:type:`fid`.
.. c:function:: int nvme_get_directive_receive_length (enum nvme_directive_dtype dtype, enum nvme_directive_receive_doper doper, __u32 *len)
Get directive receive length
**Parameters**
``enum nvme_directive_dtype dtype``
Directive type, see :c:type:`enum nvme_directive_dtype <nvme_directive_dtype>`
``enum nvme_directive_receive_doper doper``
Directive receive operation, see :c:type:`enum nvme_directive_receive_doper <nvme_directive_receive_doper>`
``__u32 *len``
On success, set to this directives payload length in bytes.
**Return**
0 on success, -1 with errno set to EINVAL if the function did not
recognize :c:type:`dtype` or :c:type:`doper`.
.. c:function:: size_t get_entity_name (char *buffer, size_t bufsz)
Get Entity Name (ENAME).
**Parameters**
``char *buffer``
The buffer where the ENAME will be saved as an ASCII string.
``size_t bufsz``
The size of **buffer**.
**Description**
Per TP8010, ENAME is defined as the name associated with the host (i.e.
hostname).
**Return**
Number of characters copied to **buffer**.
.. c:function:: size_t get_entity_version (char *buffer, size_t bufsz)
Get Entity Version (EVER).
**Parameters**
``char *buffer``
The buffer where the EVER will be saved as an ASCII string.
``size_t bufsz``
The size of **buffer**.
**Description**
EVER is defined as the operating system name and version as an ASCII
string. This function reads different files from the file system and
builds a string as follows: [os type] [os release] [distro release]
E.g. "Linux 5.17.0-rc1 SLES 15.4"
**Return**
Number of characters copied to **buffer**.
.. c:function:: char * kv_strip (char *kv)
Strip blanks from key value string
**Parameters**
``char *kv``
The key-value string to strip
**Description**
Strip leading/trailing blanks as well as trailing comments from the
Key=Value string pointed to by **kv**.
**Return**
A pointer to the stripped string. Note that the original string,
**kv**, gets modified.
.. c:function:: char * kv_keymatch (const char *kv, const char *key)
Look for key in key value string
**Parameters**
``const char *kv``
The key=value string to search for the presence of **key**
``const char *key``
The key to look for
**Description**
Look for **key** in the Key=Value pair pointed to by **k** and return a
pointer to the Value if **key** is found.
Check if **kv** starts with **key**. If it does then make sure that we
have a whole-word match on the **key**, and if we do, return a pointer
to the first character of value (i.e. skip leading spaces, tabs,
and equal sign)
**Return**
A pointer to the first character of "value" if a match is found.
NULL otherwise.
.. c:function:: char * startswith (const char *s, const char *prefix)
Checks that a string starts with a given prefix.
**Parameters**
``const char *s``
The string to check
``const char *prefix``
A string that **s** could be starting with
**Return**
If **s** starts with **prefix**, then return a pointer within **s** at
the first character after the matched **prefix**. NULL otherwise.
.. c:macro:: round_up
``round_up (val, mult)``
Round a value **val** to the next multiple specified by **mult**.
**Parameters**
``val``
Value to round
``mult``
Multiple to round to.
**Description**
usage: int x = round_up(13, sizeof(__u32)); // 13 -> 16
.. c:function:: __u16 nvmf_exat_len (size_t val_len)
Return length rounded up by 4
**Parameters**
``size_t val_len``
Value length
**Description**
Return the size in bytes, rounded to a multiple of 4 (e.g., size of
__u32), of the buffer needed to hold the exat value of size
**val_len**.
**Return**
Length rounded up by 4
.. c:function:: __u16 nvmf_exat_size (size_t val_len)
Return min aligned size to hold value
**Parameters**
``size_t val_len``
This is the length of the data to be copied to the "exatval"
field of a "struct nvmf_ext_attr".
**Description**
Return the size of the "struct nvmf_ext_attr" needed to hold
a value of size **val_len**.
**Return**
The size in bytes, rounded to a multiple of 4 (i.e. size of
__u32), of the "struct nvmf_ext_attr" required to hold a string of
length **val_len**.
.. c:function:: struct nvmf_ext_attr * nvmf_exat_ptr_next (struct nvmf_ext_attr *p)
Increment **p** to the next element in the array.
**Parameters**
``struct nvmf_ext_attr *p``
Pointer to an element of an array of "struct nvmf_ext_attr".
**Description**
Extended attributes are saved to an array of "struct nvmf_ext_attr"
where each element of the array is of variable size. In order to
move to the next element in the array one must increment the
pointer to the current element (**p**) by the size of the current
element.
**Return**
Pointer to the next element in the array.
.. c:enum:: nvme_version
Selector for version to be returned by **nvme_get_version**
**Constants**
``NVME_VERSION_PROJECT``
Project release version
``NVME_VERSION_GIT``
Git reference
.. c:function:: const char * nvme_get_version (enum nvme_version type)
Return version libnvme string
**Parameters**
``enum nvme_version type``
Selects which version type (see **struct** nvme_version)
**Return**
Returns version string for known types or else "n/a"
.. c:function:: int nvme_uuid_to_string (unsigned char uuid[NVME_UUID_LEN], char *str)
Return string represenation of encoded UUID
**Parameters**
``unsigned char uuid[NVME_UUID_LEN]``
Binary encoded input UUID
``char *str``
Output string represenation of UUID
**Return**
Returns error code if type conversion fails.
.. c:function:: int nvme_uuid_from_string (const char *str, unsigned char uuid[NVME_UUID_LEN])
Return encoded UUID represenation of string UUID
**Parameters**
``const char *str``
Output string represenation of UUID
``unsigned char uuid[NVME_UUID_LEN]``
Binary encoded input UUID
**Return**
Returns error code if type conversion fails.
.. c:function:: int nvme_uuid_random (unsigned char uuid[NVME_UUID_LEN])
Generate random UUID
**Parameters**
``unsigned char uuid[NVME_UUID_LEN]``
Generated random UUID
**Description**
Generate random number according
https://www.rfc-editor.org/rfc/rfc4122#section-4.4
**Return**
Returns error code if generating of random number fails.
.. c:function:: int nvme_uuid_find (struct nvme_id_uuid_list *uuid_list, const unsigned char uuid[NVME_UUID_LEN])
Find UUID position on UUID list
**Parameters**
``struct nvme_id_uuid_list *uuid_list``
UUID list returned by identify UUID
``const unsigned char uuid[NVME_UUID_LEN]``
Binary encoded input UUID
**Return**
The array position where given UUID is present, or -1 on failure with errno set.
.. c:function:: bool nvme_ipaddrs_eq (const char *addr1, const char *addr2)
Check if 2 IP addresses are equal.
**Parameters**
``const char *addr1``
IP address (can be IPv4 or IPv6)
``const char *addr2``
IP address (can be IPv4 or IPv6)
**Return**
true if addr1 == addr2. false otherwise.
.. c:function:: const char * nvme_iface_matching_addr (const struct ifaddrs *iface_list, const char *addr)
Get interface matching **addr**
**Parameters**
``const struct ifaddrs *iface_list``
Interface list returned by getifaddrs()
``const char *addr``
Address to match
**Description**
Parse the interface list pointed to by **iface_list** looking
for the interface that has **addr** as one of its assigned
addresses.
**Return**
The name of the interface that owns **addr** or NULL.
.. c:function:: bool nvme_iface_primary_addr_matches (const struct ifaddrs *iface_list, const char *iface, const char *addr)
Check that interface's primary address matches
**Parameters**
``const struct ifaddrs *iface_list``
Interface list returned by getifaddrs()
``const char *iface``
Interface to match
``const char *addr``
Address to match
**Description**
Parse the interface list pointed to by **iface_list** and looking for
interface **iface**. The get its primary address and check if it matches
**addr**.
**Return**
true if a match is found, false otherwise.
|