* [PATCH libdrm] xf86drm: introduce drmGetDeviceNameFromFd2
@ 2016-11-10 17:43 Emil Velikov
2016-11-16 11:14 ` Nicolai Hähnle
0 siblings, 1 reply; 3+ messages in thread
From: Emil Velikov @ 2016-11-10 17:43 UTC (permalink / raw)
To: dri-devel; +Cc: emil.l.velikov
From: Emil Velikov <emil.velikov@collabora.com>
The original version considered only card devices, while this will pick
the device/node name regardless - card, control, renderD, other...
Current implementation is "linux" specific, in such that it relies on
sysfs/uevent file. At the same time this gives us the flexibility to
support any nodes even future ones, as long as they're within DRM_MAJOR.
Shamelessly copied from mesa, latter by: Gary Wong <gtw@gnu.org>
Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
---
There's quite a bit of [subtle chaos] in mesa about this. Sometimes we
explicitly request the render node, sometimes we use an open-coded version
of drmGetDeviceNameFromFd, which due to sheer luck just works.
One could apply some polish here, but I'd choose to keep things as close
to original.
---
xf86drm.c | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++
xf86drm.h | 5 +++++
2 files changed, 56 insertions(+)
diff --git a/xf86drm.c b/xf86drm.c
index 80e2f27..0bca43a 100644
--- a/xf86drm.c
+++ b/xf86drm.c
@@ -3367,3 +3367,54 @@ free_locals:
free(local_devices);
return ret;
}
+
+char *drmGetDeviceNameFromFd2(int fd)
+{
+#ifdef __linux__
+ struct stat sbuf;
+ char *device_name = NULL;
+ unsigned int maj, min;
+ FILE *f;
+ char buf[512];
+ static const char match[9] = "\nDEVNAME=";
+ int expected = 1;
+
+
+ if (fstat(fd, &sbuf))
+ return NULL;
+
+ maj = major(sbuf.st_rdev);
+ min = minor(sbuf.st_rdev);
+
+ if (maj != DRM_MAJOR || !S_ISCHR(sbuf.st_mode))
+ return NULL;
+
+ snprintf(buf, sizeof(buf), "/sys/dev/char/%d:%d/uevent", maj, min);
+ if (!(f = fopen(buf, "r")))
+ return NULL;
+
+ while (expected < sizeof(match)) {
+ int c = getc(f);
+
+ if (c == EOF) {
+ fclose(f);
+ return NULL;
+ } else if (c == match[expected] )
+ expected++;
+ else
+ expected = 0;
+ }
+
+ strcpy(buf, "/dev/");
+ if (fgets(buf + 5, sizeof(buf) - 5, f)) {
+ buf[strcspn(buf, "\n")] = '\0';
+ device_name = strdup(buf);
+ }
+
+ fclose(f);
+ return device_name;
+#else
+#warning "Missing implementation of drmGetDeviceNameFromFd2"
+ return NULL;
+#endif
+}
diff --git a/xf86drm.h b/xf86drm.h
index d1ebc32..4fa395e 100644
--- a/xf86drm.h
+++ b/xf86drm.h
@@ -753,6 +753,11 @@ typedef struct _drmEventContext {
extern int drmHandleEvent(int fd, drmEventContextPtr evctx);
extern char *drmGetDeviceNameFromFd(int fd);
+
+/* Improved version of drmGetDeviceNameFromFd which attributes for any type of
+ * device/node - card, control or renderD.
+ */
+extern char *drmGetDeviceNameFromFd2(int fd);
extern int drmGetNodeTypeFromFd(int fd);
extern int drmPrimeHandleToFD(int fd, uint32_t handle, uint32_t flags, int *prime_fd);
--
2.10.2
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH libdrm] xf86drm: introduce drmGetDeviceNameFromFd2
2016-11-10 17:43 [PATCH libdrm] xf86drm: introduce drmGetDeviceNameFromFd2 Emil Velikov
@ 2016-11-16 11:14 ` Nicolai Hähnle
2016-11-22 14:24 ` Emil Velikov
0 siblings, 1 reply; 3+ messages in thread
From: Nicolai Hähnle @ 2016-11-16 11:14 UTC (permalink / raw)
To: Emil Velikov, dri-devel
On 10.11.2016 18:43, Emil Velikov wrote:
> From: Emil Velikov <emil.velikov@collabora.com>
>
> The original version considered only card devices, while this will pick
> the device/node name regardless - card, control, renderD, other...
>
> Current implementation is "linux" specific, in such that it relies on
> sysfs/uevent file. At the same time this gives us the flexibility to
> support any nodes even future ones, as long as they're within DRM_MAJOR.
>
> Shamelessly copied from mesa, latter by: Gary Wong <gtw@gnu.org>
> Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
Makes sense to me.
Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com>
> ---
> There's quite a bit of [subtle chaos] in mesa about this. Sometimes we
> explicitly request the render node, sometimes we use an open-coded version
> of drmGetDeviceNameFromFd, which due to sheer luck just works.
>
> One could apply some polish here, but I'd choose to keep things as close
> to original.
> ---
> xf86drm.c | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++
> xf86drm.h | 5 +++++
> 2 files changed, 56 insertions(+)
>
> diff --git a/xf86drm.c b/xf86drm.c
> index 80e2f27..0bca43a 100644
> --- a/xf86drm.c
> +++ b/xf86drm.c
> @@ -3367,3 +3367,54 @@ free_locals:
> free(local_devices);
> return ret;
> }
> +
> +char *drmGetDeviceNameFromFd2(int fd)
> +{
> +#ifdef __linux__
> + struct stat sbuf;
> + char *device_name = NULL;
> + unsigned int maj, min;
> + FILE *f;
> + char buf[512];
> + static const char match[9] = "\nDEVNAME=";
> + int expected = 1;
> +
> +
> + if (fstat(fd, &sbuf))
> + return NULL;
> +
> + maj = major(sbuf.st_rdev);
> + min = minor(sbuf.st_rdev);
> +
> + if (maj != DRM_MAJOR || !S_ISCHR(sbuf.st_mode))
> + return NULL;
> +
> + snprintf(buf, sizeof(buf), "/sys/dev/char/%d:%d/uevent", maj, min);
> + if (!(f = fopen(buf, "r")))
> + return NULL;
> +
> + while (expected < sizeof(match)) {
> + int c = getc(f);
> +
> + if (c == EOF) {
> + fclose(f);
> + return NULL;
> + } else if (c == match[expected] )
> + expected++;
> + else
> + expected = 0;
> + }
> +
> + strcpy(buf, "/dev/");
> + if (fgets(buf + 5, sizeof(buf) - 5, f)) {
> + buf[strcspn(buf, "\n")] = '\0';
> + device_name = strdup(buf);
> + }
> +
> + fclose(f);
> + return device_name;
> +#else
> +#warning "Missing implementation of drmGetDeviceNameFromFd2"
> + return NULL;
> +#endif
> +}
> diff --git a/xf86drm.h b/xf86drm.h
> index d1ebc32..4fa395e 100644
> --- a/xf86drm.h
> +++ b/xf86drm.h
> @@ -753,6 +753,11 @@ typedef struct _drmEventContext {
> extern int drmHandleEvent(int fd, drmEventContextPtr evctx);
>
> extern char *drmGetDeviceNameFromFd(int fd);
> +
> +/* Improved version of drmGetDeviceNameFromFd which attributes for any type of
> + * device/node - card, control or renderD.
> + */
> +extern char *drmGetDeviceNameFromFd2(int fd);
> extern int drmGetNodeTypeFromFd(int fd);
>
> extern int drmPrimeHandleToFD(int fd, uint32_t handle, uint32_t flags, int *prime_fd);
>
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH libdrm] xf86drm: introduce drmGetDeviceNameFromFd2
2016-11-16 11:14 ` Nicolai Hähnle
@ 2016-11-22 14:24 ` Emil Velikov
0 siblings, 0 replies; 3+ messages in thread
From: Emil Velikov @ 2016-11-22 14:24 UTC (permalink / raw)
To: Nicolai Hähnle; +Cc: ML dri-devel
On 16 November 2016 at 11:14, Nicolai Hähnle <nhaehnle@gmail.com> wrote:
> On 10.11.2016 18:43, Emil Velikov wrote:
>>
>> From: Emil Velikov <emil.velikov@collabora.com>
>>
>> The original version considered only card devices, while this will pick
>> the device/node name regardless - card, control, renderD, other...
>>
>> Current implementation is "linux" specific, in such that it relies on
>> sysfs/uevent file. At the same time this gives us the flexibility to
>> support any nodes even future ones, as long as they're within DRM_MAJOR.
>>
>> Shamelessly copied from mesa, latter by: Gary Wong <gtw@gnu.org>
>> Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
>
>
> Makes sense to me.
>
> Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com>
>
Great, ty.
Next step - the revision (-less) patches. Since the kernel thread
reached conclusion :-)
-Emil
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2016-11-22 14:24 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-11-10 17:43 [PATCH libdrm] xf86drm: introduce drmGetDeviceNameFromFd2 Emil Velikov
2016-11-16 11:14 ` Nicolai Hähnle
2016-11-22 14:24 ` Emil Velikov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).