dm: video: check bounds for column and row
CSI H can be used to position the cursor. The calling application may specify a location that is beyond the limits of the screen. This may lead to an illegal memory access. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de> Signed-off-by: Alexander Graf <agraf@suse.de>
This commit is contained in:
parent
9d08f6db2a
commit
4b985e0035
1 changed files with 8 additions and 0 deletions
|
@ -213,6 +213,14 @@ static void vidconsole_escape_char(struct udevice *dev, char ch)
|
|||
s++; /* ; */
|
||||
s = parsenum(s, &col);
|
||||
|
||||
/*
|
||||
* Ensure we stay in the bounds of the screen.
|
||||
*/
|
||||
if (row >= priv->rows)
|
||||
row = priv->rows - 1;
|
||||
if (col >= priv->cols)
|
||||
col = priv->cols - 1;
|
||||
|
||||
priv->ycur = row * priv->y_charsize;
|
||||
priv->xcur_frac = priv->xstart_frac +
|
||||
VID_TO_POS(col * priv->x_charsize);
|
||||
|
|
Loading…
Reference in a new issue