-
Notifications
You must be signed in to change notification settings - Fork 27
/
ChangeLog
2053 lines (1242 loc) · 64.9 KB
/
ChangeLog
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
rar2fs ChangeLog file.
2023-01-07 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Release v1.29.7
* Additional fixes for UnRAR 7.x
* Add UnRAR 7 compatibility
* Add .clang_format
2023-01-07 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Release v1.29.6
* Change to a per session mutex in I/O buffer
* Make sure reader thread is terminated properly
* Handle potential race condition at directory scan
* Fix crash in collect files
* Fix directory cache invalidation
2021-04-25 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Release v1.29.5
* Reset pointer after free
* Change approach for cache invalidation
* Add missing cache entry invalidations
* Fix spelling/wording/missing help text and option
* Fix race condition at directory cache invalidation
2021-01-18 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Release v1.29.4
* Rework volume file name resolution
* Rework collection of volume parts at file mount
* Fix a few bugs with different severity
* Fix some confirmed memory leaks
2020-12-15 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Release v1.29.3
* Fix a potential crash issue at directory cache invalidation
2020-11-08 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Release v1.29.2
* Fix DLL extension for UnRAR source 6.0.1 and later
* Handle archives without parent node in file header
* Fix a problem with corrupt/invalid size field
* Fix compilation problem for UnRAR source v6.0.1
* Remove explicit install of compressed man pages
2020-08-22 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Release v1.29.1
* Fix a problem with the #info function on Cygwin
* Improve detection of volume extraction errors
* Fix resolution of first volume name
* Make sure a bad password is detected for RAR4
* Require password for encrypted archive mounts
* Fix a regression with .NNN style volumes
* Change FUSE library search order
* Fix invalid library search path
* Fix compilation errors for some libunrar versions
* Correct ifdef check for VER_UNKNOWN (#137)
2020-03-08 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Release v1.29.0
* Improve error reporting (#133)
* Simplify some directory cache logic
* Restart warmup at manual cache invalidation
* Fix a problem with corrupt/invalid size field
* Fix a crash issue in readdir callback
* Shutdown cache warmup before fs terminates
* Fix regression for issue #114
* Fix SIGUSR1 crash
* Fix a mutex problem in readdir callback
* Improve speed when listing archives with many directories
* Rename mutex for file/directory cache access
* Fix cache invalidation for child entries
* Add optional cache warmup
* Replace cache mutexes with rwlocks
* Reduce memory footprint during archive scan
* Add locale mount option
* Add 'unrar' to .gitignore (#126)
* Reduce memory footprint during archive scan
* Fix minor argument parsing bug
* Add missing call to closedir() in one error branch
* Remove unused iconv support
* Fix building with libc++. (#123)
* Accept pre-mounted FUSE descriptor (#121)
* Fix broken install of compressed man-page
2019-11-06 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Release v1.28.0
* Fix extended attribute support
* Clean some AC_DEFINEs in configure.ac
* Check for availability of GNU style dirname(3)
* Fix all uses of dirname(3)
* Install compressed man-page when possible
* Fix more potential stack allocation overflows
* Change FUSE library search order
* Remove a few unused functions
* Fix a potential stack allocation overflow
* Remove obsolete header file
* Remove left over debug printout
* Remove obsolete stubs directory and config.mk
* Restructure top build directory
* Bump man-page date
* Detect source tree updates
* Remove irrelevant options for rar2fs mounts
* Fix wrong header version written by '--save-eof'
* Introduce preloaded index header version 1
* Add a few missing directory cache invalidations
* Rework seek length detection
* Fix compatibility issue for early UnRAR source versions
* Relax unresolved flag for directories in RAR files
* Fix misplaced function call in mknod callback
* Remove create callback
* Clear unexpected flags in open for WinFSP/cygfuse
* Fix lookup issue for merged local- and RAR-files
* Fix path split problem
* Remove a superfluous call to syncdir()
* Show both local- and RAR-files in shared directory
* Add missing include of stdint.h
* Add new mount option --no-inherit-perm
2019-03-16 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Release v1.27.2
* Fix uninialized memory in calls to RAROpenArchiveEx()
* Add some missing includes in the DLL wrapper
* Fix -Wcatch-value from GCC 8
* Replace AC_CHECK_FILE with 'test -f'
* Remove an unused/dangling file
2018-11-18 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Release v1.27.1
* Add mutex lock to protect reads in raw mode
* Fix a heap-use-after-free error
* Add a missing lock when resolving a link target
2018-04-15 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Release v1.27.0
* dirname() do not modify passed string on some platforms (#93)
* Fix build issue with C++14
The C++11 warning "invalid suffix on literal" was reported in issue #48
but for some reason the resulting patch did not correct all the offending
places in the code.
This patch should resolve issue #87.
* Add option to set file date according to main archive file
This patch adds the '--date-rar' option that be be used to force file
dates/timestamps to be set according to the main archive file instead
of the meta data. See feature request #86.
* Fix scandir(3) argument detection
The configure script is trying to detect type of third argument
to scandir(3). The detection fails on systems that enable non-null
argument checks. This patch changes the arguments fed to scandir(3)
by the m4 macro to make sure non-null checks do not trigger.
This patch should resolve issue #85.
2017-10-24 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Release v1.26.0
* Fix some compilation problems on OSX Sierra
This patch should resolve some compilation errors/warnings on
Sierra 10.2 platforms as reported in issue #83.
* Fix an issue with file mounts and root folder lookup
This patch should resolve issue #80.
* Fix check for dokan-fuse library
The name of the dokan-fuse library is libdokanfuse1.dll.a and the
configuration is searching for libcygdokanfuse1.a.
Use the name from the latest Dokany v1.0.3 release.
This problem was discovered while investigating issue #82.
* Workaround for misbehaving pread(2) on Cygwin
At EOF pread(2) should return 0 but on Cygwin that is not the case
and instead some very high number is observed like 1628127168.
From the pread(2) man page:
"On success, the number of bytes read or written is returned
(zero indicates that nothing was written, in the case of pwrite(),
or end of file, in the case of pread()), or -1 on error, in which
case errno is set to indicate the error."
Let's assume that if what is returned from pread(2) is greater than
the requested read size, EOF has been reached.
Without this workaround at least dokan-fuse gets very confused and
is caught in an infinite loop!
* Fix Incorrect high-precision timestamp
From libunrar v5.5.x high-precision timestamp API is changed,
from GetRaw() to GetUnixNS(). GetRaw() provides Windows FILETIME
value that is a 100 ns unit timestamp from 1601-01-01. GetUnixNS()
provides a Unix high-precision timestamp, which has 1 ns unit
counting from 1970-01-01. Current rar2fs behavior with libunrar
v5.5.x is wrong, treating 1 ns unit timestamp as 100 ns as reported
in issue #79.
Thanks to jyhpsycho for the original patch.
2017-06-18 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Release v1.25.2
* Fix wrong volume count logic
The volume count logic is broken for new style volumes resulting in
input/output errors at access. This patch will fix that and solve
the problem reported in issue #77.
2017-06-14 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Release v1.25.1
* Fix parse problem for file header flags
When moving over to definitions from unrarsrc rather than using
internal hard-coded values, files started to show up as directories
instead of regular files as reported in issue #76. By accident this
worked before this change but the implementation was actually broken
even before that.
This patch fixes the incorrect header parser in a backwards compatible
way to work seamlessly also for earlier versions of unrarsrc.
2017-06-10 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Release v1.25.0
* Rename IO buffer API
* Remove block device macros
* Use proper definitions from libunrar headers
Many definitions are hidden and supposed to be used only internally
within the library itself, some of those having the same value(s)
as the public exported interface. Later version of the library will
properly export all public definitions instead of using magic constants.
This patch will prepare for those definitions by using them in the way
they were intended to be used. For backwards compatibility the
definitions are also added to the library extension if not already
defined. This patch also improves the presentation of volumes that are
missing or having corrupt key parts.
* Relax read restrictions in raw mode
In raw mode any type of read error can be made more relaxed
returning bogus data in the buffer (0) instead of error.
This patch should address the enhancement request reported
in issue #52 for RAR archives in store mode.
* Remove workaround for fuse_exited() on CYGFUSE
The latest version of CYGFUSE now supports fuse_exited()
so a workaround is no longer needed.
* Allow --VolumePrefix=UNC to be passed to WinFSP
* Add build support for Dokany+dokanfuse
* Update detection for visibility attribute support
* Fix issue with SIGTERM not always working when daemonized
The function fuse_set_signal_handlers() is called before calling
fuse_daemonize(). This has some effect on signal processing that
on CYGWIN causes the SIGTERM signal to not be delivered when
issuing e.g. the 'kill' command on a daemonized rar2fs process.
This patch changes the order in which these two functions are
called.
* Remove target folder check for cygwin
* Add support for WinFSP/cygfuse layer
This patch provides the necessary build support for the
WinFSP/cygfuse layer to allow rar2fs to be run under Windows
as requested in issue #75.
* Add error checks before calling creat(2)
Error checks were made after creat(2) was called resulting
in files possibly being created (by e.g. touch) erroneously.
This patch makes sure any internal error checks are performed
before creat(2) or open(2) is called.
This patch also includes some minor cleanup in the raw read
service function(s) and removal of unused bit fields.
* Change 'RARVolNameToFirstName' fix for .NNN files
* Simplify volume check logic
This patch simplifies the volume check logic and also corrects
a couple of rare corner cases.
* Add per archive configuration
This patch implements both part 1 and 2 of the feature request
reported in issue #60.
2017-04-29 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Release v1.24.1
* [rar2fs #74]
Update for UnRAR source 5.5.3
* Fix an issue with volume consistency check
* Fix usage of VTYPE macro
* Fix a volume detection bug
2017-03-31 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Release v1.24.0
* Remove internal support for RAR in RAR
* [rar2fs #69]
Split file and directory cache
* Fix performance issue for encrypted archives
* [rar2fs #66]
Check consistency of new volumes
* [rar2fs #72]
Fix incorrect path split
* Do not enforce use of 'default_permissions' option
* Add specific mount error at password check failure
* [rar2fs #70]
Fix an issue in get_password()
* Fix wrong cache invalidation path
* [rar2fs #68]
Fix a problem with absolute paths
* [rar2fs #64]
Replace pipes with conditional variable
* Add SA_NODEFER to sa_flags for SIGSEGV
* Enable multi-threaded FUSE operation by default
* Update I/O handling for compressed archives
* Add check for reader thread creation failure
* Fix crash in option parser in debug level above 4
* [rar2fs #67]
Fix duplicate directory entries for archive mounts
* Call default signal handler after catching SIGSEGV
* Check need of RAR_SMP also for static libunrar
* Fix some corner cases in the directory cache logic
* [rar2fs #65]
Fix file collection at archive mount
* Remove a superfluous printf() in dump_stack
* [rar2fs #62]
Add static linking of UnRAR library
* Remove unwanted linker flags for mkr2i
* Fix wrong path lookup for archive mounts
* Improve getattr folder cache logic
* Add folder cache for folder style mounts
* Add folder cache for archive style mounts
* [rar2fs #49]
Fix mounting of encrypted archives
* Fix memory leak in readdir() function
* [rar2fs #61]
Fix seek length issue for archive mounts
* Fix size printed in function dump_buf()
* Only fprintf if we have a valid fp pointer in dump_buf.
* Actually use duplicated string in lookup_filecopy.
2016-09-05 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Release v1.23.1
* Fixed another corner case in volume count logic
2016-09-04 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Release v1.23.0
* Fixed seek length issue
The fix for [rar2fs #55] introduced a new problem resulting
in too few volume files being searched.
* Add full support for volumes numbered from 0
2016-08-31 Hans Beckerus <hans.beckerus#AT#gmail.com>
* [rar2fs #55]
Added support for .NNN file naming scheme.
2016-07-14 Hans Beckerus <hans.beckerus#AT#gmail.com>
* [rar2fs #47]
Fixed a few more corner cases hit in fs loops.
2016-07-05 Hans Beckerus <hans.beckerus#AT#gmail.com>
* [rar2fs #53]
Fixed a divison by zero problem when volume size becomes
wrong due to corrupt archives.
2016-06-26 Hans Beckerus <hans.beckerus#AT#gmail.com>
* [rar2fs #51]
Use sys/sysmacros.h for major/minor/makedev
(patch from vapier/master)
2016-04-29 Hans Beckerus <hans.beckerus#AT#gmail.com>
* [rar2fs #48]
Fixed a compilation issue with GCC6
(thanks to jyhpsycho for providing the patch).
2016-04-07 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Fixed broken detection of ISO files.
* Fixed a PRIu64 format error in debug builds.
2016-02-17 Hans Beckerus <hans.beckerus#AT#gmail.com>
* [rar2fs #45]
Fixed a problem with missing detection of RAR_SMP for
libunrar5 when not compiling using autotools.
2016-02-10 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Added options --relatime and --relatime-rar.
* Removed page_size dependency.
2016-01-08 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Released 1.22.0
2015-12-23 Hans Beckerus <hans.beckerus#AT#gmail.com>
* [rar2fs #42]
Fixed additional issues with offset calculations for both
legacy and RAR5 volume archives in store mode.
* Removed the DLL extensions RARGetMainHeaderSize() and
RARGetMarkHeaderSize() since they are no longer needed.
* Updated file cache structure.
* Updated copyright headers.
2015-12-20 Hans Beckerus <hans.beckerus#AT#gmail.com>
* [rar2fs #43]
Replaced use of RARHeaderData with RARHeaderDataEx to allow
for longer filenames than 260 characters.
2015-12-18 Hans Beckerus <hans.beckerus#AT#gmail.com>
* [rar2fs #42]
Fixed a header size calculation error for RAR5 volumes
when using libunrar v5.30 beta 5 (5.3.6) and later.
2015-11-29 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Fix wrong path being used in utimens
2015-08-28 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Released 1.21.0
* Completely remove use of pthread_exit()
2015-08-02 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Built and tested against UnRAR source 5.30 beta 1 (5.3.1)
This should resolve issue [rar2fs #40]
2015-01-15 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Fixed a crash when using the --exclude option.
2014-09-19 Hans Beckerus <hans.beckerus#AT#gmail.com>
* [rar2fs #37]
Fixed a potential memory leak when compiling against
libunrar versions prior to 4.2.0.
* Fixed a potential memory leak in the collect_files()
function. This function is only used when mounting
single RAR archives which means it is rather harmless.
* Simplified code in function dir_entry_add_hash().
2014-07-16 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Changed implementation of utimens
* [rar2fs #35]
Fixed a problem with RAR5 stats that were incorrectly
inherited for file reference links.
2014-03-19 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Released 1.20.0
* Turned off support for block special device mounts other
than for Linux platforms. It does not make much sense trying
to support it any where else due to possible read alignment
restrictions.
2014-03-18 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Built and tested against UnRAR source 5.10 beta 1 (5.1.1)
2014-03-17 Hans Beckerus <hans.beckerus#AT#gmail.com>
* [rar2fs #34]
Fixed a problem with old style archives split into more
than 101 files.
2014-03-16 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Now returning "No such file or directory" instead of
"Input/output error" when trying to read information
for a file outside an archive or which does not exist
at all (libunrar5 only).
* Fixed an issue when retrieving file information (#info)
that could have resulted in an infinite loop.
* Fixed an issue with resolving symbolic links for
legacy archives in combination with libunrar5.
2014-03-08 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Corrected some issues that caused compilation failures
for UnRAR source 4.1.x.
2014-03-07 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Corrected a problem seen on e.g. FreeBSD for which closedir()
was called with a NULL pointer resulting in a crash.
2014-03-06 Hans Beckerus <hans.beckerus#AT#gmail.com>
* [rar2fs #31]
Corrected some compilation errors on FreeBSD (and also other
platforms that sets HAVE_SETXATTR).
2014-03-02 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Mounting block special files on Linux can now benefit from
fmemopen() when supported.
2014-02-25 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Enabled syslog support
2014-02-24 Hans Beckerus <hans.beckerus#AT#gmail.com>
* [rar2fs #22]
Now may fall back to the old workaround from 1.19.2 that
should be working also for (some!?) uClibc versions of
fmemopen().
2014-02-23 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Corrected some additional problems with the solution
for issue #22.
* Added support for presenting high-resolution time stamp in
RAR5 archives (thanks to jyhpsycho for the initial patch).
Legacy archives still require a new version of UnRAR source
before it can be enabled.
2014-02-23 Hans Beckerus <hans.beckerus#AT#gmail.com>
* [rar2fs #28]
Fixed problem with mounting a block special file that
resulted in a crash due to incorrect use of mmap() and
fmemopen().
2014-02-21 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Added a missing check for errors from fmemopen()
2014-02-21 Hans Beckerus <hans.beckerus#AT#gmail.com>
* [rar2fs #29]
Fixed a minor calculation error in the file time stamp
'seconds' part as provided by libunrar (MS-DOS time format).
* Removed 'INSTALL' from SVN trunk
2014-02-14 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Released 1.19.8
2014-02-07 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Disabled automatic switch to direct I/O mode.
* Tweaked some of the more fine grained "hacks" to improve
support for compressed archives.
* Now supports 'flag_nullpath_ok' and 'flag_nopath'
(FUSE >= 2.9) in fuse ops.
2014-02-04 Hans Beckerus <hans.beckerus#AT#gmail.com>
* The race condition in the I/O buffer has been identified and
the lock utilization has been redesigned accordingly to
minimize lock contention.
* Added check for __sync_synchronize()
2014-02-03 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Changed use of the FUSE 'keep_cache' flag
* Removed the attempt to optimize the lock contention level
in the I/O buffer. Seems to have opened up for additional
race conditions. When CPU is really needed lock contention
should be close to none anyway.
2014-02-02 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Released 1.19.5
2014-02-01 Hans Beckerus <hans.beckerus#AT#gmail.com>
* [rar2fs #27]
Fixed a problem with seek length not being handled properly
when mounting a single archive split into volumes.
2014-01-31 Hans Beckerus <hans.beckerus#AT#gmail.com>
* [rar2fs #25]
Added some mutex locks to take care of the race conditions
that were discovered in the I/O buffer.
2014-01-29 Hans Beckerus <hans.beckerus#AT#gmail.com>
* [rar2fs #24]
Added support for the 'Save identical file as references'
feature in RAR5 archives.
2014-01-28 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Released 1.19.2
* [rar2fs #22]
The fix for this issue (released in 1.19.1) did not
work properly for RAR5 archives.
2014-01-14 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Released 1.19.1
* [rar2fs #22]
Corrected an issue with "RAR inside RAR" in combination
with libunrar5 and lack of support for fmemopen()
(common for e.g. many uClibc based systems).
2014-01-13 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Validation of UnRAR source version did not work
as expected.
2014-01-06 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Released 1.19.0
2013-11-11 Hans Beckerus <hans.beckerus#AT#gmail.com>
* [rar2fs #20]
Corrected some issues in configure.ac since it failed to
properly configure the package for static linkage.
2013-11-04 Hans Beckerus <hans.beckerus#AT#gmail.com>
* [rar2fs #19]
Added a missing close of the handle obtained when mounting an
archive instead of a directory. Besides the fact that it should
not be left open, it seems to have also affected the behavior of
libunrar for RAR5 archives in such a way that the extraction
process stopped working completely.
2013-10-26 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Now using PRIu64 (C99) when printing 64-bit values
2013-10-18 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Fixed an error that caused failures to recognize the
option '--iob-size'.
2013-10-18 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Redesigned handling of encrypted archives completely.
Now using UnRAR library callback API to set password.
* A password can now be provided in wide-character format.
* Password files may now be prefixed with a '.' to hide it
from simple list operations in traditional UNIX style.
rar2fs(1) man page updated accordingly.
* Trying to access a file that is encrypted and for which
no valid password is provided will give EPERM.
* Removed option '--no-passwd' since there is no
longer a small performance penalty involved by having
this support enabled for non-encrypted archives.
This option was removed from the rar2fs(1) man page
since long time back.
* Now taking better use of the provided methods
in UnRAR library API when listing archives.
* Minor improvements in the handling of old style
(.rNN) volumes.
2013-10-10 Hans Beckerus <hans.beckerus#AT#gmail.com>
* [rar2fs #17]
Corrected a problem with password protected archives that
resulted in a crash when files were encrypted but file names
were not.
2013-09-25 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Released 1.18.0
* Fixed a problem seen on eg. Debian 3.1 for which
fuse_main() crashed when called with a NULL
pointer instead of a valid fuse_operations struct.
2013-09-18 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Added a second mount attempt in case fuse is throwing
an error due to missing support for option -osubtype.
The second time the mount is attempted without the
option added internally.
2013-09-18 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Corrected a version check error resulting in a
crash when trying to run a rar2fs version compiled
using UnRAR source 5.0.11 or later.
2013-09-18 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Replacing -Wextra with the deprecated -W for old
versions of gcc
2013-09-17 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Added check for existence of function fuse_version()
* Added check for -Wextra support by compiler
2013-09-14 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Added proper check if back-trace functions are
provided as a separate library. Lack of this check
resulted in build failures on FreeBSD.
2013-09-04 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Fixed a broken version check for the official release
(non beta) of UnRAR source 5.0.x.
2013-08-10 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Fixed a time (DST) calculation bug
* Replaced the Unicode to/from UTF-8 translation
function(s)
* Prepared the code for using iconv.
Currently not enabled. Not sure it will ever be.
* Deleted file(s): utf8.h, utf8.c
2013-08-08 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Fixed a bug when identifying host OS for
RAR5 archives.
* Minor code clean-up and bug fixes in the
DLL extensions for RAR5 archives.
2013-08-07 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Updated old build support files
* Prepared the build environment for detecting the
availability of iconv. Once in place it should
most likely replace the current UTF-8 conversion
routine.
* Externally filesystem entries are now being
translated to UTF-8 irrespective of what current
process locale is set to. Internally Unicode is
still used when applicable.
* New file(s): utf8.h, utf8.c
2013-08-06 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Fixed a small bug that resulted in a stale
mount point even if a mount option was not
actually accepted.
* Added support for UNIX style symbolic links in
RAR5 archives (EXPERIMENTAL).
2013-08-05 Hans Beckerus <hans.beckerus#AT#gmail.com>
* Added support for UNIX style symbolic links in
RAR4 (and earlier) archives. RAR5 support still