mirror of
https://github.com/tmate-io/tmate.git
synced 2025-01-09 15:38:16 +01:00
Make similar (untested) changes to the OS-dependent code for FreeBSD, and
NetBSD in accordance to OpenBSD patchset 214.
This commit is contained in:
parent
1127a290f4
commit
c9f55c1063
@ -1,4 +1,4 @@
|
|||||||
/* $Id: osdep-freebsd.c,v 1.17 2009-07-28 22:28:11 tcunha Exp $ */
|
/* $Id: osdep-freebsd.c,v 1.18 2009-08-09 16:37:04 tcunha Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net>
|
* Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||||
@ -29,7 +29,8 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
||||||
char *osdep_get_name(int, char *);
|
struct kinfo_proc *cmp_procs(struct kinfo_proc *, struct kinfo_proc *);
|
||||||
|
char *osdep_get_name(int, char *);
|
||||||
|
|
||||||
#ifndef nitems
|
#ifndef nitems
|
||||||
#define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
|
#define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
|
||||||
@ -40,6 +41,39 @@ char *osdep_get_name(int, char *);
|
|||||||
#define is_stopped(p) \
|
#define is_stopped(p) \
|
||||||
((p)->ki_stat == SSTOP || (p)->ki_stat == SZOMB)
|
((p)->ki_stat == SSTOP || (p)->ki_stat == SZOMB)
|
||||||
|
|
||||||
|
struct kinfo_proc *
|
||||||
|
cmp_procs(struct kinfo_proc *p1, struct kinfo_proc *p2)
|
||||||
|
{
|
||||||
|
if (is_runnable(p1) && !is_runnable(p2))
|
||||||
|
return (p1);
|
||||||
|
if (!is_runnable(p1) && is_runnable(p2))
|
||||||
|
return (p2);
|
||||||
|
|
||||||
|
if (is_stopped(p1) && !is_stopped(p2))
|
||||||
|
return (p1);
|
||||||
|
if (!is_stopped(p1) && is_stopped(p2))
|
||||||
|
return (p2);
|
||||||
|
|
||||||
|
if (p1->ki_estcpu > p2->ki_estcpu)
|
||||||
|
return (p1);
|
||||||
|
if (p1->ki_estcpu < p2->ki_estcpu)
|
||||||
|
return (p2);
|
||||||
|
|
||||||
|
if (p1->ki_slptime < p2->ki_slptime)
|
||||||
|
return (p1);
|
||||||
|
if (p1->ki_slptime > p2->ki_slptime)
|
||||||
|
return (p2);
|
||||||
|
|
||||||
|
if (strcmp(p1->ki_comm, p2->ki_comm) < 0)
|
||||||
|
return (p1);
|
||||||
|
if (strcmp(p1->ki_comm, p2->ki_comm) > 0)
|
||||||
|
return (p2);
|
||||||
|
|
||||||
|
if (p1->ki_pid > p2->ki_pid)
|
||||||
|
return (p1);
|
||||||
|
return (p2);
|
||||||
|
}
|
||||||
|
|
||||||
char *
|
char *
|
||||||
osdep_get_name(int fd, char *tty)
|
osdep_get_name(int fd, char *tty)
|
||||||
{
|
{
|
||||||
@ -62,17 +96,14 @@ retry:
|
|||||||
return (NULL);
|
return (NULL);
|
||||||
len = (len * 5) / 4;
|
len = (len * 5) / 4;
|
||||||
|
|
||||||
if ((newbuf = realloc(buf, len)) == NULL) {
|
if ((newbuf = realloc(buf, len)) == NULL)
|
||||||
free(buf);
|
goto error;
|
||||||
return (NULL);
|
|
||||||
}
|
|
||||||
buf = newbuf;
|
buf = newbuf;
|
||||||
|
|
||||||
if (sysctl(mib, nitems(mib), buf, &len, NULL, 0) == -1) {
|
if (sysctl(mib, nitems(mib), buf, &len, NULL, 0) == -1) {
|
||||||
if (errno == ENOMEM)
|
if (errno == ENOMEM)
|
||||||
goto retry;
|
goto retry;
|
||||||
free(buf);
|
goto error;
|
||||||
return (NULL);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bestp = NULL;
|
bestp = NULL;
|
||||||
@ -80,43 +111,10 @@ retry:
|
|||||||
if (buf[i].ki_tdev != sb.st_rdev)
|
if (buf[i].ki_tdev != sb.st_rdev)
|
||||||
continue;
|
continue;
|
||||||
p = &buf[i];
|
p = &buf[i];
|
||||||
if (bestp == NULL) {
|
if (bestp == NULL)
|
||||||
bestp = p;
|
bestp = &buf[i];
|
||||||
continue;
|
else
|
||||||
}
|
bestp = cmp_procs(&buf[i], bestp);
|
||||||
|
|
||||||
if (is_runnable(p) && !is_runnable(bestp)) {
|
|
||||||
bestp = p;
|
|
||||||
continue;
|
|
||||||
} else if (!is_runnable(p) && is_runnable(bestp))
|
|
||||||
continue;
|
|
||||||
|
|
||||||
if (!is_stopped(p) && is_stopped(bestp)) {
|
|
||||||
bestp = p;
|
|
||||||
continue;
|
|
||||||
} else if (is_stopped(p) && !is_stopped(bestp))
|
|
||||||
continue;
|
|
||||||
|
|
||||||
if (p->ki_estcpu > bestp->ki_estcpu) {
|
|
||||||
bestp = p;
|
|
||||||
continue;
|
|
||||||
} else if (p->ki_estcpu < bestp->ki_estcpu)
|
|
||||||
continue;
|
|
||||||
|
|
||||||
if (p->ki_slptime < bestp->ki_slptime) {
|
|
||||||
bestp = p;
|
|
||||||
continue;
|
|
||||||
} else if (p->ki_slptime > bestp->ki_slptime)
|
|
||||||
continue;
|
|
||||||
|
|
||||||
if (strcmp(p->ki_comm, bestp->ki_comm) < 0) {
|
|
||||||
bestp = p;
|
|
||||||
continue;
|
|
||||||
} else if (strcmp(p->ki_comm, bestp->ki_comm) > 0)
|
|
||||||
continue;
|
|
||||||
|
|
||||||
if (p->ki_pid > bestp->ki_pid)
|
|
||||||
bestp = p;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
name = NULL;
|
name = NULL;
|
||||||
@ -125,4 +123,8 @@ retry:
|
|||||||
|
|
||||||
free(buf);
|
free(buf);
|
||||||
return (name);
|
return (name);
|
||||||
|
|
||||||
|
error:
|
||||||
|
free(buf);
|
||||||
|
return (NULL);
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* $Id: osdep-netbsd.c,v 1.6 2009-07-28 22:28:11 tcunha Exp $ */
|
/* $Id: osdep-netbsd.c,v 1.7 2009-08-09 16:37:05 tcunha Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net>
|
* Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||||
@ -31,7 +31,36 @@
|
|||||||
#define is_stopped(p) \
|
#define is_stopped(p) \
|
||||||
((p)->p_stat == SSTOP || (p)->p_stat == SZOMB)
|
((p)->p_stat == SSTOP || (p)->p_stat == SZOMB)
|
||||||
|
|
||||||
char *osdep_get_name(int, char *);
|
struct kinfo_proc2 *cmp_procs(struct kinfo_proc2 *, struct kinfo_proc2 *);
|
||||||
|
char *osdep_get_name(int, char *);
|
||||||
|
|
||||||
|
struct kinfo_proc2 *
|
||||||
|
cmp_procs(struct kinfo_proc2 *p1, struct kinfo_proc2 *p2)
|
||||||
|
{
|
||||||
|
if (is_runnable(p1) && !is_runnable(p2))
|
||||||
|
return (p1);
|
||||||
|
if (!is_runnable(p1) && is_runnable(p2))
|
||||||
|
return (p2);
|
||||||
|
|
||||||
|
if (is_stopped(p1) && !is_stopped(p2))
|
||||||
|
return (p1);
|
||||||
|
if (!is_stopped(p1) && is_stopped(p2))
|
||||||
|
return (p2);
|
||||||
|
|
||||||
|
if (p1->p_estcpu > p2->p_estcpu)
|
||||||
|
return (p1);
|
||||||
|
if (p1->p_estcpu < p2->p_estcpu)
|
||||||
|
return (p2);
|
||||||
|
|
||||||
|
if (p1->p_slptime < p2->p_slptime)
|
||||||
|
return (p1);
|
||||||
|
if (p1->p_slptime > p2->p_slptime)
|
||||||
|
return (p2);
|
||||||
|
|
||||||
|
if (p1->p_pid > p2->p_pid)
|
||||||
|
return (p1);
|
||||||
|
return (p2);
|
||||||
|
}
|
||||||
|
|
||||||
char *
|
char *
|
||||||
osdep_get_name(int fd, __unused char *tty)
|
osdep_get_name(int fd, __unused char *tty)
|
||||||
@ -59,18 +88,15 @@ retry:
|
|||||||
if (sysctl(mib, __arraycount(mib), NULL, &len, NULL, 0) == -1)
|
if (sysctl(mib, __arraycount(mib), NULL, &len, NULL, 0) == -1)
|
||||||
return (NULL);
|
return (NULL);
|
||||||
|
|
||||||
if ((newbuf = realloc(buf, len * sizeof (*buf))) == NULL) {
|
if ((newbuf = realloc(buf, len * sizeof (*buf))) == NULL)
|
||||||
free(buf);
|
goto error;
|
||||||
return (NULL);
|
|
||||||
}
|
|
||||||
buf = newbuf;
|
buf = newbuf;
|
||||||
|
|
||||||
mib[5] = len / sizeof(*buf);
|
mib[5] = len / sizeof(*buf);
|
||||||
if (sysctl(mib, __arraycount(mib), buf, &len, NULL, 0) == -1) {
|
if (sysctl(mib, __arraycount(mib), buf, &len, NULL, 0) == -1) {
|
||||||
if (errno == ENOMEM)
|
if (errno == ENOMEM)
|
||||||
goto retry; /* possible infinite loop? */
|
goto retry; /* possible infinite loop? */
|
||||||
free(buf);
|
goto error;
|
||||||
return (NULL);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bestp = NULL;
|
bestp = NULL;
|
||||||
@ -78,43 +104,20 @@ retry:
|
|||||||
if (buf[i].p_tdev != sb.st_rdev)
|
if (buf[i].p_tdev != sb.st_rdev)
|
||||||
continue;
|
continue;
|
||||||
p = &buf[i];
|
p = &buf[i];
|
||||||
if (bestp == NULL) {
|
if (bestp == NULL)
|
||||||
bestp = p;
|
bestp = &buf[i];
|
||||||
continue;
|
else
|
||||||
}
|
bestp = cmp_procs(&buf[i], bestp);
|
||||||
|
|
||||||
if (is_runnable(p) && !is_runnable(bestp)) {
|
|
||||||
bestp = p;
|
|
||||||
continue;
|
|
||||||
} else if (!is_runnable(p) && is_runnable(bestp))
|
|
||||||
continue;
|
|
||||||
|
|
||||||
if (!is_stopped(p) && is_stopped(bestp)) {
|
|
||||||
bestp = p;
|
|
||||||
continue;
|
|
||||||
} else if (is_stopped(p) && !is_stopped(bestp))
|
|
||||||
continue;
|
|
||||||
|
|
||||||
if (p->p_estcpu > bestp->p_estcpu) {
|
|
||||||
bestp = p;
|
|
||||||
continue;
|
|
||||||
} else if (p->p_estcpu < bestp->p_estcpu)
|
|
||||||
continue;
|
|
||||||
|
|
||||||
if (p->p_slptime < bestp->p_slptime) {
|
|
||||||
bestp = p;
|
|
||||||
continue;
|
|
||||||
} else if (p->p_slptime > bestp->p_slptime)
|
|
||||||
continue;
|
|
||||||
|
|
||||||
if (p->p_pid > bestp->p_pid)
|
|
||||||
bestp = p;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
name = NULL;
|
name = NULL;
|
||||||
if (bestp != NULL)
|
if (bestp != NULL)
|
||||||
name = strdup(bestp->p_comm);
|
name = strdup(bestp->p_comm);
|
||||||
|
|
||||||
free(buf);
|
free(buf);
|
||||||
return (name);
|
return (name);
|
||||||
|
|
||||||
|
error:
|
||||||
|
free(buf);
|
||||||
|
return (NULL);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user