# MinIO File-Format Interoperability — Gap Analysis & Phased Plan Assesses how closely the RustFS on-disk format matches MinIO's, so that a MinIO drive set can be read (and eventually served) by RustFS and vice versa. This is a **plan and analysis document**. It changes no storage code. Every claim below cites the code that backs it. Scope: the two on-disk artifacts that matter for interop are the per-object `xl.meta` (object metadata + inline data) and the per-bucket `.metadata.bin` (bucket configuration blob). IAM/config layout is noted where it affects bucket-metadata migration. Refs rustfs/backlog#580. ## Executive Summary - **`xl.meta`**: RustFS writes `XL_META_VERSION = 3` and reads meta_ver ≤ 3, including legacy meta_ver 2 objects with legacy checksums. Magic `XL2 `, erasure algorithm `rs-vandermonde` (Reed-Solomon), and HighwayHash256 bitrot all match MinIO. `xl.meta` interop is the **strong** part of the story. - **`.metadata.bin`**: RustFS uses the same filename, the same 4-byte `format|version` header, the same MessagePack blob layout, and the same per-config field encodings (XML/JSON) as MinIO's `bucketMetadata`. The divergence is a small set of RustFS-only fields (table-bucket support, bucket-targets meta) — not a format mismatch. - **Migration**: RustFS already ships a one-way importer that reads a legacy meta bucket and rewrites bucket-metadata + IAM config into the RustFS meta bucket (`crates/ecstore/src/bucket/migration.rs`). - **Server-side encryption**: not covered by the above. Objects MinIO wrote with SSE-S3, SSE-KMS, or SSE-C are **not readable by RustFS** in any shipped build. See [Part C](#part-c--server-side-encryption-sse) before planning a migration that includes encrypted objects. For unencrypted objects the remaining work is verification breadth and closing per-config parsing gaps, not a format rewrite. Encrypted objects are a separate, unsolved axis (rustfs/backlog#1638). --- ## Part A — `xl.meta` Object Format ### Version support | Aspect | Value | Evidence | |---|---|---| | Write version (`meta_ver`) | 3 | `crates/filemeta/src/filemeta.rs:54` (`XL_META_VERSION = 3`), written in `FileMeta::new` at `crates/filemeta/src/filemeta.rs:121` | | Read versions accepted | ≤ 3 (1, 2, 3) | Decode rejects only `meta_ver > XL_META_VERSION` — see `crates/filemeta/src/filemeta/codec.rs` (`decode_xl_headers`); `load_or_convert` doc at `crates/filemeta/src/filemeta.rs:864` | | Legacy meta_ver 2 read | Supported (with legacy checksum) | Regression fixtures `test_issue_2265_legacy_meta_v2_object_compatibility` / `test_issue_2288_legacy_xlmeta_compatibility` at `crates/filemeta/src/filemeta.rs:1130`, `:1152`; `uses_legacy_checksum` asserted at `:1174` | RustFS is a **read-forward-compatible** consumer of MinIO's `xl.meta`: it can parse older MinIO objects and normalizes them to meta_ver 3 on rewrite. It does not write MinIO's older versions. ### Container header | Field | RustFS value | Evidence | |---|---|---| | Magic | `XL2 ` (`[b'X', b'L', b'2', b' ']`) | `crates/filemeta/src/filemeta.rs:46` | | File version major / minor | 1 / 3 | `crates/filemeta/src/filemeta.rs:51-52` | | Header version | 3 | `crates/filemeta/src/filemeta.rs:53` | | Magic + version check (decode entry) | `check_xl2_v1` validates magic and rejects `major > 1` | `crates/filemeta/src/filemeta/codec.rs:45-61` | | Version-only probe (no full parse) | `read_format_versions` returns `(major, minor, header_ver, meta_ver)` | `crates/filemeta/src/filemeta/codec.rs:30-43` | The layout after the 8-byte header is `bin-length-prefixed msgpack header block` followed by a CRC trailer and optional inline data — matching MinIO's XL2 v1 container. ### Erasure coding | Aspect | Value | Evidence | |---|---|---| | Algorithm enum | `ErasureAlgo::ReedSolomon = 1` | `crates/filemeta/src/fileinfo.rs:83-106` | | Algorithm string | `rs-vandermonde` | `crates/filemeta/src/fileinfo.rs:31` (`ERASURE_ALGORITHM`); also `crates/ecstore/src/object_api/mod.rs:52` | | Codec crate | `rustfs-erasure-codec` (Reed-Solomon, SIMD) | `Cargo.toml:277` | Same Reed-Solomon Vandermonde scheme and identifier string as MinIO. ### Bitrot / shard integrity | Aspect | Value | Evidence | |---|---|---| | Default hash | `HashAlgorithm::HighwayHash256S` | Bitrot read/write paths in `crates/ecstore/src/io_support/bitrot.rs` (e.g. `:564`, `:767`) | | Legacy variant | `HighwayHash256SLegacy` (fixed key) for old objects | referenced from `rustfs_utils::HashAlgorithm` (imported at `crates/ecstore/src/io_support/bitrot.rs:26`) | | HighwayHash crate | `highway` 1.3.0 | `Cargo.toml:252` | | Legacy bitrot read coverage | dedicated test | `crates/ecstore/tests/legacy_bitrot_read_test.rs` | MinIO uses HighwayHash256 for bitrot; RustFS's default `HighwayHash256S` is compatible, with a legacy-key variant retained for older shards. ### Inline data Small objects are inlined into the `xl.meta` container after the CRC trailer rather than written as a separate `part.1`. Handling lives in `crates/filemeta/src/filemeta/inline_data.rs` (e.g. `physical_data_dir` and the shared-data-dir accounting), and the inline block is appended/consumed by the codec in `crates/filemeta/src/filemeta/codec.rs`. This mirrors MinIO's inline data feature and the `null`/version-id keying used for the inline map (`data_key_for_version` at `crates/filemeta/src/filemeta.rs:69`, legacy key at `:77`). ### `xl.meta` interop verdict | Item | Done | Partial | Todo | |---|:--:|:--:|:--:| | Read MinIO meta_ver ≤ 3 | ✅ | | | | Legacy meta_ver 2 + legacy checksum read | ✅ | | | | XL2 container magic/version parity | ✅ | | | | Reed-Solomon `rs-vandermonde` parity | ✅ | | | | HighwayHash256 bitrot parity | ✅ | | | | Inline data parity | ✅ | | | | Broad fixture corpus from real MinIO writers | | ⚠️ | | | Write-back parity for round-trip (RustFS→MinIO read) | | ⚠️ | | The two ⚠️ items are verification breadth, not known incompatibilities: the current fixtures are targeted regressions (issues #2265, #2288), and there is no CI job proving a MinIO binary can re-read a RustFS-written `xl.meta`. --- ## Part B — Bucket Metadata (`.metadata.bin`) ### On-disk layout | Aspect | RustFS value | Evidence | |---|---|---| | Meta bucket | `.rustfs.sys` | `crates/ecstore/src/disk/mod.rs:29` (`RUSTFS_META_BUCKET`) | | Bucket-config prefix | `buckets` | `crates/ecstore/src/disk/mod.rs:34` (`BUCKET_META_PREFIX`) | | Blob file | `.metadata.bin` | `crates/ecstore/src/bucket/metadata.rs:227` (`BUCKET_METADATA_FILE`) | | Full path | `buckets/{bucket}/.metadata.bin` | `crates/ecstore/src/bucket/metadata.rs:415-416` (`save_file_path`) | | Header | `format: u16 LE` + `version: u16 LE`, both `= 1` | `crates/ecstore/src/bucket/metadata.rs:228-229`, checked in `check_header` at `:595-614` | | Body | MessagePack-encoded `BucketMetadata` | `marshal_msg`/`unmarshal` at `crates/ecstore/src/bucket/metadata.rs:582-593`; read strips the 4-byte header (`unmarshal(&data[4..])` at `:1079`) | This is the same design as MinIO's bucket metadata: a single `.minio.sys/buckets//.metadata.bin` blob with a 4-byte `bucketMetadataFormat|bucketMetadataVersion` header and a msgpack body. The filename, header shape, and format/version values (`1`/`1`) all match. The `BucketMetadata` field names correspond one-to-one to MinIO's `bucketMetadata` struct (`policyConfigJSON`, `lifecycleConfigXML`, `objectLockConfigXML`, …). > Correction to a common misconception: modern MinIO does **not** store each > bucket config as a separate loose `versioning.json` / `lifecycle.json` file — > it embeds them in the same `.metadata.bin` blob, with XML for the S3-XML > configs and JSON for policy/quota/targets. The per-config filename constants > in RustFS (`policy.json`, `lifecycle.xml`, …) are the **keys used by > `update_config`** to select a field, not separate on-disk files. ### Interop matrix (backlog#580 items) Field/constant references are in `crates/ecstore/src/bucket/metadata.rs`. "Encoding" is the payload RustFS stores in that field and must match MinIO's for byte-level interop. Getter functions live in `crates/ecstore/src/bucket/metadata_sys.rs`. | Config item | RustFS field / constant | Encoding | MinIO field | Status | |---|---|---|---|---| | versioning | `versioning_config_xml` / `BUCKET_VERSIONING_CONFIG` = `versioning.xml` | XML | versioningConfigXML | Done | | quota | `quota_config_json` / `BUCKET_QUOTA_CONFIG_FILE` = `quota.json` | JSON | quotaConfigJSON | Done | | object_lock | `object_lock_config_xml` / `OBJECT_LOCK_CONFIG` = `object-lock.xml` | XML | objectLockConfigXML | Done | | replication | `replication_config_xml` / `BUCKET_REPLICATION_CONFIG` = `replication.xml` | XML | replicationConfigXML | Done | | policy | `policy_config_json` / `BUCKET_POLICY_CONFIG` = `policy.json` | JSON | policyConfigJSON | Done | | lifecycle | `lifecycle_config_xml` / `BUCKET_LIFECYCLE_CONFIG` = `lifecycle.xml` | XML | lifecycleConfigXML | Done | | tagging | `tagging_config_xml` / `BUCKET_TAGGING_CONFIG` = `tagging.xml` | XML | taggingConfigXML | Done | | bucket_targets | `bucket_targets_config_json` + `bucket_targets_config_meta_json` / `BUCKET_TARGETS_FILE` = `bucket-targets.json` | JSON | bucketTargetsConfigJSON (+ meta variant) | Partial | | notification | `notification_config_xml` / `BUCKET_NOTIFICATION_CONFIG` = `notification.xml` | XML | notificationConfigXML | Done | | encryption | `encryption_config_xml` / `BUCKET_SSECONFIG` = `bucket-encryption.xml` | XML | encryptionConfigXML | Done | | cors | `cors_config_xml` / `BUCKET_CORS_CONFIG` = `cors.xml` | XML | corsConfigXML | Done | | public_access | `public_access_block_config_xml` / `BUCKET_PUBLIC_ACCESS_BLOCK_CONFIG` = `public-access-block.xml` | XML | publicAccessBlockConfigXML | Done | | bucket_acl | `bucket_acl_config_json` / `BUCKET_ACL_CONFIG` = `bucket-acl.json` | JSON | bucketACLConfigJSON | Partial | Field definitions: `crates/ecstore/src/bucket/metadata.rs:274-336`. Constants: `:227-247`. `update_config` field routing: `:678-761`. `parse_all_configs` is invoked on load (`load_bucket_metadata_parse` at `:1043`). Notes on the two "Partial" rows: - **bucket_targets** — RustFS carries an extra `bucket_targets_config_meta_json` field (`:288`) beyond MinIO's single targets blob. The primary `bucket-targets.json` payload is interoperable; the meta side-channel is RustFS-specific and a MinIO reader would ignore it. ACL enforcement itself is bounded (S3 `PutBucketAcl`/`PutObjectAcl` accept canned ACLs only — see [minio-rustfs-router-compatibility.md](minio-rustfs-router-compatibility.md)). - **bucket_acl** — stored and round-tripped in the blob, but ACL grant semantics are intentionally limited at the S3 layer. RustFS also defines fields with no interop requirement from backlog#580 but worth noting so a migration tool does not choke on them: `logging_config_xml`, `website_config_xml`, `accelerate_config_xml`, `request_payment_config_xml` (`:242-245`), and the RustFS-only `table_bucket_config_json` (`BUCKET_TABLE_CONFIG` = `table-bucket.json`, `:248`). A MinIO reader that does not know `table_bucket_config_json` will ignore the unknown msgpack field. ### Old-RustFS → new-RustFS migration RustFS ships a one-way importer that reads a legacy meta bucket (`MIGRATING_META_BUCKET`) and rewrites both bucket metadata and IAM config into the current RustFS meta bucket, skipping entries that already exist (idempotent). See `crates/ecstore/src/bucket/migration.rs`: - `try_migrate_bucket_metadata` copies `buckets/{bucket}/.metadata.bin` and the replication resync blob for each bucket (`crates/ecstore/src/bucket/migration.rs:193`). - `try_migrate_iam_config` walks `config/iam/` and normalizes legacy IAM records — legacy timestamp fields (`update_at` → `updatedAt`) and legacy policy-mapping field aliases (`policies` → `policy`) are rewritten (`normalize_iam_config_blob` at `:97`; regression test at `:428`). - Bucket resync metadata is re-encoded through `ReplicationMigrationBridge` (`normalize_bucket_meta_blob` at `:178`). This importer is the practical basis for a MinIO → RustFS bucket-metadata migration: because the blob layout and field encodings already match, the missing piece is a source adapter that points the importer at a MinIO `.minio.sys` layout rather than the RustFS legacy layout. ### Bucket-metadata interop verdict | Item | Done | Partial | Todo | |---|:--:|:--:|:--:| | `.metadata.bin` filename + header + msgpack layout parity | ✅ | | | | Per-config field encodings (XML/JSON) match MinIO | ✅ | | | | versioning/quota/object_lock/replication/policy/lifecycle/tagging/notification/encryption/cors/public_access round-trip | ✅ | | | | bucket_targets primary blob | ✅ | | | | bucket_targets meta side-channel + ACL grant semantics | | ⚠️ | | | Old-RustFS → new-RustFS importer | ✅ | | | | MinIO `.minio.sys` source adapter for the importer | | | ❌ | | CI proof a MinIO-written `.metadata.bin` loads unchanged | | | ❌ | --- ## Part C — Server-Side Encryption (SSE) Reading MinIO-written SSE objects is implemented, with a deliberate build boundary. The read path lives behind the `rio-v2` feature and is a **special-purpose migration capability**: it is not compiled into released binaries or container images, and there is no short-term plan to promote it into default builds. A default build fails such reads closed with a diagnosed error (see "How default builds fail" below); a `rio-v2` build reads them, within the scenario matrix below. The read-path work was tracked in rustfs/backlog#1638 (landed across rustfs/rustfs#6191, #6784, #6785). ### Scope boundary: KMS wire protocols and the production gate This document covers MinIO on-disk metadata and object-encryption seams only. The **AWS KMS wire protocol** and the **MinIO KES wire protocol** are explicit non-targets: RustFS's AWS backend uses the AWS SDK's `awsJson1_1` client path (`crates/kms/src/backends/aws.rs:830`), while KES compatibility is outside this interop work. Those ecosystem evaluations remain separate work in the [#1562 Production Ready exit gate](https://github.com/rustfs/backlog/issues/1562), whose compatibility criterion covers MinIO/RustFS SSE data and rolling upgrades. Closing #1638 does not by itself close that gate. Note the asymmetry with Parts A and B: the `xl.meta` around a MinIO SSE object parses fine, so such objects list, HEAD, and report plausible sizes. Only payload readability depends on the build and the scenario. ### What can and cannot be migrated | Object class | Default build | `rio-v2` build | Notes | |---|:--:|:--:|---| | Unencrypted objects | ✅ | ✅ | Parts A and B apply. | | Bucket metadata, IAM config | ✅ | ✅ | Via the importer, once a `.minio.sys` source adapter exists (see Part B). | | Bucket-level default-encryption *configuration* | ✅ | ✅ | The `encryption` config blob round-trips as a blob; it does not make existing ciphertext readable. | | SSE-S3 / SSE-KMS, MinIO builtin static KMS (`MINIO_KMS_SECRET_KEY`), single- and multipart | ❌ diagnosed | ✅ | Requires `RUSTFS_SSE_S3_MASTER_KEY` set to the same 32-byte key material as MinIO's static secret. Proven against real MinIO fixtures (rustfs/rustfs#6191). | | SSE-C, MinIO-written | ❌ diagnosed | ✅ | Detection via MinIO's sealed-key slot; the customer key is proven by the AEAD unseal, since MinIO stores no key MD5 (rustfs/rustfs#6785). | | Any SSE, MinIO backed by KES / KMS plugin / MinKMS | ❌ | ❌ **not planned** | The wrapped DEK is sealed by the KES service itself; it is not a Vault/Transit ciphertext RustFS could be pointed at. Re-encrypt on the MinIO side before migrating. | | Objects sealed with legacy `DARE-SHA256` (`InsecureSealAlgorithm`) | ❌ | ❌ out of scope | Pre-DAREv2-HMAC MinIO; `parse_minio_managed_sealed_key` rejects the algorithm and the read fails closed. | | RustFS-written SSE objects read back by MinIO | ❌ | ❌ | See "Reverse direction". | ### The seams, and where they closed The cryptographic primitives were never the gap — RustFS implements the same DARE V2 stream format, object-key derivation, and sealing. Three seams above the cryptography rejected MinIO-written objects; all three are closed in `rio-v2` builds. | # | Seam | Resolution | |---|---|---| | 1 | Managed-SSE detection required the *persisted* public `x-amz-server-side-encryption` key, which MinIO synthesizes at response time and never stores. | Closed by rustfs/rustfs#6191: `infer_minio_managed_sse_type` infers the scheme from which MinIO sealed-key slot is present (the slot also selects the sealing-key domain, so a wrong inference cannot silently derive a wrong key). Inference from the KMS key id would misclassify — MinIO writes `-S3-Kms-Key-Id` on SSE-S3 objects too. | | 2 | MinIO's wrapped-DEK ciphertext was not accepted by any envelope parser. | Closed by rustfs/rustfs#6191: `decrypt_minio_kms_data_key` implements MinIO's builtin-KMS sealing (`sealingKey = HMAC-SHA256(master, iv)`), accepting both the raw `sealed‖iv‖nonce` layout and the legacy `{"aead": ...}` JSON. Routing is by the data key's own byte shape — RustFS's strict JSON envelopes are recognized positively, everything else goes to the MinIO decoder — because slot names cannot distinguish the writer. `LocalSseDekEnvelope` keeps `deny_unknown_fields`. | | 3 | SSE-C detection keyed on the stored customer-algorithm header, which MinIO also never persists, and the early key check demanded a stored key MD5 MinIO does not write. | Closed by rustfs/rustfs#6785: `stored_ssec_metadata` also accepts MinIO's SSE-C sealed-key slot (rio-v2 builds only), and `verify_ssec_key_match` tolerates a missing stored MD5 for exactly that shape — the AEAD unseal remains the key proof, and a wrong key still fails there. | Two further single-part defects were fixed on the way (both rustfs/rustfs#6191 follow-ups): multipart classification now trusts MinIO's own `X-Minio-Internal-Encrypted-Multipart` marker instead of an ETag-length heuristic (MinIO stores *encrypted* ETags, so every single-part SSE object mis-classified as multipart), and single-part plaintext sizes are recovered by DARE reverse-size arithmetic (`dare_v2_decrypted_size`) since MinIO records an explicit size only for multipart uploads. ### How default builds fail The read fails closed: ciphertext is never served as plaintext. `is_object_encryption_marker` matches the whole `x-minio-internal-server-side-encryption-` prefix, so `ObjectInfo::is_encrypted()` is true for these objects, and the read plan refuses to construct a reader without decryption material. Since rustfs/rustfs#6784 the refusal is diagnosed: the resolver raises a typed error naming the condition — in default builds it points at the MinIO-compatible sealed format and the `rio-v2` read path it would require — and it surfaces as S3 `InvalidObjectState` (non-retryable) instead of the former undiagnosed 500 `InternalError`. List and HEAD still succeed, because `xl.meta` parses normally. ### What a `rio-v2` migration build needs - A binary built with `--features rio-v2`. The feature is deliberately absent from `default` and `full` in `rustfs/Cargo.toml`; released binaries and images never include it. - For SSE-S3/SSE-KMS objects: `RUSTFS_SSE_S3_MASTER_KEY` (base64, 32 bytes) set to the same key material as the source MinIO's `MINIO_KMS_SECRET_KEY`. For SSE-C objects: nothing server-side — the client supplies the customer key per request, as on MinIO. - The interop harness is the evidence chain: `rustfs/src/storage/minio_generated_read_test.rs` (`#[ignore]` reader tests over real MinIO-generated fixtures, run with `--features rio-v2`), the fixture lab under `crates/rio-v2/tests/minio_fixture_lab/`, and the `minio-interop` workflow. The SSE-C lane of that harness (customer-key handout from a fixture capture to the reader test) is not wired yet; SSE-C coverage currently lives in the unit suite, which builds the MinIO shape with the same sealing primitives the fixture suite proved byte-compatible. Known unverified edge: MinIO seals ETags on SSE objects (`SealETag`); RustFS does not unseal them, so ETag display and `If-Match` semantics on migrated SSE objects are not guaranteed to match MinIO's. ### Reverse direction Migrating back is also unsupported. Under `rio-v2` RustFS writes its own DEK envelope into MinIO's sealed-key metadata slots and labels it with MinIO's seal algorithm (`rustfs/src/storage/sse.rs:1830-1852`), so the metadata is MinIO-shaped while the key bytes are not MinIO-openable. Default builds do not populate those slots at all (`rustfs/src/storage/sse.rs:1796-1798`). Treat RustFS-written SSE objects as readable only by RustFS. ### Migration options - For static-KMS MinIO sources: run the migration through a `rio-v2` build with the shared master key (see above), either serving reads in place or copying objects out into a default-build cluster (the copy re-encrypts under RustFS's own KMS). - For KES/MinKMS-backed sources, or when a special-purpose build is not wanted: decrypt on the MinIO side first — rewrite the affected objects as plaintext, or copy them out through MinIO's S3 endpoint, which decrypts on read — and let RustFS apply its own encryption on ingest. - Leave encrypted objects on MinIO and migrate only unencrypted data. Inventory the source first — bucket default-encryption settings mean objects can be encrypted without the uploader having asked for it, so "we never set SSE headers" is not sufficient evidence that a bucket has no encrypted objects. ### SSE interop verdict | Item | Done | Partial | Todo | |---|:--:|:--:|:--:| | DARE V2 stream format parity | ✅ | | | | Object-key derivation / sealing parity | ✅ | | | | Managed-SSE detection accepts MinIO-written metadata (`rio-v2`) | ✅ | | | | MinIO builtin-KMS wrapped-DEK parser (raw + legacy JSON) | ✅ | | | | SSE-C detection accepts MinIO-written metadata (`rio-v2`) | ✅ | | | | Read MinIO-written SSE-S3 / SSE-KMS end to end, single- and multipart | ✅ | | | | Read MinIO-written SSE-C end to end | | ⚠️ unit-proven; fixture-lab lane unwired | | | Migrated-object sealed-ETag semantics | | | ❌ unverified | | KES / MinKMS / legacy `DARE-SHA256` sources | | | ❌ not planned | | RustFS-written SSE objects readable by MinIO | | | ❌ | | CI proof of SSE read parity | | ⚠️ `minio-interop` workflow; nightly once re-enabled | | --- ## Phased Plan The format is already close; the plan is verification, a source adapter, and closing the two partial encodings — not a rewrite. ### Phase 1 — Read parity, proven (verification) - Add a MinIO-writer fixture corpus for `xl.meta` (inline + multipart + versioned + delete-marker + transitioned) and assert RustFS parses each to a `FileInfo` equivalent to MinIO's, alongside the existing issue #2265 / #2288 fixtures in `crates/filemeta/src/filemeta.rs`. - Add a fixture `.metadata.bin` written by MinIO and assert `BucketMetadata::unmarshal` + `parse_all_configs` load every field without loss (`crates/ecstore/src/bucket/metadata.rs`). - Exit criterion: a CI job that fails if a real MinIO-written object or bucket blob cannot be read. #### Phase 1 status — first fixtures landed (verified 2026-07-07) A real MinIO `RELEASE.2025-07-23` single-drive instance wrote a bucket with versioning, object-lock (GOVERNANCE default), lifecycle, tagging, quota, and a public-download policy, plus inline / versioned / multipart objects. The on-disk `xl.meta` blobs are captured as hex fixtures (`crates/filemeta/tests/fixtures/minio/`, `crates/ecstore/tests/fixtures/minio/`). Proven by regression tests: - **Object `xl.meta` read parity** — `parses_real_minio_object_xlmeta` (`crates/filemeta/src/filemeta.rs`): small inline, two-object-version + delete marker, and multipart objects all parse to the expected `FileInfo`. - **Bucket-metadata parse parity** — `parses_real_minio_bucket_metadata_blob_without_loss` (`crates/ecstore/src/bucket/metadata.rs`): the msgpack blob decodes via the PascalCase MinIO field names, and `parse_all_configs` loads **all ten** config types present in the corpus without loss — policy, lifecycle (**including MinIO's `` extension**), object-lock, versioning, tagging, quota, notification, encryption (SSE-S3), and replication (**including the `DeleteMarkerReplication` / `ExistingObjectReplication` MinIO extensions**). - **Inline bucket-metadata read parity** — `reads_minio_inline_bucket_metadata_via_bitrot` (`crates/ecstore/src/bucket/metadata.rs`): MinIO stores an inlined object body as `[HighwayHash256 (32B)][body]`. The "`inline_data` 前缀不同" that weisd raised on 2026-03-06 is exactly that bitrot prefix — **not** a format incompatibility. Feeding the raw inline shard through RustFS's `BitrotReader` with the default `HighwayHash256S` verifies the checksum (confirming RustFS's hash matches MinIO's) and yields the exact `.metadata.bin` blob, which then parses. So the object-layer inline read is compatible; the earlier "extract `fi.data` directly" concern was reading the shard before the bitrot layer strips its prefix. - **End-to-end migration** — `migrates_real_minio_bucket_metadata_end_to_end` (`crates/ecstore/src/bucket/migration.rs`): on a throwaway 4-drive local `ECStore`, a real MinIO `.metadata.bin` seeded under a `.minio.sys` layout is migrated by `try_migrate_bucket_metadata` into `.rustfs.sys`, and the migrated blob carries every config (policy / lifecycle / object-lock / versioning / tagging / quota / notification / encryption / replication) byte-identical to the source. This exercises the Phase 2 source adapter (`MIGRATING_META_BUCKET = ".minio.sys"`) end-to-end through the object layer — proven, not just present. Still to broaden: transitioned `xl.meta`; CORS, public-access-block, and bucket ACL configs (the SNSD test binary/`mc` did not expose these); and bucket-targets credentials, which MinIO stores KMS-encrypted (a documented partial). These run as ordinary crate tests, so they already execute in the normal `cargo test`/nextest CI jobs. ### Phase 2 — MinIO source adapter for migration - Generalize the importer in `crates/ecstore/src/bucket/migration.rs` so the source can be a MinIO `.minio.sys/buckets//.metadata.bin` layout, not only the RustFS legacy meta bucket. Because the blob format matches, this is mostly source-path plumbing plus IAM record normalization reuse. - Exit criterion: importing a MinIO backup reproduces all backlog#580 bucket-config items with byte-identical config payloads. ### Phase 3 — Close the two partial encodings - bucket_targets: document/normalize the RustFS-only `bucket_targets_config_meta_json` so a round-trip through MinIO and back does not silently drop it; or fold its content into a MinIO-compatible representation. - bucket_acl: decide whether ACL grant semantics beyond canned ACLs are in scope; if not, keep the blob round-trippable but document the enforcement limit (already reflected in the router compatibility matrix). ### Phase 4 — Round-trip / write-back parity (non-goal for migration) Proving a MinIO binary can re-read a *RustFS-written drive set* (the reverse direction) is **out of scope for the migration use case**, which is one-way MinIO → RustFS: - RustFS's meta bucket is `.rustfs.sys` (`crates/ecstore/src/disk/mod.rs:29`); MinIO looks for `.minio.sys`. A MinIO binary pointed at a RustFS drive set does not find `format.json` or bucket configs and refuses the set — this is a set-level divergence, not an object-format one. - The object-level `xl.meta` format *does* match (proven above), so the reverse direction is limited by drive-set discovery, not by per-object encoding. - The supported flow is one-way: `try_migrate_bucket_metadata` / `try_migrate_iam_config` / `format.json` migration import a MinIO layout into RustFS. There is no requirement to keep a live MinIO able to serve RustFS-written drives. If a true bidirectional round-trip is ever needed, it would require RustFS to optionally write the `.minio.sys` set layout — a separate feature, not part of the interop/migration story tracked here. --- ## Guardrails - This document is analysis only. Any change to `crates/filemeta` or `crates/ecstore/src/bucket` metadata encoding is a storage-format change and must follow the migration and readiness contracts in [README.md](README.md) and the ecstore layout boundary rules. - The version constants (`XL_META_VERSION`, `BUCKET_METADATA_FORMAT`/`BUCKET_METADATA_VERSION`) are compatibility anchors. Bumping any of them requires a read-compat path for the prior value and a migration story, exactly as the current meta_ver 2 → 3 read path provides.