summaryrefslogtreecommitdiff
path: root/newlib/libc/unix/getut.c
diff options
context:
space:
mode:
authorChristopher Faylor <me+cygwin@cgf.cx>2000-02-17 19:39:46 +0000
committerChristopher Faylor <me+cygwin@cgf.cx>2000-02-17 19:39:46 +0000
commit43b55bace5fad27af5da7a99784667363b92c45d (patch)
tree17fe82f6ba0d93b76d10dd73d4945ab81b69db40 /newlib/libc/unix/getut.c
parent8dabd7496a9eeaca2a7180c0a176059ba9229bb2 (diff)
downloadgdb-newlib-2000-02-17.tar.gz
import newlib-2000-02-17 snapshotnewlib-2000-02-17SNAPSHOT
Diffstat (limited to 'newlib/libc/unix/getut.c')
-rw-r--r--newlib/libc/unix/getut.c85
1 files changed, 85 insertions, 0 deletions
diff --git a/newlib/libc/unix/getut.c b/newlib/libc/unix/getut.c
new file mode 100644
index 00000000000..d716b324c38
--- /dev/null
+++ b/newlib/libc/unix/getut.c
@@ -0,0 +1,85 @@
+#include <fcntl.h>
+#include <unistd.h>
+#include <utmp.h>
+#include <_syslist.h>
+
+static int utmp_fd = -2;
+static char *utmp_file = UTMP_FILE;
+
+static struct utmp utmp_data;
+
+void
+setutent ()
+{
+ if (utmp_fd == -2)
+ {
+ utmp_fd = _open (utmp_file, O_RDONLY);
+ }
+ _lseek (utmp_fd, 0, SEEK_SET);
+}
+
+void
+endutent ()
+{
+ _close (utmp_fd);
+ utmp_fd = -2;
+}
+
+void
+utmpname (char *file)
+{
+ extern char *strdup (char *);
+
+ utmp_file = strdup (file);
+}
+
+struct utmp *
+getutent ()
+{
+ if (utmp_fd == -2)
+ setutent ();
+ if (_read (utmp_fd, &utmp_data, sizeof (utmp_data)) < sizeof (utmp_data))
+ return 0;
+ return &utmp_data;
+}
+
+struct utmp *
+getutid (struct utmp *id)
+{
+ while (_read (utmp_fd, &utmp_data, sizeof (utmp_data)) == sizeof (utmp_data))
+ {
+ switch (id->ut_type)
+ {
+ case RUN_LVL:
+ case BOOT_TIME:
+ case OLD_TIME:
+ case NEW_TIME:
+ if (id->ut_type == utmp_data.ut_type)
+ return &utmp_data;
+ case INIT_PROCESS:
+ case LOGIN_PROCESS:
+ case USER_PROCESS:
+ case DEAD_PROCESS:
+ if (id->ut_id == utmp_data.ut_id)
+ return &utmp_data;
+ default:
+ abort ();
+ }
+ }
+ return 0;
+}
+
+struct utmp *
+getutline (struct utmp *line)
+{
+ while (_read (utmp_fd, &utmp_data, sizeof (utmp_data)) == sizeof (utmp_data))
+ {
+ if ((utmp_data.ut_type == LOGIN_PROCESS ||
+ utmp_data.ut_type == USER_PROCESS) &&
+ !strncmp (utmp_data.ut_line, line->ut_line,
+ sizeof (utmp_data.ut_line)))
+ return &utmp_data;
+ }
+
+ return 0;
+}