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

Investigate possible race on vc_templ recreation

    XMLWordPrintable

Details

    • Bug
    • Status: Open (View Workflow)
    • Major
    • Resolution: Unresolved
    • 10.2, 10.3, 10.4, 10.5, 10.6
    • 10.4, 10.5, 10.6
    • None
    • None

    Description

      In ha_innobase::inplace_alter_table:

      	rebuild_templ
      	     = ctx->need_rebuild()
      	       || ((ha_alter_info->handler_flags
      		& ALTER_COLUMN_EQUAL_PACK_LENGTH)
      		&& alter_templ_needs_rebuild(
      		   altered_table, ha_alter_info, ctx->new_table));
       
      	if ((ctx->new_table->n_v_cols > 0) && rebuild_templ) {
      		/* Save the templ if isn't NULL so as to restore the
      		original state in case of alter operation failures. */
      		if (ctx->new_table->vc_templ != NULL && !ctx->need_rebuild()) {
      			old_templ = ctx->new_table->vc_templ;
      		}
      		s_templ = UT_NEW_NOKEY(dict_vcol_templ_t());
       
      		innobase_build_v_templ(
      			altered_table, ctx->new_table, s_templ, NULL, false);
       
      		ctx->new_table->vc_templ = s_templ;
      	}
      

      inplace_alter_table can be done without any locks, so race condition is possible here in case of !ctx->need_rebuild().

      Idea: remove old_templ = ctx->new_table->vc_templ; and see what fails. Then construct a race test.

      The deinitalixation part looks also unsafe:

      	if (s_templ) {
      		ut_ad(ctx->need_rebuild() || ctx->num_to_add_vcol > 0
      		      || rebuild_templ);
      		dict_free_vc_templ(s_templ);
      		UT_DELETE(s_templ);
       
      		ctx->new_table->vc_templ = old_templ;
      	}
      

      Access-after-free looks very likely here.

      Attachments

        Issue Links

          Activity

            People

              nikitamalyavin Nikita Malyavin
              nikitamalyavin Nikita Malyavin
              Votes:
              0 Vote for this issue
              Watchers:
              2 Start watching this issue

              Dates

                Created:
                Updated:

                Git Integration

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