Package: screen / 4.5.0-6

81_session_creation_util.patch Patch series | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
Author: Jan Christoph Nordholz <hesso@pool.math.tu-berlin.de>
Description: Add lookup code for the creation time of each session.
 Requires digging in /proc/$pid and /proc/uptime, though, so it's
 definitely no candidate for the Beautiful C contest.
 .
 Affects screen's behaviour in the following situations:
 .
 * 'screen -ls' lists available sessions sorted chronologically
 * 'screen -RR' now picks the youngest session instead of an
   arbitrary one
 .
 Patch 2/3: new utility functions
Bug-Debian: https://bugs.debian.org/206572
Forwarded: not-yet

--- a/extern.h
+++ b/extern.h
@@ -390,6 +390,8 @@
 #else
 extern int   xsnprintf __P(());
 #endif
+extern time_t SessionCreationTime __P((const char *));
+extern time_t GetUptime __P((void));
 
 
 /* acl.c */
--- a/misc.c
+++ b/misc.c
@@ -29,6 +29,7 @@
 #include <sys/types.h>
 #include <sys/stat.h>	/* mkdir() declaration */
 #include <signal.h>
+#include <fcntl.h>
 
 #include "config.h"
 #include "screen.h"
@@ -769,3 +770,40 @@
 }
 
 #endif
+
+time_t SessionCreationTime(const char *fifo) {
+  char ppath[20];
+  int pfd;
+  char pdata[512];
+  char *jiffies;
+
+  int pid = atoi(fifo);
+  if (pid <= 0) return 0;
+  sprintf(ppath, "/proc/%u/stat", pid);
+  pfd = open(ppath, O_RDONLY);
+  if (pfd < 0) return 0;
+  while (1) {
+    int R=0, RR;
+    RR = read(pfd, pdata + R, 512-R);
+    if (RR < 0) {close(pfd); return 0;}
+    else if (RR == 0) break;
+  }
+  close(pfd);
+
+  for (pfd=21, jiffies=pdata; pfd; --pfd) {
+    jiffies = strchr(jiffies, ' ');
+    if (!jiffies) break; else ++jiffies;
+  }
+  if (!jiffies) return 0;
+
+  return atol(jiffies) / 100;
+}
+
+time_t GetUptime(void) {
+  char uptimestr[32];
+  int fd = open("/proc/uptime", O_RDONLY);
+  if (fd < 0) return 0;
+  (void)read(fd, uptimestr, 32);
+  close(fd);
+  return atol(uptimestr);
+}