You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

72 lines
3.1 KiB

  1. From bfcfe6f04ed20db2504db8a254d1f40a1d84eb28 Mon Sep 17 00:00:00 2001
  2. From: Daniel Axtens <dja@axtens.net>
  3. Date: Tue, 4 Dec 2018 00:55:22 +1100
  4. Subject: [PATCH] rar: file split across multi-part archives must match
  5. Fuzzing uncovered some UAF and memory overrun bugs where a file in a
  6. single file archive reported that it was split across multiple
  7. volumes. This was caused by ppmd7 operations calling
  8. rar_br_fillup. This would invoke rar_read_ahead, which would in some
  9. situations invoke archive_read_format_rar_read_header. That would
  10. check the new file name against the old file name, and if they didn't
  11. match up it would free the ppmd7 buffer and allocate a new
  12. one. However, because the ppmd7 decoder wasn't actually done with the
  13. buffer, it would continue to used the freed buffer. Both reads and
  14. writes to the freed region can be observed.
  15. This is quite tricky to solve: once the buffer has been freed it is
  16. too late, as the ppmd7 decoder functions almost universally assume
  17. success - there's no way for ppmd_read to signal error, nor are there
  18. good ways for functions like Range_Normalise to propagate them. So we
  19. can't detect after the fact that we're in an invalid state - e.g. by
  20. checking rar->cursor, we have to prevent ourselves from ever ending up
  21. there. So, when we are in the dangerous part or rar_read_ahead that
  22. assumes a valid split, we set a flag force read_header to either go
  23. down the path for split files or bail. This means that the ppmd7
  24. decoder keeps a valid buffer and just runs out of data.
  25. Found with a combination of AFL, afl-rb and qsym.
  26. ---
  27. libarchive/archive_read_support_format_rar.c | 9 +++++++++
  28. 1 file changed, 9 insertions(+)
  29. diff --git a/libarchive/archive_read_support_format_rar.c b/libarchive/archive_read_support_format_rar.c
  30. index 6f419c270..a8cc5c94d 100644
  31. --- a/libarchive/archive_read_support_format_rar.c
  32. +++ b/libarchive/archive_read_support_format_rar.c
  33. @@ -258,6 +258,7 @@ struct rar
  34. struct data_block_offsets *dbo;
  35. unsigned int cursor;
  36. unsigned int nodes;
  37. + char filename_must_match;
  38. /* LZSS members */
  39. struct huffman_code maincode;
  40. @@ -1560,6 +1561,12 @@ read_header(struct archive_read *a, struct archive_entry *entry,
  41. }
  42. return ret;
  43. }
  44. + else if (rar->filename_must_match)
  45. + {
  46. + archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT,
  47. + "Mismatch of file parts split across multi-volume archive");
  48. + return (ARCHIVE_FATAL);
  49. + }
  50. rar->filename_save = (char*)realloc(rar->filename_save,
  51. filename_size + 1);
  52. @@ -2933,12 +2940,14 @@ rar_read_ahead(struct archive_read *a, size_t min, ssize_t *avail)
  53. else if (*avail == 0 && rar->main_flags & MHD_VOLUME &&
  54. rar->file_flags & FHD_SPLIT_AFTER)
  55. {
  56. + rar->filename_must_match = 1;
  57. ret = archive_read_format_rar_read_header(a, a->entry);
  58. if (ret == (ARCHIVE_EOF))
  59. {
  60. rar->has_endarc_header = 1;
  61. ret = archive_read_format_rar_read_header(a, a->entry);
  62. }
  63. + rar->filename_must_match = 0;
  64. if (ret != (ARCHIVE_OK))
  65. return NULL;
  66. return rar_read_ahead(a, min, avail);