mirror of
https://github.com/aaru-dps/aaruremote.git
synced 2025-12-16 11:14:35 +00:00
80 lines
2.4 KiB
C
80 lines
2.4 KiB
C
/*
|
|
* This file is part of the Aaru Remote Server.
|
|
* Copyright (c) 2019-2025 Natalia Portillo.
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, version 3.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <malloc.h>
|
|
#include <scsi/sg.h>
|
|
#include <stdint.h>
|
|
#include <string.h>
|
|
#include <sys/ioctl.h>
|
|
|
|
#include "../aaruremote.h"
|
|
#include "linux.h"
|
|
|
|
int32_t SendScsiCommand(void *device_ctx, char *cdb, char *buffer, char **sense_buffer, uint32_t timeout,
|
|
int32_t direction, uint32_t *duration, uint32_t *sense, uint32_t cdb_len, uint32_t *buf_len,
|
|
uint32_t *sense_len)
|
|
{
|
|
DeviceContext *ctx = device_ctx;
|
|
sg_io_hdr_t hdr;
|
|
int dir, ret;
|
|
*sense_len = 32;
|
|
|
|
if(!ctx) return -1;
|
|
|
|
memset(&hdr, 0, sizeof(sg_io_hdr_t));
|
|
*sense_buffer = malloc(*sense_len);
|
|
|
|
if(!*sense_buffer) return -1;
|
|
|
|
switch(direction)
|
|
{
|
|
case AARUREMOTE_SCSI_DIRECTION_IN:
|
|
dir = SG_DXFER_FROM_DEV;
|
|
break;
|
|
case AARUREMOTE_SCSI_DIRECTION_OUT:
|
|
dir = SG_DXFER_TO_DEV;
|
|
break;
|
|
case AARUREMOTE_SCSI_DIRECTION_INOUT:
|
|
case AARUREMOTE_SCSI_DIRECTION_UNSPECIFIED:
|
|
dir = SG_DXFER_TO_FROM_DEV;
|
|
break;
|
|
case AARUREMOTE_SCSI_DIRECTION_NONE:
|
|
default:
|
|
dir = SG_DXFER_NONE;
|
|
break;
|
|
}
|
|
|
|
hdr.interface_id = 'S';
|
|
hdr.cmd_len = (char)cdb_len;
|
|
hdr.mx_sb_len = 32;
|
|
hdr.dxfer_direction = dir;
|
|
hdr.dxfer_len = *buf_len;
|
|
hdr.dxferp = buffer;
|
|
hdr.cmdp = (unsigned char *)cdb;
|
|
hdr.sbp = (unsigned char *)*sense_buffer;
|
|
hdr.timeout = timeout;
|
|
hdr.flags = SG_FLAG_DIRECT_IO;
|
|
|
|
ret = ioctl(ctx->fd, SG_IO, &hdr);
|
|
|
|
*sense = (hdr.info & SG_INFO_OK_MASK) != SG_INFO_OK;
|
|
// TODO: Manual timing if duration is 0
|
|
*duration = hdr.duration;
|
|
*sense_len = hdr.sb_len_wr;
|
|
|
|
return ret; // TODO: Implement
|
|
} |