aboutsummaryrefslogtreecommitdiff
path: root/libmpio/src/mpio.c
blob: 99c3507e82334da27436cf7582c84fde15d549e8 (plain)
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
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
/*
 * $Id: mpio.c,v 1.10 2003/10/19 21:06:35 germeier Exp $
 *
 *  libmpio - a library for accessing Digit@lways MPIO players
 *  Copyright (C) 2002, 2003 Markus Germeier
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Lesser General Public
 *  License as published by the Free Software Foundation; either
 *  version 2.1 of the License, or (at your option) any later version.
 *
 *  This library 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 library; if not, write to the Free Software
 *  Foundation, Inc.,g 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 */

/*
 * uses code from mpio_stat.c by
 * Yuji Touya (salmoon@users.sourceforge.net)
 */

#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <sys/types.h>
#include <utime.h>

#include "cis.h"
#include "defs.h"
#include "debug.h"
#include "directory.h"
#include "io.h"
#include "mpio.h"
#include "smartmedia.h"
#include "fat.h"
#include "id3.h"

void mpio_bail_out(void);
void mpio_init_internal(mpio_t *);
void mpio_init_external(mpio_t *);
int  mpio_check_filename(mpio_filename_t);

int mpio_file_get_real(mpio_t *, mpio_mem_t, mpio_filename_t, mpio_filename_t,
		       mpio_callback_t, BYTE **); 

int mpio_file_put_real(mpio_t *, mpio_mem_t, mpio_filename_t, mpio_filename_t,
		       mpio_filetype_t, mpio_callback_t, BYTE *, int);

static BYTE *mpio_model_name[] = {
  "MPIO-DME",
  "MPIO-DMG",
  "MPIO-DMG+",
  "MPIO-DMB",
  "MPIO-DMB+",
  "MPIO-DMK",
  "MPIO-FD100",
  "MPIO-FL100",
  "MPIO-FY100",
  "VirginPulse VP-01",
  "VirginPulse VP-02",
  "unknown"
};

static mpio_error_t mpio_errors[] = {
  { MPIO_ERR_FILE_NOT_FOUND,
    "The selected file can not be found." },
  { MPIO_ERR_NOT_ENOUGH_SPACE,
    "There is not enough space left on the selected memory card." },
  { MPIO_ERR_FILE_EXISTS,
    "The selected file already exists and can not be overwritten. Remove it first." },
  { MPIO_ERR_FAT_ERROR,
    "Internal error while reading the FAT." },
  { MPIO_ERR_READING_FILE,
    "The selected file can not be read." },
  { MPIO_ERR_PERMISSION_DENIED,
    "There are not enough rights to access the file/directory." },
  { MPIO_ERR_WRITING_FILE,
    "There are no permisson to write to the selected file." },
  { MPIO_ERR_DIR_TOO_LONG,
    "The selected directory name is to long." },
  { MPIO_ERR_DIR_NOT_FOUND,
    "The selected directory can not be found." },
  { MPIO_ERR_DIR_NOT_A_DIR,
    "The selected directory is not a directory." },
  { MPIO_ERR_DIR_NAME_ERROR,
    "The selected directory name is not allowed." },
  { MPIO_ERR_DIR_NOT_EMPTY,
    "The selected directory is not empty." },
  { MPIO_ERR_DEVICE_NOT_READY,
    "Could not open " MPIO_DEVICE "\n"
    "Verify that the mpio module is loaded and "
    "your MPIO is\nconnected and powered up.\n" },
  { MPIO_ERR_OUT_OF_MEMORY,
    "Out of Memory." },
  { MPIO_ERR_INTERNAL,
    "Oops, internal ERROR. :-(" },
  { MPIO_ERR_DIR_RECURSION,
    "Ignoring recursive directory entry!" },
  { MPIO_ERR_FILE_IS_A_DIR ,
    "Requested file is a directory!" },
  { MPIO_ERR_USER_CANCEL ,
    "Operation canceled by user!" },
  { MPIO_ERR_INT_STRING_INVALID,
    "Internal Error: Supported is invalid!" } 	
};

static const int mpio_error_num = sizeof mpio_errors / sizeof(mpio_error_t);

static int _mpio_errno = 0;

#define MPIO_ERR_RETURN(err) { mpio_id3_end(m); _mpio_errno = err; return -1 ; }

#define MPIO_CHECK_FILENAME(filename) \
  if (!mpio_check_filename(filename)) { \
    MPIO_ERR_RETURN(MPIO_ERR_INT_STRING_INVALID); \
  }

int
mpio_error_set(int err) {
  _mpio_errno = err;
  return -1;
}

void
mpio_bail_out(void){
  printf("I'm utterly confused and aborting now, sorry!");
  printf("Please report this to: mpio-devel@lists.sourceforge.net\n");
  exit(1);	  
}
  
int
mpio_check_filename(mpio_filename_t filename)
{
  BYTE *p=filename;
  
  while (p < (filename + MPIO_FILENAME_LEN))
    {
      if (*p)
	return 1;
      p++;
    }

  return 0;
}

void 
mpio_init_internal(mpio_t *m)
{
  mpio_smartmedia_t *sm = &m->internal;
  BYTE i_offset         = 0x18;

  /* init main memory parameters */
  sm->manufacturer = m->version[i_offset];
  sm->id           = m->version[i_offset + 1];
  sm->chips        = 1;
  if (!(mpio_id_valid(m->version[i_offset]))) 
    {
      sm->manufacturer = 0;
      sm->id           = 0;
      sm->size         = 0;
      debug("WARNING: no internal memory found\n");
      return;
    }
  
  sm->version = mpio_id2version(sm->id);
  
  /* look for further installed memory chips 
   * models with 1, 2 and 4 chips are known
   * (there _really_ shouldn't be any other versions out there ...)
   */
  while ((sm->chips < 4) && 
	 (mpio_id_valid(m->version[i_offset + (2 * sm->chips)])))
    {    
      if(mpio_id2mem(sm->id) != 
	 mpio_id2mem(m->version[i_offset + (2 * sm->chips) + 1]))
	{
	  printf("Found a MPIO with internal chips of different sizes!");
	  mpio_bail_out();
	}
      sm->chips++;
    }
	 
  if ((sm->chips == 3) || (sm->chips > 4)) 
    {
      printf("Found a MPIO with %d internal chips", sm->chips);
      mpio_bail_out();
    }
  
  sm->size  = sm->chips * mpio_id2mem(sm->id);
  debugn(2, "found %d chip(s) with %d MB => %d MB internal mem\n",
	 sm->chips, mpio_id2mem(sm->id), sm->size);

  /* used for size calculations (see mpio_memory_free) */
  mpio_id2geo(sm->id, &sm->geo);

  /* read FAT information from spare area */  
  sm->max_cluster  = (sm->size * 1024) / 16;      /* 1 cluster == 16 KB */
  /* the new chips seem to use some kind of mega-block (== 128KB) instead of 16KB */
  if (sm->version)
    sm->max_cluster  /= 8;
  sm->max_blocks   = sm->max_cluster;
  debugn(2, "max_cluster: %d\n", sm->max_cluster);
                                            /* 16 bytes per cluster */
  sm->fat_size     = (sm->max_cluster * 16) / SECTOR_SIZE;   

  debugn(2, "fat_size: %04x\n", sm->fat_size * SECTOR_SIZE);
  sm->fat          = malloc(sm->fat_size * SECTOR_SIZE);
  /* fat will be read in mpio_init, so we can more easily handle
     a callback function */

  if (!(sm->fat_size)) 
    {
      printf("Some values on the way to the FAT calculations did not compute. :-(\n");
      mpio_bail_out();
    }
      

  /* Read directory from internal memory */
  sm->dir_offset=0;
  sm->root = malloc (sizeof(mpio_directory_t));
  sm->root->dentry=0;
  sm->root->name[0]    = 0;
  sm->root->next    = NULL;
  sm->root->prev    = NULL;  
  mpio_rootdir_read(m, MPIO_INTERNAL_MEM);
  sm->cdir = sm->root;

  if (sm->version) {
    printf("*******************************************\n");
    printf("This is a work-in-progress version, so BEWARE!\n");
    printf("The assumed status of this code is:\n");
    printf(" * reading:     assumed working\n");
    printf(" * deleting:    assumed working, needs further testing\n");
    printf(" * writing:     assumed working, needs further testing\n");
    printf(" * formatting:  assumed working, needs further testing\n");

    /* special features */
    sm->recursive_directory=1;
  } else {
    sm->recursive_directory=0;
  }
}

void
mpio_init_external(mpio_t *m)
{
  mpio_smartmedia_t *sm = &(m->external);
  BYTE e_offset = 0x20;

  /* heuristic to find the right offset for the external memory */
  while((e_offset < 0x3a) && !(mpio_id_valid(m->version[e_offset])))
    e_offset++;
  
  if ((mpio_id_valid(m->version[e_offset])) &&
      (m->model != MPIO_MODEL_VP_02) &&
      (m->model != MPIO_MODEL_FL100)) /* ignore external memory ATM until
					 we know how to support it! */
    {
      sm->manufacturer = m->version[e_offset];
      sm->id = m->version[e_offset + 1];
      sm->version = mpio_id2version(sm->id);
    } else {
      sm->manufacturer = 0;
      sm->id = 0;
      sm->chips = 0;
      sm->size = 0;
    }  

  /* init memory parameters if external memory is found */
  if (sm->id != 0) 
    {
      /* Read things from external memory (if available) */
      sm->size  = mpio_id2mem(sm->id);
      sm->chips = 1;                   /* external is always _one_ chip !! */

      mpio_id2geo(sm->id, &sm->geo);
      
      if (sm->size < 16) 
	{
	  debug("Sorry, I don't believe this software works with " 
		"SmartMedia Cards less than 16MB\n"
		"Proceed with care and send any findings to: "
		"mpio-devel@lists.sourceforge.net\n");
	}
      
      /* for reading the spare area later! */
      sm->max_blocks  = (sm->size * 1024) / 16 ;      /* 1 cluster == 16 KB */
      sm->spare       = malloc(sm->max_blocks * 0x10);
    }

  /* setup directory support */
  sm->dir_offset=0;
  sm->root = malloc (sizeof(mpio_directory_t));
  sm->root->dentry=0;
  sm->root->name[0] = 0;
  sm->root->next    = NULL;
  sm->root->prev    = NULL;
  sm->cdir = sm->root;

  /* special features */
  sm->recursive_directory=0;
}

mpio_t *
mpio_init(mpio_callback_init_t progress_callback) 
{
  mpio_t *new_mpio;
  mpio_smartmedia_t *sm;  
  int id_offset;
  BYTE i;

  new_mpio = malloc(sizeof(mpio_t));
  if (!new_mpio) {
    debug ("Error allocating memory for mpio_t");
    return NULL;
  }  
  memset(new_mpio, 0, sizeof(mpio_t));

  if (mpio_device_open(new_mpio) != MPIO_OK) {
    _mpio_errno = MPIO_ERR_DEVICE_NOT_READY;
    return NULL;    
  }
  
  /* Read Version Information */
  mpio_io_version_read(new_mpio, new_mpio->version);  

  /* fill in values */
  snprintf(new_mpio->firmware.id,   12, "%s", new_mpio->version);
  /* fix for newer versions which have a 0x00 in their version */
  for (i=0x0c ; i<0x10 ; i++)
    if (new_mpio->version[i] == 0x00)
      new_mpio->version[i]=' ';
  snprintf(new_mpio->firmware.major, 3, "%s", new_mpio->version + 0x0c);
  if (new_mpio->firmware.major[1] == '.') /* small and dirty hack */
    new_mpio->firmware.major[1]=0x00;
  snprintf(new_mpio->firmware.minor, 3, "%s", new_mpio->version + 0x0e);
  snprintf(new_mpio->firmware.year,  5, "%s", new_mpio->version + 0x10);
  snprintf(new_mpio->firmware.month, 3, "%s", new_mpio->version + 0x14);
  snprintf(new_mpio->firmware.day,   3, "%s", new_mpio->version + 0x16);

  /* there are different identification strings! */
  if (strncmp(new_mpio->version, "MPIO", 4) == 0) {
    /* strings: "MPIOxy    " */
    id_offset = 4;

    /* string: "MPIO-xy   " */
    if (new_mpio->version[id_offset] == '-')
      id_offset++;

    /* identify different versions */
    switch (new_mpio->version[id_offset])
      {
      case 'E': 
	new_mpio->model = MPIO_MODEL_DME;
        break ;
      case 'K':
	new_mpio->model = MPIO_MODEL_DMK;
        break ;
      case 'G':
	new_mpio->model = MPIO_MODEL_DMG;
	if (new_mpio->version[id_offset+1] == 'P')
	  new_mpio->model = MPIO_MODEL_DMG_PLUS;
        break ;
      case 'B':
	new_mpio->model = MPIO_MODEL_DMB;
	if (new_mpio->version[id_offset+1] == 'P')
	  new_mpio->model = MPIO_MODEL_DMB_PLUS;
	break;	
      default:
	new_mpio->model = MPIO_MODEL_UNKNOWN;
      }
  } else if (strncmp(new_mpio->version, "FD100", 5) == 0) {
    new_mpio->model = MPIO_MODEL_FD100;
  } else if (strncmp(new_mpio->version, "FL100", 5) == 0) {
    /* we assume this model is not supported */
    new_mpio->model = MPIO_MODEL_FL100;
    debug("FL100 found: External memory is ignored, because we don't know how"
	  " to support it at the moment (MultiMediaCards instead of SmartMedia)\n");
  } else if (strncmp(new_mpio->version, "FY100", 5) == 0) {
    new_mpio->model = MPIO_MODEL_FY100;
    /* I assume this is like the FD100/FL100, I didn't had the chance to 
       look at a FY100 firmware yet. -mager */
    debug("FY100 found: Beware, this model is not tested and we don't know"
	  " if it does work!\n");    
  } else if (strncmp(new_mpio->version, "VP-01", 5) == 0) {
    /* This is a FY100 clone! */
    new_mpio->model = MPIO_MODEL_VP_01;
  } else if (strncmp(new_mpio->version, "VP-02", 5) == 0) {
    new_mpio->model = MPIO_MODEL_VP_02;
    /* We assume that this is a FL100 clone -mager */
    debug("VP-02 found: Beware, this model is not tested and we don't know"
	  " if it does work!\n");    
    debug("This model is assumed to be a FL100 clone, so:\n");
    debug("External memory is ignored, because we don't know how"
	  " to support it at the moment (MultiMediaCards instead of SmartMedia)\n");
  } else {
    new_mpio->model = MPIO_MODEL_UNKNOWN;
  }

  if (new_mpio->model == MPIO_MODEL_UNKNOWN) {
    debug("Unknown version string found!\n"
	  "Please report this to: mpio-devel@lists.sourceforge.net\n");
    hexdumpn(1, new_mpio->version, CMD_SIZE);
  }  
  
  /* internal init */
  mpio_init_internal(new_mpio);

  /* external init */
  mpio_init_external(new_mpio);

  /* read FAT/spare area */
  if (new_mpio->internal.id)
    mpio_fat_read(new_mpio, MPIO_INTERNAL_MEM, progress_callback);
  
  /* read the spare area (for block mapping) */
  if (new_mpio->external.id)
    {      
      sm = &new_mpio->external;  
      mpio_io_spare_read(new_mpio, MPIO_EXTERNAL_MEM, 0,
			 sm->size, 0, sm->spare,
			 (sm->max_blocks * 0x10), progress_callback);
      mpio_zone_init(new_mpio, MPIO_EXTERNAL_MEM);

      /* card might be defect */
      if (mpio_bootblocks_read(new_mpio, MPIO_EXTERNAL_MEM)==0) 
	{
	  sm->fat = malloc(SECTOR_SIZE*sm->fat_size);
	  mpio_fat_read(new_mpio, MPIO_EXTERNAL_MEM, NULL);
	  mpio_rootdir_read(new_mpio, MPIO_EXTERNAL_MEM);
	}
    }

  /* set default charset for filename conversion */
  new_mpio->charset=strdup(MPIO_CHARSET);

  /* disable ID3 rewriting support */
  new_mpio->id3=0; 
  strncpy(new_mpio->id3_format, MPIO_ID3_FORMAT, INFO_LINE);
  new_mpio->id3_temp[0]=0x00;

  return new_mpio;  
}

/* 
 * returns available memory
 *
 * free:  give back free memory size
 *
 */
int
mpio_memory_free(mpio_t *m, mpio_mem_t mem, int *free)
{
  if (mem==MPIO_INTERNAL_MEM) {    
    if (!m->internal.size) {
      *free=0;
      return 0;
    }    
    *free=mpio_fat_free_clusters(m, mem);    
    if (m->internal.version)
      *free*=8;
    return (m->internal.geo.SumSector 
	    * SECTOR_SIZE / 1000 * m->internal.chips);    
  }
  
  if (mem==MPIO_EXTERNAL_MEM) {
    if (!m->external.size) {
      *free=0;
      return 0;
    }    
    *free=mpio_fat_free_clusters(m, mem);    
    return (m->external.geo.SumSector * SECTOR_SIZE / 1000);    
  }

  return 0;
}

void
mpio_close(mpio_t *m) 
{
  if (m) {
    close(m->fd);
    
    if(m->internal.fat)
      free(m->internal.fat);
    if(m->external.fat)
      free(m->external.fat);
    
    free(m);
  }
}

mpio_model_t
mpio_get_model(mpio_t *m)
{
  mpio_model_t r;

  if (m) 
    {
      r = m->model;
    } else {
      r = MPIO_MODEL_UNKNOWN;
    }
  
  return r;
}

void    
mpio_get_info(mpio_t *m, mpio_info_t *info)
{
  int max=INFO_LINE-1;
  snprintf(info->firmware_id, max,      "\"%s\"", m->firmware.id);
  snprintf(info->firmware_version, max, "%s.%s", 
	   m->firmware.major, m->firmware.minor);
  snprintf(info->firmware_date, max,    "%s.%s.%s", 
	   m->firmware.day, m->firmware.month, m->firmware.year);
  snprintf(info->model, max, "%s", mpio_model_name[m->model]);
  
  if (!m->internal.id) 
    {
      snprintf(info->mem_internal, max, "not available");
    } else {      
      if (m->internal.chips == 1) 
	{    
	  snprintf(info->mem_internal, max, "%3dMB (%s)", 
		   mpio_id2mem(m->internal.id), 
		   mpio_id2manufacturer(m->internal.manufacturer));
	} else {
	  snprintf(info->mem_internal, max, "%3dMB (%s) - %d chips", 
		   mpio_id2mem(m->internal.id)*m->internal.chips, 
		   mpio_id2manufacturer(m->internal.manufacturer),
		   m->internal.chips);
	}
    }
  
  if (m->external.id)
    {      
      snprintf(info->mem_external, max, "%3dMB (%s)", 
	       mpio_id2mem(m->external.id), 
	       mpio_id2manufacturer(m->external.manufacturer));
    } else {
      snprintf(info->mem_external, max, "not available");
    }
      
}


int
mpio_file_get_as(mpio_t *m, mpio_mem_t mem, mpio_filename_t filename,
		 mpio_filename_t as, mpio_callback_t progress_callback)
{
  return mpio_file_get_real(m, mem, filename, as, progress_callback, NULL);
}

int
mpio_file_get(mpio_t *m, mpio_mem_t mem, mpio_filename_t filename, 
	      mpio_callback_t progress_callback)
{
  return mpio_file_get_real(m, mem, filename, NULL, progress_callback, NULL);
}

int
mpio_file_get_to_memory(mpio_t *m, mpio_mem_t mem, mpio_filename_t filename, 
			mpio_callback_t progress_callback, BYTE **memory)
{
  return mpio_file_get_real(m, mem, filename, NULL, progress_callback, memory);
}

int
mpio_file_get_real(mpio_t *m, mpio_mem_t mem, mpio_filename_t filename,
		   mpio_filename_t as, mpio_callback_t progress_callback,
		   BYTE **memory)
{
  mpio_smartmedia_t *sm;
  BYTE block[MEGABLOCK_SIZE];
  int fd, towrite;
  BYTE   *p;
  mpio_fatentry_t *f = 0;
  struct utimbuf utbuf;
  long mtime;
  DWORD filesize, fsize;
  BYTE abort = 0;
  int merror;
  int block_size;

  MPIO_CHECK_FILENAME(filename);

  if (mem == MPIO_INTERNAL_MEM) sm = &m->internal;  
  if (mem == MPIO_EXTERNAL_MEM) sm = &m->external;

  block_size = mpio_block_get_blocksize(m, mem);
  
  if(as==NULL) {
    as = filename;
  }

  /* find file */
  p = mpio_dentry_find_name(m, mem, filename);
  if (!p)
    p = mpio_dentry_find_name_8_3(m, mem, filename);

  if (p) {    
    f = mpio_dentry_get_startcluster(m, mem, p);
    if (!mpio_dentry_is_dir(m, mem, p))
      MPIO_ERR_RETURN(MPIO_ERR_FILE_IS_A_DIR);
  }
  
  if (f && p) {    
    filesize=fsize=mpio_dentry_get_filesize(m, mem, p);

    if (memory) {
      *memory = malloc(filesize);
    } else {
      unlink( as );
      fd = open(as, (O_RDWR | O_CREAT), (S_IRWXU | S_IRGRP | S_IROTH));
    }
    
    do
      {
	mpio_io_block_read(m, mem, f, block);

	if (filesize > block_size) {
	  towrite = block_size;
	} else {
	  towrite = filesize;
	}    

	if (memory)
	  {
	    memcpy((*memory)+(fsize-filesize) , block, towrite);
	  } else {
	    if (write(fd, block, towrite) != towrite) {
	      debug("error writing file data\n");
	      close(fd);
	      free (f);
	      MPIO_ERR_RETURN(MPIO_ERR_WRITING_FILE);
	    } 
	  }
	
	filesize -= towrite;
	
	if (progress_callback)
	  abort=(*progress_callback)((fsize-filesize), fsize);
	if (abort)
	  debug("aborting operation");	

      } while ((((merror=(mpio_fatentry_next_entry(m, mem, f)))>0) && 
		(filesize>0)) && (!abort));

    if (merror<0)
      debug("defective block encountered!\n");
  
    if(!memory) 
      {	
	close (fd);    
	free (f);
      }

    /* read and copied code from mtools-3.9.8/mcopy.c
     * to make this one right 
     */
    mtime=mpio_dentry_get_time(m, mem, p);
    utbuf.actime  = mtime;
    utbuf.modtime = mtime;
    utime(filename, &utbuf);

  } else {
    debugn(2, "unable to locate the file: %s\n", filename);
    _mpio_errno=MPIO_ERR_FILE_NOT_FOUND;
  }

  return (fsize-filesize);
}

int
mpio_file_put_as(mpio_t *m, mpio_mem_t mem, mpio_filename_t filename,
		 mpio_filename_t as, mpio_filetype_t filetype,
		 mpio_callback_t progress_callback)
{
  return mpio_file_put_real(m, mem, filename, as, filetype, 
			    progress_callback, NULL,0);
}

int
mpio_file_put(mpio_t *m, mpio_mem_t mem, mpio_filename_t filename, 
	      mpio_filetype_t filetype, mpio_callback_t progress_callback)
{
  return mpio_file_put_real(m, mem, filename, NULL, filetype, 
			    progress_callback, NULL,0);
}

int
mpio_file_put_from_memory(mpio_t *m, mpio_mem_t mem, mpio_filename_t filename, 
			  mpio_filetype_t filetype,
			  mpio_callback_t progress_callback,
			  BYTE *memory, int memory_size)
{
  return mpio_file_put_real(m, mem, filename,  NULL, filetype,
			    progress_callback, memory, memory_size);
}

int
mpio_file_put_real(mpio_t *m, mpio_mem_t mem, mpio_filename_t i_filename,
		   mpio_filename_t o_filename, mpio_filetype_t filetype,
		   mpio_callback_t progress_callback,
		   BYTE *memory, int memory_size)
{
  mpio_smartmedia_t *sm;
  mpio_fatentry_t   *f, current, firstblock, backup; 
  WORD start;
  BYTE block[MEGABLOCK_SIZE];
  BYTE use_filename[INFO_LINE];
  int fd, toread;
  struct stat file_stat;
  struct tm tt;
  time_t curr;
  int id3;
  int block_size;
  
  BYTE *p = NULL;
  DWORD filesize, fsize, free, blocks;
  BYTE abort = 0;

  if(o_filename == NULL) {
    o_filename = i_filename;
  }

  MPIO_CHECK_FILENAME(o_filename);
  
  if (mem==MPIO_INTERNAL_MEM) sm=&m->internal;  
  if (mem==MPIO_EXTERNAL_MEM) sm=&m->external;

  block_size = mpio_block_get_blocksize(m, mem);

  if (memory)
    {
      fsize=filesize=memory_size;
    } else {      
      id3 = mpio_id3_do(m, i_filename, use_filename);
      if (!id3)
	strncpy(use_filename, i_filename, INFO_LINE);
      if (stat((const char *)use_filename, &file_stat)!=0) {
	debug("could not find file: %s\n", use_filename);
	MPIO_ERR_RETURN(MPIO_ERR_FILE_NOT_FOUND);
      }
      fsize=filesize=file_stat.st_size;
      debugn(2, "filesize: %d\n", fsize);
    }
  
  /* check if there is enough space left */
  mpio_memory_free(m, mem, &free);
  if (free*1024<fsize) {
    debug("not enough space left (only %d KB)\n", free);
    MPIO_ERR_RETURN(MPIO_ERR_NOT_ENOUGH_SPACE);
  }

  /* check if filename already exists */
  p = mpio_dentry_find_name(m, mem, o_filename);
  if (!p)
      p = mpio_dentry_find_name_8_3(m, mem, o_filename);
  if (p) 
    {
      debug("filename already exists\n");
      MPIO_ERR_RETURN(MPIO_ERR_FILE_EXISTS);
    }

  /* find first free sector */
  f = mpio_fatentry_find_free(m, mem, filetype);
  if (!f) 
    {
      debug("could not free cluster for file!\n");
      MPIO_ERR_RETURN(MPIO_ERR_FAT_ERROR);
    } else {
      memcpy(&firstblock, f, sizeof(mpio_fatentry_t));
      start=f->entry;
    }  

  /* find file-id for internal memory */
  if (mem==MPIO_INTERNAL_MEM) 
    {      
      f->i_index=mpio_fat_internal_find_fileindex(m);
      debugn(2, "fileindex: %02x\n", f->i_index);
      f->i_fat[0x01]= f->i_index;
      if (m->model >= MPIO_MODEL_FD100) 
	f->i_fat[0x0e] = f->i_index;	
      start         = f->i_index;

      /* number of blocks needed for file */
      blocks = filesize / block_size;
      if (filesize % block_size)
	blocks++;      
      debugn(2, "blocks: %02x\n", blocks);      
      f->i_fat[0x02]=(blocks / 0x100) & 0xff;
      f->i_fat[0x03]= blocks          & 0xff;
    }  

  if (!memory)
    {      
      /* open file for reading */
      fd = open(use_filename, O_RDONLY);    
      if (fd==-1) 
	{
	  debug("could not open file: %s\n", use_filename);
	  MPIO_ERR_RETURN(MPIO_ERR_FILE_NOT_FOUND);
	}
    }

  while ((filesize>block_size) && (!abort)) {

    if (filesize>=block_size) {      
      toread=block_size;
    } else {
      toread=filesize;
    }
    
    if (memory) 
      {
	memcpy(block, memory+(fsize-filesize), toread);
      } else {	
	if (read(fd, block, toread)!=toread) {
	  debug("error reading file data\n");
	  close(fd);
	  MPIO_ERR_RETURN(MPIO_ERR_READING_FILE);
	}
      }
    filesize -= toread;

    /* get new free block from FAT and write current block out */
    memcpy(&current, f, sizeof(mpio_fatentry_t));    
    if (!(mpio_fatentry_next_free(m, mem, f))) 
      {
	debug ("Found no free cluster during mpio_file_put\n"
	       "This should never happen\n");
	exit(-1);
      }    
    mpio_fatentry_set_next(m ,mem, &current, f);
    mpio_io_block_write(m, mem, &current, block);
	
    if (progress_callback)
      abort=(*progress_callback)((fsize-filesize), fsize);
  }

  /* handle the last block to write */

  if (filesize>=block_size) {      
    toread=block_size;
  } else {
    toread=filesize;
  }

  if (memory)
    {
      memcpy(block, memory+(fsize-filesize), toread);
    } else {      
      if (read(fd, block, toread)!=toread) {
	debug("error reading file data\n");
	close(fd);
	MPIO_ERR_RETURN(MPIO_ERR_READING_FILE);
      }
    }
  filesize -= toread;
  
  /* mark end of FAT chain and write last block */
  mpio_fatentry_set_eof(m ,mem, f);
  mpio_io_block_write(m, mem, f, block);

  if (!memory)
    close(fd);

  if (progress_callback)
    (*progress_callback)((fsize-filesize), fsize);

  if (abort) 
    {    /* delete the just written blocks, because the user
	  * aborted the operation
	  */
      debug("aborting operation\n");	
      debug("removing already written blocks\n");      
      
      filesize=fsize;
      
      memcpy(&current, &firstblock, sizeof(mpio_fatentry_t));
      memcpy(&backup, &firstblock, sizeof(mpio_fatentry_t));
      
      while (mpio_fatentry_next_entry(m, mem, &current))
	{
	  if (!mpio_io_block_delete(m, mem, &backup)) {
	    mpio_fatentry_set_defect(m, mem, &backup); 
	  } else {
	    mpio_fatentry_set_free(m, mem, &backup);      
	  }
	  memcpy(&backup, &current, sizeof(mpio_fatentry_t));

	  if (filesize > block_size) 
	    {
	      filesize -= block_size;
	    } else {
	      filesize -= filesize;
	    }	
	  
	  if (progress_callback)
	    (*progress_callback)((fsize-filesize), fsize);
	}
      if (!mpio_io_block_delete(m, mem, &backup)) {
	mpio_fatentry_set_defect(m, mem, &backup); 
      } else {
	mpio_fatentry_set_free(m, mem, &backup);      
      }

      if (filesize > block_size) 
	{
	  filesize -= block_size;
	} else {
	  filesize -= filesize;
	}	
      
      if (progress_callback)
	(*progress_callback)((fsize-filesize), fsize);
      
    } else {
      if (memory) 
	{
	  time(&curr);
	  tt = * localtime(&curr);
	}
      mpio_dentry_put(m, mem,
		      o_filename, strlen(o_filename),
		      ((memory)?mktime(&tt):file_stat.st_ctime), 
		      fsize, start, 0x20);
    }  

  mpio_id3_end(m);

  return fsize-filesize;
}

int	
mpio_file_switch(mpio_t *m, mpio_mem_t mem, 
		 mpio_filename_t file1, mpio_filename_t file2)
{
  BYTE *p1, *p2;

  /* find files */
  p1 = mpio_dentry_find_name(m, mem, file1);
  if (!p1)
    p1 = mpio_dentry_find_name_8_3(m, mem, file1);

  p2 = mpio_dentry_find_name(m, mem, file2);
  if (!p2)
    p2 = mpio_dentry_find_name_8_3(m, mem, file2);

  if ((!p1)  || (!p2))
    MPIO_ERR_RETURN(MPIO_ERR_FILE_NOT_FOUND);

  mpio_dentry_switch(m, mem, p1, p2);

  return 0;
}

int	
mpio_file_rename(mpio_t *m, mpio_mem_t mem, 
		 mpio_filename_t old, mpio_filename_t new)
{
  BYTE *p;

  if ((strcmp(old, "..") == 0) ||
      (strcmp(old, ".") == 0))
    {
      debugn(2, "directory name not allowed: %s\n", old);
      MPIO_ERR_RETURN(MPIO_ERR_DIR_NAME_ERROR);
    }

  if ((strcmp(new, "..") == 0) ||
      (strcmp(new, ".") == 0))
    {
      debugn(2, "directory name not allowed: %s\n", new);
      MPIO_ERR_RETURN(MPIO_ERR_DIR_NAME_ERROR);
    }

  /* find files */
  p = mpio_dentry_find_name(m, mem, old);
  if (!p)
    p = mpio_dentry_find_name_8_3(m, mem, old);

  if (!p)
    MPIO_ERR_RETURN(MPIO_ERR_FILE_NOT_FOUND);

  mpio_dentry_rename(m, mem, p, new);

  return 0;
}

int mpio_file_move(mpio_t *m,mpio_mem_t mem, mpio_filename_t file,
		   mpio_filename_t after)
{
  BYTE *p1,*p2;

  if( ( p1 = mpio_dentry_find_name(m,mem,file)) == NULL ) {
    if( (p1 = mpio_dentry_find_name_8_3(m, mem, file)) == NULL ) {
      MPIO_ERR_RETURN(MPIO_ERR_FILE_NOT_FOUND);
    }
  }
  
  if(after!=NULL) {
    if( ( p2 = mpio_dentry_find_name(m,mem,after)) == NULL ) {
      if( (p2 = mpio_dentry_find_name_8_3(m, mem, after)) == NULL ) {
	MPIO_ERR_RETURN(MPIO_ERR_FILE_NOT_FOUND);
      }
    }
    debugn(2, " -- moving '%s' after '%s'\n",file,after);
  } else {
    debugn(2, " -- moving '%s' to the top\n",file);
  }
  



  mpio_dentry_move(m,mem,p1,p2);

  return 0;
}

int
mpio_memory_format(mpio_t *m, mpio_mem_t mem,
		   mpio_callback_t progress_callback)
{
  int data_offset;
  mpio_smartmedia_t *sm;
  mpio_fatentry_t   *f;
  DWORD clusters;
  BYTE abort = 0;
  BYTE *cis, *mbr, *pbr;
  BYTE defect[SECTOR_SIZE];
  int i;

  if (mem == MPIO_INTERNAL_MEM) 
    {    
      sm=&m->internal;
      data_offset = 0x01;
    }
  
  if (mem == MPIO_EXTERNAL_MEM) 
    {
      sm = &m->external;
      data_offset = 0x02;
    }

  clusters = sm->size*128;

  
  /* TODO: read and write "Config.dat" so the player does not become "dumb" */
  if (mem==MPIO_INTERNAL_MEM) 
    {
      /* clear the fat before anything else, so we can mark clusters defective
       * if we found a bad block
       */
      /* external mem must be handled diffrently, 
       * see comment(s) below!
       */
      mpio_fat_clear(m, mem);
      f = mpio_fatentry_new(m, mem, data_offset, FTYPE_MUSIC);  
      do 
	{
	  
	  if (!mpio_io_block_delete(m, mem, f))
	    mpio_fatentry_set_defect(m, mem, f);
	  
	  if (progress_callback)
	    {
	      if (!abort) 
		{	      
		  abort=(*progress_callback)(f->entry, sm->max_cluster + 1);
		  if (abort)
		    debug("received abort signal, but ignoring it!\n");
		} else {
		  (*progress_callback)(f->entry, sm->max_cluster + 1);
		}	      
	    }      
	  
	} while (mpio_fatentry_plus_plus(f));
      free(f);
    }

  if (mem == MPIO_EXTERNAL_MEM) {    
    /* delete all blocks! */

    i=0; 
    while (i < sm->max_blocks)
      {
	mpio_io_block_delete_phys(m, mem, (i * BLOCK_SECTORS));	
	i++;

	if (progress_callback)
	  {
	    if (!abort) 
	      {	      
		abort=(*progress_callback)(i, sm->max_blocks);
		if (abort)
		  debug("received abort signal, but ignoring it!\n");
	      } else {
		(*progress_callback)(i, sm->max_blocks);
	      }	      
	  }      


      }

    /* generate "defect" first block */
    mpio_io_sector_write(m, mem, MPIO_BLOCK_DEFECT, defect);
    
    /* format CIS area */
    f = mpio_fatentry_new(m, mem, MPIO_BLOCK_CIS, FTYPE_MUSIC);
    /*     mpio_io_block_delete(m, mem, f); */
    free(f);
    cis = (BYTE *)mpio_cis_gen(); /* hmm, why this cast? */
    mpio_io_sector_write(m, mem, MPIO_BLOCK_CIS,   cis);
    mpio_io_sector_write(m, mem, MPIO_BLOCK_CIS+1, cis);    
    free(cis);

    /* generate boot blocks ... */
    mbr = (BYTE *)mpio_mbr_gen(m->external.size);
    pbr = (BYTE *)mpio_pbr_gen(m->external.size);
    /* ... copy the blocks to internal memory structurs ... */
    memcpy(sm->cis, cis, SECTOR_SIZE);
    memcpy(sm->mbr, mbr, SECTOR_SIZE);
    memcpy(sm->pbr, pbr, SECTOR_SIZE);
    /* ... and set internal administration accordingly */
    mpio_mbr_eval(sm);
    mpio_pbr_eval(sm);

    if (!sm->fat) 		/* perhaps we have to build a new FAT */
      sm->fat=malloc(sm->fat_size*SECTOR_SIZE);
    mpio_fat_clear(m, mem);

    /* TODO: for external memory we have to work a little "magic"
     * to identify and mark "bad blocks" (because we have a set of
     * spare ones!
     */
  }

  mpio_rootdir_clear(m, mem);

  /* this writes the FAT *and* the root directory */
  mpio_fat_write(m, mem);

  if (progress_callback)
    (*progress_callback)(sm->max_cluster+1, sm->max_cluster+1);

  return 0;
}

int 
mpio_file_del(mpio_t *m, mpio_mem_t mem, mpio_filename_t filename, 
	      mpio_callback_t progress_callback)
{
  BYTE *p;
  mpio_smartmedia_t *sm;
  mpio_fatentry_t   *f, backup;
  DWORD filesize, fsize;
  BYTE abort=0;
  int block_size;

  MPIO_CHECK_FILENAME(filename);

  if (mem == MPIO_INTERNAL_MEM) sm = &m->internal;  
  if (mem == MPIO_EXTERNAL_MEM) sm = &m->external;

  block_size = mpio_block_get_blocksize(m, mem);

  if ((strcmp(filename, "..") == 0) ||
      (strcmp(filename, ".") == 0))
    {
      debugn(2, "directory name not allowed: %s\n", filename);
      MPIO_ERR_RETURN(MPIO_ERR_DIR_NAME_ERROR);
    }

  /* find file */
  p = mpio_dentry_find_name(m, mem, filename);
  if (!p)
      p = mpio_dentry_find_name_8_3(m, mem, filename);

  if (p)
    f = mpio_dentry_get_startcluster(m, mem, p);      
  
  if (f && p) {    
    if (mpio_dentry_is_dir(m, mem, p) == MPIO_OK) 
      {
	if (mpio_dentry_get_attrib(m, mem, p) == 0x1a) {
	  MPIO_ERR_RETURN(MPIO_ERR_DIR_RECURSION);
	}
	/* ugly */
	mpio_directory_cd(m, mem, filename);
	if (mpio_directory_is_empty(m, mem, sm->cdir) != MPIO_OK)
	  {
	    mpio_directory_cd(m, mem, "..");
	    MPIO_ERR_RETURN(MPIO_ERR_DIR_NOT_EMPTY);
	  } else {	    
	    mpio_directory_cd(m, mem, "..");
	  }

      }

    filesize=fsize=mpio_dentry_get_filesize(m, mem, p);    
    do
      {
	debugn(2, "sector: %4x\n", f->entry);	    
    
	mpio_io_block_delete(m, mem, f);
	
	if (filesize != fsize) 
	  mpio_fatentry_set_free(m, mem, &backup);

	memcpy(&backup, f, sizeof(mpio_fatentry_t));	

	if (filesize > block_size) 
	  {
	    filesize -= block_size;
	  } else {
	    filesize -= filesize;
	  }	
	
	if (progress_callback)
	  {	    
	    if (!abort) 
	      {		
		abort=(*progress_callback)((fsize-filesize), fsize);
		if (abort)
		  debug("received abort signal, but ignoring it!\n");
	      } else {
		(*progress_callback)((fsize-filesize), fsize);
	      }	    
	  }
	
      } while (mpio_fatentry_next_entry(m, mem, f));
/*     mpio_io_block_delete(m, mem, &backup); */
    mpio_fatentry_set_free(m, mem, &backup);
    free(f);
  
  } else {
    debugn(2, "unable to locate the file: %s\n", filename);
    MPIO_ERR_RETURN(MPIO_ERR_FILE_NOT_FOUND);
  }

  mpio_dentry_delete(m, mem, filename);
    
  return MPIO_OK;
}

BYTE   *
mpio_file_exists(mpio_t *m, mpio_mem_t mem, mpio_filename_t filename) {
  BYTE *p;
  /* find file */
  p = mpio_dentry_find_name(m, mem, filename);
  if (!p)
    p = mpio_dentry_find_name_8_3(m, mem, filename);
  
  return p;  
}


int	
mpio_sync(mpio_t *m, mpio_mem_t mem)
{
  mpio_smartmedia_t *sm;
  
  if (mem == MPIO_INTERNAL_MEM) sm = &m->internal;  
  if (mem == MPIO_EXTERNAL_MEM) sm = &m->external;

  if (!sm->size)
    return 0;

  /* this writes the FAT *and* the root directory */
  return mpio_fat_write(m, mem);  
}

int  
mpio_health(mpio_t *m, mpio_mem_t mem, mpio_health_t *r)
{
  mpio_smartmedia_t *sm;
  int i, j, zones;
  mpio_fatentry_t   *f;
  
  if (mem == MPIO_INTERNAL_MEM) 
    {
      sm = &m->internal;
      r->num = sm->chips;

      r->block_size = mpio_block_get_blocksize(m, mem) / 1024;
      
      f = mpio_fatentry_new(m, mem, 0x00, FTYPE_MUSIC);  
      
      for (i=0 ; i < sm->chips; i++) 
	{
	  r->data[i].spare  = 0;
	  r->data[i].total  = (sm->max_cluster / sm->chips);
	  r->data[i].broken = 0;
	  /* now count the broken blocks */
	  for(j=0; j<r->data[i].total; j++)
	    {
	      if (mpio_fatentry_is_defect(m, mem, f))
		r->data[i].broken++;
	      mpio_fatentry_plus_plus(f);
	    }
	}
      
      free(f);
      
      return MPIO_OK;
    }
  

  if (mem == MPIO_EXTERNAL_MEM) 
    {
      sm = &m->external;      

      zones = sm->max_cluster / MPIO_ZONE_LBLOCKS + 1;
      r->num = zones;
      r->block_size = BLOCK_SIZE/1024;

      for(i=0; i<zones; i++)
	{
	  r->data[i].spare  = (i?24:22); /* first zone has only 23 due to CIS */
	  r->data[i].total  = MPIO_ZONE_PBLOCKS;
	  r->data[i].broken = 0;
	  /* now count the broken blocks */
	  for(j=0; j<MPIO_ZONE_PBLOCKS; j++)
	    {
	      if (!i && !j)
		continue; /* ignore "defective" first block */
	      if (sm->zonetable[i][j] == MPIO_BLOCK_DEFECT)
		r->data[i].broken++;
	    } 
	  if (r->data[i].spare < r->data[i].broken)
	    debug("(spare blocks<broken blocks) -> expect trouble!\n");
	}
      return MPIO_OK;
    }

  return MPIO_ERR_INTERNAL;
}

int
mpio_memory_dump(mpio_t *m, mpio_mem_t mem)
{
  BYTE block[MEGABLOCK_SIZE];
  int i;
  mpio_fatentry_t   *f;

  if (mem == MPIO_INTERNAL_MEM) 
    {      
      hexdump(m->internal.fat, m->internal.max_blocks*0x10);
      hexdump(m->internal.root->dir, DIR_SIZE);
      if (m->internal.version) {
	/* new chip */
	f = mpio_fatentry_new(m, mem, 0x00, FTYPE_MUSIC);  
	mpio_io_block_read(m, mem, f, block);
        for (i = 0 ; i<=0x05 ; i++) {
	  mpio_fatentry_plus_plus(f);
	  mpio_io_block_read(m, mem, f, block);
	}
	free (f);
      } else {	
	/* old chip */ 
        for (i = 0 ; i<=0x100 ; i++) 
	  mpio_io_sector_read(m, mem, i, block);
      }      

    }
  
  if (mem == MPIO_EXTERNAL_MEM) 
    {      
      hexdump(m->external.spare, m->external.max_blocks*0x10);
      hexdump(m->external.fat,   m->external.fat_size*SECTOR_SIZE);
      hexdump(m->external.root->dir, DIR_SIZE);
      for (i = 0 ; i<=0x100 ; i++) 
	mpio_io_sector_read(m, mem, i, block);
    }
  
  return 0;  
}

int
mpio_errno(void)
{
  int no = _mpio_errno;
  _mpio_errno = 0;
  
  return no;
}

char *
mpio_strerror(int err)
{
  int i;

  if (err >= 0) return NULL;
  
  for (i = 0; i < mpio_error_num; i++) {
    if (mpio_errors[i].id == err)
      return mpio_errors[i].msg;
  }

  return NULL;
}

void
mpio_perror(char *prefix)
{
  char *msg = mpio_strerror(_mpio_errno);

  if (msg == NULL) return;
  
  if (prefix)
    fprintf(stderr, "%s: %s\n", prefix, msg);
  else
    fprintf(stderr, "%s\n", msg);
}