summaryrefslogtreecommitdiff
path: root/tools/ck-get-x11-display-device.c
blob: 7925e76af6bc16cd8dd041a328d5573c57f6707d (plain)
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
 *
 * Copyright (C) 2007 William Jon McCann <mccann@jhu.edu>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation; either version 2 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 * 02111-1307, USA.
 *
 * Authors: William Jon McCann <mccann@jhu.edu>
 *
 */

#include "config.h"

#include <stdlib.h>
#include <stdio.h>
#include <libintl.h>
#include <locale.h>

#ifdef HAVE_KVM_H
#include <kvm.h>
#endif

#ifdef HAVE_SYS_QUEUE_H
#include <sys/queue.h>
#endif

#ifdef HAVE_SYS_FCNTL_H
#include <sys/fcntl.h>
#endif
#ifdef HAVE_SYS_USER_H
#include <sys/user.h>
#endif
#ifdef HAVE_SYS_PARAM_H
#include <sys/param.h>
#endif
#ifdef HAVE_SYS_SYSCTL_H
#include <sys/sysctl.h>
#endif
#ifdef HAVE_SYS_STAT_H
#include <sys/stat.h>
#endif
#ifdef HAVE_LIMITS_H
#include <limits.h>
#endif

#include <X11/Xlib.h>
#include <X11/Xatom.h>
#include <glib.h>
#include <glib/gi18n.h>

#include "ck-sysdeps.h"

#ifdef __FreeBSD__
#include <libprocstat.h>


static char *
get_tty_for_pid (int pid)
{
        gchar *device = NULL;
        gboolean res;
        char errstr[_POSIX2_LINE_MAX];
        int cnt = 0;
        struct vnstat vn;
        struct filestat_list *head;
        struct filestat *fst;
        kvm_t* kd;
        struct kinfo_proc * prc;
        struct procstat *procstat;

        kd = kvm_openfiles (NULL, "/dev/null", NULL, O_RDONLY, errstr);
        prc = kvm_getprocs (kd, KERN_PROC_PID, pid, &cnt);
        procstat = procstat_open_sysctl ();

        for (int i = 0; i < cnt; i++) {
                head = procstat_getfiles (procstat,&prc[i], 0);

                STAILQ_FOREACH (fst, head, next) {
                        if (fst->fs_type == PS_FST_TYPE_VNODE) {
                                procstat_get_vnode_info (procstat, fst, &vn, NULL);

                                if (vn.vn_type == PS_FST_VTYPE_VCHR) {
                                        char *ctty = devname( prc[i].ki_tdev,S_IFCHR);
                                        const char * pre = "ttyv";

                                        if(strncmp (pre, vn.vn_devname, strlen (pre)) == 0 && strncmp (vn.vn_devname, ctty, strlen(ctty)) != 0) {
                                                device = g_strdup_printf ("/dev/%s", vn.vn_devname);
                                                procstat_freefiles (procstat, head);
                                                res = TRUE;
                                                return device;
                                        }
                                }
                        }
                }
        }

        procstat_freefiles(procstat, head);
        return device;
}
#else /* __FreeBSD__ */
static char *
get_tty_for_pid (int pid)
{
        GError        *error;
        char          *device;
        gboolean       res;
        CkProcessStat *xorg_stat;

        error = NULL;
        res = ck_process_stat_new_for_unix_pid (pid, &xorg_stat, &error);
        if (! res) {
                if (error != NULL) {
                        g_warning ("stat on pid %d failed: %s", pid, error->message);
                        g_error_free (error);
                }
                /* keep the tty value */
                return NULL;
        }

        device = ck_process_stat_get_tty (xorg_stat);
        ck_process_stat_free (xorg_stat);
        return device;
}
#endif /* __FreeBSD__ */

static Display *
display_init (const char *display_name)
{
        Display    *xdisplay;

        if (display_name == NULL) {
                display_name = g_getenv ("DISPLAY");
        }

        if (display_name == NULL) {
                g_warning ("DISPLAY is not set");
                exit (1);
        }

        xdisplay = XOpenDisplay (display_name);
        if (xdisplay == NULL) {
                g_warning ("cannot open display: %s", display_name ? display_name : "");
                exit (1);
        }

        return xdisplay;
}

static char *
get_tty_for_display (Display *xdisplay)
{
        Window root_window;
        Atom xfree86_vt_atom;
        Atom return_type_atom;
        int return_format;
        gulong return_count;
        gulong bytes_left;
        guchar *return_value;
        glong vt;
        char *display;

        display = NULL;

        xfree86_vt_atom = XInternAtom (xdisplay, "XFree86_VT", True);

        if (xfree86_vt_atom == None) {
                return NULL;
        }

        root_window = DefaultRootWindow (xdisplay);

        g_assert (root_window != None);

        return_value = NULL;
        if (XGetWindowProperty(xdisplay, root_window, xfree86_vt_atom,
                               0L, 1L, False, XA_INTEGER,
                               &return_type_atom, &return_format,
                               &return_count, &bytes_left,
                               &return_value) != Success) {
                goto out;
        }

        if (return_type_atom != XA_INTEGER) {
                goto out;
        }

        if (return_format != 32) {
                goto out;
        }

        if (return_count != 1) {
                goto out;
        }

        if (bytes_left != 0) {
                goto out;
        }

        memcpy(&vt, return_value, sizeof(glong));

        if (vt <= 0) {
                goto out;
        }

#if defined(__NetBSD__)
        display = g_strdup_printf ("/dev/ttyE%ld", vt - 1);
#elif defined(__FreeBSD__)
        display = g_strdup_printf ("/dev/ttyv%ld", vt - 1);
#elif defined(__OpenBSD__)
        display = g_strdup_printf ("/dev/ttyC%ld", vt - 1);
#else
        display = g_strdup_printf ("/dev/tty%ld", vt);
#endif

out:
        if (return_value != NULL) {
                XFree (return_value);
        }

        return display;
}

int
main (int    argc,
      char **argv)
{
        int      fd;
        int      ret;
        Display *xdisplay;
        static char *display = NULL;
        GError             *error;
        GOptionContext     *context;
        static GOptionEntry entries [] = {
                { "display", 0, 0, G_OPTION_ARG_STRING, &display, N_("display name"), NULL },
                { NULL }
        };

        /* Setup for i18n */
        setlocale(LC_ALL, "");
 
#ifdef ENABLE_NLS
        bindtextdomain(PACKAGE, LOCALEDIR);
        textdomain(PACKAGE);
#endif

        ret = 1;

        context = g_option_context_new (NULL);
        g_option_context_add_main_entries (context, entries, NULL);
        error = NULL;
        ret = g_option_context_parse (context, &argc, &argv, &error);
        g_option_context_free (context);

        xdisplay = display_init (display);

        fd = ConnectionNumber (xdisplay);

        if (fd > 0) {
                int      pid;
                char    *device;
                gboolean res;

                ret = 0;
                res = ck_get_socket_peer_credentials (fd, &pid, NULL, NULL);
                if (res) {
                        if (pid > 0) {
                                device = get_tty_for_pid (pid);

                                if (device == NULL) {
                                        device = get_tty_for_display (xdisplay);
                                }

                                if (device != NULL) {
                                        printf ("%s\n", device);
                                        g_free (device);
                                }
                        }
                }
        }

	return ret;
}