aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/unix/sysv/linux/ttyname.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/unix/sysv/linux/ttyname.c')
-rw-r--r--sysdeps/unix/sysv/linux/ttyname.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/linux/ttyname.c b/sysdeps/unix/sysv/linux/ttyname.c
index 91f0d7a40f..40b006a8cd 100644
--- a/sysdeps/unix/sysv/linux/ttyname.c
+++ b/sysdeps/unix/sysv/linux/ttyname.c
@@ -26,6 +26,8 @@
#include <string.h>
#include <stdlib.h>
+#include <stdio-common/_itoa.h>
+
char *__ttyname = NULL;
static char * getttyname __P ((const char *dev, int fd, dev_t mydev,
@@ -104,6 +106,9 @@ char *
ttyname (fd)
int fd;
{
+ static char *buf;
+ static size_t buflen = 0;
+ char procname[30];
struct stat st, st1;
int dostat = 0;
char *name;
@@ -112,6 +117,23 @@ ttyname (fd)
if (!__isatty (fd))
return NULL;
+ /* We try using the /proc filesystem. */
+ *_fitoa_word (fd, __stpcpy (procname, "/proc/self/fd/"), 10, 0) = '\0';
+
+ if (buflen == 0)
+ {
+ buflen = 4095;
+ buf = (char *) malloc (buflen + 1);
+ if (buf == NULL)
+ {
+ buflen = 0;
+ return NULL;
+ }
+ }
+
+ if (__readlink (procname, buf, buflen) != -1)
+ return buf;
+
if (fstat (fd, &st) < 0)
return NULL;