OSDN Git Service

linux-user: Assert on bad type in thunk_type_align() and thunk_type_size()
authorPeter Maydell <peter.maydell@linaro.org>
Mon, 14 May 2018 17:46:16 +0000 (18:46 +0100)
committerLaurent Vivier <laurent@vivier.eu>
Thu, 24 May 2018 18:46:54 +0000 (20:46 +0200)
commit75578d6fcedc55b85b44dfc83f506b74c32b7395
tree25734ae87abd2de29adf898baead6da15ac56ca2
parent62b9b076d9d37117696ec64f0b3544c1205ff7f9
linux-user: Assert on bad type in thunk_type_align() and thunk_type_size()

In thunk_type_align() and thunk_type_size() we currently return
-1 if the value at the type_ptr isn't one of the TYPE_* values
we understand. However, this should never happen, and if it does
then the calling code will go confusingly wrong because none
of the callsites try to handle an error return. Switch to an
assertion instead, so that if this does somehow happen we'll have
a nice clear backtrace of what happened rather than a weird crash
or misbehaviour.

This also silences various Coverity complaints about not handling
the negative return value (CID 1005735100573610057381390582).

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Laurent Vivier <laurent@vivier.eu>
Message-Id: <20180514174616.19601-1-peter.maydell@linaro.org>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
include/exec/user/thunk.h