1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
/* $Id: ATAPIPassthrough.h $ */
/** @file
* VBox storage devices: ATAPI passthrough helpers (common code for DevATA and DevAHCI).
*/
/*
* Copyright (C) 2012-2019 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* you can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*/
#ifndef VBOX_INCLUDED_SRC_Storage_ATAPIPassthrough_h
#define VBOX_INCLUDED_SRC_Storage_ATAPIPassthrough_h
#ifndef RT_WITHOUT_PRAGMA_ONCE
# pragma once
#endif
#include <VBox/cdefs.h>
#include <VBox/vmm/pdmifs.h>
#include <VBox/vmm/pdmstorageifs.h>
RT_C_DECLS_BEGIN
/**
* Opaque media track list.
*/
typedef struct TRACKLIST *PTRACKLIST;
/**
* Creates an empty track list handle.
*
* @returns VBox status code.
* @param ppTrackList Where to store the track list handle on success.
*/
DECLHIDDEN(int) ATAPIPassthroughTrackListCreateEmpty(PTRACKLIST *ppTrackList);
/**
* Destroys the allocated task list handle.
*
* @returns nothing.
* @param pTrackList The track list handle to destroy.
*/
DECLHIDDEN(void) ATAPIPassthroughTrackListDestroy(PTRACKLIST pTrackList);
/**
* Clears all tracks from the given task list.
*
* @returns nothing.
* @param pTrackList The track list to clear.
*/
DECLHIDDEN(void) ATAPIPassthroughTrackListClear(PTRACKLIST pTrackList);
/**
* Updates the track list from the given CDB and data buffer.
*
* @returns VBox status code.
* @param pTrackList The track list to update.
* @param pCDB The CDB buffer.
* @param pvBuf The data buffer.
*/
DECLHIDDEN(int) ATAPIPassthroughTrackListUpdate(PTRACKLIST pTrackList, const uint8_t *pCDB, const void *pvBuf);
/**
* Return the sector size from the track matching the LBA in the given track list.
*
* @returns Sector size.
* @param pTrackList The track list to use.
* @param iAtapiLba The start LBA to get the sector size for.
*/
DECLHIDDEN(uint32_t) ATAPIPassthroughTrackListGetSectorSizeFromLba(PTRACKLIST pTrackList, uint32_t iAtapiLba);
/**
* Parses the given CDB and returns whether it is safe to pass it through to the host drive.
*
* @returns Flag whether passing the CDB through to the host drive is safe.
* @param pbCdb The CDB to parse.
* @param cbCdb Size of the CDB in bytes.
* @param cbBuf Size of the guest buffer.
* @param pTrackList The track list for the current medium if available (optional).
* @param pbSense Pointer to the sense buffer.
* @param cbSense Size of the sense buffer.
* @param penmTxDir Where to store the transfer direction (guest to host or vice versa).
* @param pcbXfer Where to store the transfer size encoded in the CDB.
* @param pcbSector Where to store the sector size used for the transfer.
* @param pu8ScsiSts Where to store the SCSI status code.
*/
DECLHIDDEN(bool) ATAPIPassthroughParseCdb(const uint8_t *pbCdb, size_t cbCdb, size_t cbBuf,
PTRACKLIST pTrackList, uint8_t *pbSense, size_t cbSense,
PDMMEDIATXDIR *penmTxDir, size_t *pcbXfer,
size_t *pcbSector, uint8_t *pu8ScsiSts);
RT_C_DECLS_END
#endif /* !VBOX_INCLUDED_SRC_Storage_ATAPIPassthrough_h */
|