drm_prime: double free bug

This commit fixes a bug where handle for a framebuffer gets double
freed.
It seems to happen that the same prime fd gets two framebuffers.
As the prime fd is the same the resulting prime handle is also the
same.
This means one handle but 2 framebuffers and can lead to the following
chain:

1. The first framebuffer gets deleted the handle gets also freed via
the ioctl.

2. In startup phase not all 4 dumb buffers for overlay drawing
are set up. It can happen that the last dumb buffer gets the
handle we freed above.

3. The second framebuffer gets freed and the handle will be
freed again resulting that the 4's dumb buffer handle is not
backed by a buffer.

4. Drm prime continues to assign handles to its prime fds an
will lead to have this handle which was just freed to
reassign again but to an prime buffer.

5.Now the overlay should be drawn into dumb buffer 4 which
still has the same handle but is backed by the wrong buffer.
This leads to two different behaviors:

- MPV crashes as the drm prime buffers size als calculated
by the decoder output format. The overlay output format
differs and it takes more space. SO the size check
in kernel fails.

- MPV is continuing play. This happens when the decoders
allocates a bigger buffer than needed for the overlay.
For example overlay is Full HD and decoder output is 4k.
This leads to the behavior das the overlay wil be drawn
into the wrong buffer as its a drm prime buffer and results
in a flicker every fourth step.
This commit is contained in:
Sven Kroeger 2020-03-04 12:48:40 +01:00 committed by wm4
parent 8b24510388
commit fc8c1fcfb2
3 changed files with 93 additions and 15 deletions

View File

@ -24,8 +24,10 @@
#include "drm_common.h"
#include "drm_prime.h"
int drm_prime_create_framebuffer(struct mp_log *log, int fd, AVDRMFrameDescriptor *descriptor, int width, int height,
struct drm_prime_framebuffer *framebuffer)
int drm_prime_create_framebuffer(struct mp_log *log, int fd,
AVDRMFrameDescriptor *descriptor, int width,
int height, struct drm_prime_framebuffer *framebuffer,
struct drm_prime_handle_refs *handle_refs)
{
AVDRMLayerDescriptor *layer = NULL;
uint32_t pitches[4], offsets[4], handles[4];
@ -36,12 +38,14 @@ int drm_prime_create_framebuffer(struct mp_log *log, int fd, AVDRMFrameDescripto
*framebuffer = (struct drm_prime_framebuffer){0};
for (int object = 0; object < descriptor->nb_objects; object++) {
ret = drmPrimeFDToHandle(fd, descriptor->objects[object].fd, &framebuffer->gem_handles[object]);
ret = drmPrimeFDToHandle(fd, descriptor->objects[object].fd,
&framebuffer->gem_handles[object]);
if (ret < 0) {
mp_err(log, "Failed to retrieve the Prime Handle from handle %d (%d).\n", object, descriptor->objects[object].fd);
mp_err(log, "Failed to retrieve the Prime Handle from handle %d (%d).\n",
object, descriptor->objects[object].fd);
goto fail;
}
if(object == 0) {
if (object == 0) {
modifiers[object] = descriptor->objects[object].format_modifier;
}
}
@ -64,12 +68,17 @@ int drm_prime_create_framebuffer(struct mp_log *log, int fd, AVDRMFrameDescripto
}
ret = drmModeAddFB2WithModifiers(fd, width, height, layer->format,
handles, pitches, offsets, modifiers, &framebuffer->fb_id, DRM_MODE_FB_MODIFIERS);
handles, pitches, offsets,
modifiers, &framebuffer->fb_id,
DRM_MODE_FB_MODIFIERS);
if (ret < 0) {
mp_err(log, "Failed to create framebuffer on layer %d.\n", 0);
goto fail;
}
}
for (int plane = 0; plane < AV_DRM_MAX_PLANES; plane++) {
drm_prime_add_handle_ref(handle_refs, framebuffer->gem_handles[plane]);
}
}
return 0;
@ -78,15 +87,66 @@ fail:
return -1;
}
void drm_prime_destroy_framebuffer(struct mp_log *log, int fd, struct drm_prime_framebuffer *framebuffer)
void drm_prime_destroy_framebuffer(struct mp_log *log, int fd,
struct drm_prime_framebuffer *framebuffer,
struct drm_prime_handle_refs *handle_refs)
{
if (framebuffer->fb_id)
drmModeRmFB(fd, framebuffer->fb_id);
for (int i = 0; i < AV_DRM_MAX_PLANES; i++) {
if (framebuffer->gem_handles[i])
drmIoctl(fd, DRM_IOCTL_GEM_CLOSE, &framebuffer->gem_handles[i]);
if (framebuffer->gem_handles[i]) {
drm_prime_remove_handle_ref(handle_refs,
framebuffer->gem_handles[i]);
if (!drm_prime_get_handle_ref_count(handle_refs,
framebuffer->gem_handles[i])) {
drmIoctl(fd, DRM_IOCTL_GEM_CLOSE, &framebuffer->gem_handles[i]);
}
}
}
memset(framebuffer, 0, sizeof(*framebuffer));
}
void drm_prime_init_handle_ref_count(void *talloc_parent,
struct drm_prime_handle_refs *handle_refs)
{
handle_refs->handle_ref_count = talloc_zero(talloc_parent, uint32_t);
handle_refs->size = 1;
handle_refs->ctx = talloc_parent;
}
void drm_prime_add_handle_ref(struct drm_prime_handle_refs *handle_refs,
uint32_t handle)
{
if (handle) {
if (handle > handle_refs->size) {
handle_refs->size = handle;
MP_TARRAY_GROW(handle_refs->ctx, handle_refs->handle_ref_count,
handle_refs->size);
}
handle_refs->handle_ref_count[handle - 1]++;
}
}
void drm_prime_remove_handle_ref(struct drm_prime_handle_refs *handle_refs,
uint32_t handle)
{
if (handle) {
if (handle <= handle_refs->size &&
handle_refs->handle_ref_count[handle - 1])
{
handle_refs->handle_ref_count[handle - 1]--;
}
}
}
uint32_t drm_prime_get_handle_ref_count(struct drm_prime_handle_refs *handle_refs,
uint32_t handle)
{
if (handle) {
if (handle <= handle_refs->size)
return handle_refs->handle_ref_count[handle - 1];
}
return 0;
}

View File

@ -27,7 +27,19 @@ struct drm_prime_framebuffer {
uint32_t gem_handles[AV_DRM_MAX_PLANES];
};
struct drm_prime_handle_refs {
uint32_t *handle_ref_count;
size_t size;
void *ctx;
};
int drm_prime_create_framebuffer(struct mp_log *log, int fd, AVDRMFrameDescriptor *descriptor, int width, int height,
struct drm_prime_framebuffer *framebuffers);
void drm_prime_destroy_framebuffer(struct mp_log *log, int fd, struct drm_prime_framebuffer *framebuffers);
struct drm_prime_framebuffer *framebuffers,
struct drm_prime_handle_refs *handle_refs);
void drm_prime_destroy_framebuffer(struct mp_log *log, int fd, struct drm_prime_framebuffer *framebuffers,
struct drm_prime_handle_refs *handle_refs);
void drm_prime_init_handle_ref_count(void *talloc_parent, struct drm_prime_handle_refs *handle_refs);
void drm_prime_add_handle_ref(struct drm_prime_handle_refs *handle_refs, uint32_t handle);
void drm_prime_remove_handle_ref(struct drm_prime_handle_refs *handle_refs, uint32_t handle);
uint32_t drm_prime_get_handle_ref_count(struct drm_prime_handle_refs *handle_refs, uint32_t handle);
#endif // DRM_PRIME_H

View File

@ -55,6 +55,8 @@ struct priv {
struct mp_rect src, dst;
int display_w, display_h;
struct drm_prime_handle_refs handle_refs;
};
static void set_current_frame(struct ra_hwdec *hw, struct drm_frame *frame)
@ -68,7 +70,7 @@ static void set_current_frame(struct ra_hwdec *hw, struct drm_frame *frame)
// is not being displayed when we release it.
if (p->ctx) {
drm_prime_destroy_framebuffer(p->log, p->ctx->fd, &p->old_frame.fb);
drm_prime_destroy_framebuffer(p->log, p->ctx->fd, &p->old_frame.fb, &p->handle_refs);
}
mp_image_setrefp(&p->old_frame.image, p->last_frame.image);
@ -183,7 +185,7 @@ static int overlay_frame(struct ra_hwdec *hw, struct mp_image *hw_image,
int dstw = MP_ALIGN_UP(p->dst.x1 - p->dst.x0, 2);
int dsth = MP_ALIGN_UP(p->dst.y1 - p->dst.y0, 2);
if (drm_prime_create_framebuffer(p->log, p->ctx->fd, desc, srcw, srch, &next_frame.fb)) {
if (drm_prime_create_framebuffer(p->log, p->ctx->fd, desc, srcw, srch, &next_frame.fb, &p->handle_refs)) {
ret = -1;
goto fail;
}
@ -222,7 +224,7 @@ static int overlay_frame(struct ra_hwdec *hw, struct mp_image *hw_image,
return 0;
fail:
drm_prime_destroy_framebuffer(p->log, p->ctx->fd, &next_frame.fb);
drm_prime_destroy_framebuffer(p->log, p->ctx->fd, &next_frame.fb, &p->handle_refs);
return ret;
}
@ -288,6 +290,10 @@ static int init(struct ra_hwdec *hw)
goto err;
}
if (has_prime) {
drm_prime_init_handle_ref_count(p, &p->handle_refs);
}
disable_video_plane(hw);
p->hwctx = (struct mp_hwdec_ctx) {