2022-02-10 18:54:48 +00:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
2022-12-05 17:58:23 +00:00
|
|
|
// SCSI Target Emulator PiSCSI
|
2022-02-10 18:54:48 +00:00
|
|
|
// for Raspberry Pi
|
|
|
|
//
|
|
|
|
// Copyright (C) 2022 Uwe Seimet
|
|
|
|
//
|
2022-02-17 02:04:42 +00:00
|
|
|
// Host Services with realtime clock and shutdown support
|
2022-02-13 19:30:02 +00:00
|
|
|
//
|
2022-02-10 18:54:48 +00:00
|
|
|
//---------------------------------------------------------------------------
|
2022-09-25 21:49:24 +00:00
|
|
|
|
2022-02-10 18:54:48 +00:00
|
|
|
#pragma once
|
|
|
|
|
2022-02-13 19:30:02 +00:00
|
|
|
#include "mode_page_device.h"
|
2022-02-27 21:58:01 +00:00
|
|
|
#include <vector>
|
SASI code removal, error handling update, bug fixes, code cleanup (#806)
Summary ov most important changes triggered by the SASI code removal:
- Removed the SASI controller code
- New controller management. There is a new controller base class AbstractController and a class ControllerManager managing the controller lifecycle. The lifecycle management was removed from rasci.cpp and is covered by unit tests.
- New device management. The DeviceFactory manages the device lifecycle instead of rascsi.cpp. The new code is covered by unit tests.
- The lifecycle managment uses C++ collections with variable size instead of arrays with hard-coded sizes.
- The ScsiController method contains most of what was previously contained in scsidev_ctrl.cpp plus the code from sasidev_ctrl.cpp that was relevant for SCSI.
- scsi_command_util contains helper methods used for identical SCSI command implementations of more than one device
- Devices know their controllers, so that the controller instance does not need to be passed to each SCSI command. This change helps to decouple the devices from the controller. The phase_handler interface is also part of this decoupling.
- Use scsi_command_exception for propagating SCSI command execution errors, This resolves issues with the previous error handling, which was based on return values and often on magic numbers.
- Removed legacy SCSI error codes, all errors are now encoded by sense_key::, asc:: and status::.
- Fixed various warnings reported with -Wextra, -Weffc++ and -Wpedantic.
- Use constructor member initialization lists (recommended for ISO C++)
- Consistently use new/delete instead of malloc/free (recommended for ISO C++), resulting in better type safety and error handling
- Replaced variable sized arrays on the stack (violates ISO C++ and can cause a stack overflow)
- Replaced NULL by nullptr (recommended for C++), resulting in better type safety
- Use more const member functions in order to avoid side effects
- The format device page can now also be changed for hard disk drives (Fujitsu M2624S supports this, for instance), not just for MOs.
- Better encapsulation, updated access specifiers in many places
- Removed unused methods and method arguments
- Fixed a number of TODOs
- Added/updated unit tests for a lot of non-legacy classes
- Makefile support for creating HTML coverage reports with lcov/genhtml
2022-09-03 14:53:53 +00:00
|
|
|
#include <map>
|
2022-02-13 19:30:02 +00:00
|
|
|
|
|
|
|
class HostServices: public ModePageDevice
|
2022-02-10 18:54:48 +00:00
|
|
|
{
|
2022-02-13 19:30:02 +00:00
|
|
|
|
2022-02-10 18:54:48 +00:00
|
|
|
public:
|
2022-02-13 19:30:02 +00:00
|
|
|
|
2022-11-04 07:22:32 +00:00
|
|
|
explicit HostServices(int lun) : ModePageDevice(SCHS, lun) {}
|
2022-09-07 14:38:42 +00:00
|
|
|
~HostServices() override = default;
|
2022-02-10 18:54:48 +00:00
|
|
|
|
2022-11-02 14:36:19 +00:00
|
|
|
bool Init(const unordered_map<string, string>&) override;
|
2022-02-10 18:54:48 +00:00
|
|
|
|
2022-11-02 14:36:19 +00:00
|
|
|
vector<uint8_t> InquiryInternal() const override;
|
SASI code removal, error handling update, bug fixes, code cleanup (#806)
Summary ov most important changes triggered by the SASI code removal:
- Removed the SASI controller code
- New controller management. There is a new controller base class AbstractController and a class ControllerManager managing the controller lifecycle. The lifecycle management was removed from rasci.cpp and is covered by unit tests.
- New device management. The DeviceFactory manages the device lifecycle instead of rascsi.cpp. The new code is covered by unit tests.
- The lifecycle managment uses C++ collections with variable size instead of arrays with hard-coded sizes.
- The ScsiController method contains most of what was previously contained in scsidev_ctrl.cpp plus the code from sasidev_ctrl.cpp that was relevant for SCSI.
- scsi_command_util contains helper methods used for identical SCSI command implementations of more than one device
- Devices know their controllers, so that the controller instance does not need to be passed to each SCSI command. This change helps to decouple the devices from the controller. The phase_handler interface is also part of this decoupling.
- Use scsi_command_exception for propagating SCSI command execution errors, This resolves issues with the previous error handling, which was based on return values and often on magic numbers.
- Removed legacy SCSI error codes, all errors are now encoded by sense_key::, asc:: and status::.
- Fixed various warnings reported with -Wextra, -Weffc++ and -Wpedantic.
- Use constructor member initialization lists (recommended for ISO C++)
- Consistently use new/delete instead of malloc/free (recommended for ISO C++), resulting in better type safety and error handling
- Replaced variable sized arrays on the stack (violates ISO C++ and can cause a stack overflow)
- Replaced NULL by nullptr (recommended for C++), resulting in better type safety
- Use more const member functions in order to avoid side effects
- The format device page can now also be changed for hard disk drives (Fujitsu M2624S supports this, for instance), not just for MOs.
- Better encapsulation, updated access specifiers in many places
- Removed unused methods and method arguments
- Fixed a number of TODOs
- Added/updated unit tests for a lot of non-legacy classes
- Makefile support for creating HTML coverage reports with lcov/genhtml
2022-09-03 14:53:53 +00:00
|
|
|
void TestUnitReady() override;
|
2022-02-13 19:30:02 +00:00
|
|
|
|
2022-08-28 17:25:08 +00:00
|
|
|
protected:
|
|
|
|
|
2022-09-25 21:49:24 +00:00
|
|
|
void SetUpModePages(map<int, vector<byte>>&, int, bool) const override;
|
2022-08-28 17:25:08 +00:00
|
|
|
|
2022-02-13 19:30:02 +00:00
|
|
|
private:
|
|
|
|
|
2022-09-21 06:27:51 +00:00
|
|
|
using mode_page_datetime = struct __attribute__((packed)) {
|
2022-09-25 21:49:24 +00:00
|
|
|
// Major and minor version of this data structure (e.g. 1.0)
|
|
|
|
uint8_t major_version;
|
|
|
|
uint8_t minor_version;
|
2022-09-21 06:27:51 +00:00
|
|
|
// Current date and time, with daylight savings time adjustment applied
|
|
|
|
uint8_t year; // year - 1900
|
|
|
|
uint8_t month; // 0-11
|
|
|
|
uint8_t day; // 1-31
|
|
|
|
uint8_t hour; // 0-23
|
|
|
|
uint8_t minute; // 0-59
|
|
|
|
uint8_t second; // 0-59
|
|
|
|
};
|
|
|
|
|
2022-11-04 07:22:32 +00:00
|
|
|
void StartStopUnit() const;
|
2022-11-02 06:36:25 +00:00
|
|
|
int ModeSense6(const vector<int>&, vector<uint8_t>&) const override;
|
|
|
|
int ModeSense10(const vector<int>&, vector<uint8_t>&) const override;
|
2022-02-13 19:30:02 +00:00
|
|
|
|
2022-10-04 15:23:42 +00:00
|
|
|
void AddRealtimeClockPage(map<int, vector<byte>>&, bool) const;
|
2022-02-10 18:54:48 +00:00
|
|
|
};
|