diff options
| author | Ed Maste <emaste@FreeBSD.org> | 2026-05-26 16:19:47 +0000 |
|---|---|---|
| committer | Ed Maste <emaste@FreeBSD.org> | 2026-06-07 17:10:53 +0000 |
| commit | deaaddf1d3c4283649945553ad7e3208c8424308 (patch) | |
| tree | 55064449460c62173526ed89a098577a8ca4f059 /sys/dev/vt/vt_buf.c | |
| parent | 95632c90ba32a55ec39a14ad7224a21d1c62c096 (diff) | |
vt: Avoid integer overflow in CONS_HISTORY ioctl
Reviewed by: markj, vexeduxr
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D57250
(cherry picked from commit 0ae946e7223df5ef3f7980af1d774d7f593f6421)
Diffstat (limited to 'sys/dev/vt/vt_buf.c')
| -rw-r--r-- | sys/dev/vt/vt_buf.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/sys/dev/vt/vt_buf.c b/sys/dev/vt/vt_buf.c index e1e4ebc23491..43657fcecbdc 100644 --- a/sys/dev/vt/vt_buf.c +++ b/sys/dev/vt/vt_buf.c @@ -499,7 +499,6 @@ vtbuf_grow(struct vt_buf *vb, const term_pos_t *p, unsigned int history_size) { term_char_t *old, *new, **rows, **oldrows, **copyrows, *row, *oldrow; unsigned int w, h, c, r, old_history_size; - size_t bufsize, rowssize; int history_full; const teken_attr_t *a; term_char_t ch; @@ -510,10 +509,10 @@ vtbuf_grow(struct vt_buf *vb, const term_pos_t *p, unsigned int history_size) history_size = MAX(history_size, p->tp_row); /* Allocate new buffer. */ - bufsize = history_size * p->tp_col * sizeof(term_char_t); - new = malloc(bufsize, M_VTBUF, M_WAITOK | M_ZERO); - rowssize = history_size * sizeof(term_pos_t *); - rows = malloc(rowssize, M_VTBUF, M_WAITOK | M_ZERO); + new = mallocarray(history_size, p->tp_col * sizeof(term_char_t), + M_VTBUF, M_WAITOK | M_ZERO); + rows = mallocarray(history_size, sizeof(term_pos_t *), M_VTBUF, + M_WAITOK | M_ZERO); /* Toggle it. */ VTBUF_LOCK(vb); |
