2014-11-08 12:27:43 +00:00
|
|
|
/* $OpenBSD$ */
|
2009-06-26 15:54:52 +00:00
|
|
|
|
2009-02-18 08:41:46 +00:00
|
|
|
/*
|
2016-01-19 18:07:25 +00:00
|
|
|
* Copyright (c) 2009 Nicholas Marriott <nicholas.marriott@gmail.com>
|
2009-02-18 08:41:46 +00:00
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
|
|
|
|
* IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/proc.h>
|
2009-07-15 17:53:15 +00:00
|
|
|
#include <sys/stat.h>
|
2009-02-18 08:41:46 +00:00
|
|
|
#include <sys/sysctl.h>
|
|
|
|
|
2009-07-15 17:53:15 +00:00
|
|
|
#include <errno.h>
|
2010-12-30 20:41:08 +00:00
|
|
|
#include <event.h>
|
2009-07-15 17:53:15 +00:00
|
|
|
#include <stdlib.h>
|
2009-02-18 08:41:46 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2009-07-15 17:53:15 +00:00
|
|
|
#define is_runnable(p) \
|
|
|
|
((p)->p_stat == LSRUN || (p)->p_stat == SIDL)
|
|
|
|
#define is_stopped(p) \
|
|
|
|
((p)->p_stat == SSTOP || (p)->p_stat == SZOMB)
|
2009-02-18 08:41:46 +00:00
|
|
|
|
2009-08-09 16:37:05 +00:00
|
|
|
struct kinfo_proc2 *cmp_procs(struct kinfo_proc2 *, struct kinfo_proc2 *);
|
|
|
|
char *osdep_get_name(int, char *);
|
2012-09-24 13:05:38 +00:00
|
|
|
char *osdep_get_cwd(int);
|
2010-12-30 20:41:08 +00:00
|
|
|
struct event_base *osdep_event_init(void);
|
2009-08-09 16:37:05 +00:00
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
2009-02-18 08:41:46 +00:00
|
|
|
|
|
|
|
char *
|
2009-06-26 15:54:52 +00:00
|
|
|
osdep_get_name(int fd, __unused char *tty)
|
2009-02-18 08:41:46 +00:00
|
|
|
{
|
2009-06-26 15:54:52 +00:00
|
|
|
int mib[6];
|
2009-07-15 17:53:15 +00:00
|
|
|
struct stat sb;
|
|
|
|
size_t len, i;
|
2009-08-09 18:00:45 +00:00
|
|
|
struct kinfo_proc2 *buf, *newbuf, *bestp;
|
2009-07-15 17:53:15 +00:00
|
|
|
char *name;
|
2009-02-18 08:41:46 +00:00
|
|
|
|
2009-07-15 17:53:15 +00:00
|
|
|
if (stat(tty, &sb) == -1)
|
|
|
|
return (NULL);
|
2009-02-18 08:41:46 +00:00
|
|
|
if ((mib[3] = tcgetpgrp(fd)) == -1)
|
|
|
|
return (NULL);
|
|
|
|
|
2009-07-15 17:53:15 +00:00
|
|
|
buf = NULL;
|
2017-02-19 08:31:05 +00:00
|
|
|
len = sizeof bestp;
|
|
|
|
|
2009-06-26 15:54:52 +00:00
|
|
|
mib[0] = CTL_KERN;
|
|
|
|
mib[1] = KERN_PROC2;
|
2009-07-15 17:53:15 +00:00
|
|
|
mib[2] = KERN_PROC_PGRP;
|
2017-02-19 08:31:05 +00:00
|
|
|
mib[4] = sizeof *buf;
|
2009-07-15 17:53:15 +00:00
|
|
|
|
|
|
|
retry:
|
2017-02-19 08:31:05 +00:00
|
|
|
mib[5] = 0;
|
|
|
|
|
2009-07-15 17:53:15 +00:00
|
|
|
if (sysctl(mib, __arraycount(mib), NULL, &len, NULL, 0) == -1)
|
|
|
|
return (NULL);
|
|
|
|
|
2017-02-19 08:31:05 +00:00
|
|
|
if ((newbuf = realloc(buf, len)) == NULL)
|
2009-08-09 16:37:05 +00:00
|
|
|
goto error;
|
2009-07-15 17:53:15 +00:00
|
|
|
buf = newbuf;
|
|
|
|
|
2017-02-19 08:31:05 +00:00
|
|
|
mib[5] = len / (sizeof *buf);
|
2009-07-15 17:53:15 +00:00
|
|
|
if (sysctl(mib, __arraycount(mib), buf, &len, NULL, 0) == -1) {
|
|
|
|
if (errno == ENOMEM)
|
2017-02-19 08:31:05 +00:00
|
|
|
goto retry;
|
2009-08-09 16:37:05 +00:00
|
|
|
goto error;
|
2009-07-15 17:53:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bestp = NULL;
|
2017-02-19 08:31:05 +00:00
|
|
|
for (i = 0; i < len / (sizeof *buf); i++) {
|
2009-07-15 17:53:15 +00:00
|
|
|
if (buf[i].p_tdev != sb.st_rdev)
|
|
|
|
continue;
|
2009-08-09 16:37:05 +00:00
|
|
|
if (bestp == NULL)
|
|
|
|
bestp = &buf[i];
|
|
|
|
else
|
|
|
|
bestp = cmp_procs(&buf[i], bestp);
|
2009-07-15 17:53:15 +00:00
|
|
|
}
|
2009-02-18 08:41:46 +00:00
|
|
|
|
2009-07-15 17:53:15 +00:00
|
|
|
name = NULL;
|
|
|
|
if (bestp != NULL)
|
|
|
|
name = strdup(bestp->p_comm);
|
2009-08-09 16:37:05 +00:00
|
|
|
|
2009-07-15 17:53:15 +00:00
|
|
|
free(buf);
|
|
|
|
return (name);
|
2009-08-09 16:37:05 +00:00
|
|
|
|
|
|
|
error:
|
|
|
|
free(buf);
|
|
|
|
return (NULL);
|
2009-02-18 08:41:46 +00:00
|
|
|
}
|
2010-12-30 20:41:08 +00:00
|
|
|
|
2011-12-09 16:37:29 +00:00
|
|
|
char *
|
2012-09-24 13:05:38 +00:00
|
|
|
osdep_get_cwd(int fd)
|
2011-12-09 16:37:29 +00:00
|
|
|
{
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
|
2010-12-30 20:41:08 +00:00
|
|
|
struct event_base *
|
|
|
|
osdep_event_init(void)
|
|
|
|
{
|
|
|
|
return (event_init());
|
|
|
|
}
|