blkparse: Avoid segfault for wrong cpu number.
authorTao Ma <boyu.mt@taobao.com>
Thu, 26 May 2011 19:11:07 +0000 (21:11 +0200)
committerJens Axboe <jaxboe@fusionio.com>
Thu, 26 May 2011 19:11:07 +0000 (21:11 +0200)
commit13d4859277102703a7ba1d64c2f5f8560eea5568
tree0a8c83704fd7423d5b57edcdee2dc539737d4783
parente3d388e310fb9ae8aad89cfc728f8d19c6fb6579
blkparse: Avoid segfault for wrong cpu number.

Currently we only check the magic number to see whether
a blktrace is valid or not, but Bill Broadley did meet
with a case that the cpu info is wrong with a number
of 1725552676. So in resize_cpu_info, we meet with a
overflow when calculating
size = new_count * sizeof(struct per_cpu_info);
And the program will be either segfault or has the error
of out of memory. Although this is more likely a kernel
problem, the blkparse shoudn't segfault for it.

So this patch just check whether the cpu stored in the
trace is the same as the file, if not, just warn it out
and skip it.

Cc: Jens Axboe <axboe@kernel.dk>
Reported-by: Bill Broadley <bill@broadley.org>
Signed-off-by: Tao Ma <boyu.mt@taobao.com>
Signed-off-by: Jens Axboe <jaxboe@fusionio.com>
blkparse.c