forked from Spritetm/plexus_20_emu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scsi_dev_hd.c
215 lines (200 loc) · 5.63 KB
/
scsi_dev_hd.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
/*
Very basic simulation of a SCSI-1 hard disk.
*/
/*
SPDX-License-Identifier: MIT
Copyright (c) 2024 Sprite_tm <[email protected]>
*/
#include <stdlib.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include <assert.h>
#include <sys/stat.h>
#include "scsi.h"
#include "emu.h"
#include "log.h"
#include "emscripten_env.h"
/*
This can take a directory for copy-on-write storage. The idea is that there
is a file that is a hard disk image that is never written to. Instead, as soon
as a sector is written, a file is created in the COW directory with the LBA
of the sector in the name; data is written there. On a read, the code first
checks if such a file exists and if so it returns the data from there.
If it does not, it falls back to returning data from the base image.
*/
//Might need to change if e.g. the backing file changes for the web version.
#define COW_VERSION_MAJOR 0
#define COW_VERSION_MINOR 0
typedef struct {
scsi_dev_t dev;
FILE *hdfile;
uint8_t cmd[10];
char *cow_dir;
} scsi_hd_t;
static const uint8_t sense[]={
0x80+0x00, //error code
0, //sense key
0,0,0, //additional information
0, //additional sense length
0,0,0,0, //cmd specific info
0, //asc
0, //ascq
0, //fru code
0,0,0,0 //sense key specific
};
//Open the COW file for a given LBA. Open it with the mode indicated.
static FILE *open_cow_file(scsi_hd_t *hd, int lba, const char *mode) {
char buf[1024];
snprintf(buf, sizeof(buf), "%s/cow-data-%06d.bin", hd->cow_dir, lba);
FILE *f=fopen(buf, mode);
return f;
}
//Write a block, either to the COW directory or to the image.
static void write_block(scsi_hd_t *hd, int lba, uint8_t *data) {
if (hd->cow_dir) {
FILE *f=open_cow_file(hd, lba, "w+b");
if (!f) {
perror("opening cow file for write");
exit(1);
}
uint8_t ver[2]={COW_VERSION_MAJOR, COW_VERSION_MINOR};
fwrite(ver, 2, 1, f);
fwrite(data, 512, 1, f);
fclose(f);
} else {
fseek(hd->hdfile, lba*512, SEEK_SET);
fwrite(data, 512, 1, hd->hdfile);
}
}
//Read a block, either from the COW directory or from the image.
static void read_block(scsi_hd_t *hd, int lba, uint8_t *data) {
if (hd->cow_dir) {
FILE *f=open_cow_file(hd, lba, "rb");
if (f) {
uint8_t ver[2];
fread(ver, 2, 1, f);
//Check version; we only want to use files with matching version no.
if (ver[0]==COW_VERSION_MAJOR && ver[1]==COW_VERSION_MINOR) {
fread(data, 512, 1, f);
fclose(f);
return;
} else {
//not the same version; ignore
fclose(f);
}
}
}
//No cow file for the data; return from base image.
fseek(hd->hdfile, lba*512, SEEK_SET);
fread(data, 512, 1, hd->hdfile);
}
static int hd_handle_cmd(scsi_dev_t *dev, uint8_t *cd, int len) {
scsi_hd_t *hd=(scsi_hd_t*)dev;
if (len<6 || len>10) return SCSI_DEV_ERR;
memcpy(hd->cmd, cd, len);
if (cd[0]==0) {
return SCSI_DEV_STATUS;
} else if (cd[0]==1) {
return SCSI_DEV_STATUS;
} else if (cd[0]==3) { //sense
return SCSI_DEV_DATA_IN;
} else if (cd[0]==8) { //read
return SCSI_DEV_DATA_IN;
} else if (cd[0]==0x15) { //mode select
return SCSI_DEV_DATA_OUT;
} else if (cd[0]==0xa) { //write
return SCSI_DEV_DATA_OUT;
} else if (cd[0]==0xC2) {
//omti config cmd
return SCSI_DEV_DATA_OUT;
} else {
printf("hd: unsupported cmd %d\n", cd[0]);
exit(1);
}
return SCSI_DEV_DATA_IN;
}
int hd_handle_data_in(scsi_dev_t *dev, uint8_t *msg, int buflen) {
scsi_hd_t *hd=(scsi_hd_t*)dev;
if (hd->cmd[0]==3) { //sense
int clen=hd->cmd[4];
if (clen==0) clen=4; //per scsi spec
//we don't actually care about luns for now...
//int lun=hd->cmd[1]>>5;
if (clen>buflen) clen=buflen;
memcpy(msg, sense, clen);
return clen;
} else if (hd->cmd[0]==8) { //read
int lba=(hd->cmd[1]<<16)+(hd->cmd[2]<<8)+(hd->cmd[3]);
int tlen=hd->cmd[4];
if (tlen==0) tlen=256; //0 means 256 blocks per the spec
int blen=tlen*512; //length in bytes
if (blen>buflen) blen=buflen;
for (int i=0; i<blen/512; i++) {
read_block(hd, lba+i, &msg[i*512]);
}
return blen;
} else if (hd->cmd[0]==0xc2) {
//omti config command?
//we simply ignore this as we don't need it.
} else {
assert(0 && "hd_handle_data_in: unknown cmd");
}
return 0;
}
static void hd_handle_data_out(scsi_dev_t *dev, uint8_t *msg, int len) {
scsi_hd_t *hd=(scsi_hd_t*)dev;
if (hd->cmd[0]==0x15) { //mode select
//ignore
} else if (hd->cmd[0]==0xa) { //write
int lba=(hd->cmd[1]<<16)+(hd->cmd[2]<<8)+(hd->cmd[3]);
int tlen=hd->cmd[4];
if (tlen==0) tlen=256; //per the spec 0 means 256 blocks
int blen=tlen*512;
if (blen>len) blen=len;
for (int i=0; i<blen/512; i++) {
write_block(hd, lba+i, &msg[i*512]);
}
#ifdef __EMSCRIPTEN__
emscripten_syncfs();
#endif
}
}
static int hd_handle_status(scsi_dev_t *dev) {
//scsi_hd_t *hd=(scsi_hd_t*)dev;
//all commands return a status of 0=OK for now.
return 0;
}
scsi_dev_t *scsi_dev_hd_new(const char *imagename, const char *cow_dir) {
scsi_hd_t *hd=calloc(sizeof(scsi_hd_t), 1);
if (cow_dir && cow_dir[0]!=0) {
//we leave the original image intact and use copy-on-write to save
//the new data
hd->cow_dir=strdup(cow_dir);
struct stat st;
mkdir(cow_dir, 0755); //may fail, we don't care
if (stat(cow_dir, &st) == -1) {
perror(cow_dir);
exit(1);
}
if ((st.st_mode & S_IFMT)!=S_IFDIR) {
printf("%s: not a dir\n", cow_dir);
exit(1);
}
hd->hdfile=fopen(imagename, "rb");
} else {
//open image r/w so we can write back to it.
hd->hdfile=fopen(imagename, "r+b");
hd->cow_dir=NULL;
}
if (!hd->hdfile) {
perror(imagename);
free(hd);
return NULL;
}
hd->dev.handle_status=hd_handle_status;
hd->dev.handle_cmd=hd_handle_cmd;
hd->dev.handle_data_in=hd_handle_data_in;
hd->dev.handle_data_out=hd_handle_data_out;
return (scsi_dev_t*)hd;
}