[PATCH 3/4] drm: Add decoding of DRM ioctls

Patrik Jakobsson pjakobsson at suse.de
Tue Mar 12 07:49:18 UTC 2019


* drm.c (drm_version, drm_set_version, drm_get_unique, drm_get_magic,
drm_wait_vblank, drm_mode_get_resources, drm_mode_print_modeinfo,
drm_mode_get_crtc, drm_mode_set_crtc, drm_mode_cursor, drm_mode_cursor2,
drm_mode_get_gamma, drm_mode_set_gamma, drm_mode_get_encoder,
drm_mode_get_connector, drm_mode_get_property, drm_mode_set_property,
drm_mode_get_prop_blob, drm_mode_add_fb, drm_mode_add_fb2,
drm_mode_get_fb, drm_mode_rm_fb, drm_mode_page_flip, drm_mode_dirty_fb,
drm_mode_create_dumb, drm_mode_map_dumb, drm_mode_destroy_dumb,
drm_gem_close): New function
(drm_ioctl): Dispatch drm ioctls

Signed-off-by: Patrik Jakobsson <pjakobsson at suse.de>
---
 drm.c | 628 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 627 insertions(+), 1 deletion(-)

diff --git a/drm.c b/drm.c
index ea2006c5..d44de663 100644
--- a/drm.c
+++ b/drm.c
@@ -69,13 +69,639 @@ static int drm_is_driver(struct tcb *tcp, const char *name)
 
 MPERS_PRINTER_DECL(int, drm_decode_number, struct tcb *tcp, unsigned int code)
 {
+	if (drm_is_priv(tcp->u_arg[1])) {
+		/* Detection of drm driver with drm_is_driver(...) goes here */
+	}
+
+	return 0;
+}
+
+static int drm_version(struct tcb *tcp, const unsigned int code, long arg)
+{
+	struct drm_version ver;
+
+	if (exiting(tcp) && !syserror(tcp)) {
+		if (umove_or_printaddr(tcp, arg, &ver))
+			return RVAL_IOCTL_DECODED;
+
+		tprintf(", {version_major=%d, version_minor=%d, version_patchlevel=%d, "
+			"name_len=%lu, name=", ver.version_major,
+			ver.version_minor, ver.version_patchlevel,
+			ver.name_len);
+		printstrn(tcp, ptr_to_kulong(ver.name), ver.name_len);
+		tprintf(", date_len=%lu, date=", ver.date_len);
+		printstrn(tcp, ptr_to_kulong(ver.date), ver.date_len);
+		tprintf(", desc_len=%lu, desc=", ver.desc_len);
+		printstrn(tcp, ptr_to_kulong(ver.desc), ver.desc_len);
+		tprints("}");
+
+		return RVAL_IOCTL_DECODED;
+	}
+
+	return 0;
+}
+
+static int drm_set_version(struct tcb *tcp, const unsigned int code, long arg)
+{
+	struct drm_set_version ver;
+
+	if (entering(tcp)) {
+		if (umove_or_printaddr(tcp, arg, &ver))
+			return RVAL_IOCTL_DECODED;
+		tprintf(", write:{drm_di_major=%d, drm_di_minor=%d, drm_dd_major=%d, "
+			"drm_dd_minor=%d}", ver.drm_di_major, ver.drm_di_minor,
+			ver.drm_dd_major, ver.drm_dd_minor);
+
+		return 0;
+	}
+
+	if (!syserror(tcp) && !umove(tcp, arg, &ver)) {
+		tprintf(", read:{drm_di_major=%d, drm_di_minor=%d, drm_dd_major=%d, "
+			"drm_dd_minor=%d}", ver.drm_di_major, ver.drm_di_minor,
+			ver.drm_dd_major, ver.drm_dd_minor);
+	}
+
+	return RVAL_IOCTL_DECODED;
+}
+
+static int drm_get_unique(struct tcb *tcp, const unsigned int code, long arg)
+{
+	struct drm_unique unique;
+
+	if (exiting(tcp) && !syserror(tcp)) {
+		if (umove_or_printaddr(tcp, arg, &unique))
+			return RVAL_IOCTL_DECODED;
+
+		tprintf(", {unique_len=%lu, unique=", unique.unique_len);
+		printstrn(tcp, ptr_to_kulong(unique.unique), unique.unique_len);
+		tprints("}");
+
+		return RVAL_IOCTL_DECODED;
+	}
+
 	return 0;
 }
 
+static int drm_get_magic(struct tcb *tcp, const unsigned int code, long arg)
+{
+	struct drm_auth auth;
+
+	if (exiting(tcp) && !syserror(tcp)) {
+		if (umove_or_printaddr(tcp, arg, &auth))
+			return RVAL_IOCTL_DECODED;
+
+		tprintf(", {magic=%u}", auth.magic);
+	}
+
+	return 0;
+}
+
+static int drm_wait_vblank(struct tcb *tcp, const unsigned int code, long arg)
+{
+	union drm_wait_vblank vblank;
+
+	if (entering(tcp)) {
+		if (umove_or_printaddr(tcp, arg, &vblank))
+			return RVAL_IOCTL_DECODED;
+
+		tprintf(", {request={type=%u, sequence=%u, signal=%lu}",
+			vblank.request.type, vblank.request.sequence,
+			vblank.request.signal);
+
+		return 0;
+	}
+
+	if (!syserror(tcp) && !umove(tcp, arg, &vblank)) {
+		tprintf(", reply={type=%u, sequence=%u, tval_sec=%ld, tval_usec=%ld}}",
+			vblank.reply.type, vblank.reply.sequence,
+			vblank.reply.tval_sec, vblank.reply.tval_usec);
+	}
+
+	return RVAL_IOCTL_DECODED;
+}
+
+static int drm_mode_get_resources(struct tcb *tcp, const unsigned int code, long arg)
+{
+	struct drm_mode_card_res res;
+
+	if (exiting(tcp) && !syserror(tcp)) {
+		if (umove_or_printaddr(tcp, arg, &res))
+			return RVAL_IOCTL_DECODED;
+
+		tprintf(", {fb_id_ptr=%p, crtc_id_ptr=%p, connector_id_ptr=%p, "
+			"encoder_id_ptr=%p, count_fbs=%u, count_crtcs=%u, "
+			"count_connectors=%u, count_encoders=%u, min_width=%u, "
+			"max_width=%u, min_height=%u, max_height=%u}",
+			(void *)res.fb_id_ptr, (void *)res.crtc_id_ptr,
+			(void *)res.connector_id_ptr, (void *)res.encoder_id_ptr,
+			res.count_fbs, res.count_crtcs, res.count_connectors,
+			res.count_encoders, res.min_width, res.max_width,
+			res.min_height, res.max_height);
+
+		return RVAL_IOCTL_DECODED;
+	}
+
+	return 0;
+}
+
+static void drm_mode_print_modeinfo(struct tcb *tcp, struct drm_mode_modeinfo *info)
+{
+	tprintf("clock=%u, hdisplay=%hu, hsync_start=%hu, hsync_end=%hu, "
+		"htotal=%hu, hskew=%hu, vdisplay=%hu, vsync_start=%hu, "
+		"vsync_end=%hu, vtotal=%hu, vscan=%hu, vrefresh=%u, "
+		"flags=0x%x, type=%u, name=\"%s\"", info->clock, info->hdisplay,
+		info->hsync_start, info->hsync_end, info->htotal, info->hskew,
+		info->vdisplay, info->vsync_start, info->vsync_end,
+		info->vtotal, info->vscan, info->vrefresh, info->flags,
+		info->type, info->name);
+}
+
+static int drm_mode_get_crtc(struct tcb *tcp, const unsigned int code, long arg)
+{
+	struct drm_mode_crtc crtc;
+
+	if (entering(tcp)) {
+		if (umove_or_printaddr(tcp, arg, &crtc))
+			return RVAL_IOCTL_DECODED;
+		tprintf(", {crtc_id=%u", crtc.crtc_id);
+
+		return 0;
+	}
+
+	if (!syserror(tcp) && !umove(tcp, arg, &crtc)) {
+		tprintf(", set_connectors_ptr=%p, count_connectors=%u, "
+			"fb_id=%u, x=%u, y=%u, gamma_size=%u, mode_valid=%u, "
+			"mode={", (void *)crtc.set_connectors_ptr,
+			crtc.count_connectors, crtc.fb_id, crtc.x, crtc.y,
+			crtc.gamma_size, crtc.mode_valid);
+
+		drm_mode_print_modeinfo(tcp, &crtc.mode);
+		tprintf("}}");
+	}
+
+	return RVAL_IOCTL_DECODED;
+}
+
+static int drm_mode_set_crtc(struct tcb *tcp, const unsigned int code, long arg)
+{
+	struct drm_mode_crtc crtc;
+
+	if (entering(tcp)) {
+		if (umove_or_printaddr(tcp, arg, &crtc))
+			return RVAL_IOCTL_DECODED;
+
+		tprintf(", {set_connectors_ptr=%p, count_connectors=%u, "
+			"crtc_id=%u, fb_id=%u, x=%u, y=%u, gamma_size=%u, "
+			"mode_valid=%u, mode={", (void *)crtc.set_connectors_ptr,
+			crtc.count_connectors, crtc.crtc_id, crtc.fb_id, crtc.x,
+			crtc.y, crtc.gamma_size, crtc.mode_valid);
+
+		drm_mode_print_modeinfo(tcp, &crtc.mode);
+		tprintf("}}");
+	}
+
+	return RVAL_IOCTL_DECODED;
+}
+
+static int drm_mode_cursor(struct tcb *tcp, const unsigned int code, long arg)
+{
+	struct drm_mode_cursor cursor;
+
+
+	if (entering(tcp)) {
+		if (umove_or_printaddr(tcp, arg, &cursor))
+			return RVAL_IOCTL_DECODED;
+
+		tprintf(", {flags=0x%x, crtc_id=%u, x=%d, y=%d, width=%u, "
+			"height=%u, handle=%u}", cursor.flags, cursor.crtc_id,
+			cursor.x, cursor.y, cursor.width, cursor.height,
+			cursor.handle);
+	}
+
+	return RVAL_IOCTL_DECODED;
+}
+
+static int drm_mode_cursor2(struct tcb *tcp, const unsigned int code, long arg)
+{
+	struct drm_mode_cursor2 cursor;
+
+	if (entering(tcp)) {
+		if (umove_or_printaddr(tcp, arg, &cursor))
+			return RVAL_IOCTL_DECODED;
+
+		tprintf(", {flags=0x%x, crtc_id=%u, x=%d, y=%d, width=%u, "
+			"height=%u, handle=%u, hot_x=%d, hot_y=%d}",
+			cursor.flags, cursor.crtc_id, cursor.x, cursor.y,
+			cursor.width, cursor.height, cursor.handle,
+			cursor.hot_x, cursor.hot_y);
+	}
+
+	return RVAL_IOCTL_DECODED;
+}
+
+static int drm_mode_get_gamma(struct tcb *tcp, const unsigned int code, long arg)
+{
+	struct drm_mode_crtc_lut lut;
+
+
+	if (entering(tcp)) {
+		if (umove_or_printaddr(tcp, arg, &lut))
+			return RVAL_IOCTL_DECODED;
+
+		/* We don't print the entire table, just the pointers */
+		tprintf(", {crtc_id=%u, gamma_size=%u, red=%p, green=%p, "
+			"blue=%p}", lut.crtc_id, lut.gamma_size,
+			(void *)lut.red, (void *)lut.green, (void *)lut.blue);
+	}
+
+	return RVAL_IOCTL_DECODED;
+}
+
+static int drm_mode_set_gamma(struct tcb *tcp, const unsigned int code, long arg)
+{
+	struct drm_mode_crtc_lut lut;
+
+	if (entering(tcp)) {
+		if (umove_or_printaddr(tcp, arg, &lut))
+			return RVAL_IOCTL_DECODED;
+
+		/* We don't print the entire table, just the rgb pointers */
+		tprintf(", {crtc_id=%u, gamma_size=%u, red=%p, green=%p, "
+			"blue=%p}", lut.crtc_id, lut.gamma_size,
+			(void *)lut.red, (void *)lut.green, (void *)lut.blue);
+	}
+
+	return RVAL_IOCTL_DECODED;
+}
+
+static int drm_mode_get_encoder(struct tcb *tcp, const unsigned int code, long arg)
+{
+	struct drm_mode_get_encoder enc;
+
+
+	if (entering(tcp)) {
+		if (umove_or_printaddr(tcp, arg, &enc))
+			return RVAL_IOCTL_DECODED;
+		tprintf(", {encoder_id=%u", enc.encoder_id);
+
+		return 0;
+	}
+
+	if (!syserror(tcp) && !umove(tcp, arg, &enc)) {
+		/* TODO: Print name of encoder type */
+		tprintf(", encoder_type=%u, crtc_id=%u, possible_crtcs=0x%x, "
+			"possible_clones=0x%x}", enc.encoder_type,
+			enc.crtc_id, enc.possible_crtcs, enc.possible_clones);
+	}
+
+	return RVAL_IOCTL_DECODED;
+}
+
+static int drm_mode_get_connector(struct tcb *tcp, const unsigned int code, long arg)
+{
+	struct drm_mode_get_connector con;
+
+	/* We could be very verbose here but keep is simple for now */
+	if (entering(tcp)) {
+		if (umove_or_printaddr(tcp, arg, &con))
+			return RVAL_IOCTL_DECODED;
+		tprintf(", {connector_id=%u", con.connector_id);
+
+		return 0;
+	}
+
+	if (!syserror(tcp) && !umove(tcp, arg, &con)) {
+		tprintf(", encoders_ptr=%p, modes_ptr=%p, props_ptr=%p, "
+			"prop_values_ptr=%p, count_modes=%u, count_props=%u, "
+			"count_encoders=%u, encoder_id=%u, connector_type=%u, "
+			"connector_type_id=%u, connection=%u, mm_width=%u, "
+			"mm_height=%u, subpixel=%u}", (void *)con.encoders_ptr,
+			(void *)con.modes_ptr, (void *)con.props_ptr,
+			(void *)con.prop_values_ptr, con.count_modes,
+			con.count_props, con.count_encoders, con.encoder_id,
+			con.connector_type, con.connector_type_id,
+			con.connection, con.mm_width, con.mm_height,
+			con.subpixel);
+	}
+
+	return RVAL_IOCTL_DECODED;
+}
+
+static int drm_mode_get_property(struct tcb *tcp, const unsigned int code, long arg)
+{
+	struct drm_mode_get_property prop;
+
+
+	if (entering(tcp)) {
+		if (umove_or_printaddr(tcp, arg, &prop))
+			return RVAL_IOCTL_DECODED;
+		tprintf(", {prop_id=%u", prop.prop_id);
+
+		return 0;
+	}
+
+	if (!syserror(tcp) && !umove(tcp, arg, &prop)) {
+		tprintf(", values_ptr=%p, enum_blob_ptr=%p, flags=0x%x, "
+			"name=\"%s\", count_values=%u, count_enum_blobs=%u}",
+			(void *)prop.values_ptr, (void *)prop.enum_blob_ptr,
+			prop.flags, prop.name, prop.count_values,
+			prop.count_enum_blobs);
+	}
+
+	return RVAL_IOCTL_DECODED;
+}
+
+static int drm_mode_set_property(struct tcb *tcp, const unsigned int code, long arg)
+{
+	struct drm_mode_connector_set_property prop;
+
+	if (!umove_or_printaddr(tcp, arg, &prop)) {
+		tprintf(", {value=%Lu, prop_id=%u, connector_id=%u}",
+			prop.value, prop.prop_id, prop.connector_id);
+	}
+
+	return RVAL_IOCTL_DECODED;
+}
+
+static int drm_mode_get_prop_blob(struct tcb *tcp, const unsigned int code, long arg)
+{
+	struct drm_mode_get_blob blob;
+
+	if (entering(tcp)) {
+		if (umove_or_printaddr(tcp, arg, &blob))
+			return RVAL_IOCTL_DECODED;
+		tprintf(", {blob_id=%u", blob.blob_id);
+
+		return 0;
+	}
+
+	if (!syserror(tcp) && !umove(tcp, arg, &blob)) {
+		tprintf(", length=%u, data=%p}", blob.length,
+			(void *)blob.data);
+	}
+
+	return RVAL_IOCTL_DECODED;
+}
+
+static int drm_mode_add_fb(struct tcb *tcp, const unsigned int code, long arg)
+{
+	struct drm_mode_fb_cmd cmd;
+
+	if (entering(tcp)) {
+		if (umove_or_printaddr(tcp, arg, &cmd))
+			return RVAL_IOCTL_DECODED;
+		tprintf(", {width=%u, height=%u, pitch=%u, bpp=%u, depth=%u, "
+			"handle=%u", cmd.width, cmd.height, cmd.pitch,
+			cmd.bpp, cmd.depth, cmd.handle);
+
+		return 0;
+	}
+
+	if (!syserror(tcp) && !umove_or_printaddr(tcp, arg, &cmd))
+		tprintf(", fb_id=%u}", cmd.fb_id);
+
+	return RVAL_IOCTL_DECODED;
+}
+
+static int drm_mode_add_fb2(struct tcb *tcp, const unsigned int code, long arg)
+{
+	struct drm_mode_fb_cmd2 cmd;
+
+	if (entering(tcp)) {
+		if (umove(tcp, arg, &cmd))
+			return RVAL_IOCTL_DECODED;
+		tprintf(", {width=%u, height=%u, pixel_format=0x%x, flags=%u, "
+			"handles={%u, %u, %u, %u}, "
+			"pitches={%u, %u, %u, %u}, "
+			"offsets={%u, %u, %u, %u}, "
+			"modifiers={%Lu, %Lu, %Lu, %Lu}",
+			cmd.width, cmd.height, cmd.pixel_format, cmd.flags,
+			cmd.handles[0], cmd.handles[1], cmd.handles[2],
+			cmd.handles[3], cmd.pitches[0], cmd.pitches[1],
+			cmd.pitches[2], cmd.pitches[3], cmd.offsets[0],
+			cmd.offsets[1], cmd.offsets[2], cmd.offsets[3],
+			cmd.modifier[0], cmd.modifier[1], cmd.modifier[2],
+			cmd.modifier[3]);
+
+			return 0;
+	}
+
+	if (!syserror(tcp) && !umove(tcp, arg, &cmd))
+		tprintf(", fb_id=%u}", cmd.fb_id);
+
+	return RVAL_IOCTL_DECODED;
+}
+
+static int drm_mode_get_fb(struct tcb *tcp, const unsigned int code, long arg)
+{
+	struct drm_mode_fb_cmd cmd;
+
+	if (entering(tcp)) {
+		if (umove_or_printaddr(tcp, arg, &cmd))
+			return RVAL_IOCTL_DECODED;
+		tprintf(", {fb_id=%u", cmd.fb_id);
+
+		return 0;
+	}
+
+	if (!syserror(tcp) && !umove(tcp, arg, &cmd)) {
+		tprintf(", width=%u, height=%u, pitch=%u, bpp=%u, depth=%u, "
+		"handle=%u}", cmd.width, cmd.height, cmd.pitch,
+		cmd.bpp, cmd.depth, cmd.handle);
+	}
+
+	return RVAL_IOCTL_DECODED;
+}
+
+static int drm_mode_rm_fb(struct tcb *tcp, const unsigned int code, long arg)
+{
+	unsigned int handle;
+
+	if (!umove_or_printaddr(tcp, arg, &handle))
+		tprintf(", %u", handle);
+
+	return RVAL_IOCTL_DECODED;
+}
+
+static int drm_mode_page_flip(struct tcb *tcp, const unsigned int code, long arg)
+{
+	struct drm_mode_crtc_page_flip flip;
+
+	if (!umove_or_printaddr(tcp, arg, &flip)) {
+		tprintf(", {crtc_id=%u, fb_id=%u, flags=0x%x, user_data=0x%Lx}",
+			flip.crtc_id, flip.fb_id, flip.flags, flip.user_data);
+	}
+
+	return RVAL_IOCTL_DECODED;
+}
+
+static int drm_mode_dirty_fb(struct tcb *tcp, const unsigned int code, long arg)
+{
+	struct drm_mode_fb_dirty_cmd cmd;
+
+	if (!umove_or_printaddr(tcp, arg, &cmd)) {
+		tprintf(", {fb_id=%u, flags=0x%x, color=0x%x, num_clips=%u, "
+			"clips_ptr=%p}", cmd.fb_id, cmd.flags, cmd.color,
+			cmd.num_clips, (void *)cmd.clips_ptr);
+	}
+
+	return RVAL_IOCTL_DECODED;
+}
+
+static int drm_mode_create_dumb(struct tcb *tcp, const unsigned int code, long arg)
+{
+	struct drm_mode_create_dumb dumb;
+
+	if (entering(tcp)) {
+		if (umove_or_printaddr(tcp, arg, &dumb))
+			return RVAL_IOCTL_DECODED;
+		tprintf(", {width=%u, height=%u, bpp=%u, flags=0x%x",
+			dumb.width, dumb.height, dumb.bpp, dumb.flags);
+
+		return 0;
+	}
+
+	if (!syserror(tcp) && !umove(tcp, arg, &dumb)) {
+		tprintf(", handle=%u, pitch=%u, size=%Lu}", dumb.handle,
+			dumb.pitch, dumb.size);
+	}
+
+	return RVAL_IOCTL_DECODED;
+}
+
+static int drm_mode_map_dumb(struct tcb *tcp, const unsigned int code, long arg)
+{
+	struct drm_mode_map_dumb dumb;
+
+	if (entering(tcp)) {
+		if (umove(tcp, arg, &dumb))
+			return RVAL_IOCTL_DECODED;
+		tprintf(", {handle=%u", dumb.handle);
+
+		return 0;
+	}
+
+	if (!syserror(tcp) && !umove(tcp, arg, &dumb))
+		tprintf(", offset=%Lu}", dumb.offset);
+
+	return RVAL_IOCTL_DECODED;
+}
+
+static int drm_mode_destroy_dumb(struct tcb *tcp, const unsigned int code, long arg)
+{
+	struct drm_mode_destroy_dumb dumb;
+
+	if (!umove_or_printaddr(tcp, arg, &dumb))
+		tprintf(", {handle=%u}", dumb.handle);
+
+	return RVAL_IOCTL_DECODED;
+}
+
+static int drm_gem_close(struct tcb *tcp, const unsigned int code, long arg)
+{
+	struct drm_gem_close close;
+
+	if (!umove_or_printaddr(tcp, arg, &close))
+		tprintf(", {handle=%u}", close.handle);
+
+	return RVAL_IOCTL_DECODED;
+}
+
 MPERS_PRINTER_DECL(int, drm_ioctl, struct tcb *tcp, const unsigned int code,
 		   long arg)
 {
-	return 0;
+	int ret = 0;
+
+	/* Check for device specific ioctls */
+	if (drm_is_priv(tcp->u_arg[1])) {
+		/* Detection of drm driver with drm_is_driver(...) goes here */
+	} else {
+		switch (code) {
+		case DRM_IOCTL_VERSION:
+			ret = drm_version(tcp, code, arg);
+			break;
+		case DRM_IOCTL_SET_VERSION:
+			ret = drm_set_version(tcp, code, arg);
+			break;
+		case DRM_IOCTL_GET_UNIQUE:
+			ret = drm_get_unique(tcp, code, arg);
+			break;
+		case DRM_IOCTL_GET_MAGIC:
+			ret = drm_get_magic(tcp, code, arg);
+			break;
+		case DRM_IOCTL_WAIT_VBLANK:
+			ret = drm_wait_vblank(tcp, code, arg);
+			break;
+		case DRM_IOCTL_MODE_GETRESOURCES:
+			ret = drm_mode_get_resources(tcp, code, arg);
+			break;
+		case DRM_IOCTL_MODE_GETCRTC:
+			ret = drm_mode_get_crtc(tcp, code, arg);
+			break;
+		case DRM_IOCTL_MODE_SETCRTC:
+			ret = drm_mode_set_crtc(tcp, code, arg);
+			break;
+		case DRM_IOCTL_MODE_CURSOR:
+			ret = drm_mode_cursor(tcp, code, arg);
+			break;
+		case DRM_IOCTL_MODE_CURSOR2:
+			ret = drm_mode_cursor2(tcp, code, arg);
+			break;
+		case DRM_IOCTL_MODE_GETGAMMA:
+			ret = drm_mode_get_gamma(tcp, code, arg);
+			break;
+		case DRM_IOCTL_MODE_SETGAMMA:
+			ret = drm_mode_set_gamma(tcp, code, arg);
+			break;
+		case DRM_IOCTL_MODE_GETENCODER:
+			ret = drm_mode_get_encoder(tcp, code, arg);
+			break;
+		case DRM_IOCTL_MODE_GETCONNECTOR:
+			ret = drm_mode_get_connector(tcp, code, arg);
+			break;
+		case DRM_IOCTL_MODE_GETPROPERTY:
+			ret = drm_mode_get_property(tcp, code, arg);
+			break;
+		case DRM_IOCTL_MODE_SETPROPERTY:
+			ret = drm_mode_set_property(tcp, code, arg);
+			break;
+		case DRM_IOCTL_MODE_GETPROPBLOB:
+			ret = drm_mode_get_prop_blob(tcp, code, arg);
+			break;
+		case DRM_IOCTL_MODE_GETFB:
+			ret = drm_mode_get_fb(tcp, code, arg);
+			break;
+		case DRM_IOCTL_MODE_ADDFB:
+			ret = drm_mode_add_fb(tcp, code, arg);
+			break;
+		case DRM_IOCTL_MODE_ADDFB2:
+			ret = drm_mode_add_fb2(tcp, code, arg);
+			break;
+		case DRM_IOCTL_MODE_RMFB:
+			ret = drm_mode_rm_fb(tcp, code, arg);
+			break;
+		case DRM_IOCTL_MODE_PAGE_FLIP:
+			ret = drm_mode_page_flip(tcp, code, arg);
+			break;
+		case DRM_IOCTL_MODE_DIRTYFB:
+			ret = drm_mode_dirty_fb(tcp, code, arg);
+			break;
+		case DRM_IOCTL_MODE_CREATE_DUMB:
+			ret = drm_mode_create_dumb(tcp, code, arg);
+			break;
+		case DRM_IOCTL_MODE_MAP_DUMB:
+			ret = drm_mode_map_dumb(tcp, code, arg);
+			break;
+		case DRM_IOCTL_MODE_DESTROY_DUMB:
+			ret = drm_mode_destroy_dumb(tcp, code, arg);
+			break;
+		case DRM_IOCTL_GEM_CLOSE:
+			ret = drm_gem_close(tcp, code, arg);
+			break;
+		}
+	}
+
+	return ret;
 }
 
 #endif /* HAVE_DRM_H || HAVE_DRM_DRM_H */
-- 
2.21.0



More information about the Strace-devel mailing list