Uploaded image for project: 'MariaDB Server'
  1. MariaDB Server
  2. MDEV-19335

Removal of encrypted from buf_page_t

Details

    Description

      A data import (using SQLines as import tool) into encrypted tables failed with:

      SHOW WARNINGS: LOAD DATA LOCAL INFILE 'filename' IGNORE INTO
      TABLE db_name.table:name
      Level: Warning; Code: 192; Message: Table
      db_name.table_name is encrypted but encryption service or used
      key_id is not available. Can't continue reading table.
      Level: Warning; Code: 192; Message: Table
      db_name.table_name is encrypted but encryption service or used
      key_id is not available. Can't continue reading table.
      Level: Error; Code: 1296; Message: Got error 192 'Table encrypted but
      decryption failed. This could be because correct encryption management
      plugin is not loaded, used encryption key is not available or encryption
      method does not match.' from InnoDB
      

      Simple file_key_management is used to manage encryption keys,
      all tables use the same key id, and there has only been a single
      key version.

      Still just this one table reports encryption key errors, while other
      encrypted tables using the same key id and version still work fine.

      E.g. when checing tablespace encryption information for the table "table_name" triggering the error, and another table "other_table" that works fine, there are no visible differences apart from the space number and table name:

      SELECT * FROM
      INFORMATION_SCHEMA.INNODB_TABLESPACES_ENCRYPTION
      WHERE NAME in
      ('db_name/table_name', 'db_name/other_table')\G
      *************************** 1. row ***************************
      SPACE: 3406
      NAME: db_name/other_table
      ENCRYPTION_SCHEME: 1
      KEYSERVER_REQUESTS: 1
      MIN_KEY_VERSION: 1
      CURRENT_KEY_VERSION: 1
      KEY_ROTATION_PAGE_NUMBER: NULL
      KEY_ROTATION_MAX_PAGE_NUMBER: NULL
      CURRENT_KEY_ID: 1
      ROTATING_OR_FLUSHING: 0
      *************************** 2. row ***************************
      SPACE: 3449
      NAME: db_name/table_name
      ENCRYPTION_SCHEME: 1
      KEYSERVER_REQUESTS: 1
      MIN_KEY_VERSION: 1
      CURRENT_KEY_VERSION: 1
      KEY_ROTATION_PAGE_NUMBER: NULL
      KEY_ROTATION_MAX_PAGE_NUMBER: NULL
      CURRENT_KEY_ID: 1
      ROTATING_OR_FLUSHING: 0
      

      Error log repeatedly contains:

      [ERROR] InnoDB: Failed to read file
      './db_name/table_name.ibd' at offset 1162674: Table is
      encrypted but decrypt failed.
      [ERROR] InnoDB: The page [page id: space=3449, page
      number=1162674] in file './db_name/table_name.ibd' cannot be
      decrypted.
      [Note] InnoDB: However key management plugin or used key_version
      1 is not found or used encryption algorithm or method does not match.
      [Note] InnoDB: Marking tablespace as missing. You may drop this
      table or install correct key management plugin and key file.
      

      Attachments

        Issue Links

          Activity

            hholzgra Hartmut Holzgraefe created issue -
            hholzgra Hartmut Holzgraefe made changes -
            Field Original Value New Value
            Description A data import (using SQLines as import tool) into encrypted tables failed with:

            {noformat}
            SHOW WARNINGS: LOAD DATA LOCAL INFILE 'filename' IGNORE INTO
            TABLE db_name.table:name
            Level: Warning; Code: 192; Message: Table
            db_name.table_name is encrypted but encryption service or used
            key_id is not available. Can't continue reading table.
            Level: Warning; Code: 192; Message: Table
            db_name.table_name is encrypted but encryption service or used
            key_id is not available. Can't continue reading table.
            Level: Error; Code: 1296; Message: Got error 192 'Table encrypted but
            decryption failed. This could be because correct encryption management
            plugin is not loaded, used encryption key is not available or encryption
            method does not match.' from InnoDB
            {noformat}

            Simple file_key_management is used to manage encryption keys,
            all tables use the same key id, and there has only been a single
            key version.

            Still just this one table reports encryption key errors, while other
            encrypted tables using the same key id and version still work fine.

            E.g.:

            {noformat}
            SELECT * FROM
            INFORMATION_SCHEMA.INNODB_TABLESPACES_ENCRYPTION
            WHERE NAME in
            ('db_name/table_name', 'db_name/other_table')\G
            *************************** 1. row ***************************
            SPACE: 3406
            NAME: db_name/other_table
            ENCRYPTION_SCHEME: 1
            KEYSERVER_REQUESTS: 1
            MIN_KEY_VERSION: 1
            CURRENT_KEY_VERSION: 1
            KEY_ROTATION_PAGE_NUMBER: NULL
            KEY_ROTATION_MAX_PAGE_NUMBER: NULL
            CURRENT_KEY_ID: 1
            ROTATING_OR_FLUSHING: 0
            *************************** 2. row ***************************
            SPACE: 3449
            NAME: db_name/table_name
            ENCRYPTION_SCHEME: 1
            KEYSERVER_REQUESTS: 1
            MIN_KEY_VERSION: 1
            CURRENT_KEY_VERSION: 1
            KEY_ROTATION_PAGE_NUMBER: NULL
            KEY_ROTATION_MAX_PAGE_NUMBER: NULL
            CURRENT_KEY_ID: 1
            ROTATING_OR_FLUSHING: 0
            {noformat}
            A data import (using SQLines as import tool) into encrypted tables failed with:

            {noformat}
            SHOW WARNINGS: LOAD DATA LOCAL INFILE 'filename' IGNORE INTO
            TABLE db_name.table:name
            Level: Warning; Code: 192; Message: Table
            db_name.table_name is encrypted but encryption service or used
            key_id is not available. Can't continue reading table.
            Level: Warning; Code: 192; Message: Table
            db_name.table_name is encrypted but encryption service or used
            key_id is not available. Can't continue reading table.
            Level: Error; Code: 1296; Message: Got error 192 'Table encrypted but
            decryption failed. This could be because correct encryption management
            plugin is not loaded, used encryption key is not available or encryption
            method does not match.' from InnoDB
            {noformat}

            Simple file_key_management is used to manage encryption keys,
            all tables use the same key id, and there has only been a single
            key version.

            Still just this one table reports encryption key errors, while other
            encrypted tables using the same key id and version still work fine.

            E.g.:

            {noformat}
            SELECT * FROM
            INFORMATION_SCHEMA.INNODB_TABLESPACES_ENCRYPTION
            WHERE NAME in
            ('db_name/table_name', 'db_name/other_table')\G
            *************************** 1. row ***************************
            SPACE: 3406
            NAME: db_name/other_table
            ENCRYPTION_SCHEME: 1
            KEYSERVER_REQUESTS: 1
            MIN_KEY_VERSION: 1
            CURRENT_KEY_VERSION: 1
            KEY_ROTATION_PAGE_NUMBER: NULL
            KEY_ROTATION_MAX_PAGE_NUMBER: NULL
            CURRENT_KEY_ID: 1
            ROTATING_OR_FLUSHING: 0
            *************************** 2. row ***************************
            SPACE: 3449
            NAME: db_name/table_name
            ENCRYPTION_SCHEME: 1
            KEYSERVER_REQUESTS: 1
            MIN_KEY_VERSION: 1
            CURRENT_KEY_VERSION: 1
            KEY_ROTATION_PAGE_NUMBER: NULL
            KEY_ROTATION_MAX_PAGE_NUMBER: NULL
            CURRENT_KEY_ID: 1
            ROTATING_OR_FLUSHING: 0
            {noformat}

            Error log repeatedly contains:

            {noformat}
            [ERROR] InnoDB: Failed to read file
            './db_name/table_name.ibd' at offset 1162674: Table is
            encrypted but decrypt failed.
            [ERROR] InnoDB: The page [page id: space=3449, page
            number=1162674] in file './db_name/table_name.ibd' cannot be
            decrypted.
            [Note] InnoDB: However key management plugin or used key_version
            1 is not found or used encryption algorithm or method does not match.
            [Note] InnoDB: Marking tablespace as missing. You may drop this
            table or install correct key management plugin and key file.
            {noformat}
            hholzgra Hartmut Holzgraefe made changes -
            Description A data import (using SQLines as import tool) into encrypted tables failed with:

            {noformat}
            SHOW WARNINGS: LOAD DATA LOCAL INFILE 'filename' IGNORE INTO
            TABLE db_name.table:name
            Level: Warning; Code: 192; Message: Table
            db_name.table_name is encrypted but encryption service or used
            key_id is not available. Can't continue reading table.
            Level: Warning; Code: 192; Message: Table
            db_name.table_name is encrypted but encryption service or used
            key_id is not available. Can't continue reading table.
            Level: Error; Code: 1296; Message: Got error 192 'Table encrypted but
            decryption failed. This could be because correct encryption management
            plugin is not loaded, used encryption key is not available or encryption
            method does not match.' from InnoDB
            {noformat}

            Simple file_key_management is used to manage encryption keys,
            all tables use the same key id, and there has only been a single
            key version.

            Still just this one table reports encryption key errors, while other
            encrypted tables using the same key id and version still work fine.

            E.g.:

            {noformat}
            SELECT * FROM
            INFORMATION_SCHEMA.INNODB_TABLESPACES_ENCRYPTION
            WHERE NAME in
            ('db_name/table_name', 'db_name/other_table')\G
            *************************** 1. row ***************************
            SPACE: 3406
            NAME: db_name/other_table
            ENCRYPTION_SCHEME: 1
            KEYSERVER_REQUESTS: 1
            MIN_KEY_VERSION: 1
            CURRENT_KEY_VERSION: 1
            KEY_ROTATION_PAGE_NUMBER: NULL
            KEY_ROTATION_MAX_PAGE_NUMBER: NULL
            CURRENT_KEY_ID: 1
            ROTATING_OR_FLUSHING: 0
            *************************** 2. row ***************************
            SPACE: 3449
            NAME: db_name/table_name
            ENCRYPTION_SCHEME: 1
            KEYSERVER_REQUESTS: 1
            MIN_KEY_VERSION: 1
            CURRENT_KEY_VERSION: 1
            KEY_ROTATION_PAGE_NUMBER: NULL
            KEY_ROTATION_MAX_PAGE_NUMBER: NULL
            CURRENT_KEY_ID: 1
            ROTATING_OR_FLUSHING: 0
            {noformat}

            Error log repeatedly contains:

            {noformat}
            [ERROR] InnoDB: Failed to read file
            './db_name/table_name.ibd' at offset 1162674: Table is
            encrypted but decrypt failed.
            [ERROR] InnoDB: The page [page id: space=3449, page
            number=1162674] in file './db_name/table_name.ibd' cannot be
            decrypted.
            [Note] InnoDB: However key management plugin or used key_version
            1 is not found or used encryption algorithm or method does not match.
            [Note] InnoDB: Marking tablespace as missing. You may drop this
            table or install correct key management plugin and key file.
            {noformat}
            A data import (using SQLines as import tool) into encrypted tables failed with:

            {noformat}
            SHOW WARNINGS: LOAD DATA LOCAL INFILE 'filename' IGNORE INTO
            TABLE db_name.table:name
            Level: Warning; Code: 192; Message: Table
            db_name.table_name is encrypted but encryption service or used
            key_id is not available. Can't continue reading table.
            Level: Warning; Code: 192; Message: Table
            db_name.table_name is encrypted but encryption service or used
            key_id is not available. Can't continue reading table.
            Level: Error; Code: 1296; Message: Got error 192 'Table encrypted but
            decryption failed. This could be because correct encryption management
            plugin is not loaded, used encryption key is not available or encryption
            method does not match.' from InnoDB
            {noformat}

            Simple file_key_management is used to manage encryption keys,
            all tables use the same key id, and there has only been a single
            key version.

            Still just this one table reports encryption key errors, while other
            encrypted tables using the same key id and version still work fine.

            E.g. when checing tablespace encryption information for the table "table_name" triggering the error, and another table "other_table" that works fine, there are no visible differences apart from the space number and table name:

            {noformat}
            SELECT * FROM
            INFORMATION_SCHEMA.INNODB_TABLESPACES_ENCRYPTION
            WHERE NAME in
            ('db_name/table_name', 'db_name/other_table')\G
            *************************** 1. row ***************************
            SPACE: 3406
            NAME: db_name/other_table
            ENCRYPTION_SCHEME: 1
            KEYSERVER_REQUESTS: 1
            MIN_KEY_VERSION: 1
            CURRENT_KEY_VERSION: 1
            KEY_ROTATION_PAGE_NUMBER: NULL
            KEY_ROTATION_MAX_PAGE_NUMBER: NULL
            CURRENT_KEY_ID: 1
            ROTATING_OR_FLUSHING: 0
            *************************** 2. row ***************************
            SPACE: 3449
            NAME: db_name/table_name
            ENCRYPTION_SCHEME: 1
            KEYSERVER_REQUESTS: 1
            MIN_KEY_VERSION: 1
            CURRENT_KEY_VERSION: 1
            KEY_ROTATION_PAGE_NUMBER: NULL
            KEY_ROTATION_MAX_PAGE_NUMBER: NULL
            CURRENT_KEY_ID: 1
            ROTATING_OR_FLUSHING: 0
            {noformat}

            Error log repeatedly contains:

            {noformat}
            [ERROR] InnoDB: Failed to read file
            './db_name/table_name.ibd' at offset 1162674: Table is
            encrypted but decrypt failed.
            [ERROR] InnoDB: The page [page id: space=3449, page
            number=1162674] in file './db_name/table_name.ibd' cannot be
            decrypted.
            [Note] InnoDB: However key management plugin or used key_version
            1 is not found or used encryption algorithm or method does not match.
            [Note] InnoDB: Marking tablespace as missing. You may drop this
            table or install correct key management plugin and key file.
            {noformat}
            elenst Elena Stepanova made changes -
            Fix Version/s 10.3 [ 22126 ]
            Assignee Marko Mäkelä [ marko ]
            thiru Thirunarayanan Balathandayuthapani made changes -
            Assignee Marko Mäkelä [ marko ] Thirunarayanan Balathandayuthapani [ thiru ]
            thiru Thirunarayanan Balathandayuthapani made changes -
            Status Open [ 1 ] In Progress [ 3 ]
            marko Marko Mäkelä made changes -
            thiru Thirunarayanan Balathandayuthapani made changes -
            Summary decryption failure on a single table Removal of encrypted from buf_page_t
            thiru Thirunarayanan Balathandayuthapani made changes -
            Assignee Thirunarayanan Balathandayuthapani [ thiru ] Marko Mäkelä [ marko ]
            Status In Progress [ 3 ] In Review [ 10002 ]
            marko Marko Mäkelä made changes -
            Fix Version/s 10.2 [ 14601 ]
            Fix Version/s 10.4 [ 22408 ]
            marko Marko Mäkelä made changes -
            issue.field.resolutiondate 2019-10-09 10:27:07.0 2019-10-09 10:27:07.754
            marko Marko Mäkelä made changes -
            Fix Version/s 10.2.28 [ 23910 ]
            Fix Version/s 10.3.19 [ 23908 ]
            Fix Version/s 10.4.9 [ 23906 ]
            Fix Version/s 10.2 [ 14601 ]
            Fix Version/s 10.3 [ 22126 ]
            Fix Version/s 10.4 [ 22408 ]
            Assignee Marko Mäkelä [ marko ] Thirunarayanan Balathandayuthapani [ thiru ]
            Resolution Fixed [ 1 ]
            Status In Review [ 10002 ] Closed [ 6 ]
            marko Marko Mäkelä made changes -
            Comment [ Pushed to a staging three of 10.2 for additional testing. ]
            serg Sergei Golubchik made changes -
            Workflow MariaDB v3 [ 96358 ] MariaDB v4 [ 156117 ]
            mariadb-jira-automation Jira Automation (IT) made changes -
            Zendesk Related Tickets 148077

            People

              thiru Thirunarayanan Balathandayuthapani
              hholzgra Hartmut Holzgraefe
              Votes:
              0 Vote for this issue
              Watchers:
              6 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved:

                Git Integration

                  Error rendering 'com.xiplink.jira.git.jira_git_plugin:git-issue-webpanel'. Please contact your Jira administrators.