Skip to content

NVMe

This section documents the NVMe (Non-Volatile Memory Express) device functionality.

sts.nvme

NVMe device management.

This module provides functionality for managing NVMe devices: - Device discovery using modern nvme-cli JSON output - Device information from controllers and namespaces - Device operations and management

NVMe (Non-Volatile Memory Express) is a protocol designed for: - High-performance SSDs - Low latency access - Parallel operations - Advanced management features

Key advantages over SCSI/SATA: - Higher queue depths - Lower protocol overhead - Better error handling - More detailed device information

Discovery Strategy: - Uses 'nvme list -o json -v' for comprehensive device information - Provides complete metadata: model, serial, firmware, size, transport, address, NQNs - Handles both controller-level and subsystem-level namespace locations - Filters devices by controller name for targeted discovery

NvmeDevice dataclass

Bases: StorageDevice

NVMe device representation.

NVMe devices are identified by: - Controller number (e.g. nvme0) - Namespace ID (e.g. n1) - Combined name (e.g. nvme0n1)

Device information includes: - Model and serial number from controller - Firmware version from controller - Capacity and block size from namespace - Transport and addressing information

Parameters:

Name Type Description Default
name str | None

Device name (optional, e.g. 'nvme0n1')

None
path Path | str | None

Device path (optional, defaults to /dev/)

None
size int | None

Device size in bytes (optional, discovered from namespace)

None
model str | None

Device model (optional, discovered from controller)

None
serial str | None

Device serial number (optional, discovered from controller)

None
firmware str | None

Device firmware version (optional, discovered from controller)

None
controller str | None

Controller name (optional, e.g. 'nvme0')

None
nsid int | None

Namespace ID (optional, e.g. 1)

None
transport str | None

Transport type (optional, e.g. 'pcie')

None
address str | None

Device address (optional, e.g. '0000:24:00.0')

None
sector_size int

Sector size in bytes (optional, defaults to 512)

512
host_nqn str | None

Host NQN identifier (optional)

None
host_id str | None

Host ID (optional)

None
subsystem str | None

Subsystem name (optional)

None
subsystem_nqn str | None

Subsystem NQN identifier (optional)

None
physical_size int | None

Physical device size (optional)

None
used_bytes int | None

Used space in bytes (optional)

None
maximum_lba int | None

Maximum LBA count (optional)

None
Example
device = NvmeDevice(name='nvme0n1')  # Discovers other values
Source code in sts_libs/src/sts/nvme.py
  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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
@dataclass
class NvmeDevice(StorageDevice):
    """NVMe device representation.

    NVMe devices are identified by:
    - Controller number (e.g. nvme0)
    - Namespace ID (e.g. n1)
    - Combined name (e.g. nvme0n1)

    Device information includes:
    - Model and serial number from controller
    - Firmware version from controller
    - Capacity and block size from namespace
    - Transport and addressing information

    Args:
        name: Device name (optional, e.g. 'nvme0n1')
        path: Device path (optional, defaults to /dev/<name>)
        size: Device size in bytes (optional, discovered from namespace)
        model: Device model (optional, discovered from controller)
        serial: Device serial number (optional, discovered from controller)
        firmware: Device firmware version (optional, discovered from controller)
        controller: Controller name (optional, e.g. 'nvme0')
        nsid: Namespace ID (optional, e.g. 1)
        transport: Transport type (optional, e.g. 'pcie')
        address: Device address (optional, e.g. '0000:24:00.0')
        sector_size: Sector size in bytes (optional, defaults to 512)
        host_nqn: Host NQN identifier (optional)
        host_id: Host ID (optional)
        subsystem: Subsystem name (optional)
        subsystem_nqn: Subsystem NQN identifier (optional)
        physical_size: Physical device size (optional)
        used_bytes: Used space in bytes (optional)
        maximum_lba: Maximum LBA count (optional)

    Example:
        ```python
        device = NvmeDevice(name='nvme0n1')  # Discovers other values
        ```
    """

    # Optional parameters from parent classes
    name: str | None = None
    path: Path | str | None = None
    size: int | None = None
    model: str | None = None

    # Optional parameters for this class
    serial: str | None = None  # Device serial number
    firmware: str | None = None  # Firmware version
    controller: str | None = None  # Controller name (e.g. nvme0)
    nsid: int | None = None  # Namespace ID
    transport: str | None = None  # Transport type (pcie, fc, rdma, tcp)
    address: str | None = None  # Device address
    sector_size: int = 512  # Sector size in bytes
    host_nqn: str | None = None  # Host NQN
    host_id: str | None = None  # Host ID
    subsystem: str | None = None  # Subsystem name
    subsystem_nqn: str | None = None  # Subsystem NQN
    physical_size: int | None = None  # Physical device size
    used_bytes: int | None = None  # Used space
    maximum_lba: int | None = None  # Maximum LBA count

    def __post_init__(self) -> None:
        """Initialize NVMe device.

        Discovery process:
        1. Ensure nvme-cli is installed
        2. Set device path if needed
        3. Get device information from nvme list JSON output
        4. Filter by controller name to find target device
        """
        if not ensure_installed('nvme-cli'):
            logging.critical('Failed to install nvme-cli package')

        if not self.path and self.name:
            self.path = f'/dev/{self.name}'

        if not self.controller and self.name:
            match = re.match(r'(nvme\d+)n\d+', self.name)
            self.controller = match.group(1) if match else None

        super().__post_init__()

        # Discover device info using nvme list with JSON output
        if self.name:
            self._discover_from_nvme_list()

    def _discover_from_nvme_list(self) -> bool:
        """Discover device information from nvme list JSON output."""
        result = run('nvme list -o json -v')
        if not result.succeeded or not result.stdout:
            logging.warning('Failed to run nvme list command')
            return False

        data = {}
        try:
            data = json.loads(result.stdout)
        except json.JSONDecodeError:
            logging.warning('Failed to parse nvme list JSON output')
            return False

        # Search through the JSON structure
        for device_info in data.get('Devices', []):
            # Get host information
            if 'HostNQN' in device_info:
                self.host_nqn = device_info['HostNQN']
            if 'HostID' in device_info:
                self.host_id = device_info['HostID']

            # Search through subsystems
            for subsystem in device_info.get('Subsystems', []):
                # Search through controllers
                for controller in subsystem.get('Controllers', []):
                    # Check controller and its namespaces
                    if 'Controller' in controller and controller.get('Controller') == self.controller:
                        self._extract_controller_info(controller)
                        if 'Subsystem' in subsystem:
                            self.subsystem = subsystem['Subsystem']
                        if 'SubsystemNQN' in subsystem:
                            self.subsystem_nqn = subsystem['SubsystemNQN']
                        for namespace in controller.get('Namespaces', []):
                            self._extract_namespace_info(namespace)
                        break

                # Also check namespaces at subsystem level
                for namespace in subsystem.get('Namespaces', []):
                    if 'NameSpace' in namespace and namespace.get('NameSpace') == self.name:
                        self._extract_namespace_info(namespace)
                        break
        return True

    def _extract_controller_info(self, controller: dict) -> None:
        """Extract controller information and store in device attributes."""
        if 'SerialNumber' in controller:
            self.serial = controller['SerialNumber']
        if 'ModelNumber' in controller:
            self.model = controller['ModelNumber']
        if 'Firmware' in controller:
            self.firmware = controller['Firmware']
        if 'Transport' in controller:
            self.transport = controller['Transport']
        if 'Address' in controller:
            self.address = controller['Address']

    def _extract_namespace_info(self, namespace: dict) -> None:
        """Extract information from a namespace."""
        if 'NSID' in namespace:
            self.nsid = namespace['NSID']
        if 'UsedBytes' in namespace:
            self.used_bytes = namespace['UsedBytes']
        if 'MaximumLBA' in namespace:
            self.maximum_lba = namespace['MaximumLBA']
        if 'PhysicalSize' in namespace:
            self.physical_size = namespace['PhysicalSize']
        if 'SectorSize' in namespace:
            self.sector_size = namespace['SectorSize']
        if self.physical_size:
            self.size = self.physical_size

    def _run(
        self,
        command: str,
        device: str | Path | None = None,
        arguments: Mapping[str, str | None] | None = None,
    ) -> CommandResult:
        """Run nvme command.

        Builds and executes nvme command with:
        - Specified command
        - Given arguments
        - Optional verbose output
        - Auto-selects device target

        Args:
            command: nvme command (e.g. 'smart-log', 'format', 'list')
            device: nvme device
            arguments: Dictionary of arguments

        Returns:
            CommandResult instance

        Example:
            ```python
            device._run('smart-log', '/dev/nvme0n1', arguments={'-o': 'json'})
            ```
        """
        command_list: list[str] = ['nvme', command]

        if device:
            command_list.append(str(device))

        # Add arguments
        if arguments is not None:
            # Handle different argument formats
            for k, v in arguments.items():
                if v is not None:
                    # Check if key already contains '=' for combined format
                    if '=' in k:
                        command_list.append(k)
                    # Check if this should be combined format (long options often use =)
                    elif k.startswith('--') and len(k) > 3:
                        # Use combined format for long options: --key=value
                        command_list.append(f'{k}={v}')
                    else:
                        # Use space-separated format for short options: -k value
                        command_list.extend([k, v])
                elif k.startswith('-'):
                    # Flag argument without value
                    command_list.append(k)

        command_str: str = ' '.join(command_list)
        return run(command_str)

    @classmethod
    def has_nvme(cls) -> bool:
        """Check if system contains any NVMe devices.

        Returns:
            True if NVMe devices found, False otherwise

        Example:
            ```python
            if NvmeDevice.has_nvme():
                devices = NvmeDevice.get_all()
            else:
                print('No NVMe devices found')
            ```
        """
        result = run('nvme list')
        if result.failed or not result.stdout:
            return False

        return any(line.strip().startswith('/dev/nvme') for line in result.stdout.splitlines())

    @classmethod
    def get_all(cls) -> list[NvmeDevice]:
        """Get list of all NVMe devices.

        Returns:
            A list of NvmeDevice instances representing all detected NVMe devices.
            If no devices are found or an error occurs, an empty list is returned.

        Examples:
            ```python
            NvmeDevice.get_all()
            ```
        """
        result = run('nvme list')
        if result.failed:
            logging.warning(f'Running "nvme list" failed:\n{result.stderr}')
            return []

        devices = []
        for line in result.stdout.splitlines():
            # Parse lines like: /dev/nvme0n1     238.47  GB / 238.47  GB    512   B +  0 B
            #                   Samsung SSD 970 EVO 250GB               1.0
            if line.strip().startswith('/dev/nvme') and 'n' in line:
                device_path = line.strip().split()[0]
                device_name = device_path.replace('/dev/', '')
                if device_name:
                    devices.append(cls(name=device_name))

        return devices

    @classmethod
    def get_by_attribute(cls, attribute: str, value: str) -> list[NvmeDevice]:
        """Get devices by attribute value.

        Finds devices matching a specific attribute value:
        - Searches through all available devices
        - Case-sensitive match on attribute value
        - Returns multiple devices if found
        - Empty list if none found

        Args:
            attribute: Device attribute name (e.g. 'model', 'serial', 'transport', 'firmware')
            value: Attribute value to match

        Returns:
            List of NvmeDevice instances matching the attribute value

        Examples:
            ```python
            # Find devices by model
            NvmeDevice.get_by_attribute('model', 'Samsung SSD 970 EVO 250GB')

            # Find devices by transport type
            NvmeDevice.get_by_attribute('transport', 'pcie')

            # Find devices by firmware version
            NvmeDevice.get_by_attribute('firmware', '2B2QEXM7')
            ```
        """
        if not attribute or not value:
            return []

        devices = []
        for device in cls.get_all():
            device_value = getattr(device, attribute, None)
            if device_value and str(device_value) == str(value):
                devices.append(device)

        return devices

    def format(self, **kwargs: str | None) -> bool:
        """Format device.

        Performs a low-level format:
        - Erases all data
        - Resets metadata
        - May take significant time
        - Requires admin privileges

        Returns:
            True if successful, False otherwise

        Example:
            ```python
            device.format()
            True
            ```
        """
        if not self.path:
            logging.error('Device path not available')
            return False

        return self._run('format', device=self.path, arguments=kwargs).succeeded

    def sanitize(self, **kwargs: str | None) -> bool:
        """Sanitize device.

        Performs a secure erase:
        - Block erase: Erases all user data by resetting all blocks
        - Crypto erase: Changes encryption keys, making data unrecoverable
        - Overwrite: Overwrites all user data with a data pattern
        - May take significant time
        - Requires admin privileges
        - Some devices may not support all erase methods

        Returns:
            True if successful, False otherwise

        Examples:
            ```python
            # Block erase sanitize
            device.sanitize(**{'--sanact': '0x01'})

            # No-deallocate after sanitize
            device.sanitize(**{'--sanact': '0x01', '--nodas': None})
            ```
        """
        if not self.path:
            logging.error('Device path not available')
            return False

        return self._run('sanitize', device=f'/dev/{self.controller}', arguments=kwargs).succeeded

    def reset(self, **kwargs: str | None) -> bool:
        """Reset NVMe controller.

        Performs a controller-level reset:
        - Resets the NVMe controller
        - Clears any error states
        - Reinitializes the controller
        - May cause temporary device unavailability

        Returns:
            True if successful, False otherwise

        Example:
            ```python
            device.reset()
            True
            ```
        """
        if not self.path:
            return False

        return self._run('reset', device=f'/dev/{self.controller}', arguments=kwargs).succeeded

    def flush(self, **kwargs: str | None) -> bool:
        """Flush device cache.

        Commits data and metadata associated with given namespaces to nonvolatile media.
        Applies to all commands finished before the flush was submitted. Additional data
        may also be flushed by the controller, from any namespace, depending on controller
        and associated namespace status.

        Returns:
            True if successful, False otherwise

        Examples:
            ```python
            # Basic flush
            device.flush()

            # Flush with specific namespace ID
            device.flush(**{'--namespace-id': '1'})

            # Flush with timeout
            device.flush(**{'--timeout': '5000'})
            ```
        """
        if not self.path:
            return False

        return self._run('flush', device=self.path, arguments=kwargs).succeeded

    def get_smart_log(self, **kwargs: str | None) -> dict:
        """Get SMART log.

        Retrieves device health information:
        - Critical warnings
        - Temperature
        - Available spare
        - Media errors
        - Read/write statistics

        Returns:
            Dictionary of SMART log entries

        Example:
            ```python
            device.get_smart_log()
            {'critical_warning': '0x0', 'temperature': '35 C', ...}
            ```
        """
        if not self.path:
            return {}

        arguments = {'--output-format': 'json', **kwargs}

        result = self._run('smart-log', device=self.path, arguments=arguments)
        if result.failed or not result.stdout:
            return {}

        try:
            return json.loads(result.stdout)
        except json.JSONDecodeError:
            logging.warning('Failed to parse smart-log JSON output')
            return {}

    def get_error_log(self, **kwargs: str | None) -> dict:
        """Get error log.

        Retrieves device error history:
        - Error count
        - Error types
        - Error locations
        - Timestamps

        Returns:
            Dictionary of error log entries

        Example:
            ```python
            device.get_error_log()
            {errors: [{'error_count': 76,...}, ..., {...}]}

            device.get_error_log(**{'-e':'1'})
            {'errors': [{'error_count': 76,...}]}
            ```
        """
        if not self.path:
            return {}

        arguments = {'--output-format': 'json', **kwargs}

        result = self._run('error-log', device=self.path, arguments=arguments)
        if result.failed or not result.stdout:
            return {}

        try:
            return json.loads(result.stdout)
        except json.JSONDecodeError:
            logging.warning('Failed to parse error-log JSON output')
            return {}

    def get_fw_log(self, **kwargs: str | None) -> dict:
        """Get firmware log.

        Retrieves firmware event log:
        - Firmware slot information
        - Activation status
        - Firmware revisions
        - Boot partition information

        Returns:
            Dictionary of firmware log entries

        Example:
            ```python
            device.get_fw_log()
            {'afi': 1, 'frs1': 'KB4QEXHA', 'frs2': '', ...}
            ```
        """
        if not self.path:
            return {}

        arguments = {'--output-format': 'json', **kwargs}

        result = self._run('fw-log', device=self.path, arguments=arguments)
        if result.failed or not result.stdout:
            return {}

        try:
            return json.loads(result.stdout)
        except json.JSONDecodeError:
            logging.warning('Failed to parse fw-log JSON output')
            return {}

    def get_id_ctrl(self, **kwargs: str | None) -> dict:
        """Get controller identification.

        Retrieves detailed controller information:
        - Vendor and model information
        - Controller capabilities
        - Supported features
        - Command set support

        Returns:
            Dictionary of controller identification data

        Example:
            ```python
            device.get_id_ctrl()
            {'vid': 5197, 'ssvid': 5197, 'mn': 'Samsung SSD 980 PRO 1TB', ...}
            ```
        """
        if not self.path:
            return {}

        arguments = {'--output-format': 'json', **kwargs}

        result = self._run('id-ctrl', device=self.path, arguments=arguments)
        if result.failed or not result.stdout:
            return {}

        try:
            return json.loads(result.stdout)
        except json.JSONDecodeError:
            logging.warning('Failed to parse id-ctrl JSON output')
            return {}

    def get_id_ns(self, **kwargs: str | None) -> dict:
        """Get namespace identification.

        Retrieves detailed namespace information:
        - Namespace size and capacity
        - Data protection capabilities
        - Multi-path I/O capabilities
        - Namespace features

        Returns:
            Dictionary of namespace identification data

        Example:
            ```python
            device.get_id_ns()
            {'nsze': 1953525168, 'ncap': 1953525168, 'nuse': 1953525168, ...}
            ```
        """
        if not self.path:
            return {}

        arguments = {'--output-format': 'json', **kwargs}

        result = self._run('id-ns', device=self.path, arguments=arguments)
        if result.failed or not result.stdout:
            return {}

        try:
            return json.loads(result.stdout)
        except json.JSONDecodeError:
            logging.warning('Failed to parse id-ns JSON output')
            return {}

    def list_ns(self, **kwargs: str | None) -> dict:
        """List namespaces.

        Lists all namespaces attached to the controller:
        - Active namespaces
        - Allocated namespaces
        - Namespace identifiers

        Returns:
            Dictionary of namespace list

        Example:
            ```python
            device.list_ns()
            [1, 0, 0, 0, ...]
            ```
        """
        if not self.controller:
            return {}

        arguments = {'--output-format': 'json', **kwargs}

        result = self._run('list-ns', device=f'/dev/{self.controller}', arguments=arguments)
        if result.failed or not result.stdout:
            return {}

        try:
            return json.loads(result.stdout)
        except json.JSONDecodeError:
            logging.warning('Failed to parse list-ns JSON output')
            return {}

    def get_feature(self, feature_id: str, **kwargs: str | None) -> dict:
        """Get device feature.

        Retrieves current feature settings:
        - Power management
        - Temperature threshold
        - Error recovery
        - Volatile write cache

        Args:
            feature_id: Feature ID to retrieve (e.g., '0x01', '0x02')

        Returns:
            Dictionary of feature data

        Example:
            ```python
            # Get power management feature
            device.get_feature('0x02')
            {'fid': 2, 'cdw11': 0, 'cdw12': 0, ...}

            # Get temperature threshold
            device.get_feature('0x04')
            ```
        """
        if not self.path:
            return {}

        arguments = {'--feature-id': feature_id, '--output-format': 'json', **kwargs}

        result = self._run('get-feature', device=self.path, arguments=arguments)
        if result.failed or not result.stdout:
            return {}

        try:
            return json.loads(result.stdout)
        except json.JSONDecodeError:
            logging.warning('Failed to parse get-feature JSON output')
            return {}

    def set_feature(self, feature_id: str, value: str, **kwargs: str | None) -> bool:
        """Set device feature.

        Configures device features:
        - Power management settings
        - Temperature thresholds
        - Error recovery parameters
        - Cache settings

        Args:
            feature_id: Feature ID to set (e.g., '0x01', '0x02')
            value: Feature value to set

        Returns:
            True if successful, False otherwise

        Example:
            ```python
            # Set power management feature
            device.set_feature('0x02', '0x00')
            True

            # Set temperature threshold
            device.set_feature('0x04', '85')
            ```
        """
        if not self.path:
            return False

        arguments = {'--feature-id': feature_id, '--value': value, **kwargs}

        return self._run('set-feature', device=self.path, arguments=arguments).succeeded

    def device_self_test(self, test_code: str = '1', **kwargs: str | None) -> bool:
        """Perform device self-test.

        Initiates device self-test operation:
        - Short self-test (test_code='1')
        - Extended self-test (test_code='2')
        - Abort self-test (test_code='15')

        Args:
            test_code: Self-test code ('1'=short, '2'=extended, '15'=abort)

        Returns:
            True if test initiated successfully, False otherwise

        Example:
            ```python
            # Start short self-test
            device.device_self_test('1')
            True

            # Start extended self-test
            device.device_self_test('2')
            ```
        """
        if not self.path:
            return False

        arguments = {'--self-test-code': test_code, **kwargs}

        return self._run('device-self-test', device=self.path, arguments=arguments).succeeded

    def get_self_test_log(self, **kwargs: str | None) -> dict:
        """Get self-test log.

        Retrieves device self-test results:
        - Test completion status
        - Test results
        - Failure information
        - Test history

        Returns:
            Dictionary of self-test log entries

        Example:
            ```python
            device.get_self_test_log()
            {'current_operation': 0, 'completion': 0, 'result': [...]}
            ```
        """
        if not self.path:
            return {}

        arguments = {'--output-format': 'json', **kwargs}

        result = self._run('self-test-log', device=self.path, arguments=arguments)
        if result.failed or not result.stdout:
            return {}

        try:
            return json.loads(result.stdout)
        except json.JSONDecodeError:
            logging.warning('Failed to parse self-test-log JSON output')
            return {}

    def fw_download(self, firmware_file: str, **kwargs: str | None) -> bool:
        """Download firmware to device.

        Downloads new firmware to the device:
        - Transfers firmware image
        - Validates firmware
        - Prepares for activation

        Args:
            firmware_file: Path to firmware file

        Returns:
            True if download successful, False otherwise

        Example:
            ```python
            device.fw_download('/path/to/firmware.bin')
            True
            ```
        """
        if not self.path:
            return False

        arguments = {'--fw': firmware_file, **kwargs}

        return self._run('fw-download', device=self.path, arguments=arguments).succeeded

    def fw_commit(self, slot: str, action: str = '1', **kwargs: str | None) -> bool:
        """Commit/activate firmware.

        Activates downloaded firmware:
        - Commits firmware to slot
        - Activates firmware
        - May require reset

        Args:
            slot: Firmware slot number ('0'-'7')
            action: Commit action ('0'=download, '1'=commit+activate, '2'=activate, '3'=commit+activate+reset)

        Returns:
            True if commit successful, False otherwise

        Example:
            ```python
            # Commit and activate firmware in slot 1
            device.fw_commit('1', '1')
            True
            ```
        """
        if not self.path:
            return False

        arguments = {'--slot': slot, '--action': action, **kwargs}

        return self._run('fw-commit', device=self.path, arguments=arguments).succeeded

    def get_lba_status(self, start_lba: str, block_count: str, **kwargs: str | None) -> dict:
        """Get LBA status information.

        Retrieves logical block status:
        - Block allocation status
        - Block state information
        - Error status

        Args:
            start_lba: Starting LBA
            block_count: Number of blocks to check

        Returns:
            Dictionary of LBA status information

        Example:
            ```python
            device.get_lba_status('0', '1024')
            {'lba_status': [...]}
            ```
        """
        if not self.path:
            return {}

        arguments = {'--start-lba': start_lba, '--block-count': block_count, '--output-format': 'json', **kwargs}

        result = self._run('get-lba-status', device=self.path, arguments=arguments)
        if result.failed or not result.stdout:
            return {}

        try:
            return json.loads(result.stdout)
        except json.JSONDecodeError:
            logging.warning('Failed to parse get-lba-status JSON output')
            return {}

    def dsm(self, range_list: str, **kwargs: str | None) -> bool:
        """Data Set Management (TRIM/Deallocate).

        Performs data set management operations:
        - TRIM/deallocate unused blocks
        - Optimize performance
        - Improve wear leveling

        Args:
            range_list: Comma-separated list of LBA ranges to deallocate

        Returns:
            True if successful, False otherwise

        Example:
            ```python
            # Deallocate blocks 0-1023
            device.dsm('0,1024')
            True
            ```
        """
        if not self.path:
            return False

        arguments = {'--ad': 1, '--range': range_list, **kwargs}

        return self._run('dsm', device=self.path, arguments=arguments).succeeded

    def show_regs(self, **kwargs: str | None) -> dict:
        """Show controller registers.

        Displays controller register values:
        - Controller capabilities
        - Controller configuration
        - Controller status
        - Admin/IO queue attributes

        Returns:
            Dictionary of register values

        Example:
            ```python
            device.show_regs()
            {'cap': '0x2014030300b0', 'vs': '0x10300', 'cc': '0x460001', ...}
            ```
        """
        if not self.controller:
            return {}

        arguments = {'--output-format': 'json', **kwargs}

        result = self._run('show-regs', device=f'/dev/{self.controller}', arguments=arguments)
        if result.failed or not result.stdout:
            return {}

        try:
            return json.loads(result.stdout)
        except json.JSONDecodeError:
            logging.warning('Failed to parse show-regs JSON output')
            return {}

    def ns_rescan(self, **kwargs: str | None) -> bool:
        """Rescan namespaces.

        Rescans for namespace changes:
        - Detects new namespaces
        - Updates namespace list
        - Refreshes kernel state

        Returns:
            True if successful, False otherwise

        Example:
            ```python
            device.ns_rescan()
            True
            ```
        """
        if not self.controller:
            return False

        return self._run('ns-rescan', device=f'/dev/{self.controller}', arguments=kwargs).succeeded

    def discover(self, **kwargs: str | None) -> dict:
        """Discover NVMeoF subsystems.

        Discovers available NVMe over Fabrics subsystems:
        - TCP transport discovery
        - RDMA transport discovery
        - Fibre Channel discovery
        - Discovery controller queries

        Returns:
            Dictionary of discovered subsystems

        Examples:
            ```python
            # Discover TCP subsystems
            device.discover(**{'--transport': 'tcp', '--traddr': '192.168.1.100', '--trsvcid': '4420'})

            # Discover RDMA subsystems
            device.discover(**{'--transport': 'rdma', '--traddr': '192.168.1.100', '--trsvcid': '4420'})

            # Discover with specific host NQN
            device.discover(
                **{
                    '--transport': 'tcp',
                    '--traddr': '192.168.1.100',
                    '--hostnqn': 'nqn.2014-08.org.nvmexpress:uuid:01234567-89ab-cdef-0123-456789abcdef',
                }
            )
            ```
        """
        arguments = {'--output-format': 'json', **kwargs}

        # Use device's host NQN if available and not provided
        if self.host_nqn and '--hostnqn' not in arguments:
            arguments['--hostnqn'] = self.host_nqn

        result = self._run('discover', arguments=arguments)
        if result.failed or not result.stdout:
            return {}

        try:
            return json.loads(result.stdout)
        except json.JSONDecodeError:
            logging.warning('Failed to parse discover JSON output')
            return {}

    def connect_all(self, **kwargs: str | None) -> bool:
        """Discover and connect to all NVMeoF subsystems.

        Discovers and connects to all available subsystems:
        - Automatic discovery and connection
        - Multiple transport support
        - Batch connection operations

        Returns:
            True if successful, False otherwise

        Examples:
            ```python
            # Connect to all TCP subsystems
            device.connect_all(**{'--transport': 'tcp', '--traddr': '192.168.1.100', '--trsvcid': '4420'})

            # Connect with authentication
            device.connect_all(
                **{'--transport': 'tcp', '--traddr': '192.168.1.100', '--dhchap-secret': 'DHHC-1:00:...'}
            )
            ```
        """
        arguments = kwargs.copy()

        # Use device's host NQN if available and not provided
        if self.host_nqn and '--hostnqn' not in arguments:
            arguments['--hostnqn'] = self.host_nqn

        return self._run('connect-all', arguments=arguments).succeeded

    def connect(self, **kwargs: str | None) -> bool:
        """Connect to specific NVMeoF subsystem.

        Connects to a specific NVMe over Fabrics subsystem:
        - Manual subsystem connection
        - Transport-specific parameters
        - Authentication support
        - Quality of Service settings

        Returns:
            True if successful, False otherwise

        Examples:
            ```python
            # Connect to TCP subsystem
            device.connect(
                **{
                    '--transport': 'tcp',
                    '--traddr': '192.168.1.100',
                    '--trsvcid': '4420',
                    '--nqn': 'nqn.2016-06.io.spdk:cnode1',
                }
            )

            # Connect with authentication
            device.connect(
                **{
                    '--transport': 'tcp',
                    '--traddr': '192.168.1.100',
                    '--nqn': 'nqn.2016-06.io.spdk:cnode1',
                    '--dhchap-secret': 'DHHC-1:00:...',
                }
            )

            # Connect with duplicate path detection
            device.connect(
                **{
                    '--transport': 'tcp',
                    '--traddr': '192.168.1.100',
                    '--nqn': 'nqn.2016-06.io.spdk:cnode1',
                    '--duplicate-connect': None,
                }
            )
            ```
        """
        arguments = kwargs.copy()

        # Use device's host NQN if available and not provided
        if self.host_nqn and '--hostnqn' not in arguments:
            arguments['--hostnqn'] = self.host_nqn

        return self._run('connect', arguments=arguments).succeeded

    def disconnect(self, nqn: str, **kwargs: str | None) -> bool:
        """Disconnect from specific NVMeoF subsystem.

        Disconnects from a specific NVMe over Fabrics subsystem:
        - Graceful disconnection
        - Subsystem-specific targeting
        - Connection cleanup

        Args:
            nqn: NVMe Qualified Name of subsystem to disconnect

        Returns:
            True if successful, False otherwise

        Examples:
            ```python
            # Disconnect specific subsystem
            device.disconnect('nqn.2016-06.io.spdk:cnode1')

            # Force disconnect
            device.disconnect('nqn.2016-06.io.spdk:cnode1', **{'--force': None})
            ```
        """
        arguments = {'--nqn': nqn, **kwargs}

        return self._run('disconnect', arguments=arguments).succeeded

    def disconnect_all(self, **kwargs: str | None) -> bool:
        """Disconnect from all NVMeoF subsystems.

        Disconnects from all connected NVMe over Fabrics subsystems:
        - Bulk disconnection operation
        - Complete cleanup
        - All transport types

        Returns:
            True if successful, False otherwise

        Examples:
            ```python
            # Disconnect all subsystems
            device.disconnect_all()

            # Force disconnect all
            device.disconnect_all(**{'--force': None})
            ```
        """
        return self._run('disconnect-all', arguments=kwargs).succeeded

__post_init__()

Initialize NVMe device.

Discovery process: 1. Ensure nvme-cli is installed 2. Set device path if needed 3. Get device information from nvme list JSON output 4. Filter by controller name to find target device

Source code in sts_libs/src/sts/nvme.py
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
def __post_init__(self) -> None:
    """Initialize NVMe device.

    Discovery process:
    1. Ensure nvme-cli is installed
    2. Set device path if needed
    3. Get device information from nvme list JSON output
    4. Filter by controller name to find target device
    """
    if not ensure_installed('nvme-cli'):
        logging.critical('Failed to install nvme-cli package')

    if not self.path and self.name:
        self.path = f'/dev/{self.name}'

    if not self.controller and self.name:
        match = re.match(r'(nvme\d+)n\d+', self.name)
        self.controller = match.group(1) if match else None

    super().__post_init__()

    # Discover device info using nvme list with JSON output
    if self.name:
        self._discover_from_nvme_list()

connect(**kwargs)

Connect to specific NVMeoF subsystem.

Connects to a specific NVMe over Fabrics subsystem: - Manual subsystem connection - Transport-specific parameters - Authentication support - Quality of Service settings

Returns:

Type Description
bool

True if successful, False otherwise

Examples:

# Connect to TCP subsystem
device.connect(
    **{
        '--transport': 'tcp',
        '--traddr': '192.168.1.100',
        '--trsvcid': '4420',
        '--nqn': 'nqn.2016-06.io.spdk:cnode1',
    }
)

# Connect with authentication
device.connect(
    **{
        '--transport': 'tcp',
        '--traddr': '192.168.1.100',
        '--nqn': 'nqn.2016-06.io.spdk:cnode1',
        '--dhchap-secret': 'DHHC-1:00:...',
    }
)

# Connect with duplicate path detection
device.connect(
    **{
        '--transport': 'tcp',
        '--traddr': '192.168.1.100',
        '--nqn': 'nqn.2016-06.io.spdk:cnode1',
        '--duplicate-connect': None,
    }
)
Source code in sts_libs/src/sts/nvme.py
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
def connect(self, **kwargs: str | None) -> bool:
    """Connect to specific NVMeoF subsystem.

    Connects to a specific NVMe over Fabrics subsystem:
    - Manual subsystem connection
    - Transport-specific parameters
    - Authentication support
    - Quality of Service settings

    Returns:
        True if successful, False otherwise

    Examples:
        ```python
        # Connect to TCP subsystem
        device.connect(
            **{
                '--transport': 'tcp',
                '--traddr': '192.168.1.100',
                '--trsvcid': '4420',
                '--nqn': 'nqn.2016-06.io.spdk:cnode1',
            }
        )

        # Connect with authentication
        device.connect(
            **{
                '--transport': 'tcp',
                '--traddr': '192.168.1.100',
                '--nqn': 'nqn.2016-06.io.spdk:cnode1',
                '--dhchap-secret': 'DHHC-1:00:...',
            }
        )

        # Connect with duplicate path detection
        device.connect(
            **{
                '--transport': 'tcp',
                '--traddr': '192.168.1.100',
                '--nqn': 'nqn.2016-06.io.spdk:cnode1',
                '--duplicate-connect': None,
            }
        )
        ```
    """
    arguments = kwargs.copy()

    # Use device's host NQN if available and not provided
    if self.host_nqn and '--hostnqn' not in arguments:
        arguments['--hostnqn'] = self.host_nqn

    return self._run('connect', arguments=arguments).succeeded

connect_all(**kwargs)

Discover and connect to all NVMeoF subsystems.

Discovers and connects to all available subsystems: - Automatic discovery and connection - Multiple transport support - Batch connection operations

Returns:

Type Description
bool

True if successful, False otherwise

Examples:

# Connect to all TCP subsystems
device.connect_all(**{'--transport': 'tcp', '--traddr': '192.168.1.100', '--trsvcid': '4420'})

# Connect with authentication
device.connect_all(
    **{'--transport': 'tcp', '--traddr': '192.168.1.100', '--dhchap-secret': 'DHHC-1:00:...'}
)
Source code in sts_libs/src/sts/nvme.py
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
def connect_all(self, **kwargs: str | None) -> bool:
    """Discover and connect to all NVMeoF subsystems.

    Discovers and connects to all available subsystems:
    - Automatic discovery and connection
    - Multiple transport support
    - Batch connection operations

    Returns:
        True if successful, False otherwise

    Examples:
        ```python
        # Connect to all TCP subsystems
        device.connect_all(**{'--transport': 'tcp', '--traddr': '192.168.1.100', '--trsvcid': '4420'})

        # Connect with authentication
        device.connect_all(
            **{'--transport': 'tcp', '--traddr': '192.168.1.100', '--dhchap-secret': 'DHHC-1:00:...'}
        )
        ```
    """
    arguments = kwargs.copy()

    # Use device's host NQN if available and not provided
    if self.host_nqn and '--hostnqn' not in arguments:
        arguments['--hostnqn'] = self.host_nqn

    return self._run('connect-all', arguments=arguments).succeeded

device_self_test(test_code='1', **kwargs)

Perform device self-test.

Initiates device self-test operation: - Short self-test (test_code='1') - Extended self-test (test_code='2') - Abort self-test (test_code='15')

Parameters:

Name Type Description Default
test_code str

Self-test code ('1'=short, '2'=extended, '15'=abort)

'1'

Returns:

Type Description
bool

True if test initiated successfully, False otherwise

Example
# Start short self-test
device.device_self_test('1')
True

# Start extended self-test
device.device_self_test('2')
Source code in sts_libs/src/sts/nvme.py
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
def device_self_test(self, test_code: str = '1', **kwargs: str | None) -> bool:
    """Perform device self-test.

    Initiates device self-test operation:
    - Short self-test (test_code='1')
    - Extended self-test (test_code='2')
    - Abort self-test (test_code='15')

    Args:
        test_code: Self-test code ('1'=short, '2'=extended, '15'=abort)

    Returns:
        True if test initiated successfully, False otherwise

    Example:
        ```python
        # Start short self-test
        device.device_self_test('1')
        True

        # Start extended self-test
        device.device_self_test('2')
        ```
    """
    if not self.path:
        return False

    arguments = {'--self-test-code': test_code, **kwargs}

    return self._run('device-self-test', device=self.path, arguments=arguments).succeeded

disconnect(nqn, **kwargs)

Disconnect from specific NVMeoF subsystem.

Disconnects from a specific NVMe over Fabrics subsystem: - Graceful disconnection - Subsystem-specific targeting - Connection cleanup

Parameters:

Name Type Description Default
nqn str

NVMe Qualified Name of subsystem to disconnect

required

Returns:

Type Description
bool

True if successful, False otherwise

Examples:

# Disconnect specific subsystem
device.disconnect('nqn.2016-06.io.spdk:cnode1')

# Force disconnect
device.disconnect('nqn.2016-06.io.spdk:cnode1', **{'--force': None})
Source code in sts_libs/src/sts/nvme.py
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
def disconnect(self, nqn: str, **kwargs: str | None) -> bool:
    """Disconnect from specific NVMeoF subsystem.

    Disconnects from a specific NVMe over Fabrics subsystem:
    - Graceful disconnection
    - Subsystem-specific targeting
    - Connection cleanup

    Args:
        nqn: NVMe Qualified Name of subsystem to disconnect

    Returns:
        True if successful, False otherwise

    Examples:
        ```python
        # Disconnect specific subsystem
        device.disconnect('nqn.2016-06.io.spdk:cnode1')

        # Force disconnect
        device.disconnect('nqn.2016-06.io.spdk:cnode1', **{'--force': None})
        ```
    """
    arguments = {'--nqn': nqn, **kwargs}

    return self._run('disconnect', arguments=arguments).succeeded

disconnect_all(**kwargs)

Disconnect from all NVMeoF subsystems.

Disconnects from all connected NVMe over Fabrics subsystems: - Bulk disconnection operation - Complete cleanup - All transport types

Returns:

Type Description
bool

True if successful, False otherwise

Examples:

# Disconnect all subsystems
device.disconnect_all()

# Force disconnect all
device.disconnect_all(**{'--force': None})
Source code in sts_libs/src/sts/nvme.py
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
def disconnect_all(self, **kwargs: str | None) -> bool:
    """Disconnect from all NVMeoF subsystems.

    Disconnects from all connected NVMe over Fabrics subsystems:
    - Bulk disconnection operation
    - Complete cleanup
    - All transport types

    Returns:
        True if successful, False otherwise

    Examples:
        ```python
        # Disconnect all subsystems
        device.disconnect_all()

        # Force disconnect all
        device.disconnect_all(**{'--force': None})
        ```
    """
    return self._run('disconnect-all', arguments=kwargs).succeeded

discover(**kwargs)

Discover NVMeoF subsystems.

Discovers available NVMe over Fabrics subsystems: - TCP transport discovery - RDMA transport discovery - Fibre Channel discovery - Discovery controller queries

Returns:

Type Description
dict

Dictionary of discovered subsystems

Examples:

# Discover TCP subsystems
device.discover(**{'--transport': 'tcp', '--traddr': '192.168.1.100', '--trsvcid': '4420'})

# Discover RDMA subsystems
device.discover(**{'--transport': 'rdma', '--traddr': '192.168.1.100', '--trsvcid': '4420'})

# Discover with specific host NQN
device.discover(
    **{
        '--transport': 'tcp',
        '--traddr': '192.168.1.100',
        '--hostnqn': 'nqn.2014-08.org.nvmexpress:uuid:01234567-89ab-cdef-0123-456789abcdef',
    }
)
Source code in sts_libs/src/sts/nvme.py
 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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
def discover(self, **kwargs: str | None) -> dict:
    """Discover NVMeoF subsystems.

    Discovers available NVMe over Fabrics subsystems:
    - TCP transport discovery
    - RDMA transport discovery
    - Fibre Channel discovery
    - Discovery controller queries

    Returns:
        Dictionary of discovered subsystems

    Examples:
        ```python
        # Discover TCP subsystems
        device.discover(**{'--transport': 'tcp', '--traddr': '192.168.1.100', '--trsvcid': '4420'})

        # Discover RDMA subsystems
        device.discover(**{'--transport': 'rdma', '--traddr': '192.168.1.100', '--trsvcid': '4420'})

        # Discover with specific host NQN
        device.discover(
            **{
                '--transport': 'tcp',
                '--traddr': '192.168.1.100',
                '--hostnqn': 'nqn.2014-08.org.nvmexpress:uuid:01234567-89ab-cdef-0123-456789abcdef',
            }
        )
        ```
    """
    arguments = {'--output-format': 'json', **kwargs}

    # Use device's host NQN if available and not provided
    if self.host_nqn and '--hostnqn' not in arguments:
        arguments['--hostnqn'] = self.host_nqn

    result = self._run('discover', arguments=arguments)
    if result.failed or not result.stdout:
        return {}

    try:
        return json.loads(result.stdout)
    except json.JSONDecodeError:
        logging.warning('Failed to parse discover JSON output')
        return {}

dsm(range_list, **kwargs)

Data Set Management (TRIM/Deallocate).

Performs data set management operations: - TRIM/deallocate unused blocks - Optimize performance - Improve wear leveling

Parameters:

Name Type Description Default
range_list str

Comma-separated list of LBA ranges to deallocate

required

Returns:

Type Description
bool

True if successful, False otherwise

Example
# Deallocate blocks 0-1023
device.dsm('0,1024')
True
Source code in sts_libs/src/sts/nvme.py
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
def dsm(self, range_list: str, **kwargs: str | None) -> bool:
    """Data Set Management (TRIM/Deallocate).

    Performs data set management operations:
    - TRIM/deallocate unused blocks
    - Optimize performance
    - Improve wear leveling

    Args:
        range_list: Comma-separated list of LBA ranges to deallocate

    Returns:
        True if successful, False otherwise

    Example:
        ```python
        # Deallocate blocks 0-1023
        device.dsm('0,1024')
        True
        ```
    """
    if not self.path:
        return False

    arguments = {'--ad': 1, '--range': range_list, **kwargs}

    return self._run('dsm', device=self.path, arguments=arguments).succeeded

flush(**kwargs)

Flush device cache.

Commits data and metadata associated with given namespaces to nonvolatile media. Applies to all commands finished before the flush was submitted. Additional data may also be flushed by the controller, from any namespace, depending on controller and associated namespace status.

Returns:

Type Description
bool

True if successful, False otherwise

Examples:

# Basic flush
device.flush()

# Flush with specific namespace ID
device.flush(**{'--namespace-id': '1'})

# Flush with timeout
device.flush(**{'--timeout': '5000'})
Source code in sts_libs/src/sts/nvme.py
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
def flush(self, **kwargs: str | None) -> bool:
    """Flush device cache.

    Commits data and metadata associated with given namespaces to nonvolatile media.
    Applies to all commands finished before the flush was submitted. Additional data
    may also be flushed by the controller, from any namespace, depending on controller
    and associated namespace status.

    Returns:
        True if successful, False otherwise

    Examples:
        ```python
        # Basic flush
        device.flush()

        # Flush with specific namespace ID
        device.flush(**{'--namespace-id': '1'})

        # Flush with timeout
        device.flush(**{'--timeout': '5000'})
        ```
    """
    if not self.path:
        return False

    return self._run('flush', device=self.path, arguments=kwargs).succeeded

format(**kwargs)

Format device.

Performs a low-level format: - Erases all data - Resets metadata - May take significant time - Requires admin privileges

Returns:

Type Description
bool

True if successful, False otherwise

Example
device.format()
True
Source code in sts_libs/src/sts/nvme.py
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
def format(self, **kwargs: str | None) -> bool:
    """Format device.

    Performs a low-level format:
    - Erases all data
    - Resets metadata
    - May take significant time
    - Requires admin privileges

    Returns:
        True if successful, False otherwise

    Example:
        ```python
        device.format()
        True
        ```
    """
    if not self.path:
        logging.error('Device path not available')
        return False

    return self._run('format', device=self.path, arguments=kwargs).succeeded

fw_commit(slot, action='1', **kwargs)

Commit/activate firmware.

Activates downloaded firmware: - Commits firmware to slot - Activates firmware - May require reset

Parameters:

Name Type Description Default
slot str

Firmware slot number ('0'-'7')

required
action str

Commit action ('0'=download, '1'=commit+activate, '2'=activate, '3'=commit+activate+reset)

'1'

Returns:

Type Description
bool

True if commit successful, False otherwise

Example
# Commit and activate firmware in slot 1
device.fw_commit('1', '1')
True
Source code in sts_libs/src/sts/nvme.py
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
def fw_commit(self, slot: str, action: str = '1', **kwargs: str | None) -> bool:
    """Commit/activate firmware.

    Activates downloaded firmware:
    - Commits firmware to slot
    - Activates firmware
    - May require reset

    Args:
        slot: Firmware slot number ('0'-'7')
        action: Commit action ('0'=download, '1'=commit+activate, '2'=activate, '3'=commit+activate+reset)

    Returns:
        True if commit successful, False otherwise

    Example:
        ```python
        # Commit and activate firmware in slot 1
        device.fw_commit('1', '1')
        True
        ```
    """
    if not self.path:
        return False

    arguments = {'--slot': slot, '--action': action, **kwargs}

    return self._run('fw-commit', device=self.path, arguments=arguments).succeeded

fw_download(firmware_file, **kwargs)

Download firmware to device.

Downloads new firmware to the device: - Transfers firmware image - Validates firmware - Prepares for activation

Parameters:

Name Type Description Default
firmware_file str

Path to firmware file

required

Returns:

Type Description
bool

True if download successful, False otherwise

Example
device.fw_download('/path/to/firmware.bin')
True
Source code in sts_libs/src/sts/nvme.py
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
def fw_download(self, firmware_file: str, **kwargs: str | None) -> bool:
    """Download firmware to device.

    Downloads new firmware to the device:
    - Transfers firmware image
    - Validates firmware
    - Prepares for activation

    Args:
        firmware_file: Path to firmware file

    Returns:
        True if download successful, False otherwise

    Example:
        ```python
        device.fw_download('/path/to/firmware.bin')
        True
        ```
    """
    if not self.path:
        return False

    arguments = {'--fw': firmware_file, **kwargs}

    return self._run('fw-download', device=self.path, arguments=arguments).succeeded

get_all() classmethod

Get list of all NVMe devices.

Returns:

Type Description
list[NvmeDevice]

A list of NvmeDevice instances representing all detected NVMe devices.

list[NvmeDevice]

If no devices are found or an error occurs, an empty list is returned.

Examples:

NvmeDevice.get_all()
Source code in sts_libs/src/sts/nvme.py
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
@classmethod
def get_all(cls) -> list[NvmeDevice]:
    """Get list of all NVMe devices.

    Returns:
        A list of NvmeDevice instances representing all detected NVMe devices.
        If no devices are found or an error occurs, an empty list is returned.

    Examples:
        ```python
        NvmeDevice.get_all()
        ```
    """
    result = run('nvme list')
    if result.failed:
        logging.warning(f'Running "nvme list" failed:\n{result.stderr}')
        return []

    devices = []
    for line in result.stdout.splitlines():
        # Parse lines like: /dev/nvme0n1     238.47  GB / 238.47  GB    512   B +  0 B
        #                   Samsung SSD 970 EVO 250GB               1.0
        if line.strip().startswith('/dev/nvme') and 'n' in line:
            device_path = line.strip().split()[0]
            device_name = device_path.replace('/dev/', '')
            if device_name:
                devices.append(cls(name=device_name))

    return devices

get_by_attribute(attribute, value) classmethod

Get devices by attribute value.

Finds devices matching a specific attribute value: - Searches through all available devices - Case-sensitive match on attribute value - Returns multiple devices if found - Empty list if none found

Parameters:

Name Type Description Default
attribute str

Device attribute name (e.g. 'model', 'serial', 'transport', 'firmware')

required
value str

Attribute value to match

required

Returns:

Type Description
list[NvmeDevice]

List of NvmeDevice instances matching the attribute value

Examples:

# Find devices by model
NvmeDevice.get_by_attribute('model', 'Samsung SSD 970 EVO 250GB')

# Find devices by transport type
NvmeDevice.get_by_attribute('transport', 'pcie')

# Find devices by firmware version
NvmeDevice.get_by_attribute('firmware', '2B2QEXM7')
Source code in sts_libs/src/sts/nvme.py
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
@classmethod
def get_by_attribute(cls, attribute: str, value: str) -> list[NvmeDevice]:
    """Get devices by attribute value.

    Finds devices matching a specific attribute value:
    - Searches through all available devices
    - Case-sensitive match on attribute value
    - Returns multiple devices if found
    - Empty list if none found

    Args:
        attribute: Device attribute name (e.g. 'model', 'serial', 'transport', 'firmware')
        value: Attribute value to match

    Returns:
        List of NvmeDevice instances matching the attribute value

    Examples:
        ```python
        # Find devices by model
        NvmeDevice.get_by_attribute('model', 'Samsung SSD 970 EVO 250GB')

        # Find devices by transport type
        NvmeDevice.get_by_attribute('transport', 'pcie')

        # Find devices by firmware version
        NvmeDevice.get_by_attribute('firmware', '2B2QEXM7')
        ```
    """
    if not attribute or not value:
        return []

    devices = []
    for device in cls.get_all():
        device_value = getattr(device, attribute, None)
        if device_value and str(device_value) == str(value):
            devices.append(device)

    return devices

get_error_log(**kwargs)

Get error log.

Retrieves device error history: - Error count - Error types - Error locations - Timestamps

Returns:

Type Description
dict

Dictionary of error log entries

Example
device.get_error_log()
{errors: [{'error_count': 76,...}, ..., {...}]}

device.get_error_log(**{'-e':'1'})
{'errors': [{'error_count': 76,...}]}
Source code in sts_libs/src/sts/nvme.py
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
def get_error_log(self, **kwargs: str | None) -> dict:
    """Get error log.

    Retrieves device error history:
    - Error count
    - Error types
    - Error locations
    - Timestamps

    Returns:
        Dictionary of error log entries

    Example:
        ```python
        device.get_error_log()
        {errors: [{'error_count': 76,...}, ..., {...}]}

        device.get_error_log(**{'-e':'1'})
        {'errors': [{'error_count': 76,...}]}
        ```
    """
    if not self.path:
        return {}

    arguments = {'--output-format': 'json', **kwargs}

    result = self._run('error-log', device=self.path, arguments=arguments)
    if result.failed or not result.stdout:
        return {}

    try:
        return json.loads(result.stdout)
    except json.JSONDecodeError:
        logging.warning('Failed to parse error-log JSON output')
        return {}

get_feature(feature_id, **kwargs)

Get device feature.

Retrieves current feature settings: - Power management - Temperature threshold - Error recovery - Volatile write cache

Parameters:

Name Type Description Default
feature_id str

Feature ID to retrieve (e.g., '0x01', '0x02')

required

Returns:

Type Description
dict

Dictionary of feature data

Example
# Get power management feature
device.get_feature('0x02')
{'fid': 2, 'cdw11': 0, 'cdw12': 0, ...}

# Get temperature threshold
device.get_feature('0x04')
Source code in sts_libs/src/sts/nvme.py
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
def get_feature(self, feature_id: str, **kwargs: str | None) -> dict:
    """Get device feature.

    Retrieves current feature settings:
    - Power management
    - Temperature threshold
    - Error recovery
    - Volatile write cache

    Args:
        feature_id: Feature ID to retrieve (e.g., '0x01', '0x02')

    Returns:
        Dictionary of feature data

    Example:
        ```python
        # Get power management feature
        device.get_feature('0x02')
        {'fid': 2, 'cdw11': 0, 'cdw12': 0, ...}

        # Get temperature threshold
        device.get_feature('0x04')
        ```
    """
    if not self.path:
        return {}

    arguments = {'--feature-id': feature_id, '--output-format': 'json', **kwargs}

    result = self._run('get-feature', device=self.path, arguments=arguments)
    if result.failed or not result.stdout:
        return {}

    try:
        return json.loads(result.stdout)
    except json.JSONDecodeError:
        logging.warning('Failed to parse get-feature JSON output')
        return {}

get_fw_log(**kwargs)

Get firmware log.

Retrieves firmware event log: - Firmware slot information - Activation status - Firmware revisions - Boot partition information

Returns:

Type Description
dict

Dictionary of firmware log entries

Example
device.get_fw_log()
{'afi': 1, 'frs1': 'KB4QEXHA', 'frs2': '', ...}
Source code in sts_libs/src/sts/nvme.py
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
def get_fw_log(self, **kwargs: str | None) -> dict:
    """Get firmware log.

    Retrieves firmware event log:
    - Firmware slot information
    - Activation status
    - Firmware revisions
    - Boot partition information

    Returns:
        Dictionary of firmware log entries

    Example:
        ```python
        device.get_fw_log()
        {'afi': 1, 'frs1': 'KB4QEXHA', 'frs2': '', ...}
        ```
    """
    if not self.path:
        return {}

    arguments = {'--output-format': 'json', **kwargs}

    result = self._run('fw-log', device=self.path, arguments=arguments)
    if result.failed or not result.stdout:
        return {}

    try:
        return json.loads(result.stdout)
    except json.JSONDecodeError:
        logging.warning('Failed to parse fw-log JSON output')
        return {}

get_id_ctrl(**kwargs)

Get controller identification.

Retrieves detailed controller information: - Vendor and model information - Controller capabilities - Supported features - Command set support

Returns:

Type Description
dict

Dictionary of controller identification data

Example
device.get_id_ctrl()
{'vid': 5197, 'ssvid': 5197, 'mn': 'Samsung SSD 980 PRO 1TB', ...}
Source code in sts_libs/src/sts/nvme.py
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
def get_id_ctrl(self, **kwargs: str | None) -> dict:
    """Get controller identification.

    Retrieves detailed controller information:
    - Vendor and model information
    - Controller capabilities
    - Supported features
    - Command set support

    Returns:
        Dictionary of controller identification data

    Example:
        ```python
        device.get_id_ctrl()
        {'vid': 5197, 'ssvid': 5197, 'mn': 'Samsung SSD 980 PRO 1TB', ...}
        ```
    """
    if not self.path:
        return {}

    arguments = {'--output-format': 'json', **kwargs}

    result = self._run('id-ctrl', device=self.path, arguments=arguments)
    if result.failed or not result.stdout:
        return {}

    try:
        return json.loads(result.stdout)
    except json.JSONDecodeError:
        logging.warning('Failed to parse id-ctrl JSON output')
        return {}

get_id_ns(**kwargs)

Get namespace identification.

Retrieves detailed namespace information: - Namespace size and capacity - Data protection capabilities - Multi-path I/O capabilities - Namespace features

Returns:

Type Description
dict

Dictionary of namespace identification data

Example
device.get_id_ns()
{'nsze': 1953525168, 'ncap': 1953525168, 'nuse': 1953525168, ...}
Source code in sts_libs/src/sts/nvme.py
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
def get_id_ns(self, **kwargs: str | None) -> dict:
    """Get namespace identification.

    Retrieves detailed namespace information:
    - Namespace size and capacity
    - Data protection capabilities
    - Multi-path I/O capabilities
    - Namespace features

    Returns:
        Dictionary of namespace identification data

    Example:
        ```python
        device.get_id_ns()
        {'nsze': 1953525168, 'ncap': 1953525168, 'nuse': 1953525168, ...}
        ```
    """
    if not self.path:
        return {}

    arguments = {'--output-format': 'json', **kwargs}

    result = self._run('id-ns', device=self.path, arguments=arguments)
    if result.failed or not result.stdout:
        return {}

    try:
        return json.loads(result.stdout)
    except json.JSONDecodeError:
        logging.warning('Failed to parse id-ns JSON output')
        return {}

get_lba_status(start_lba, block_count, **kwargs)

Get LBA status information.

Retrieves logical block status: - Block allocation status - Block state information - Error status

Parameters:

Name Type Description Default
start_lba str

Starting LBA

required
block_count str

Number of blocks to check

required

Returns:

Type Description
dict

Dictionary of LBA status information

Example
device.get_lba_status('0', '1024')
{'lba_status': [...]}
Source code in sts_libs/src/sts/nvme.py
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
def get_lba_status(self, start_lba: str, block_count: str, **kwargs: str | None) -> dict:
    """Get LBA status information.

    Retrieves logical block status:
    - Block allocation status
    - Block state information
    - Error status

    Args:
        start_lba: Starting LBA
        block_count: Number of blocks to check

    Returns:
        Dictionary of LBA status information

    Example:
        ```python
        device.get_lba_status('0', '1024')
        {'lba_status': [...]}
        ```
    """
    if not self.path:
        return {}

    arguments = {'--start-lba': start_lba, '--block-count': block_count, '--output-format': 'json', **kwargs}

    result = self._run('get-lba-status', device=self.path, arguments=arguments)
    if result.failed or not result.stdout:
        return {}

    try:
        return json.loads(result.stdout)
    except json.JSONDecodeError:
        logging.warning('Failed to parse get-lba-status JSON output')
        return {}

get_self_test_log(**kwargs)

Get self-test log.

Retrieves device self-test results: - Test completion status - Test results - Failure information - Test history

Returns:

Type Description
dict

Dictionary of self-test log entries

Example
device.get_self_test_log()
{'current_operation': 0, 'completion': 0, 'result': [...]}
Source code in sts_libs/src/sts/nvme.py
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
def get_self_test_log(self, **kwargs: str | None) -> dict:
    """Get self-test log.

    Retrieves device self-test results:
    - Test completion status
    - Test results
    - Failure information
    - Test history

    Returns:
        Dictionary of self-test log entries

    Example:
        ```python
        device.get_self_test_log()
        {'current_operation': 0, 'completion': 0, 'result': [...]}
        ```
    """
    if not self.path:
        return {}

    arguments = {'--output-format': 'json', **kwargs}

    result = self._run('self-test-log', device=self.path, arguments=arguments)
    if result.failed or not result.stdout:
        return {}

    try:
        return json.loads(result.stdout)
    except json.JSONDecodeError:
        logging.warning('Failed to parse self-test-log JSON output')
        return {}

get_smart_log(**kwargs)

Get SMART log.

Retrieves device health information: - Critical warnings - Temperature - Available spare - Media errors - Read/write statistics

Returns:

Type Description
dict

Dictionary of SMART log entries

Example
device.get_smart_log()
{'critical_warning': '0x0', 'temperature': '35 C', ...}
Source code in sts_libs/src/sts/nvme.py
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
def get_smart_log(self, **kwargs: str | None) -> dict:
    """Get SMART log.

    Retrieves device health information:
    - Critical warnings
    - Temperature
    - Available spare
    - Media errors
    - Read/write statistics

    Returns:
        Dictionary of SMART log entries

    Example:
        ```python
        device.get_smart_log()
        {'critical_warning': '0x0', 'temperature': '35 C', ...}
        ```
    """
    if not self.path:
        return {}

    arguments = {'--output-format': 'json', **kwargs}

    result = self._run('smart-log', device=self.path, arguments=arguments)
    if result.failed or not result.stdout:
        return {}

    try:
        return json.loads(result.stdout)
    except json.JSONDecodeError:
        logging.warning('Failed to parse smart-log JSON output')
        return {}

has_nvme() classmethod

Check if system contains any NVMe devices.

Returns:

Type Description
bool

True if NVMe devices found, False otherwise

Example
if NvmeDevice.has_nvme():
    devices = NvmeDevice.get_all()
else:
    print('No NVMe devices found')
Source code in sts_libs/src/sts/nvme.py
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
@classmethod
def has_nvme(cls) -> bool:
    """Check if system contains any NVMe devices.

    Returns:
        True if NVMe devices found, False otherwise

    Example:
        ```python
        if NvmeDevice.has_nvme():
            devices = NvmeDevice.get_all()
        else:
            print('No NVMe devices found')
        ```
    """
    result = run('nvme list')
    if result.failed or not result.stdout:
        return False

    return any(line.strip().startswith('/dev/nvme') for line in result.stdout.splitlines())

list_ns(**kwargs)

List namespaces.

Lists all namespaces attached to the controller: - Active namespaces - Allocated namespaces - Namespace identifiers

Returns:

Type Description
dict

Dictionary of namespace list

Example
device.list_ns()
[1, 0, 0, 0, ...]
Source code in sts_libs/src/sts/nvme.py
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
def list_ns(self, **kwargs: str | None) -> dict:
    """List namespaces.

    Lists all namespaces attached to the controller:
    - Active namespaces
    - Allocated namespaces
    - Namespace identifiers

    Returns:
        Dictionary of namespace list

    Example:
        ```python
        device.list_ns()
        [1, 0, 0, 0, ...]
        ```
    """
    if not self.controller:
        return {}

    arguments = {'--output-format': 'json', **kwargs}

    result = self._run('list-ns', device=f'/dev/{self.controller}', arguments=arguments)
    if result.failed or not result.stdout:
        return {}

    try:
        return json.loads(result.stdout)
    except json.JSONDecodeError:
        logging.warning('Failed to parse list-ns JSON output')
        return {}

ns_rescan(**kwargs)

Rescan namespaces.

Rescans for namespace changes: - Detects new namespaces - Updates namespace list - Refreshes kernel state

Returns:

Type Description
bool

True if successful, False otherwise

Example
device.ns_rescan()
True
Source code in sts_libs/src/sts/nvme.py
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
def ns_rescan(self, **kwargs: str | None) -> bool:
    """Rescan namespaces.

    Rescans for namespace changes:
    - Detects new namespaces
    - Updates namespace list
    - Refreshes kernel state

    Returns:
        True if successful, False otherwise

    Example:
        ```python
        device.ns_rescan()
        True
        ```
    """
    if not self.controller:
        return False

    return self._run('ns-rescan', device=f'/dev/{self.controller}', arguments=kwargs).succeeded

reset(**kwargs)

Reset NVMe controller.

Performs a controller-level reset: - Resets the NVMe controller - Clears any error states - Reinitializes the controller - May cause temporary device unavailability

Returns:

Type Description
bool

True if successful, False otherwise

Example
device.reset()
True
Source code in sts_libs/src/sts/nvme.py
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
def reset(self, **kwargs: str | None) -> bool:
    """Reset NVMe controller.

    Performs a controller-level reset:
    - Resets the NVMe controller
    - Clears any error states
    - Reinitializes the controller
    - May cause temporary device unavailability

    Returns:
        True if successful, False otherwise

    Example:
        ```python
        device.reset()
        True
        ```
    """
    if not self.path:
        return False

    return self._run('reset', device=f'/dev/{self.controller}', arguments=kwargs).succeeded

sanitize(**kwargs)

Sanitize device.

Performs a secure erase: - Block erase: Erases all user data by resetting all blocks - Crypto erase: Changes encryption keys, making data unrecoverable - Overwrite: Overwrites all user data with a data pattern - May take significant time - Requires admin privileges - Some devices may not support all erase methods

Returns:

Type Description
bool

True if successful, False otherwise

Examples:

# Block erase sanitize
device.sanitize(**{'--sanact': '0x01'})

# No-deallocate after sanitize
device.sanitize(**{'--sanact': '0x01', '--nodas': None})
Source code in sts_libs/src/sts/nvme.py
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
def sanitize(self, **kwargs: str | None) -> bool:
    """Sanitize device.

    Performs a secure erase:
    - Block erase: Erases all user data by resetting all blocks
    - Crypto erase: Changes encryption keys, making data unrecoverable
    - Overwrite: Overwrites all user data with a data pattern
    - May take significant time
    - Requires admin privileges
    - Some devices may not support all erase methods

    Returns:
        True if successful, False otherwise

    Examples:
        ```python
        # Block erase sanitize
        device.sanitize(**{'--sanact': '0x01'})

        # No-deallocate after sanitize
        device.sanitize(**{'--sanact': '0x01', '--nodas': None})
        ```
    """
    if not self.path:
        logging.error('Device path not available')
        return False

    return self._run('sanitize', device=f'/dev/{self.controller}', arguments=kwargs).succeeded

set_feature(feature_id, value, **kwargs)

Set device feature.

Configures device features: - Power management settings - Temperature thresholds - Error recovery parameters - Cache settings

Parameters:

Name Type Description Default
feature_id str

Feature ID to set (e.g., '0x01', '0x02')

required
value str

Feature value to set

required

Returns:

Type Description
bool

True if successful, False otherwise

Example
# Set power management feature
device.set_feature('0x02', '0x00')
True

# Set temperature threshold
device.set_feature('0x04', '85')
Source code in sts_libs/src/sts/nvme.py
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
def set_feature(self, feature_id: str, value: str, **kwargs: str | None) -> bool:
    """Set device feature.

    Configures device features:
    - Power management settings
    - Temperature thresholds
    - Error recovery parameters
    - Cache settings

    Args:
        feature_id: Feature ID to set (e.g., '0x01', '0x02')
        value: Feature value to set

    Returns:
        True if successful, False otherwise

    Example:
        ```python
        # Set power management feature
        device.set_feature('0x02', '0x00')
        True

        # Set temperature threshold
        device.set_feature('0x04', '85')
        ```
    """
    if not self.path:
        return False

    arguments = {'--feature-id': feature_id, '--value': value, **kwargs}

    return self._run('set-feature', device=self.path, arguments=arguments).succeeded

show_regs(**kwargs)

Show controller registers.

Displays controller register values: - Controller capabilities - Controller configuration - Controller status - Admin/IO queue attributes

Returns:

Type Description
dict

Dictionary of register values

Example
device.show_regs()
{'cap': '0x2014030300b0', 'vs': '0x10300', 'cc': '0x460001', ...}
Source code in sts_libs/src/sts/nvme.py
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
def show_regs(self, **kwargs: str | None) -> dict:
    """Show controller registers.

    Displays controller register values:
    - Controller capabilities
    - Controller configuration
    - Controller status
    - Admin/IO queue attributes

    Returns:
        Dictionary of register values

    Example:
        ```python
        device.show_regs()
        {'cap': '0x2014030300b0', 'vs': '0x10300', 'cc': '0x460001', ...}
        ```
    """
    if not self.controller:
        return {}

    arguments = {'--output-format': 'json', **kwargs}

    result = self._run('show-regs', device=f'/dev/{self.controller}', arguments=arguments)
    if result.failed or not result.stdout:
        return {}

    try:
        return json.loads(result.stdout)
    except json.JSONDecodeError:
        logging.warning('Failed to parse show-regs JSON output')
        return {}