提交 0cff60c6 编写于 作者: J Jakob Bornecrantz 提交者: Dave Airlie

vmwgfx: Disallow user space to send present and readback commands

Signed-off-by: NJakob Bornecrantz <jakob@vmware.com>
Reviewed-by: NThomas Hellstrom <thellstrom@vmware.com>
Signed-off-by: NDave Airlie <airlied@redhat.com>
上级 2fcd5a73
...@@ -197,6 +197,12 @@ static int vmw_cmd_blt_surf_screen_check(struct vmw_private *dev_priv, ...@@ -197,6 +197,12 @@ static int vmw_cmd_blt_surf_screen_check(struct vmw_private *dev_priv,
} *cmd; } *cmd;
cmd = container_of(header, struct vmw_sid_cmd, header); cmd = container_of(header, struct vmw_sid_cmd, header);
if (unlikely(!sw_context->kernel)) {
DRM_ERROR("Kernel only SVGA3d command: %u.\n", cmd->header.id);
return -EPERM;
}
return vmw_cmd_sid_check(dev_priv, sw_context, &cmd->body.srcImage.sid); return vmw_cmd_sid_check(dev_priv, sw_context, &cmd->body.srcImage.sid);
} }
...@@ -210,6 +216,12 @@ static int vmw_cmd_present_check(struct vmw_private *dev_priv, ...@@ -210,6 +216,12 @@ static int vmw_cmd_present_check(struct vmw_private *dev_priv,
} *cmd; } *cmd;
cmd = container_of(header, struct vmw_sid_cmd, header); cmd = container_of(header, struct vmw_sid_cmd, header);
if (unlikely(!sw_context->kernel)) {
DRM_ERROR("Kernel only SVGA3d command: %u.\n", cmd->header.id);
return -EPERM;
}
return vmw_cmd_sid_check(dev_priv, sw_context, &cmd->body.sid); return vmw_cmd_sid_check(dev_priv, sw_context, &cmd->body.sid);
} }
...@@ -478,14 +490,12 @@ static int vmw_cmd_check_not_3d(struct vmw_private *dev_priv, ...@@ -478,14 +490,12 @@ static int vmw_cmd_check_not_3d(struct vmw_private *dev_priv,
void *buf, uint32_t *size) void *buf, uint32_t *size)
{ {
uint32_t size_remaining = *size; uint32_t size_remaining = *size;
bool need_kernel = true;
uint32_t cmd_id; uint32_t cmd_id;
cmd_id = le32_to_cpu(((uint32_t *)buf)[0]); cmd_id = le32_to_cpu(((uint32_t *)buf)[0]);
switch (cmd_id) { switch (cmd_id) {
case SVGA_CMD_UPDATE: case SVGA_CMD_UPDATE:
*size = sizeof(uint32_t) + sizeof(SVGAFifoCmdUpdate); *size = sizeof(uint32_t) + sizeof(SVGAFifoCmdUpdate);
need_kernel = false;
break; break;
case SVGA_CMD_DEFINE_GMRFB: case SVGA_CMD_DEFINE_GMRFB:
*size = sizeof(uint32_t) + sizeof(SVGAFifoCmdDefineGMRFB); *size = sizeof(uint32_t) + sizeof(SVGAFifoCmdDefineGMRFB);
...@@ -507,7 +517,7 @@ static int vmw_cmd_check_not_3d(struct vmw_private *dev_priv, ...@@ -507,7 +517,7 @@ static int vmw_cmd_check_not_3d(struct vmw_private *dev_priv,
return -EINVAL; return -EINVAL;
} }
if (unlikely(need_kernel && !sw_context->kernel)) { if (unlikely(!sw_context->kernel)) {
DRM_ERROR("Kernel only SVGA command: %u.\n", cmd_id); DRM_ERROR("Kernel only SVGA command: %u.\n", cmd_id);
return -EPERM; return -EPERM;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册