forked from wookey-project/libmassstorage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscsi_automaton.c
235 lines (217 loc) · 7.64 KB
/
scsi_automaton.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
/*
*
* Copyright 2018 The wookey project team <[email protected]>
* - Ryad Benadjila
* - Arnauld Michelizza
* - Mathieu Renard
* - Philippe Thierry
* - Philippe Trebuchet
*
* This package is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published
* the Free Software Foundation; either version 2.1 of the License, or (at
* ur option) any later version.
*
* This package 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License along
* with this package; if not, write to the Free Software Foundation, Inc., 51
* Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#include "scsi_automaton.h"
#include "libc/stdio.h"
#include "libc/nostd.h"
#include "libc/string.h"
/****************************************************************
* SCSI state automaton formal definition and associate utility
* functions
***************************************************************/
static scsi_state_t state;
/*
* all allowed transitions and target states for each current state
* empty fields are set as 0xff/0xff for request/state couple, which is
* an inexistent state and request
*
* This table associate each state of the DFU automaton with up to
* 5 potential allowed transitions/next_state couples. This permit to
* easily detect:
* 1) authorized transitions, based on the current state
* 2) next state, based on the current state and current transition
*
* If the next_state for the current transision is keeped to 0xff, this
* means that the current transition for the current state may lead to
* multiple next state depending on other informations. In this case,
* the transition handler has to handle this manually.
*/
#define MAX_TRANSITION_STATE 17
/*
* Association between a request and a transition to a next state. This couple
* depend on the current state and is use in the following structure
*/
typedef struct scsi_operation_code_transition {
uint8_t request;
uint8_t target_state;
} scsi_operation_code_transition_t;
static const struct {
scsi_state_t state;
scsi_operation_code_transition_t req_trans[MAX_TRANSITION_STATE];
} scsi_automaton[] = {
{SCSI_IDLE, {
{SCSI_CMD_INQUIRY, SCSI_IDLE},
{SCSI_CMD_MODE_SELECT_10, SCSI_IDLE},
{SCSI_CMD_MODE_SELECT_6, SCSI_IDLE},
{SCSI_CMD_MODE_SENSE_10, SCSI_IDLE},
{SCSI_CMD_MODE_SENSE_6, SCSI_IDLE},
{SCSI_CMD_PREVENT_ALLOW_MEDIUM_REMOVAL, SCSI_IDLE},
{SCSI_CMD_READ_6, SCSI_IDLE},
{SCSI_CMD_READ_10, SCSI_IDLE},
{SCSI_CMD_READ_CAPACITY_10, SCSI_IDLE},
{SCSI_CMD_READ_CAPACITY_16, SCSI_IDLE},
{SCSI_CMD_READ_FORMAT_CAPACITIES, SCSI_IDLE},
{SCSI_CMD_REPORT_LUNS, SCSI_IDLE},
{SCSI_CMD_REQUEST_SENSE, SCSI_IDLE},
{SCSI_CMD_SEND_DIAGNOSTIC, SCSI_IDLE},
{SCSI_CMD_TEST_UNIT_READY, SCSI_IDLE},
{SCSI_CMD_WRITE_6, SCSI_IDLE},
{SCSI_CMD_WRITE_10, SCSI_IDLE},
}
},
{SCSI_READ, {
{SCSI_CMD_READ_6, SCSI_IDLE},
{SCSI_CMD_READ_10, SCSI_IDLE},
{0xff, 0xff},
{0xff, 0xff},
{0xff, 0xff},
{0xff, 0xff},
{0xff, 0xff},
{0xff, 0xff},
{0xff, 0xff},
{0xff, 0xff},
{0xff, 0xff},
{0xff, 0xff},
{0xff, 0xff},
{0xff, 0xff},
{0xff, 0xff},
{0xff, 0xff},
}
},
{SCSI_WRITE, {
{SCSI_CMD_WRITE_6, SCSI_IDLE},
{SCSI_CMD_WRITE_10, SCSI_IDLE},
{0xff, 0xff},
{0xff, 0xff},
{0xff, 0xff},
{0xff, 0xff},
{0xff, 0xff},
{0xff, 0xff},
{0xff, 0xff},
{0xff, 0xff},
{0xff, 0xff},
{0xff, 0xff},
{0xff, 0xff},
{0xff, 0xff},
{0xff, 0xff},
{0xff, 0xff},
}
},
{SCSI_ERROR, {
{SCSI_CMD_MODE_SENSE_10, SCSI_IDLE},
{SCSI_CMD_MODE_SENSE_6, SCSI_IDLE},
{SCSI_CMD_PREVENT_ALLOW_MEDIUM_REMOVAL, SCSI_IDLE},
{SCSI_CMD_REQUEST_SENSE, SCSI_IDLE},
{0xff, 0xff},
{0xff, 0xff},
{0xff, 0xff},
{0xff, 0xff},
{0xff, 0xff},
{0xff, 0xff},
{0xff, 0xff},
{0xff, 0xff},
{0xff, 0xff},
{0xff, 0xff},
{0xff, 0xff},
{0xff, 0xff},
{0xff, 0xff},
},
},
};
/**********************************************
* SCSI getters and setters
*********************************************/
scsi_state_t scsi_get_state(void)
{
return state;
}
/*
* This function is eligible in both main thread and ISR
* mode (through trigger execution). Please use aprintf only
* here.
*/
void scsi_set_state(const scsi_state_t new_state)
{
if (new_state == 0xff) {
aprintf("%s: PANIC! this should never arise !", __func__);
while (1) {
}; //FIXME
return;
}
#if SCSI_DEBUG
aprintf("%s: state: %x => %x\n", __func__, scsi_ctx.state, new_state);
#endif
state = new_state;
}
/******************************************************
* SCSI automaton management function (transition and
* state check)
*****************************************************/
/*!
* \brief return the next automaton state
*
* The next state is returned depending on the current state
* and the current request. In some case, it can be 0xff if multiple
* next states are possible.
*
* \param current_state the current automaton state
* \param request the current transition request
*
* \return the next state, or 0xff
*/
uint8_t scsi_next_state(scsi_state_t current_state,
scsi_operation_code_t request)
{
for (uint8_t i = 0; i < MAX_TRANSITION_STATE; ++i) {
if (scsi_automaton[current_state].req_trans[i].request == request) {
return (scsi_automaton[current_state].req_trans[i].target_state);
}
}
/* fallback, no corresponding request found for this state */
return 0xff;
}
/*!
* \brief Specify if the current request is valid for the current state
*
* \param current_state the current automaton state
* \param request the current transition request
*
* \return true if the transition request is allowed for this state, or false
*/
bool scsi_is_valid_transition(scsi_state_t current_state,
scsi_operation_code_t request)
{
for (uint8_t i = 0; i < MAX_TRANSITION_STATE; ++i) {
if (scsi_automaton[current_state].req_trans[i].request == request) {
return true;
}
}
/*
* Didn't find any request associated to current state. This is not a
* valid transition. We should stall the request.
*/
printf("%s: invalid transition from state %d, request %d\n", __func__,
current_state, request);
scsi_set_state(SCSI_ERROR);
return false;
}