From mboxrd@z Thu Jan 1 00:00:00 1970 From: Olaf Hering Subject: [PATCH 2 of 4] xentrace: fix type of offset to avoid ouf-of-bounds access Date: Tue, 10 May 2011 16:32:37 +0200 Message-ID: <575bf78214ef193e4480.1305037957@localhost> References: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: xen-devel@lists.xensource.com Cc: George Dunlap List-Id: xen-devel@lists.xenproject.org # HG changeset patch # User Olaf Hering # Date 1305037381 -7200 # Node ID 575bf78214ef193e44806aa9766e084d721783b5 # Parent 8ac937fa527b28243227193bf4749feb3a234c2c xentrace: fix type of offset to avoid ouf-of-bounds access Update the type of the local offset variable to match the type where this variable is stored. Also update the type of t_info_first_offset because it has also a limited range. Signed-off-by: Olaf Hering diff -r 8ac937fa527b -r 575bf78214ef xen/common/trace.c --- a/xen/common/trace.c Tue May 10 16:23:00 2011 +0200 +++ b/xen/common/trace.c Tue May 10 16:23:01 2011 +0200 @@ -106,7 +106,7 @@ static uint32_t calc_tinfo_first_offset( * The t_info layout is fixed and cant be changed without breaking xentrace. * Initialize t_info_pages based on number of trace pages. */ -static int calculate_tbuf_size(unsigned int pages, uint32_t t_info_first_offset) +static int calculate_tbuf_size(unsigned int pages, uint16_t t_info_first_offset) { struct t_buf dummy_size; typeof(dummy_size.prod) max_size; @@ -170,8 +170,8 @@ static int alloc_trace_bufs(unsigned int int i, cpu, order; /* Start after a fixed-size array of NR_CPUS */ uint32_t *t_info_mfn_list; - uint32_t t_info_first_offset; - int offset; + uint16_t t_info_first_offset; + uint16_t offset; if ( t_info ) return -EBUSY; @@ -179,7 +179,7 @@ static int alloc_trace_bufs(unsigned int if ( pages == 0 ) return -EINVAL; - /* Calculate offset in u32 of first mfn */ + /* Calculate offset in units of u32 of first mfn */ t_info_first_offset = calc_tinfo_first_offset(); pages = calculate_tbuf_size(pages, t_info_first_offset);