-
Notifications
You must be signed in to change notification settings - Fork 3
/
cal.c
1791 lines (1451 loc) · 39.4 KB
/
cal.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
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
/**
@file cal.c
@brief Maemo Configuration Access Library
Copyright (C) 2012 Ivaylo Dimitrov <[email protected]>
This file is part of libcal.
this library is free software;
you can redistribute it and/or modify it under the terms of the
GNU Lesser General Public License version 2.1 as published by the
Free Software Foundation.
libcal 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 libcal.
If not, see <http://www.gnu.org/licenses/>.
*/
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/ioctl.h>
#include <fcntl.h>
#include <errno.h>
#include <stdarg.h>
#include <semaphore.h>
#include <malloc.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <stdint.h>
#include <mtd/mtd-user.h>
#include <mtd/mtd-abi.h>
#include "cal.h"
#define CAL_FALSE 0
#define CAL_TRUE 1
#define CAL_OK 0
#define CAL_ERROR -1
#define CAL_ERROR_NOT_FOUND -2
#define CAL_BLOCK_FLAG_USER 0x0001
#define CAL_BLOCK_FLAG_VARIABLE_LENGTH 0x0002
#define CAL_BLOCK_FLAG_WRITE_ONCE 0x0004
#define CAL_HEADER_LEN sizeof(struct cal_block_header)
/* Magic sequence indicating block header start */
#define CAL_BLOCK_HEADER_MAGIC "ConF"
/* The only known CAL header version. */
#define CAL_HEADER_VERSION 2
/*
Structure used to connect offset in CAL area to
absolute offset in NAND
*/
struct cal_eraseblock_map
{
off_t relative;
off_t absolute;
};
/* Description of CAL area */
struct cal_config
{
char* name;
struct cal_eraseblock_map *map;
uint32_t blkcnt;
uint32_t valid;
uint32_t first_empty;
uint32_t write_once;
};
struct cal_block_header {
/* Magic header. Set to CAL_BLOCK_HEADER_MAGIC. */
char magic[4];
/* Header version. Set to CAL_HEADER_VERSION. */
uint8_t hdr_version;
/*
Block version. If there are multiple blocks with same name,
only block with highest version number is considered active.
Block version starts with 0.
*/
uint8_t block_version;
/*
Some mysterious flags.
Possible values: 0, CAL_BLOCK_FLAG_VARIABLE_LENGTH, 1 << 3
*/
uint16_t flags;
/* Block name. */
char name[CAL_MAX_NAME_LEN];
/* Data length. */
uint32_t len;
/* CRC32 for block data. */
uint32_t data_crc;
/* CRC32 for header data. */
uint32_t hdr_crc;
};
/** Structure describing CAL block. */
struct cal_block {
/* Header on-disk offset */
off_t addr;
/* Block header. */
struct cal_block_header hdr;
/* Block data. */
void *data;
/* Pointer to next block (NULL if this block is last). */
struct cal_block *next;
};
struct cal
{
int mtd_fd;
uint32_t rfu1;
struct mtd_info_user mtd_info;
uint32_t blocksize;
uint32_t erasesize;
struct cal_block *main_block_list;
struct cal_block *user_block_list;
struct cal_block *wp_block_list;
struct cal_config config[2];
uint32_t config_in_use;
struct cal_config config_user;
struct cal_config config_wp;
uint32_t user_selectable;
uint32_t rfu2;
};
static void
cal_error_(const char *s)
{
fprintf(stderr, "CAL ERROR: %s\n", s);
}
#ifdef DEBUG
static void
cal_debug_(int level,const char *s)
{
fprintf(stderr, "CAL DEBUG: %s\n", s);
}
void (* cal_debug_log)(int level, const char *str) = cal_debug_;
#else
void (* cal_debug_log)(int level, const char *str) = 0;
#endif
void (* cal_error_log)(const char *str) = cal_error_;
void
cal_error(const char *format, ...)
{
char s[1024];
va_list va;
va_start(va, format);
if ( cal_error_log )
{
vsnprintf(s,sizeof(s), format, va);
s[sizeof(s)-1] = 0;
cal_error_log(s);
}
}
void
cal_debug(uint32_t level,const char *format, ...)
{
char s[1024];
va_list va;
va_start(va, format);
if ( cal_debug_log )
{
vsnprintf(s,sizeof(s), format, va);
s[sizeof(s)-1] = 0;
cal_debug_log(level,s);
}
}
static char
header_name_buf[CAL_MAX_NAME_LEN+1];
static const char *
header_name(struct cal_block_header *block_hdr)
{
strncpy(header_name_buf, block_hdr->name, CAL_MAX_NAME_LEN);
header_name_buf[CAL_MAX_NAME_LEN] = 0;
return header_name_buf;
}
static const uint32_t
crc32_tab[] = {
0x00000000,0x77073096,0xEE0E612C,0x990951BA,0x076DC419,0x706AF48F,0xE963A535,
0x9E6495A3,0x0EDB8832,0x79DCB8A4,0xE0D5E91E,0x97D2D988,0x09B64C2B,0x7EB17CBD,
0xE7B82D07,0x90BF1D91,0x1DB71064,0x6AB020F2,0xF3B97148,0x84BE41DE,0x1ADAD47D,
0x6DDDE4EB,0xF4D4B551,0x83D385C7,0x136C9856,0x646BA8C0,0xFD62F97A,0x8A65C9EC,
0x14015C4F,0x63066CD9,0xFA0F3D63,0x8D080DF5,0x3B6E20C8,0x4C69105E,0xD56041E4,
0xA2677172,0x3C03E4D1,0x4B04D447,0xD20D85FD,0xA50AB56B,0x35B5A8FA,0x42B2986C,
0xDBBBC9D6,0xACBCF940,0x32D86CE3,0x45DF5C75,0xDCD60DCF,0xABD13D59,0x26D930AC,
0x51DE003A,0xC8D75180,0xBFD06116,0x21B4F4B5,0x56B3C423,0xCFBA9599,0xB8BDA50F,
0x2802B89E,0x5F058808,0xC60CD9B2,0xB10BE924,0x2F6F7C87,0x58684C11,0xC1611DAB,
0xB6662D3D,0x76DC4190,0x01DB7106,0x98D220BC,0xEFD5102A,0x71B18589,0x06B6B51F,
0x9FBFE4A5,0xE8B8D433,0x7807C9A2,0x0F00F934,0x9609A88E,0xE10E9818,0x7F6A0DBB,
0x086D3D2D,0x91646C97,0xE6635C01,0x6B6B51F4,0x1C6C6162,0x856530D8,0xF262004E,
0x6C0695ED,0x1B01A57B,0x8208F4C1,0xF50FC457,0x65B0D9C6,0x12B7E950,0x8BBEB8EA,
0xFCB9887C,0x62DD1DDF,0x15DA2D49,0x8CD37CF3,0xFBD44C65,0x4DB26158,0x3AB551CE,
0xA3BC0074,0xD4BB30E2,0x4ADFA541,0x3DD895D7,0xA4D1C46D,0xD3D6F4FB,0x4369E96A,
0x346ED9FC,0xAD678846,0xDA60B8D0,0x44042D73,0x33031DE5,0xAA0A4C5F,0xDD0D7CC9,
0x5005713C,0x270241AA,0xBE0B1010,0xC90C2086,0x5768B525,0x206F85B3,0xB966D409,
0xCE61E49F,0x5EDEF90E,0x29D9C998,0xB0D09822,0xC7D7A8B4,0x59B33D17,0x2EB40D81,
0xB7BD5C3B,0xC0BA6CAD,0xEDB88320,0x9ABFB3B6,0x03B6E20C,0x74B1D29A,0xEAD54739,
0x9DD277AF,0x04DB2615,0x73DC1683,0xE3630B12,0x94643B84,0x0D6D6A3E,0x7A6A5AA8,
0xE40ECF0B,0x9309FF9D,0x0A00AE27,0x7D079EB1,0xF00F9344,0x8708A3D2,0x1E01F268,
0x6906C2FE,0xF762575D,0x806567CB,0x196C3671,0x6E6B06E7,0xFED41B76,0x89D32BE0,
0x10DA7A5A,0x67DD4ACC,0xF9B9DF6F,0x8EBEEFF9,0x17B7BE43,0x60B08ED5,0xD6D6A3E8,
0xA1D1937E,0x38D8C2C4,0x4FDFF252,0xD1BB67F1,0xA6BC5767,0x3FB506DD,0x48B2364B,
0xD80D2BDA,0xAF0A1B4C,0x36034AF6,0x41047A60,0xDF60EFC3,0xA867DF55,0x316E8EEF,
0x4669BE79,0xCB61B38C,0xBC66831A,0x256FD2A0,0x5268E236,0xCC0C7795,0xBB0B4703,
0x220216B9,0x5505262F,0xC5BA3BBE,0xB2BD0B28,0x2BB45A92,0x5CB36A04,0xC2D7FFA7,
0xB5D0CF31,0x2CD99E8B,0x5BDEAE1D,0x9B64C2B0,0xEC63F226,0x756AA39C,0x026D930A,
0x9C0906A9,0xEB0E363F,0x72076785,0x05005713,0x95BF4A82,0xE2B87A14,0x7BB12BAE,
0x0CB61B38,0x92D28E9B,0xE5D5BE0D,0x7CDCEFB7,0x0BDBDF21,0x86D3D2D4,0xF1D4E242,
0x68DDB3F8,0x1FDA836E,0x81BE16CD,0xF6B9265B,0x6FB077E1,0x18B74777,0x88085AE6,
0xFF0F6A70,0x66063BCA,0x11010B5C,0x8F659EFF,0xF862AE69,0x616BFFD3,0x166CCF45,
0xA00AE278,0xD70DD2EE,0x4E048354,0x3903B3C2,0xA7672661,0xD06016F7,0x4969474D,
0x3E6E77DB,0xAED16A4A,0xD9D65ADC,0x40DF0B66,0x37D83BF0,0xA9BCAE53,0xDEBB9EC5,
0x47B2CF7F,0x30B5FFE9,0xBDBDF21C,0xCABAC28A,0x53B39330,0x24B4A3A6,0xBAD03605,
0xCDD70693,0x54DE5729,0x23D967BF,0xB3667A2E,0xC4614AB8,0x5D681B02,0x2A6F2B94,
0xB40BBE37,0xC30C8EA1,0x5A05DF1B,0x2D02EF8D
};
static uint32_t
calculate_crc32( const uint8_t *buf, size_t size)
{
if(size)
{
size_t i = 0;
uint32_t crc = 0;
for(i=0;i<size;i++)
crc = crc32_tab[(uint8_t)(crc ^ buf[i])] ^ (crc >> 8);
return crc ;
}
return 0;
}
static int
cal_nand_is_bad_eraseblock(int fd, loff_t off)
{
int rv;
if ( (rv = ioctl(fd, MEMGETBADBLOCK, &off)) < 0 )
{
perror("MEMGETBADBLOCK");
return CAL_ERROR;
}
return rv;
}
static int
map_erase_blocks(struct cal *c,struct cal_config *conf, uint32_t blkcnt, loff_t *off)
{
loff_t absolute;
loff_t relative;
uint32_t i;
absolute = *off;
conf->blkcnt = blkcnt;
if ( !blkcnt )
{
*off = absolute;
return CAL_OK;
}
blkcnt--;
relative = 0;
i = 0;
while ( 1 )
{
if ( conf->write_once )
{
map_it:
cal_debug(2, "erase block at 0x%016llx mapping to %s 0x%016llx", absolute, conf->name, relative);
conf->map[i].relative = relative;
conf->map[i].absolute = absolute;
relative += c->erasesize;
i++;
}
else
{
int is_bad_blk = cal_nand_is_bad_eraseblock(c->mtd_fd, absolute);
if ( is_bad_blk < 0 )
return CAL_ERROR;
if ( !is_bad_blk )
goto map_it;
cal_debug(2, "bad erase block at 0x%16llx", absolute);
blkcnt++;
}
absolute += c->erasesize;
if ( !blkcnt )
{
*off = absolute;
return CAL_OK;
}
blkcnt--;
}
}
static int
scan_erase_blocks(struct cal *c,unsigned int blkcnt)
{
loff_t off;
c->config[0].map =
c->config[1].map =
c->config_user.map =
c->config_wp.map = 0;
if( !(c->config[0].map = (struct cal_eraseblock_map *)malloc(sizeof(struct cal_eraseblock_map) * blkcnt)) )
goto err_malloc;
if ( !(c->config[1].map = (struct cal_eraseblock_map *)malloc(sizeof(struct cal_eraseblock_map) * blkcnt)) )
goto err_malloc;
if ( !(c->config_user.map = (struct cal_eraseblock_map *)malloc(sizeof(struct cal_eraseblock_map) * blkcnt)) )
goto err_malloc;
if ( c->user_selectable )
{
if( !(c->config_wp.map = (struct cal_eraseblock_map *)malloc(sizeof(struct cal_eraseblock_map))) )
goto err_malloc;
c->config_wp.write_once = 1;
}
off = 0;
if ( (map_erase_blocks(c, &c->config[0], blkcnt, &off) < 0) ||
(map_erase_blocks(c, &c->config[1], blkcnt, &off) < 0) ||
(map_erase_blocks(c, &c->config_user, blkcnt, &off) < 0) )
goto err;
if( c->user_selectable )
{
off = 0;
if( map_erase_blocks(c, &c->config_wp, 1, &off) < 0 )
goto err;
}
return 0;
err_malloc:
cal_error("scan_erase_blocks: malloc");
err:
if( c->config[0].map )
free(c->config[0].map);
if( c->config[1].map )
free(c->config[1].map);
if( c->config_user.map )
free(c->config_user.map);
if( c->config_wp.map )
free(c->config_wp.map);
return CAL_ERROR;
}
int
cal_nand_scan_ebs(struct cal *c)
{
uint32_t i = 0;
uint32_t blkcnt = 0;
uint32_t eraseblocks;
loff_t off = 0;
eraseblocks = c->mtd_info.size / c->erasesize;
off = 0LL;
if ( !eraseblocks )
goto err;
blkcnt = 0;
do
{
int is_bad_eb = cal_nand_is_bad_eraseblock(c->mtd_fd, off);
if ( is_bad_eb < 0 )
return CAL_ERROR;
blkcnt += (is_bad_eb?0:1);
off += c->erasesize;
i++;
}
while ( eraseblocks != i );
blkcnt /= 3;
if ( !blkcnt )
goto err;
return scan_erase_blocks(c,blkcnt);
err:
cal_error("need at least three good erase blocks");
return CAL_ERROR;
}
int
cal_nand_init(struct cal *c)
{
int rv = 0;
uint32_t select_type;
if ( (c->mtd_fd = open("/dev/mtd1", O_RDWR)) < 0 )
{
cal_error("open(%s): %s", "/dev/mtd1", strerror(errno));
return -1;
}
rv = ioctl(c->mtd_fd, MEMGETINFO, &c->mtd_info);
if ( rv < 0 )
{
cal_error("MEMGETINFO: %s", strerror(errno));
goto err;
}
if ( c->mtd_info.type != MTD_NANDFLASH )
{
cal_error("Only NAND devices supported");
goto err;
}
c->erasesize = c->mtd_info.erasesize;
c->blocksize = (c->erasesize < 16385 ? 512 : 2048);
select_type = MTD_OTP_USER;
if ( ioctl(c->mtd_fd, OTPSELECT, &select_type) < 0 )
{
c->user_selectable = CAL_FALSE;
}
else
{
c->user_selectable = CAL_TRUE;
select_type = MTD_OTP_OFF;
ioctl(c->mtd_fd, OTPSELECT, &select_type);
}
return rv;
err:
close(c->mtd_fd);
return rv;
}
static void
onen_set_otp_mode(int fd, uint32_t mode)
{
int select_mode = (mode >= 1 ? MTD_OTP_USER : MTD_OTP_OFF);
if ( ioctl(fd, OTPSELECT, &select_mode) < 0 )
cal_error("onen_set_otp_mode: ioctl OTPSELECT");
}
int
cal_nand_lock_otp_user_region(int fd)
{
int rv;
struct otp_info info;
onen_set_otp_mode(fd, 1);
info.start = 0;
info.length = 20480;
rv = ioctl(fd, OTPLOCK, &info);
if ( rv < 0 )
{
cal_error("OTPLOCK: %s", strerror(errno));
}
onen_set_otp_mode(fd, 0);
return rv;
}
static int
sem_unlock(sem_t *sem)
{
sem_post(sem);
return sem_close(sem);
}
static int
sem_lock(sem_t **sem)
{
int rv = CAL_FALSE;
*sem = sem_open("nokiacal", O_CREAT, 0600, 1);
if ( *sem )
{
sem_wait(*sem);
rv = CAL_TRUE;
}
return rv;
}
int
cal_nand_finish(int fd)
{
return close(fd);
}
static void
free_block_lists(struct cal *c)
{
struct cal_block *block;
struct cal_block *next;
block = c->main_block_list;
while ( block )
{
next = block->next;
if ( block->data )
free(block->data);
free(block);
block = next;
}
block = c->user_block_list;
while ( block )
{
next = block->next;
if ( block->data )
free(block->data);
free(block);
block = next;
}
block = c->wp_block_list;
while ( block )
{
next = block->next;
if ( block->data )
free(block->data);
free(block);
block = next;
}
c->wp_block_list = 0;
c->user_block_list = 0;
c->main_block_list = 0;
}
void cal_finish_(struct cal *c)
{
cal_nand_finish(c->mtd_fd);
free_block_lists(c);
free(c->config[0].map);
free(c->config[1].map);
free(c->config_user.map);
free(c->config_wp.map);
free(c);
}
int cal_lock_otp_area_(int fd, uint32_t select_mode)
{
if ( select_mode == 2 )
return cal_nand_lock_otp_user_region(fd);
else
return CAL_ERROR;
}
int
cal_nand_erase_area(struct cal *c, struct cal_config *conf)
{
uint32_t i;
if ( conf->blkcnt )
{
struct cal_eraseblock_map *map = conf->map;
for ( i=0; i<conf->blkcnt; i++ )
{
struct erase_info_user ei;
cal_debug(1, "erasing block at 0x%08x", map->absolute);
ei.start = map->absolute;
ei.length = c->erasesize;
if ( ioctl(c->mtd_fd, MEMERASE, &ei) < 0 )
{
cal_error("MEMERASE 0x%08x: %s", map->absolute, strerror(errno));
return CAL_ERROR;
break;
}
map++;
}
}
return CAL_OK;
}
static struct cal_block *
find_block(struct cal_block *block, const char *name)
{
while ( block )
{
cal_debug(4, "checking block '%s'", header_name(&block->hdr));
if ( !strncmp(block->hdr.name, name, CAL_MAX_NAME_LEN) )
break;
block = block->next;
}
return block;
}
static struct cal_block *
find_block_type(struct cal *c, const char *name, uint16_t type)
{
struct cal_block *rv;
if ( type & CAL_FLAG_USER )
{
rv = find_block(c->user_block_list, name);
}
else
{
rv = find_block(c->wp_block_list, name);
if ( !(type & CAL_FLAG_WRITE_ONCE) )
{
if ( !rv )
rv = find_block(c->main_block_list, name);
}
}
return rv;
}
static int
get_offset(struct cal *c,struct cal_config *config, off_t addr, off_t *off)
{
int blkcnt;
struct cal_eraseblock_map *map;
int i;
uint32_t erasesize;
erasesize = c->mtd_info.erasesize;
blkcnt = config->blkcnt;
map = config->map;
if ( blkcnt )
{
i = 0;
while ( map->relative > addr || addr >= (off_t)erasesize + map->relative )
{
i++;
if ( i == blkcnt )
return CAL_ERROR;
map++;
}
*off = map->absolute + addr % erasesize;
return CAL_OK;
}
return CAL_ERROR;
}
int
cal_nand_read(struct cal *c, struct cal_config *config, off_t addr, uint8_t *buf, off_t len)
{
size_t count;
ssize_t ret;
uint32_t erasesize;
off_t off;
erasesize = c->mtd_info.erasesize;
if ( c->user_selectable && config->write_once)
onen_set_otp_mode(c->mtd_fd, 1);
cal_debug(2, "cal_nand_read: %u bytes from %s addr 0x%08x%s", len, config->name, addr, config->write_once?" OTP":"");
if ( len )
{
while ( 1 )
{
if ( (off_t)erasesize - addr % (off_t)erasesize <= len )
count = erasesize - addr % erasesize;
else
count = len;
if ( get_offset(c, config, addr, &off) < 0 )
{
cal_error("nand_read: invalid addr: 0x%08x", addr);
goto err;
}
cal_debug(2, "nand_read: %d bytes from 0x%08x", count, off);
if ( lseek(c->mtd_fd, off, SEEK_SET) < 0 )
{
cal_error("nand_read: lseek %08x: %s", off, strerror(errno));
goto err;
}
ret = read(c->mtd_fd, buf, count);
if ( ret < 0 || (size_t)ret != count )
break;
len -= count;
if ( !len )
goto out;
buf += count;
addr += count;
}
cal_error("nand_read: read (%d bytes at %08x): %s", count, off, strerror(errno));
goto err;
}
out:
if ( c->user_selectable && config->write_once )
onen_set_otp_mode(c->mtd_fd, 0);
return CAL_OK;
err:
if ( c->user_selectable && config->write_once )
onen_set_otp_mode(c->mtd_fd, 0);
return CAL_ERROR;
}
static int
cal_nand_read_block_data(struct cal *c, struct cal_config *config, struct cal_block *block)
{
void *data;
if ( block->data )
{
cal_debug(0, "block '%s', len %u found from cache",
header_name(&block->hdr),
block->hdr.len);
return CAL_OK;
}
cal_debug(0,
"reading block from %s addr 0x%08x, name '%s', len %u",
config->name,
block->addr,
header_name(&block->hdr),
block->hdr.len);
data = malloc(block->hdr.len);
if ( data )
{
if ( cal_nand_read(c, config, block->addr + (int)CAL_HEADER_LEN, data, block->hdr.len) >= 0 )
{
uint32_t crc = calculate_crc32(data, block->hdr.len);
uint32_t hdr_crc = block->hdr.data_crc;
if ( crc == hdr_crc )
{
block->data = data;
return 0;
}
cal_error(
"data CRC mismatch on conf block at addr 0x%08x, name '%s' (calc %08x vs. %08x)",
block->addr,
header_name(&block->hdr),
crc,
hdr_crc);
}
free(data);
goto err;
}
cal_error("read_block_data: malloc: %s");
err:
return CAL_ERROR;
}
int
cal_read_block_(struct cal *c, const char *name, void **data_out, unsigned long *data_len, unsigned long type)
{
struct cal_block *block;
struct cal_config *config;
if ( strlen(name) > CAL_MAX_NAME_LEN )
{
cal_error("cal_read_block: too long name");
goto err;
}
config = (type & CAL_FLAG_USER)?
&c->config_user:
&c->config[c->config_in_use];
cal_debug(2, "trying to find%s block '%s'", type & CAL_FLAG_USER?" user":"", name);
block = find_block_type(c, name, type);
if ( !block )
{
cal_debug(1, "block '%s' not found", name);
return CAL_ERROR_NOT_FOUND;
}
if ( (block->hdr.flags & CAL_BLOCK_FLAG_WRITE_ONCE) && c->user_selectable )
config = &c->config_wp;
if ( cal_nand_read_block_data(c, config, block) < 0 )
goto err;
if ( !(*data_out = malloc(block->hdr.len)) )
{
cal_error("cal_read_block: malloc: %s");
goto err;
}
memcpy(*data_out, block->data, block->hdr.len);
*data_len = block->hdr.len;
return CAL_OK;
err:
return CAL_ERROR;
}
static int
check_block_header(struct cal *c, struct cal_config *config, off_t addr, struct cal_block_header *block_header)
{
uint32_t crc;
cal_debug(2, "reading %s block header at 0x%08x", config->name, addr);
if ( cal_nand_read(c, config, addr, (uint8_t*)block_header, CAL_HEADER_LEN) < 0 )
{
cal_error("failed to read %d bytes at %s 0x%08x", CAL_HEADER_LEN, config->name, addr);
return CAL_ERROR;
}
if ( memcmp(block_header->magic, CAL_BLOCK_HEADER_MAGIC, 4) )
{
int32_t magic;
memcpy(&magic,block_header->magic,sizeof(uint32_t));
if( magic != -1 )
{
cal_error("invalid header magic at addr 0x%08x: %08x", addr, magic);
return CAL_ERROR;
}
else
return CAL_ERROR_NOT_FOUND;
}
if ( block_header->hdr_version != CAL_HEADER_VERSION )
{
cal_error("invalid header version at addr %08x: %d", addr, block_header->hdr_version);
return CAL_ERROR;
}
if ( (crc = calculate_crc32((uint8_t*)block_header, CAL_HEADER_LEN-sizeof(block_header->hdr_crc))) != block_header->hdr_crc )
{
cal_error("header CRC mismatch at addr %08x: calc %08x vs. %08x", addr, crc, block_header->hdr_crc);
return CAL_ERROR;
}
if ( c->erasesize + config->map[config->blkcnt - 1].relative < addr + block_header->len + 4 )
{
cal_error("block at addr %08x runs over device size", addr);
return CAL_ERROR;
}
return CAL_OK;
}
static void
insert_block(struct cal *c, struct cal_block *block)
{
uint8_t current_version;
uint8_t version;
struct cal_block **list;
struct cal_block *next;
struct cal_block *found;
struct cal_block *current;
block->next = 0;
if ( block->hdr.flags & CAL_BLOCK_FLAG_USER )
list = &c->user_block_list;
else if ( block->hdr.flags & CAL_BLOCK_FLAG_WRITE_ONCE )
list = &c->wp_block_list;
else
list = &c->main_block_list;
if ( !*list )
{
*list = block;
return;
}
current = *list;
found = 0;
do
{
while ( strncmp(current->hdr.name, block->hdr.name, CAL_MAX_NAME_LEN) )
{
found = current;
current = current->next;
if ( !current )
goto out;
}
current_version = current->hdr.block_version;
version = block->hdr.block_version;
if ( current_version <= 0xBEu )
{
if (version > 0xBEu && (current_version <= 0x3Fu || current_version > version) )
{
cal_error("Aieee! Some serious inconsistency in block versioning");
goto version_error;
}
}
if ( version > 0x3Fu )
{
if (version > 0xBEu && (current_version <= 0x3Fu || current_version > version) )
{
cal_error("Aieee! Some serious inconsistency in block versioning");
goto version_error;
}
}
if ( current_version != version )
{
version_error:
if ( found )
found->next = current->next;
else
*list = current->next;
}
next = current->next;
if ( current->data )
free(current->data);
free(current);
current = next;
}
while ( next );
out:
if ( found )
found->next = block;
else
*list = block;
}
static int
scan_block_headers(struct cal *c, struct cal_config *config, uint16_t type)
{
struct cal_block *block;
off_t addr;
uint32_t offset;