Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 12 Mar 2017 13:49:00 +0000
From:      bugzilla-noreply@freebsd.org
To:        freebsd-bugs@FreeBSD.org
Subject:   [Bug 217435] Users can panic the kernel by tracing kevents with unusual arguments.
Message-ID:  <bug-217435-8-YzeN2jJlPf@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-217435-8@https.bugs.freebsd.org/bugzilla/>
References:  <bug-217435-8@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D217435

--- Comment #2 from commit-hook@freebsd.org ---
A commit references this bug:

Author: kib
Date: Sun Mar 12 13:48:25 UTC 2017
New revision: 315155
URL: https://svnweb.freebsd.org/changeset/base/315155

Log:
  Ktracing kevent(2) calls with unusual arguments might leads to an
  overly large allocation requests.

  When ktrace-ing io, sys_kevent() allocates memory to copy the
  requested changes and reported events.  Allocations are sized by the
  incoming syscall lengths arguments, which are user-controlled, and
  might cause overflow in calculations or too large allocations.

  Since io trace chunks are limited by ktr_geniosize, there is no sense
  it even trying to satisfy unbounded allocations.  Export ktr_geniosize
  and clamp the buffers sizes in advance.

  PR:   217435
  Reported by:  Tim Newsham <tim.newsham@nccgroup.trust>
  Sponsored by: The FreeBSD Foundation
  MFC after:    1 week

Changes:
  head/sys/kern/kern_event.c
  head/sys/kern/kern_ktrace.c
  head/sys/sys/ktrace.h

--=20
You are receiving this mail because:
You are the assignee for the bug.=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-217435-8-YzeN2jJlPf>