4 * Copyright (c) 2009 Todd Carson <toc@daybefore.net>
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
15 * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
16 * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19 #include <sys/types.h>
32 osdep_get_name(int fd
, char *tty
)
41 if ((f
= open(tty
, O_RDONLY
)) < 0)
44 if (fstat(f
, &st
) != 0 || ioctl(f
, TIOCGPGRP
, &pgrp
) != 0) {
50 xasprintf(&path
, "/proc/%u/psinfo", (u_int
) pgrp
);
51 f
= open(path
, O_RDONLY
);
56 bytes
= read(f
, &p
, sizeof(p
));
58 if (bytes
!= sizeof(p
))
61 if (p
.pr_ttydev
!= st
.st_rdev
)
64 return (xstrdup(p
.pr_fname
));
70 static char target
[MAXPATHLEN
+ 1];
75 if ((pgrp
= tcgetpgrp(fd
)) == -1)
78 xasprintf(&path
, "/proc/%u/path/cwd", (u_int
) pgrp
);
79 n
= readlink(path
, target
, MAXPATHLEN
);
89 osdep_event_init(void)
91 return (event_init());