Skip to content

Commit b6c7a32

Browse files
paulburtonralfbaechle
authored andcommitted
MIPS: Fix get_frame_info() handling of microMIPS function size
get_frame_info() is meant to iterate over up to the first 128 instructions within a function, but for microMIPS kernels it will not reach that many instructions unless the function is 512 bytes long since we calculate the maximum number of instructions to check by dividing the function length by the 4 byte size of a union mips_instruction. In microMIPS kernels this won't do since instructions are variable length. Fix this by instead checking whether the pointer to the current instruction has reached the end of the function, and use max_insns as a simple constant to check the number of iterations against. Signed-off-by: Paul Burton <paul.burton@imgtec.com> Fixes: 34c2f66 ("MIPS: microMIPS: Add unaligned access support.") Cc: Leonid Yegoshin <leonid.yegoshin@imgtec.com> Cc: linux-mips@linux-mips.org Cc: <stable@vger.kernel.org> # v3.10+ Patchwork: https://patchwork.linux-mips.org/patch/14530/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
1 parent a3552da commit b6c7a32

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

arch/mips/kernel/process.c

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -294,9 +294,9 @@ static inline int is_sp_move_ins(union mips_instruction *ip)
294294
static int get_frame_info(struct mips_frame_info *info)
295295
{
296296
bool is_mmips = IS_ENABLED(CONFIG_CPU_MICROMIPS);
297-
union mips_instruction insn, *ip;
298-
unsigned max_insns = info->func_size / sizeof(union mips_instruction);
299-
unsigned i;
297+
union mips_instruction insn, *ip, *ip_end;
298+
const unsigned int max_insns = 128;
299+
unsigned int i;
300300

301301
info->pc_offset = -1;
302302
info->frame_size = 0;
@@ -305,11 +305,9 @@ static int get_frame_info(struct mips_frame_info *info)
305305
if (!ip)
306306
goto err;
307307

308-
if (max_insns == 0)
309-
max_insns = 128U; /* unknown function size */
310-
max_insns = min(128U, max_insns);
308+
ip_end = (void *)ip + info->func_size;
311309

312-
for (i = 0; i < max_insns; i++, ip++) {
310+
for (i = 0; i < max_insns && ip < ip_end; i++, ip++) {
313311
if (is_mmips && mm_insn_16bit(ip->halfword[0])) {
314312
insn.halfword[0] = 0;
315313
insn.halfword[1] = ip->halfword[0];

0 commit comments

Comments
 (0)