[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-4.1-testing] tmem: check for a valid client ("domain") in the save subops
# HG changeset patch # User Ian Campbell <ian.campbell@xxxxxxxxxx> # Date 1348568725 -7200 # Node ID 8dba0836f71b0ff37861dc42eae7d4c78b10dbe5 # Parent 6f61607a074b407b0f6303b6bd09382c0e27576c tmem: check for a valid client ("domain") in the save subops This is part of XSA-15 / CVE-2012-3497. Signed-off-by: Ian Campbell <ian.campbell@xxxxxxxxxx> Acked-by: Jan Beulich <jbeulich@xxxxxxxx> Acked-by: Dan Magenheimer <dan.magenheimer@xxxxxxxxxx> xen-unstable changeset: 25853:f53c5aadbba9 xen-unstable date: Tue Sep 11 12:17:27 UTC 2012 --- diff -r 6f61607a074b -r 8dba0836f71b xen/common/tmem.c --- a/xen/common/tmem.c Tue Sep 25 12:24:57 2012 +0200 +++ b/xen/common/tmem.c Tue Sep 25 12:25:25 2012 +0200 @@ -2382,12 +2382,18 @@ static NOINLINE int tmemc_save_subop(int rc = MAX_POOLS_PER_DOMAIN; break; case TMEMC_SAVE_GET_CLIENT_WEIGHT: + if ( client == NULL ) + break; rc = client->weight == -1 ? -2 : client->weight; break; case TMEMC_SAVE_GET_CLIENT_CAP: + if ( client == NULL ) + break; rc = client->cap == -1 ? -2 : client->cap; break; case TMEMC_SAVE_GET_CLIENT_FLAGS: + if ( client == NULL ) + break; rc = (client->compress ? TMEM_CLIENT_COMPRESS : 0 ) | (client->was_frozen ? TMEM_CLIENT_FROZEN : 0 ); break; @@ -2411,6 +2417,8 @@ static NOINLINE int tmemc_save_subop(int *uuid = pool->uuid[1]; rc = 0; case TMEMC_SAVE_END: + if ( client == NULL ) + break; client->live_migrating = 0; if ( !list_empty(&client->persistent_invalidated_list) ) list_for_each_entry_safe(pgp,pgp2, _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |