Uploaded image for project: 'Minecraft: Java Edition'
  1. Minecraft: Java Edition
  2. MC-239610

Severe world corruption due to 1.18 snapshots failing to deserialize chunks that 1.17 loads fine

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • 1.18 Pre-release 3
    • 21w42a, 21w43a, 21w44a, 1.18 Pre-release 1
    • None
    • Confirmed
    • Datafixer
    • Important

      The bug

      The core of the problem is that Minecraft 1.18 snapshots do not accept all save formats that were previously accepted. Minecraft 1.17 handled chunk sections with a mismatched palette size (e.g. 14 entries -> 4 bits per block) and data size (342 longs -> 12 blocks per long -> 5 bits per block) properly. It calculated the bits per block from the data size, and therefore was able to read the block data correctly.
      The expected data size is calculated from the required bits per block which is calculated from the palette size. If the data size does not match the expected value 1.18 will throw an exception and generate a new chunk instead. Minecraft 1.17 snapshots handle this mismatch without any issue.

      I haven't checked whether vanilla ever created chunks with this exact format in the past. But I have to assume that the code handling the mismatched size case existed for a reason. I hope you can look up that reason in your version control system (PalettedContainer, deserialization of the NBT, at the end). The code existed since at least minecraft 1.14.4.
      For example the optimization mod lithium-fabric relied on chunk sections with this format being loaded properly and created lots of chunk sections with this format. This will lead to world corruption when hundreds of thousands of users upgrade their worlds to 1.18 (snapshots).

      I attached a world that I created with the optimization mod lithium that includes lots of chunk sections with a size mismatch (data larger than palette requires). This world loads fine in vanilla 1.17. It breaks in the current 1.18 snapshots, cf. screenshots. As said before, it is possible that previous minecraft vanilla versions also created chunk sections with this save format, which is no longer accepted by 1.18.

      How to reproduce

      1. Download the attached world Palette_Data size mismatch dfu.zip and save two copies in the saves folder
      2. Load one copy in 1.17.1
        Notice that the world looks normal, all chunks loaded fine
      3. Load the second copy in the latest 1.18 snapshot
        Notice that some chunks are corrupted (have regenerated), there are errors in the log (example as attachment)

      Fixes

      As a fix I suggest to:

      add a datafixer that fixes the size mismatch (rewrite data to match the palette's required bit resolution, similar to 1.17 loading code.

      or reintroduce the code that handles this case when deserializing chunk sections.

      Regarding the screenshots:
      The corruptions do not look severe here, but it will replace player bases with new chunks!

        1. Palette_Data size mismatch dfu.zip
          6.41 MB
        2. latestLogExcerpt.log
          2 kB
        3. 2021-11-11_17.51.00.png
          2021-11-11_17.51.00.png
          3.46 MB
        4. 2021-11-11_17.45.32.png
          2021-11-11_17.45.32.png
          3.16 MB
        5. 2021-10-29_19.40.11.png
          2021-10-29_19.40.11.png
          2.06 MB
        6. 2021-10-16_20.55.34.png
          2021-10-16_20.55.34.png
          1.77 MB

            grum [Mojang] Grum (Erik Broes)
            2No2Name 2No2Name
            Votes:
            102 Vote for this issue
            Watchers:
            30 Start watching this issue

              Created:
              Updated:
              Resolved:
              CHK: