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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
type datetime = {
year: int;
month: int;
day: int;
hours: int;
mins: int;
secs: int;
ms: int;
}
let epoch = {
year = 1980; month = 0; day = 0;
hours = 0; mins = 0; secs = 0; ms = 0;
}
(** Long filename entry: the same size as an original DOS disk entry *)
type lfn = {
lfn_deleted: bool;
lfn_last: bool; (** marks the highest sequence number *)
lfn_seq: int;
lfn_checksum: int;
lfn_utf16_name: string
}
(** A DOS disk entry *)
type dos = {
filename: string; (** 8 chars *)
ext: string; (** 3 chars *)
deleted: bool;
read_only: bool;
hidden: bool;
system: bool;
volume: bool;
subdir: bool;
archive: bool;
create: datetime;
access: datetime;
modify: datetime;
start_cluster: int;
file_size: int32;
is_dot: bool;
is_dotdot: bool;
}
(** Useful for streaming entries to/from the disk *)
type single_entry =
| Dos of dos
| Lfn of lfn
| End
(** A high-level directory entry, complete with reconstructed UTF name and
offsets of each individual entry on the disk *)
type r = {
utf_filename: string;
dos: int * dos;
lfns: (int * lfn) list;
}
let fake_root_entry = {
utf_filename = "";
dos = 0, {
filename = ""; ext = ""; deleted = false; read_only = false;
hidden = false; system = false; volume = false; subdir = true; archive = false;
create = epoch; access = epoch; modify = epoch; start_cluster = 0; file_size = 0l;
is_dot = false; is_dotdot = false;
};
lfns = []
}
let is_dot filename =
filename = "."
let is_dotdot filename =
filename = ".."
let remove_padding x =
String.trim x
let file_size_of r = (snd r.dos).file_size
let deleted r = (snd r.dos).deleted
let filename_of r =
if r.lfns <> []
then r.utf_filename
else
let d = snd(r.dos) in
let ext = (remove_padding d.ext) in
let filename = (remove_padding d.filename) in
if ext = "" then filename else filename ^ "." ^ ext
let to_single_entries r =
List.rev ((Dos (snd r.dos)) :: (List.map (fun l -> Lfn (snd l)) r.lfns))
let legal_dos_char = function
| 'A' .. 'Z'
| '0' .. '9'
| ' '
| '!' | '#' | '$' | '%' | '&' | '\'' | '(' | ')'
| '-' | '@' | '^' | '_' | '`' | '{' | '}' | '~' -> true
| c -> int_of_char c >= 128
let legal_dos_string x =
try
for i = 0 to String.length x - 1 do
if not(legal_dos_char x.[i]) then raise Not_found
done;
true
with Not_found -> false
let dot = Re.Str.regexp_string "."
let is_legal_dos_name filename =
if (is_dot filename || is_dotdot filename) then true else
match Re.Str.split dot filename with
| [ one ] -> String.length one <= 8 && (legal_dos_string one)
| [ one; two ] -> String.length one <= 8
&& (String.length two <= 3)
&& (legal_dos_string one)
&& (legal_dos_string two)
| _ -> false
let add_padding p n x =
if String.length x >= n then x
else
let y = Bytes.make n p in
Bytes.blit_string x 0 y 0 (String.length x);
Bytes.unsafe_to_string y
let uppercase = Astring.String.Ascii.uppercase
let dos_name_of_filename filename =
if (is_dot filename || is_dotdot filename) then filename, "" else
if is_legal_dos_name filename
then match Re.Str.split dot filename with
| [ one ] -> add_padding ' ' 8 one, " "
| [ one; two ] -> add_padding ' ' 8 one, add_padding ' ' 3 two
| _ -> assert false
else
let all = uppercase (Digest.to_hex (Digest.string filename)) in
let base = String.sub all 0 8 in
let ext = String.sub all 8 3 in
base, ext
let ascii_to_utf16 x =
let l = String.length x in
let padto = (l + 1 + 12) / 13 * 13 in
let total = max (l + 1) padto in
let results = Bytes.make (total * 2) (char_of_int 0xff) in
for i = 0 to l - 1 do
Bytes.set results (i*2) x.[i];
Bytes.set results (i*2+1) (char_of_int 0);
done;
Bytes.set results (l*2) (char_of_int 0);
Bytes.set results (l*2+1) (char_of_int 0);
Bytes.unsafe_to_string results
let utf16_to_ascii s =
let result = Bytes.make (String.length s / 2) 'X' in
for i = 0 to Bytes.length result - 1 do
Bytes.set result i s.[i * 2];
done;
Bytes.unsafe_to_string result
(** Returns the checksum corresponding to the 8.3 DOS filename *)
let compute_checksum x =
let y = add_padding ' ' 8 x.filename ^ (add_padding ' ' 3 x.ext) in
let rec inner sum i =
if i = String.length y then sum
else
let sum' = (sum land 1) lsl 7 + ((sum land 0xff) lsr 1) + (int_of_char y.[i]) in
inner sum' (i + 1) in
(inner 0 0) land 0xff
let make ?(read_only=false) ?(system=false) ?(subdir=false) filename =
let start_cluster = 0 and file_size = 0l in
let filename', ext = dos_name_of_filename filename in
let dos = {
filename = filename';
ext = ext;
deleted = false;
read_only = read_only;
hidden = false;
system = system;
volume = false;
subdir = subdir;
archive = false;
create = epoch;
access = epoch;
modify = epoch;
start_cluster = start_cluster;
file_size = file_size;
is_dot = false;
is_dotdot = false
} in
let checksum = compute_checksum dos in
let lfns =
if is_legal_dos_name filename
then []
else
let padded_utf16 = ascii_to_utf16 filename in
let rec inner acc seq i =
let last = i + 26 = String.length padded_utf16 in
let finished = i + 26 > String.length padded_utf16 in
if finished then acc
else
let chunk = String.sub padded_utf16 i 26 in
let lfn = {
lfn_deleted = false;
lfn_last = last;
lfn_seq = seq;
lfn_checksum = checksum;
lfn_utf16_name = chunk;
} in
inner (lfn :: acc) (seq + 1) (i + 26) in
inner [] 1 0 in
{
utf_filename = filename;
dos = 0, dos;
lfns = List.map (fun l -> 0, l) lfns
}
let trim_utf16 x =
let chars = ref (String.length x / 2) in
for i = 0 to String.length x / 2 - 1 do
let a = int_of_char x.[i * 2] and b = int_of_char x.[i * 2 + 1] in
if a = 0x00 && b = 0x00 && i < !chars then chars := i;
if a = 0xff && b = 0xff && i < !chars then chars := i
done;
String.sub x 0 (!chars * 2)
let to_pretty_string x =
let d = snd x.dos in
Printf.sprintf "%-8s %-3s %10s %04d-%02d-%02d %02d:%02d %s"
d.filename d.ext
(if d.subdir then "<DIR> " else (Printf.sprintf "%10ld" d.file_size))
d.create.year d.create.month d.create.day
d.create.hours d.create.mins
(trim_utf16 x.utf_filename)
let to_string x =
let d = snd x.dos in
let y = trim_utf16 x.utf_filename in
let z = utf16_to_ascii y in
let ext = (remove_padding d.ext) in
let filename = (remove_padding d.filename) in
if z = "" && ext = "" then filename else
if z = "" then filename ^ "." ^ ext else z
let int_to_hms time =
let hours = ((time lsr 11) land 0b11111) in
let mins = (time lsr 5) land 0b111111 in
let secs = (time land 0b11111) * 2 in
hours, mins, secs
let hms_to_int (hours, mins, secs) =
let h = (hours land 0b11111) lsl 11 in
let m = (mins land 0b111111) lsl 5 in
let s = ((secs/2) land 0b11111) in
h lor m lor s
let int_of_time time = hms_to_int (time.hours, time.mins, time.secs)
let time_of_int date time ms =
let day = date land 0b11111 in
let month = (date lsr 5) land 0b1111 in
let year = (date lsr 9) + 1980 in
let hours, mins, secs = int_to_hms time in
{ day = day; month = month; year = year;
hours = hours; mins = mins; secs = secs; ms = ms }
let int_of_date x =
let d = x.day land 0b11111 in
let m = (x.month land 0b1111) lsl 5 in
let y = (x.year - 1980) lsl 9 in
d lor m lor y
[%%cstruct
type lfn = {
seq: uint8_t ;
utf1: uint8_t [@len 10] ;
v_0f: uint8_t ;
v_0: uint8_t ;
checksum: uint8_t ;
utf2: uint8_t [@len 12] ;
v_0_2: uint16_t ;
utf3: uint8_t [@len 4]
} [@@little_endian]
]
[%%cstruct
type name = {
filename: uint8_t [@len 8] ;
ext: uint8_t [@len 3] ;
flags: uint8_t ;
reserved: uint8_t ;
create_time_ms: uint8_t ;
create_time: uint16_t ;
create_date: uint16_t ;
last_access_date: uint16_t ;
ea_index: uint16_t ;
last_modify_time: uint16_t ;
last_modify_date: uint16_t ;
start_cluster: uint16_t ;
file_size: uint32_t ;
} [@@little_endian]
]
let sizeof = sizeof_name
let _ = assert(sizeof_lfn = sizeof_name)
let unmarshal buf =
if Cstruct.length buf = 0
then End
else if get_lfn_v_0f buf = 0x0f then begin
let seq = get_lfn_seq buf in
let utf1 = Cstruct.to_string (get_lfn_utf1 buf) in
let checksum = get_lfn_checksum buf in
let utf2 = Cstruct.to_string (get_lfn_utf2 buf) in
let utf3 = Cstruct.to_string (get_lfn_utf3 buf) in
Lfn {
lfn_deleted = seq land 0x80 = 0x80;
lfn_last = seq land 0x40 = 0x40;
lfn_seq = seq land 0x3f;
lfn_checksum = checksum;
lfn_utf16_name = utf1 ^ utf2 ^ utf3;
}
end else begin
let filename = Cstruct.to_bytes (get_name_filename buf) in
let ext = Cstruct.to_string (get_name_ext buf) in
let flags = get_name_flags buf in
let read_only = flags land 0x1 = 0x1 in
let hidden = flags land 0x2 = 0x2 in
let system = flags land 0x4 = 0x4 in
let volume = flags land 0x8 = 0x8 in
let subdir = flags land 0x10 = 0x10 in
let archive = flags land 0x20 = 0x20 in
let create_time_ms = get_name_create_time_ms buf in
let create_time = get_name_create_time buf in
let create_date = get_name_create_date buf in
let last_access_date = get_name_last_access_date buf in
let _ea_index = get_name_ea_index buf in
let last_modify_time = get_name_last_modify_time buf in
let last_modify_date = get_name_last_modify_date buf in
let start_cluster = get_name_start_cluster buf in
let file_size = get_name_file_size buf in
let x = int_of_char @@ Bytes.get filename 0 in
if x = 0
then End
else
let deleted = x = 0xe5 in
Bytes.set filename 0 @@ char_of_int (if x = 0x05 then 0xe5 else x);
Dos {
filename = remove_padding (Bytes.to_string filename);
ext = remove_padding ext;
read_only = read_only;
deleted = deleted;
hidden = hidden;
system = system;
volume = volume;
subdir = subdir;
archive = archive;
create = time_of_int create_date create_time create_time_ms;
access = time_of_int last_access_date 0 0;
modify = time_of_int last_modify_date last_modify_time 0;
start_cluster = start_cluster;
file_size = file_size;
is_dot = (is_dot (remove_padding (Bytes.to_string filename)));
is_dotdot = (is_dotdot (remove_padding (Bytes.to_string filename)));
}
end
let marshal (buf: Cstruct.t) t =
for i = 0 to Cstruct.length buf - 1 do
Cstruct.set_uint8 buf i 0
done;
match t with
| End -> ()
| Lfn l ->
let seq = l.lfn_seq lor (if l.lfn_last then 0x40 else 0) lor (if l.lfn_deleted then 0x80 else 0) in
let utf = add_padding (char_of_int 0xff) 26 l.lfn_utf16_name in
let utf1 = String.sub utf 0 10 in
let utf2 = String.sub utf 10 12 in
let utf3 = String.sub utf 22 4 in
let checksum = l.lfn_checksum in
set_lfn_seq buf seq;
set_lfn_utf1 utf1 0 buf;
set_lfn_v_0f buf 0x0f;
set_lfn_v_0 buf 0x0;
set_lfn_checksum buf checksum;
set_lfn_utf2 utf2 0 buf;
set_lfn_v_0_2 buf 0x0;
set_lfn_utf3 utf3 0 buf
| Dos x ->
let filename = Bytes.of_string @@ add_padding ' ' 8 x.filename in
let y = int_of_char @@ Bytes.get filename 0 in
Bytes.set filename 0 @@ char_of_int (if y = 0xe5 then 0x05 else y);
if x.deleted then Bytes.set filename 0 @@ char_of_int 0xe5;
let ext = add_padding ' ' 3 x.ext in
let create_time_ms = x.create.ms in
let create_time = int_of_time x.create in
let create_date = int_of_date x.create in
let last_access_date = int_of_date x.access in
let last_modify_time = int_of_time x.modify in
let last_modify_date = int_of_date x.modify in
let filename = Bytes.to_string filename in
set_name_filename filename 0 buf;
set_name_ext ext 0 buf;
let flags =
(if x.read_only then 0x1 else 0x0) lor
(if x.hidden then 0x2 else 0x0) lor
(if x.system then 0x4 else 0x0) lor
(if x.volume then 0x8 else 0x0) lor
(if x.subdir then 0x10 else 0x0) lor
(if x.archive then 0x20 else 0x0) in
set_name_flags buf flags;
set_name_reserved buf 0;
set_name_create_time_ms buf create_time_ms;
set_name_create_time buf create_time;
set_name_create_date buf create_date;
set_name_last_access_date buf last_access_date;
set_name_ea_index buf 0;
set_name_last_modify_time buf last_modify_time;
set_name_last_modify_date buf last_modify_date;
set_name_start_cluster buf x.start_cluster;
set_name_file_size buf x.file_size
let blocks buf =
let rec loop acc offset remaining =
if Cstruct.length remaining < sizeof
then List.rev acc
else
let this = offset, (Cstruct.sub remaining 0 sizeof) in
let offset = offset + sizeof in
let remaining = Cstruct.shift remaining sizeof in
loop (this :: acc) offset remaining in
loop [] 0 buf
let fold f initial bits =
let rec inner lfns acc = function
| [] -> acc
| (offset, b) :: bs ->
begin match unmarshal b with
| Dos { deleted = true; _ }
| Lfn { lfn_deleted = true; _ } -> inner lfns acc bs
| Lfn lfn -> inner ((offset, lfn) :: lfns) acc bs
| Dos d ->
let expected_checksum = compute_checksum d in
let lfns = List.sort (fun a b -> compare (snd a).lfn_seq (snd b).lfn_seq) lfns in
List.iter
(fun (_, l) -> if l.lfn_checksum <> expected_checksum then begin
Printf.printf "Filename: %s.%s; expected_checksum = %d; actual = %d\n%!" d.filename d.ext expected_checksum l.lfn_checksum
end) lfns;
let utfs = List.rev (List.fold_left (fun acc (_, lfn) -> lfn.lfn_utf16_name :: acc) [] lfns) in
let reconstructed = {
utf_filename = String.concat "" utfs;
dos = offset, d;
lfns = lfns;
} in
let acc' = f acc offset reconstructed in
inner [] acc' bs
| End -> acc
end in
inner [] initial (blocks bits)
let list = fold (fun acc _ d -> d :: acc) []
let next bits =
let rec inner = function
| [] -> None
| (offset, b) :: bs ->
begin match unmarshal b with
| End -> Some offset
| _ -> inner bs
end in
inner (blocks bits)
(** [add block t] return the update required to add [t] to the directory [block].
Note the update may be beyond the end of [block] indicating more space needs
to be allocated. *)
let add block r =
let after_block = Cstruct.length block in
let next_byte = match next block with
| Some b -> b
| None -> after_block in
let dir_entries = to_single_entries r in
let buf = Cstruct.create (List.length dir_entries * sizeof) in
List.iter (fun ((_, buf), entry) -> marshal buf entry)
(List.combine (blocks buf) dir_entries);
[ Fat_update.from_cstruct (Int64.of_int next_byte) buf ]
let name_match name x =
let utf_name = ascii_to_utf16 name in
let d = snd x.dos in
let d_filename = remove_padding d.filename in
let d_ext = remove_padding d.ext in
if is_legal_dos_name name
then begin
let filename, ext = dos_name_of_filename name in
let filename = remove_padding filename and ext = remove_padding ext in
filename = d_filename && ext = d_ext
end else
utf_name = x.utf_filename || name = x.utf_filename
(** [find name list] returns [Some d] where [d] is a Dir_entry.t with
name [name] (or None) *)
let find name list =
try Some (List.find (name_match name) list) with Not_found -> None
let remove block filename =
match find filename (list block) with
| Some r ->
let offsets = fst r.dos :: (List.map fst r.lfns) in
List.rev (List.fold_left (fun acc offset ->
let b = Cstruct.sub block offset sizeof in
let delta = Cstruct.create sizeof in
marshal delta begin match unmarshal b with
| Lfn lfn -> Lfn { lfn with lfn_deleted = true }
| Dos dos -> Dos { dos with deleted = true }
| End -> assert false
end;
Fat_update.from_cstruct (Int64.of_int offset) delta :: acc
) [] offsets)
| None -> []
let modify block filename file_size start_cluster =
fold (fun acc _offset x ->
if not(name_match filename x)
then acc
else
let offset, dos = x.dos in
let dos' = { dos with file_size = file_size; start_cluster = start_cluster } in
let b = Cstruct.create sizeof in
marshal b (Dos dos');
Fat_update.from_cstruct (Int64.of_int offset) b :: acc
) [] block