2007-10-03 17:26:14 +02:00
|
|
|
/*
|
2007-09-12 14:29:51 +02:00
|
|
|
* awesome.c - awesome main functions
|
2007-10-03 17:26:14 +02:00
|
|
|
*
|
2008-01-02 16:59:43 +01:00
|
|
|
* Copyright © 2007-2008 Julien Danjou <julien@danjou.info>
|
2007-10-03 17:26:14 +02:00
|
|
|
*
|
|
|
|
* 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.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*
|
|
|
|
*/
|
2007-09-05 20:15:00 +02:00
|
|
|
|
2014-03-30 20:07:48 +02:00
|
|
|
#include "awesome.h"
|
|
|
|
|
|
|
|
#include "banning.h"
|
|
|
|
#include "common/atoms.h"
|
|
|
|
#include "common/backtrace.h"
|
|
|
|
#include "common/version.h"
|
|
|
|
#include "common/xutil.h"
|
2015-02-23 17:08:24 +01:00
|
|
|
#include "xkb.h"
|
2014-03-30 20:07:48 +02:00
|
|
|
#include "dbus.h"
|
|
|
|
#include "event.h"
|
|
|
|
#include "ewmh.h"
|
|
|
|
#include "globalconf.h"
|
|
|
|
#include "objects/client.h"
|
|
|
|
#include "objects/screen.h"
|
|
|
|
#include "spawn.h"
|
|
|
|
#include "systray.h"
|
|
|
|
#include "xwindow.h"
|
|
|
|
|
2008-01-31 18:34:59 +01:00
|
|
|
#include <getopt.h>
|
|
|
|
|
2007-09-05 20:15:00 +02:00
|
|
|
#include <locale.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <unistd.h>
|
2007-12-27 16:03:21 +01:00
|
|
|
#include <signal.h>
|
2014-03-07 10:39:49 +01:00
|
|
|
#include <sys/time.h>
|
2008-03-21 16:50:17 +01:00
|
|
|
|
2010-08-07 13:28:44 +02:00
|
|
|
#include <xcb/bigreq.h>
|
|
|
|
#include <xcb/randr.h>
|
2015-10-10 21:51:04 +02:00
|
|
|
#include <xcb/xcb_atom.h>
|
2014-03-30 20:07:48 +02:00
|
|
|
#include <xcb/xcb_aux.h>
|
2008-09-16 15:36:44 +02:00
|
|
|
#include <xcb/xcb_event.h>
|
2010-08-07 13:28:44 +02:00
|
|
|
#include <xcb/xinerama.h>
|
|
|
|
#include <xcb/xtest.h>
|
2012-11-05 17:56:56 +01:00
|
|
|
#include <xcb/shape.h>
|
2019-02-06 09:21:26 +01:00
|
|
|
#include <xcb/xfixes.h>
|
2008-09-16 15:36:44 +02:00
|
|
|
|
2012-11-21 21:01:12 +01:00
|
|
|
#include <glib-unix.h>
|
|
|
|
|
2008-05-24 08:59:27 +02:00
|
|
|
awesome_t globalconf;
|
2007-12-16 02:45:38 +01:00
|
|
|
|
2009-09-14 15:16:15 +02:00
|
|
|
/** argv used to run awesome */
|
2017-06-02 15:39:47 +02:00
|
|
|
static char **awesome_argv;
|
2009-09-14 15:16:15 +02:00
|
|
|
|
2014-03-07 10:39:49 +01:00
|
|
|
/** time of last main loop wakeup */
|
|
|
|
static struct timeval last_wakeup;
|
|
|
|
|
|
|
|
/** current limit for the main loop's runtime */
|
|
|
|
static float main_loop_iteration_limit = 0.1;
|
|
|
|
|
2018-08-21 15:30:07 +02:00
|
|
|
/** A pipe that is used to asynchronously handle SIGCHLD */
|
|
|
|
static int sigchld_pipe[2];
|
|
|
|
|
2019-02-17 10:17:47 +01:00
|
|
|
/* Initialise various random number generators */
|
|
|
|
static void
|
|
|
|
init_rng(void)
|
|
|
|
{
|
|
|
|
/* LuaJIT uses its own, internal RNG, so initialise that */
|
|
|
|
lua_State *L = globalconf_get_lua_State();
|
|
|
|
|
|
|
|
/* Get math.randomseed */
|
|
|
|
lua_getglobal(L, "math");
|
|
|
|
lua_getfield(L, -1, "randomseed");
|
|
|
|
|
|
|
|
/* Push a seed */
|
|
|
|
lua_pushnumber(L, g_random_int() + g_random_double());
|
|
|
|
|
|
|
|
/* Call math.randomseed */
|
|
|
|
lua_call(L, 1, 0);
|
|
|
|
|
|
|
|
/* Remove "math" global */
|
|
|
|
lua_pop(L, 1);
|
|
|
|
|
|
|
|
/* Lua 5.1, Lua 5.2, and (sometimes) Lua 5.3 use rand()/srand() */
|
|
|
|
srand(g_random_int());
|
|
|
|
|
|
|
|
/* When Lua 5.3 is built with LUA_USE_POSIX, it uses random()/srandom() */
|
|
|
|
srandom(g_random_int());
|
|
|
|
}
|
|
|
|
|
2008-09-02 17:12:10 +02:00
|
|
|
/** Call before exiting.
|
|
|
|
*/
|
|
|
|
void
|
2011-03-20 23:20:02 +01:00
|
|
|
awesome_atexit(bool restart)
|
2008-09-02 17:12:10 +02:00
|
|
|
{
|
2014-12-06 11:56:58 +01:00
|
|
|
lua_State *L = globalconf_get_lua_State();
|
|
|
|
lua_pushboolean(L, restart);
|
|
|
|
signal_object_emit(L, &global_signals, "exit", 1);
|
2009-08-25 16:30:19 +02:00
|
|
|
|
2015-07-26 15:59:34 +02:00
|
|
|
/* Move clients where we want them to be and keep the stacking order intact */
|
|
|
|
foreach(c, globalconf.stack)
|
2015-01-11 10:42:45 +01:00
|
|
|
{
|
|
|
|
xcb_reparent_window(globalconf.connection, (*c)->window, globalconf.screen->root,
|
|
|
|
(*c)->geometry.x, (*c)->geometry.y);
|
|
|
|
}
|
|
|
|
|
2015-07-29 19:04:00 +02:00
|
|
|
/* Save the client order. This is useful also for "hard" restarts. */
|
|
|
|
xcb_window_t *wins = p_alloca(xcb_window_t, globalconf.clients.len);
|
|
|
|
int n = 0;
|
|
|
|
foreach(client, globalconf.clients)
|
|
|
|
wins[n++] = (*client)->window;
|
|
|
|
|
|
|
|
xcb_change_property(globalconf.connection, XCB_PROP_MODE_REPLACE,
|
|
|
|
globalconf.screen->root,
|
|
|
|
AWESOME_CLIENT_ORDER, XCB_ATOM_WINDOW, 32, n, wins);
|
2015-07-26 17:03:10 +02:00
|
|
|
|
2008-09-02 17:12:10 +02:00
|
|
|
a_dbus_cleanup();
|
|
|
|
|
2010-08-16 13:47:40 +02:00
|
|
|
systray_cleanup();
|
2008-09-03 18:03:31 +02:00
|
|
|
|
2009-09-04 15:10:56 +02:00
|
|
|
/* Close Lua */
|
2014-12-06 11:56:58 +01:00
|
|
|
lua_close(L);
|
2009-09-04 15:10:56 +02:00
|
|
|
|
2012-12-13 20:31:18 +01:00
|
|
|
/* X11 is a great protocol. There is a save-set so that reparenting WMs
|
|
|
|
* don't kill clients when they shut down. However, when a focused windows
|
|
|
|
* is saved, the focus will move to its parent with revert-to none.
|
|
|
|
* Immediately afterwards, this parent is destroyed and the focus is gone.
|
|
|
|
* Work around this by placing the focus where we like it to be.
|
|
|
|
*/
|
|
|
|
xcb_set_input_focus(globalconf.connection, XCB_INPUT_FOCUS_POINTER_ROOT,
|
2017-04-15 12:05:42 +02:00
|
|
|
XCB_NONE, globalconf.timestamp);
|
2012-12-13 20:31:18 +01:00
|
|
|
xcb_aux_sync(globalconf.connection);
|
2008-09-02 17:12:10 +02:00
|
|
|
|
2015-05-14 12:12:06 +02:00
|
|
|
xkb_free();
|
|
|
|
|
2009-09-04 15:10:56 +02:00
|
|
|
/* Disconnect *after* closing lua */
|
2013-09-19 16:48:10 +02:00
|
|
|
xcb_cursor_context_free(globalconf.cursor_ctx);
|
2008-09-02 17:12:10 +02:00
|
|
|
xcb_disconnect(globalconf.connection);
|
2018-08-21 15:30:07 +02:00
|
|
|
|
|
|
|
close(sigchld_pipe[0]);
|
|
|
|
close(sigchld_pipe[1]);
|
2008-09-02 17:12:10 +02:00
|
|
|
}
|
|
|
|
|
2015-07-26 17:03:10 +02:00
|
|
|
/** Restore the client order after a restart */
|
|
|
|
static void
|
|
|
|
restore_client_order(xcb_get_property_cookie_t prop_cookie)
|
|
|
|
{
|
|
|
|
int client_idx = 0;
|
|
|
|
xcb_window_t *windows;
|
|
|
|
xcb_get_property_reply_t *reply;
|
|
|
|
|
|
|
|
reply = xcb_get_property_reply(globalconf.connection, prop_cookie, NULL);
|
|
|
|
if (!reply || reply->format != 32 || reply->value_len == 0) {
|
|
|
|
p_delete(&reply);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
windows = xcb_get_property_value(reply);
|
|
|
|
for (uint32_t i = 0; i < reply->value_len; i++)
|
|
|
|
/* Find windows[i] and swap it to where it belongs */
|
|
|
|
foreach(c, globalconf.clients)
|
|
|
|
if ((*c)->window == windows[i])
|
|
|
|
{
|
|
|
|
client_t *tmp = *c;
|
|
|
|
*c = globalconf.clients.tab[client_idx];
|
|
|
|
globalconf.clients.tab[client_idx] = tmp;
|
|
|
|
client_idx++;
|
|
|
|
}
|
|
|
|
|
|
|
|
luaA_class_emit_signal(globalconf_get_lua_State(), &client_class, "list", 0);
|
|
|
|
p_delete(&reply);
|
|
|
|
}
|
|
|
|
|
2008-06-20 08:32:46 +02:00
|
|
|
/** Scan X to find windows to manage.
|
2007-09-16 22:51:11 +02:00
|
|
|
*/
|
2007-09-05 20:15:00 +02:00
|
|
|
static void
|
2011-10-19 15:11:11 +02:00
|
|
|
scan(xcb_query_tree_cookie_t tree_c)
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
2010-08-16 13:47:40 +02:00
|
|
|
int i, tree_c_len;
|
2008-03-27 06:12:39 +01:00
|
|
|
xcb_query_tree_reply_t *tree_r;
|
2008-03-21 16:50:17 +01:00
|
|
|
xcb_window_t *wins = NULL;
|
2008-03-27 06:12:39 +01:00
|
|
|
xcb_get_window_attributes_reply_t *attr_r;
|
|
|
|
xcb_get_geometry_reply_t *geom_r;
|
2015-07-26 17:03:10 +02:00
|
|
|
xcb_get_property_cookie_t prop_cookie;
|
2008-03-21 16:50:17 +01:00
|
|
|
|
2010-08-16 13:47:40 +02:00
|
|
|
tree_r = xcb_query_tree_reply(globalconf.connection,
|
2010-08-16 14:14:15 +02:00
|
|
|
tree_c,
|
2010-08-16 13:47:40 +02:00
|
|
|
NULL);
|
2008-03-30 15:46:07 +02:00
|
|
|
|
2010-08-16 13:47:40 +02:00
|
|
|
if(!tree_r)
|
|
|
|
return;
|
2008-09-09 17:30:39 +02:00
|
|
|
|
2015-07-26 17:03:10 +02:00
|
|
|
/* This gets the property and deletes it */
|
|
|
|
prop_cookie = xcb_get_property_unchecked(globalconf.connection, true,
|
|
|
|
globalconf.screen->root, AWESOME_CLIENT_ORDER,
|
|
|
|
XCB_ATOM_WINDOW, 0, UINT_MAX);
|
|
|
|
|
2010-08-16 13:47:40 +02:00
|
|
|
/* Get the tree of the children windows of the current root window */
|
|
|
|
if(!(wins = xcb_query_tree_children(tree_r)))
|
|
|
|
fatal("cannot get tree children");
|
2008-03-21 16:50:17 +01:00
|
|
|
|
2010-08-16 13:47:40 +02:00
|
|
|
tree_c_len = xcb_query_tree_children_length(tree_r);
|
|
|
|
xcb_get_window_attributes_cookie_t attr_wins[tree_c_len];
|
|
|
|
xcb_get_property_cookie_t state_wins[tree_c_len];
|
2014-03-15 11:48:32 +01:00
|
|
|
xcb_get_geometry_cookie_t geom_wins[tree_c_len];
|
2008-03-21 16:50:17 +01:00
|
|
|
|
2010-08-16 13:47:40 +02:00
|
|
|
for(i = 0; i < tree_c_len; i++)
|
|
|
|
{
|
|
|
|
attr_wins[i] = xcb_get_window_attributes_unchecked(globalconf.connection,
|
|
|
|
wins[i]);
|
2008-08-13 18:59:34 +02:00
|
|
|
|
2010-08-16 13:47:40 +02:00
|
|
|
state_wins[i] = xwindow_get_state_unchecked(wins[i]);
|
2014-03-15 11:48:32 +01:00
|
|
|
geom_wins[i] = xcb_get_geometry_unchecked(globalconf.connection, wins[i]);
|
2010-08-16 13:47:40 +02:00
|
|
|
}
|
2008-03-30 15:46:07 +02:00
|
|
|
|
2010-08-16 13:47:40 +02:00
|
|
|
for(i = 0; i < tree_c_len; i++)
|
|
|
|
{
|
|
|
|
attr_r = xcb_get_window_attributes_reply(globalconf.connection,
|
|
|
|
attr_wins[i],
|
|
|
|
NULL);
|
2014-03-15 11:48:32 +01:00
|
|
|
geom_r = xcb_get_geometry_reply(globalconf.connection, geom_wins[i], NULL);
|
2008-06-20 07:24:31 +02:00
|
|
|
|
2017-11-17 10:30:56 +01:00
|
|
|
long state = xwindow_get_state_reply(state_wins[i]);
|
2008-03-21 16:50:17 +01:00
|
|
|
|
Handle unexpected XCB failures (#1260)
We have many places where we are sending an XCB request and expect an
answer where the protocol guarantees that no error can occur and we are
sure to get an answer. However, for example if the X11 server crashes,
these places can still fail. This commit tries to handle failures at all
these places.
I went through the code and tried to add missing error checking (well,
NULL-pointer-checking) to all affected places.
In most cases these errors are just silently ignored. The exception is
in screen querying during startup. If, for example, querying RandR info
fails, we will fall back to Xinerama or zaphod mode. This is serious
enough that it warrants a warning. In most cases, we should exit shortly
afterwards anyway, because, as explained above, these requests should
only fail when our connection to the X11 server breaks.
References: https://github.com/awesomeWM/awesome/issues/1205#issuecomment-265869874
Signed-off-by: Uli Schlachter <psychon@znc.in>
2016-12-10 00:48:53 +01:00
|
|
|
if(!geom_r || !attr_r || attr_r->override_redirect
|
2010-08-16 13:47:40 +02:00
|
|
|
|| attr_r->map_state == XCB_MAP_STATE_UNMAPPED
|
2011-04-27 06:49:56 +02:00
|
|
|
|| state == XCB_ICCCM_WM_STATE_WITHDRAWN)
|
2010-08-16 13:47:40 +02:00
|
|
|
{
|
2008-03-27 06:12:39 +01:00
|
|
|
p_delete(&attr_r);
|
2014-03-15 11:48:32 +01:00
|
|
|
p_delete(&geom_r);
|
2010-08-16 13:47:40 +02:00
|
|
|
continue;
|
2008-03-30 15:46:07 +02:00
|
|
|
}
|
|
|
|
|
2014-03-16 20:15:02 +01:00
|
|
|
client_manage(wins[i], geom_r, attr_r);
|
2010-08-16 13:47:40 +02:00
|
|
|
|
2014-03-15 11:48:32 +01:00
|
|
|
p_delete(&attr_r);
|
2010-08-16 13:47:40 +02:00
|
|
|
p_delete(&geom_r);
|
2007-09-05 20:15:00 +02:00
|
|
|
}
|
2010-08-16 13:47:40 +02:00
|
|
|
|
|
|
|
p_delete(&tree_r);
|
2015-07-26 17:03:10 +02:00
|
|
|
|
|
|
|
restore_client_order(prop_cookie);
|
2007-09-05 20:15:00 +02:00
|
|
|
}
|
|
|
|
|
2015-10-10 21:51:04 +02:00
|
|
|
static void
|
2015-10-10 22:12:25 +02:00
|
|
|
acquire_WM_Sn(bool replace)
|
2015-10-10 21:51:04 +02:00
|
|
|
{
|
|
|
|
xcb_intern_atom_cookie_t atom_q;
|
|
|
|
xcb_intern_atom_reply_t *atom_r;
|
|
|
|
char *atom_name;
|
2015-10-10 22:12:25 +02:00
|
|
|
xcb_get_selection_owner_reply_t *get_sel_reply;
|
2015-10-10 22:06:41 +02:00
|
|
|
xcb_client_message_event_t ev;
|
2015-10-10 21:51:04 +02:00
|
|
|
|
|
|
|
/* Get the WM_Sn atom */
|
|
|
|
globalconf.selection_owner_window = xcb_generate_id(globalconf.connection);
|
|
|
|
xcb_create_window(globalconf.connection, globalconf.screen->root_depth,
|
|
|
|
globalconf.selection_owner_window, globalconf.screen->root,
|
|
|
|
-1, -1, 1, 1, 0,
|
|
|
|
XCB_COPY_FROM_PARENT, globalconf.screen->root_visual,
|
|
|
|
0, NULL);
|
2015-11-07 11:48:10 +01:00
|
|
|
xwindow_set_class_instance(globalconf.selection_owner_window);
|
|
|
|
xwindow_set_name_static(globalconf.selection_owner_window,
|
|
|
|
"Awesome WM_Sn selection owner window");
|
2015-10-10 21:51:04 +02:00
|
|
|
|
|
|
|
atom_name = xcb_atom_name_by_screen("WM_S", globalconf.default_screen);
|
|
|
|
if(!atom_name)
|
|
|
|
fatal("error getting WM_Sn atom name");
|
|
|
|
|
|
|
|
atom_q = xcb_intern_atom_unchecked(globalconf.connection, false,
|
|
|
|
a_strlen(atom_name), atom_name);
|
|
|
|
|
|
|
|
p_delete(&atom_name);
|
|
|
|
|
|
|
|
atom_r = xcb_intern_atom_reply(globalconf.connection, atom_q, NULL);
|
|
|
|
if(!atom_r)
|
|
|
|
fatal("error getting WM_Sn atom");
|
|
|
|
|
2015-10-10 21:59:12 +02:00
|
|
|
globalconf.selection_atom = atom_r->atom;
|
2015-10-10 21:51:04 +02:00
|
|
|
p_delete(&atom_r);
|
|
|
|
|
2015-10-10 22:12:25 +02:00
|
|
|
/* Is the selection already owned? */
|
|
|
|
get_sel_reply = xcb_get_selection_owner_reply(globalconf.connection,
|
|
|
|
xcb_get_selection_owner(globalconf.connection, globalconf.selection_atom),
|
|
|
|
NULL);
|
Handle unexpected XCB failures (#1260)
We have many places where we are sending an XCB request and expect an
answer where the protocol guarantees that no error can occur and we are
sure to get an answer. However, for example if the X11 server crashes,
these places can still fail. This commit tries to handle failures at all
these places.
I went through the code and tried to add missing error checking (well,
NULL-pointer-checking) to all affected places.
In most cases these errors are just silently ignored. The exception is
in screen querying during startup. If, for example, querying RandR info
fails, we will fall back to Xinerama or zaphod mode. This is serious
enough that it warrants a warning. In most cases, we should exit shortly
afterwards anyway, because, as explained above, these requests should
only fail when our connection to the X11 server breaks.
References: https://github.com/awesomeWM/awesome/issues/1205#issuecomment-265869874
Signed-off-by: Uli Schlachter <psychon@znc.in>
2016-12-10 00:48:53 +01:00
|
|
|
if (!get_sel_reply)
|
|
|
|
fatal("GetSelectionOwner for WM_Sn failed");
|
2015-10-10 22:12:25 +02:00
|
|
|
if (!replace && get_sel_reply->owner != XCB_NONE)
|
2015-10-10 22:19:22 +02:00
|
|
|
fatal("another window manager is already running (selection owned; use --replace)");
|
2015-10-10 22:12:25 +02:00
|
|
|
|
2015-10-10 21:51:04 +02:00
|
|
|
/* Acquire the selection */
|
2015-10-10 21:59:12 +02:00
|
|
|
xcb_set_selection_owner(globalconf.connection, globalconf.selection_owner_window,
|
2017-04-15 12:05:42 +02:00
|
|
|
globalconf.selection_atom, globalconf.timestamp);
|
2015-10-10 22:12:25 +02:00
|
|
|
if (get_sel_reply->owner != XCB_NONE)
|
|
|
|
{
|
|
|
|
/* Wait for the old owner to go away */
|
|
|
|
xcb_get_geometry_reply_t *geom_reply = NULL;
|
|
|
|
do {
|
|
|
|
p_delete(&geom_reply);
|
|
|
|
geom_reply = xcb_get_geometry_reply(globalconf.connection,
|
|
|
|
xcb_get_geometry(globalconf.connection, get_sel_reply->owner),
|
|
|
|
NULL);
|
|
|
|
} while (geom_reply != NULL);
|
|
|
|
}
|
|
|
|
p_delete(&get_sel_reply);
|
2015-10-10 22:06:41 +02:00
|
|
|
|
|
|
|
/* Announce that we are the new owner */
|
|
|
|
p_clear(&ev, 1);
|
|
|
|
ev.response_type = XCB_CLIENT_MESSAGE;
|
|
|
|
ev.window = globalconf.screen->root;
|
|
|
|
ev.format = 32;
|
|
|
|
ev.type = MANAGER;
|
2017-04-15 12:05:42 +02:00
|
|
|
ev.data.data32[0] = globalconf.timestamp;
|
2015-10-10 22:06:41 +02:00
|
|
|
ev.data.data32[1] = globalconf.selection_atom;
|
|
|
|
ev.data.data32[2] = globalconf.selection_owner_window;
|
|
|
|
ev.data.data32[3] = ev.data.data32[4] = 0;
|
|
|
|
|
|
|
|
xcb_send_event(globalconf.connection, false, globalconf.screen->root, 0xFFFFFF, (char *) &ev);
|
2015-10-10 21:51:04 +02:00
|
|
|
}
|
|
|
|
|
2017-04-15 11:46:10 +02:00
|
|
|
static void
|
|
|
|
acquire_timestamp(void)
|
|
|
|
{
|
|
|
|
/* Getting a current timestamp is hard. ICCCM recommends a zero-length
|
|
|
|
* append to a property, so let's do that.
|
|
|
|
*/
|
|
|
|
xcb_generic_event_t *event;
|
|
|
|
xcb_window_t win = globalconf.screen->root;
|
|
|
|
xcb_atom_t atom = XCB_ATOM_RESOURCE_MANAGER; /* Just something random */
|
|
|
|
xcb_atom_t type = XCB_ATOM_STRING; /* Equally random */
|
|
|
|
|
|
|
|
xcb_grab_server(globalconf.connection);
|
|
|
|
xcb_change_window_attributes(globalconf.connection, win,
|
|
|
|
XCB_CW_EVENT_MASK, (uint32_t[]) { XCB_EVENT_MASK_PROPERTY_CHANGE });
|
|
|
|
xcb_change_property(globalconf.connection, XCB_PROP_MODE_APPEND, win,
|
|
|
|
atom, type, 8, 0, "");
|
|
|
|
xcb_change_window_attributes(globalconf.connection, win,
|
|
|
|
XCB_CW_EVENT_MASK, (uint32_t[]) { 0 });
|
2019-02-27 10:20:22 +01:00
|
|
|
xutil_ungrab_server(globalconf.connection);
|
2017-04-15 11:46:10 +02:00
|
|
|
|
|
|
|
/* Now wait for the event */
|
|
|
|
while((event = xcb_wait_for_event(globalconf.connection)))
|
|
|
|
{
|
|
|
|
/* Is it the event we are waiting for? */
|
|
|
|
if(XCB_EVENT_RESPONSE_TYPE(event) == XCB_PROPERTY_NOTIFY)
|
|
|
|
{
|
|
|
|
xcb_property_notify_event_t *ev = (void *) event;
|
|
|
|
globalconf.timestamp = ev->time;
|
|
|
|
p_delete(&event);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Hm, not the right event. */
|
|
|
|
if (globalconf.pending_event != NULL)
|
|
|
|
{
|
|
|
|
event_handle(globalconf.pending_event);
|
|
|
|
p_delete(&globalconf.pending_event);
|
|
|
|
}
|
|
|
|
globalconf.pending_event = event;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-22 10:46:49 +02:00
|
|
|
static xcb_generic_event_t *poll_for_event(void)
|
|
|
|
{
|
|
|
|
if (globalconf.pending_event) {
|
|
|
|
xcb_generic_event_t *event = globalconf.pending_event;
|
|
|
|
globalconf.pending_event = NULL;
|
|
|
|
return event;
|
|
|
|
}
|
|
|
|
|
|
|
|
return xcb_poll_for_event(globalconf.connection);
|
|
|
|
}
|
|
|
|
|
2009-06-18 19:02:59 +02:00
|
|
|
static void
|
2012-11-21 21:01:12 +01:00
|
|
|
a_xcb_check(void)
|
2008-06-17 00:30:53 +02:00
|
|
|
{
|
2009-01-28 12:27:58 +01:00
|
|
|
xcb_generic_event_t *mouse = NULL, *event;
|
|
|
|
|
2016-10-22 10:46:49 +02:00
|
|
|
while((event = poll_for_event()))
|
2009-01-28 12:27:58 +01:00
|
|
|
{
|
|
|
|
/* We will treat mouse events later.
|
|
|
|
* We cannot afford to treat all mouse motion events,
|
|
|
|
* because that would be too much CPU intensive, so we just
|
|
|
|
* take the last we get after a bunch of events. */
|
|
|
|
if(XCB_EVENT_RESPONSE_TYPE(event) == XCB_MOTION_NOTIFY)
|
|
|
|
{
|
|
|
|
p_delete(&mouse);
|
|
|
|
mouse = event;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-10-06 21:14:10 +02:00
|
|
|
uint8_t type = XCB_EVENT_RESPONSE_TYPE(event);
|
2013-10-06 10:34:37 +02:00
|
|
|
if(mouse && (type == XCB_ENTER_NOTIFY || type == XCB_LEAVE_NOTIFY
|
|
|
|
|| type == XCB_BUTTON_PRESS || type == XCB_BUTTON_RELEASE))
|
2010-10-06 21:14:10 +02:00
|
|
|
{
|
2013-10-06 10:34:37 +02:00
|
|
|
/* Make sure enter/motion/leave/press/release events are handled
|
|
|
|
* in the correct order */
|
2010-10-06 21:14:10 +02:00
|
|
|
event_handle(mouse);
|
|
|
|
p_delete(&mouse);
|
|
|
|
}
|
2010-08-08 17:35:48 +02:00
|
|
|
event_handle(event);
|
2009-01-28 12:27:58 +01:00
|
|
|
p_delete(&event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(mouse)
|
|
|
|
{
|
2010-08-08 17:35:48 +02:00
|
|
|
event_handle(mouse);
|
2009-01-28 12:27:58 +01:00
|
|
|
p_delete(&mouse);
|
|
|
|
}
|
2008-06-17 00:30:53 +02:00
|
|
|
}
|
|
|
|
|
2012-11-21 21:01:12 +01:00
|
|
|
static gboolean
|
|
|
|
a_xcb_io_cb(GIOChannel *source, GIOCondition cond, gpointer data)
|
2008-06-17 00:30:53 +02:00
|
|
|
{
|
2012-11-21 21:01:12 +01:00
|
|
|
/* a_xcb_check() already handled all events */
|
2010-11-13 22:29:05 +01:00
|
|
|
|
|
|
|
if(xcb_connection_has_error(globalconf.connection))
|
2013-11-16 11:28:27 +01:00
|
|
|
fatal("X server connection broke (error %d)",
|
|
|
|
xcb_connection_has_error(globalconf.connection));
|
2012-11-21 21:01:12 +01:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gint
|
|
|
|
a_glib_poll(GPollFD *ufds, guint nfsd, gint timeout)
|
|
|
|
{
|
|
|
|
guint res;
|
2014-03-07 10:39:49 +01:00
|
|
|
struct timeval now, length_time;
|
|
|
|
float length;
|
2018-08-21 15:30:58 +02:00
|
|
|
int saved_errno;
|
2016-02-17 18:40:01 +01:00
|
|
|
lua_State *L = globalconf_get_lua_State();
|
2014-03-07 10:39:49 +01:00
|
|
|
|
|
|
|
/* Do all deferred work now */
|
2012-11-21 21:01:12 +01:00
|
|
|
awesome_refresh();
|
2014-03-07 10:39:49 +01:00
|
|
|
|
2016-02-17 18:40:01 +01:00
|
|
|
/* Check if the Lua stack is the way it should be */
|
|
|
|
if (lua_gettop(L) != 0) {
|
|
|
|
warn("Something was left on the Lua stack, this is a bug!");
|
|
|
|
luaA_dumpstack(L);
|
|
|
|
lua_settop(L, 0);
|
|
|
|
}
|
|
|
|
|
2016-10-22 10:46:49 +02:00
|
|
|
/* Don't sleep if there is a pending event */
|
|
|
|
assert(globalconf.pending_event == NULL);
|
|
|
|
globalconf.pending_event = xcb_poll_for_event(globalconf.connection);
|
|
|
|
if (globalconf.pending_event != NULL)
|
|
|
|
timeout = 0;
|
|
|
|
|
2014-03-07 10:39:49 +01:00
|
|
|
/* Check how long this main loop iteration took */
|
|
|
|
gettimeofday(&now, NULL);
|
|
|
|
timersub(&now, &last_wakeup, &length_time);
|
|
|
|
length = length_time.tv_sec + length_time.tv_usec * 1.0f / 1e6;
|
|
|
|
if (length > main_loop_iteration_limit) {
|
|
|
|
warn("Last main loop iteration took %.6f seconds! Increasing limit for "
|
|
|
|
"this warning to that value.", length);
|
|
|
|
main_loop_iteration_limit = length;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Actually do the polling, record time of wakeup and check for new xcb events */
|
2012-11-21 21:01:12 +01:00
|
|
|
res = g_poll(ufds, nfsd, timeout);
|
2018-08-21 15:30:58 +02:00
|
|
|
saved_errno = errno;
|
2014-03-07 10:39:49 +01:00
|
|
|
gettimeofday(&last_wakeup, NULL);
|
2012-11-21 21:01:12 +01:00
|
|
|
a_xcb_check();
|
2018-08-21 15:30:58 +02:00
|
|
|
errno = saved_errno;
|
2014-03-07 10:39:49 +01:00
|
|
|
|
2012-11-21 21:01:12 +01:00
|
|
|
return res;
|
2008-06-17 00:30:53 +02:00
|
|
|
}
|
|
|
|
|
2009-06-05 12:18:16 +02:00
|
|
|
static void
|
2009-06-05 23:44:37 +02:00
|
|
|
signal_fatal(int signum)
|
2009-06-05 12:18:16 +02:00
|
|
|
{
|
|
|
|
buffer_t buf;
|
|
|
|
backtrace_get(&buf);
|
2012-07-15 00:18:06 +02:00
|
|
|
fatal("signal %d, dumping backtrace\n%s", signum, buf.s);
|
2009-06-05 12:18:16 +02:00
|
|
|
}
|
|
|
|
|
2018-08-21 15:30:07 +02:00
|
|
|
/* Signal handler for SIGCHLD. Causes reap_children() to be called. */
|
|
|
|
static void
|
|
|
|
signal_child(int signum)
|
|
|
|
{
|
|
|
|
assert(signum == SIGCHLD);
|
|
|
|
int res = write(sigchld_pipe[1], " ", 1);
|
2018-10-06 22:49:29 +02:00
|
|
|
(void) res;
|
2018-08-21 15:30:07 +02:00
|
|
|
assert(res == 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* There was a SIGCHLD signal. Read from sigchld_pipe and reap children. */
|
|
|
|
static gboolean
|
|
|
|
reap_children(GIOChannel *channel, GIOCondition condition, gpointer user_data)
|
|
|
|
{
|
|
|
|
pid_t child;
|
|
|
|
int status;
|
|
|
|
char buffer[1024];
|
|
|
|
ssize_t result = read(sigchld_pipe[0], &buffer[0], sizeof(buffer));
|
|
|
|
if (result < 0)
|
|
|
|
fatal("Error reading from signal pipe: %s", strerror(errno));
|
|
|
|
|
|
|
|
while ((child = waitpid(-1, &status, WNOHANG)) > 0) {
|
|
|
|
spawn_child_exited(child, status);
|
|
|
|
}
|
|
|
|
if (child < 0 && errno != ECHILD)
|
|
|
|
warn("waitpid(-1) failed: %s", strerror(errno));
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2008-04-09 12:05:37 +02:00
|
|
|
/** Function to exit on some signals.
|
2012-11-21 21:01:12 +01:00
|
|
|
* \param data currently unused
|
2008-04-09 12:05:37 +02:00
|
|
|
*/
|
2012-11-21 21:01:12 +01:00
|
|
|
static gboolean
|
|
|
|
exit_on_signal(gpointer data)
|
2007-12-27 16:03:21 +01:00
|
|
|
{
|
2012-11-21 21:01:12 +01:00
|
|
|
g_main_loop_quit(globalconf.loop);
|
|
|
|
return TRUE;
|
2007-12-27 16:03:21 +01:00
|
|
|
}
|
|
|
|
|
2008-09-02 17:12:10 +02:00
|
|
|
void
|
|
|
|
awesome_restart(void)
|
|
|
|
{
|
2011-03-20 23:20:02 +01:00
|
|
|
awesome_atexit(true);
|
2018-08-21 15:30:07 +02:00
|
|
|
execvp(awesome_argv[0], awesome_argv);
|
2017-06-02 15:39:47 +02:00
|
|
|
fatal("execv() failed: %s", strerror(errno));
|
2008-09-02 17:12:10 +02:00
|
|
|
}
|
|
|
|
|
2009-08-30 07:26:19 +02:00
|
|
|
/** Function to restart awesome on some signals.
|
2012-11-21 21:01:12 +01:00
|
|
|
* \param data currently unused
|
2008-07-22 10:23:07 +02:00
|
|
|
*/
|
2012-11-21 21:01:12 +01:00
|
|
|
static gboolean
|
|
|
|
restart_on_signal(gpointer data)
|
2008-07-22 10:23:07 +02:00
|
|
|
{
|
2008-09-02 17:12:10 +02:00
|
|
|
awesome_restart();
|
2012-11-21 21:01:12 +01:00
|
|
|
return TRUE;
|
2008-07-22 10:23:07 +02:00
|
|
|
}
|
|
|
|
|
2017-01-25 14:06:41 +01:00
|
|
|
static bool
|
|
|
|
true_config_callback(const char *unused)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-01-21 15:04:49 +01:00
|
|
|
/** Print help and exit(2) with given exit_code.
|
2008-06-20 08:32:46 +02:00
|
|
|
* \param exit_code The exit code.
|
2008-01-21 15:04:49 +01:00
|
|
|
*/
|
2008-01-21 15:57:24 +01:00
|
|
|
static void __attribute__ ((noreturn))
|
|
|
|
exit_help(int exit_code)
|
2008-01-21 15:04:49 +01:00
|
|
|
{
|
2008-01-21 15:55:56 +01:00
|
|
|
FILE *outfile = (exit_code == EXIT_SUCCESS) ? stdout : stderr;
|
2008-02-04 14:48:44 +01:00
|
|
|
fprintf(outfile,
|
|
|
|
"Usage: awesome [OPTION]\n\
|
|
|
|
-h, --help show help\n\
|
|
|
|
-v, --version show version\n\
|
2008-09-30 16:59:08 +02:00
|
|
|
-c, --config FILE configuration file to use\n\
|
2016-07-24 14:57:14 +02:00
|
|
|
--search DIR add a directory to the library search path\n\
|
2015-10-11 15:00:08 +02:00
|
|
|
-k, --check check configuration file syntax\n\
|
2016-03-22 08:26:13 +01:00
|
|
|
-a, --no-argb disable client transparency support\n\
|
2015-10-11 15:00:08 +02:00
|
|
|
-r, --replace replace an existing window manager\n");
|
2008-01-21 15:04:49 +01:00
|
|
|
exit(exit_code);
|
|
|
|
}
|
|
|
|
|
2008-04-09 12:05:37 +02:00
|
|
|
/** Hello, this is main.
|
2008-06-20 08:32:46 +02:00
|
|
|
* \param argc Who knows.
|
|
|
|
* \param argv Who knows.
|
|
|
|
* \return EXIT_SUCCESS I hope.
|
2007-09-16 22:51:11 +02:00
|
|
|
*/
|
2007-09-05 20:15:00 +02:00
|
|
|
int
|
2008-04-09 12:05:37 +02:00
|
|
|
main(int argc, char **argv)
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
2009-09-08 12:01:07 +02:00
|
|
|
char *confpath = NULL;
|
2016-07-24 14:57:14 +02:00
|
|
|
string_array_t searchpath;
|
2017-06-02 15:39:47 +02:00
|
|
|
int xfd, opt;
|
2009-04-08 15:47:31 +02:00
|
|
|
xdgHandle xdg;
|
2010-10-05 22:37:33 +02:00
|
|
|
bool no_argb = false;
|
2013-06-12 14:15:54 +02:00
|
|
|
bool run_test = false;
|
2015-10-10 22:19:22 +02:00
|
|
|
bool replace_wm = false;
|
2011-10-19 15:11:11 +02:00
|
|
|
xcb_query_tree_cookie_t tree_c;
|
2008-02-04 14:43:20 +01:00
|
|
|
static struct option long_options[] =
|
|
|
|
{
|
2008-09-30 16:59:08 +02:00
|
|
|
{ "help", 0, NULL, 'h' },
|
|
|
|
{ "version", 0, NULL, 'v' },
|
|
|
|
{ "config", 1, NULL, 'c' },
|
|
|
|
{ "check", 0, NULL, 'k' },
|
2016-07-24 14:57:14 +02:00
|
|
|
{ "search", 1, NULL, 's' },
|
2010-10-05 22:37:33 +02:00
|
|
|
{ "no-argb", 0, NULL, 'a' },
|
2015-10-10 22:19:22 +02:00
|
|
|
{ "replace", 0, NULL, 'r' },
|
2017-06-02 16:10:36 +02:00
|
|
|
{ "reap", 1, NULL, '\1' },
|
2008-09-30 16:59:08 +02:00
|
|
|
{ NULL, 0, NULL, 0 }
|
2008-01-31 18:34:59 +01:00
|
|
|
};
|
2007-09-05 20:15:00 +02:00
|
|
|
|
2015-06-20 02:08:04 +02:00
|
|
|
/* Make stdout/stderr line buffered. */
|
|
|
|
setvbuf(stdout, NULL, _IOLBF, 0);
|
|
|
|
setvbuf(stderr, NULL, _IOLBF, 0);
|
|
|
|
|
2008-05-20 15:39:47 +02:00
|
|
|
/* clear the globalconf structure */
|
|
|
|
p_clear(&globalconf, 1);
|
2008-06-10 16:50:55 +02:00
|
|
|
globalconf.keygrabber = LUA_REFNIL;
|
2008-11-13 16:08:34 +01:00
|
|
|
globalconf.mousegrabber = LUA_REFNIL;
|
2016-10-27 10:40:53 +02:00
|
|
|
globalconf.exit_code = EXIT_SUCCESS;
|
2011-10-23 15:59:15 +02:00
|
|
|
buffer_init(&globalconf.startup_errors);
|
2016-07-24 14:57:14 +02:00
|
|
|
string_array_init(&searchpath);
|
2008-05-20 15:39:47 +02:00
|
|
|
|
2008-02-26 17:52:56 +01:00
|
|
|
/* save argv */
|
2017-06-02 15:39:47 +02:00
|
|
|
awesome_argv = argv;
|
2008-02-26 17:52:56 +01:00
|
|
|
|
2008-09-30 16:59:08 +02:00
|
|
|
/* Text won't be printed correctly otherwise */
|
|
|
|
setlocale(LC_CTYPE, "");
|
|
|
|
|
2007-12-31 10:10:24 +01:00
|
|
|
/* check args */
|
2015-10-10 22:19:22 +02:00
|
|
|
while((opt = getopt_long(argc, argv, "vhkc:ar",
|
2008-01-31 18:34:59 +01:00
|
|
|
long_options, NULL)) != -1)
|
|
|
|
switch(opt)
|
2007-09-26 21:22:30 +02:00
|
|
|
{
|
2008-01-31 18:34:59 +01:00
|
|
|
case 'v':
|
2009-04-08 18:53:53 +02:00
|
|
|
eprint_version();
|
2008-01-31 18:34:59 +01:00
|
|
|
break;
|
|
|
|
case 'h':
|
|
|
|
exit_help(EXIT_SUCCESS);
|
|
|
|
break;
|
2008-09-30 16:59:08 +02:00
|
|
|
case 'k':
|
2013-06-12 14:15:54 +02:00
|
|
|
run_test = true;
|
|
|
|
break;
|
2008-01-31 18:34:59 +01:00
|
|
|
case 'c':
|
2016-08-31 13:31:16 +02:00
|
|
|
if (confpath != NULL)
|
|
|
|
fatal("--config may only be specified once");
|
2016-08-31 13:27:07 +02:00
|
|
|
confpath = a_strdup(optarg);
|
2008-01-31 18:34:59 +01:00
|
|
|
break;
|
2016-07-24 14:57:14 +02:00
|
|
|
case 's':
|
2016-08-31 13:27:07 +02:00
|
|
|
string_array_append(&searchpath, a_strdup(optarg));
|
2016-07-24 14:57:14 +02:00
|
|
|
break;
|
2010-10-05 22:37:33 +02:00
|
|
|
case 'a':
|
|
|
|
no_argb = true;
|
|
|
|
break;
|
2015-10-10 22:19:22 +02:00
|
|
|
case 'r':
|
|
|
|
replace_wm = true;
|
|
|
|
break;
|
2017-06-02 16:10:36 +02:00
|
|
|
case '\1':
|
2018-08-21 15:30:07 +02:00
|
|
|
/* Silently ignore --reap and its argument */
|
2017-06-02 16:10:36 +02:00
|
|
|
break;
|
2016-08-31 13:23:44 +02:00
|
|
|
default:
|
|
|
|
exit_help(EXIT_FAILURE);
|
|
|
|
break;
|
2008-01-31 18:34:59 +01:00
|
|
|
}
|
|
|
|
|
2016-07-24 14:57:14 +02:00
|
|
|
/* Get XDG basedir data */
|
2018-01-13 03:33:25 +01:00
|
|
|
if(!xdgInitHandle(&xdg))
|
|
|
|
fatal("Function xdgInitHandle() failed, is $HOME unset?");
|
2016-07-24 14:57:14 +02:00
|
|
|
|
2017-01-25 13:50:52 +01:00
|
|
|
/* add XDG_CONFIG_DIR as include path */
|
|
|
|
const char * const *xdgconfigdirs = xdgSearchableConfigDirectories(&xdg);
|
|
|
|
for(; *xdgconfigdirs; xdgconfigdirs++)
|
|
|
|
{
|
|
|
|
/* Append /awesome to *xdgconfigdirs */
|
|
|
|
const char *suffix = "/awesome";
|
|
|
|
size_t len = a_strlen(*xdgconfigdirs) + a_strlen(suffix) + 1;
|
|
|
|
char *entry = p_new(char, len);
|
|
|
|
a_strcat(entry, len, *xdgconfigdirs);
|
|
|
|
a_strcat(entry, len, suffix);
|
|
|
|
string_array_append(&searchpath, entry);
|
|
|
|
}
|
|
|
|
|
2013-06-12 14:15:54 +02:00
|
|
|
if (run_test)
|
|
|
|
{
|
2017-01-25 14:06:41 +01:00
|
|
|
bool success = true;
|
|
|
|
/* Get the first config that will be tried */
|
|
|
|
const char *config = luaA_find_config(&xdg, confpath, true_config_callback);
|
|
|
|
|
|
|
|
/* Try to parse it */
|
|
|
|
lua_State *L = luaL_newstate();
|
|
|
|
if(luaL_loadfile(L, config))
|
|
|
|
{
|
|
|
|
const char *err = lua_tostring(L, -1);
|
|
|
|
fprintf(stderr, "%s\n", err);
|
|
|
|
success = false;
|
|
|
|
}
|
|
|
|
p_delete(&config);
|
|
|
|
lua_close(L);
|
|
|
|
|
|
|
|
if(!success)
|
2013-06-12 14:15:54 +02:00
|
|
|
{
|
|
|
|
fprintf(stderr, "✘ Configuration file syntax error.\n");
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fprintf(stderr, "✔ Configuration file syntax OK.\n");
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-21 15:30:07 +02:00
|
|
|
/* Setup pipe for SIGCHLD processing */
|
|
|
|
{
|
|
|
|
if (!g_unix_open_pipe(sigchld_pipe, FD_CLOEXEC, NULL))
|
|
|
|
fatal("Failed to create pipe");
|
|
|
|
|
|
|
|
GIOChannel *channel = g_io_channel_unix_new(sigchld_pipe[0]);
|
|
|
|
g_io_add_watch(channel, G_IO_IN, reap_children, NULL);
|
|
|
|
g_io_channel_unref(channel);
|
|
|
|
}
|
|
|
|
|
2008-06-17 00:30:53 +02:00
|
|
|
/* register function for signals */
|
2012-11-21 21:01:12 +01:00
|
|
|
g_unix_signal_add(SIGINT, exit_on_signal, NULL);
|
|
|
|
g_unix_signal_add(SIGTERM, exit_on_signal, NULL);
|
|
|
|
g_unix_signal_add(SIGHUP, restart_on_signal, NULL);
|
2007-09-16 22:51:11 +02:00
|
|
|
|
2014-03-07 10:51:39 +01:00
|
|
|
struct sigaction sa = { .sa_handler = signal_fatal, .sa_flags = SA_RESETHAND };
|
2009-06-05 23:44:37 +02:00
|
|
|
sigemptyset(&sa.sa_mask);
|
2014-03-07 10:51:39 +01:00
|
|
|
sigaction(SIGABRT, &sa, 0);
|
|
|
|
sigaction(SIGBUS, &sa, 0);
|
|
|
|
sigaction(SIGFPE, &sa, 0);
|
|
|
|
sigaction(SIGILL, &sa, 0);
|
2009-06-05 23:44:37 +02:00
|
|
|
sigaction(SIGSEGV, &sa, 0);
|
2017-01-02 16:06:04 +01:00
|
|
|
signal(SIGPIPE, SIG_IGN);
|
2009-06-05 23:44:37 +02:00
|
|
|
|
2018-08-21 15:30:07 +02:00
|
|
|
sa.sa_handler = signal_child;
|
|
|
|
sa.sa_flags = SA_NOCLDSTOP | SA_RESTART;
|
|
|
|
sigaction(SIGCHLD, &sa, 0);
|
|
|
|
|
2012-12-13 20:31:18 +01:00
|
|
|
/* We have no clue where the input focus is right now */
|
|
|
|
globalconf.focus.need_update = true;
|
2012-10-06 17:40:11 +02:00
|
|
|
|
2015-11-30 20:26:26 +01:00
|
|
|
/* set the default preferred icon size */
|
|
|
|
globalconf.preferred_icon_size = 0;
|
|
|
|
|
2013-09-19 16:48:10 +02:00
|
|
|
/* X stuff */
|
2016-10-30 18:47:52 +01:00
|
|
|
globalconf.connection = xcb_connect(NULL, &globalconf.default_screen);
|
2008-04-09 12:05:37 +02:00
|
|
|
if(xcb_connection_has_error(globalconf.connection))
|
2013-11-16 11:28:27 +01:00
|
|
|
fatal("cannot open display (error %d)", xcb_connection_has_error(globalconf.connection));
|
2007-09-16 22:51:11 +02:00
|
|
|
|
2010-08-16 14:10:58 +02:00
|
|
|
globalconf.screen = xcb_aux_get_screen(globalconf.connection, globalconf.default_screen);
|
2012-07-29 15:21:02 +02:00
|
|
|
globalconf.default_visual = draw_default_visual(globalconf.screen);
|
2010-10-05 22:37:33 +02:00
|
|
|
if(!no_argb)
|
2012-07-29 15:21:02 +02:00
|
|
|
globalconf.visual = draw_argb_visual(globalconf.screen);
|
2012-04-11 20:17:52 +02:00
|
|
|
if(!globalconf.visual)
|
|
|
|
globalconf.visual = globalconf.default_visual;
|
2012-07-29 15:21:02 +02:00
|
|
|
globalconf.default_depth = draw_visual_depth(globalconf.screen, globalconf.visual->visual_id);
|
2010-09-30 12:48:24 +02:00
|
|
|
globalconf.default_cmap = globalconf.screen->default_colormap;
|
2010-10-04 09:25:17 +02:00
|
|
|
if(globalconf.default_depth != globalconf.screen->root_depth)
|
|
|
|
{
|
|
|
|
// We need our own color map if we aren't using the default depth
|
|
|
|
globalconf.default_cmap = xcb_generate_id(globalconf.connection);
|
|
|
|
xcb_create_colormap(globalconf.connection, XCB_COLORMAP_ALLOC_NONE,
|
|
|
|
globalconf.default_cmap, globalconf.screen->root,
|
|
|
|
globalconf.visual->visual_id);
|
|
|
|
}
|
2010-08-16 14:10:58 +02:00
|
|
|
|
2017-04-15 11:46:10 +02:00
|
|
|
/* Get a recent timestamp */
|
|
|
|
acquire_timestamp();
|
|
|
|
|
2010-08-07 13:28:44 +02:00
|
|
|
/* Prefetch all the extensions we might need */
|
|
|
|
xcb_prefetch_extension_data(globalconf.connection, &xcb_big_requests_id);
|
|
|
|
xcb_prefetch_extension_data(globalconf.connection, &xcb_test_id);
|
|
|
|
xcb_prefetch_extension_data(globalconf.connection, &xcb_randr_id);
|
|
|
|
xcb_prefetch_extension_data(globalconf.connection, &xcb_xinerama_id);
|
2012-11-05 17:56:56 +01:00
|
|
|
xcb_prefetch_extension_data(globalconf.connection, &xcb_shape_id);
|
2019-02-06 09:21:26 +01:00
|
|
|
xcb_prefetch_extension_data(globalconf.connection, &xcb_xfixes_id);
|
2008-12-29 17:03:17 +01:00
|
|
|
|
2013-09-19 16:48:10 +02:00
|
|
|
if (xcb_cursor_context_new(globalconf.connection, globalconf.screen, &globalconf.cursor_ctx) < 0)
|
|
|
|
fatal("Failed to initialize xcb-cursor");
|
2016-10-30 18:47:52 +01:00
|
|
|
globalconf.xrmdb = xcb_xrm_database_from_default(globalconf.connection);
|
|
|
|
if (globalconf.xrmdb == NULL)
|
|
|
|
globalconf.xrmdb = xcb_xrm_database_from_string("");
|
|
|
|
if (globalconf.xrmdb == NULL)
|
|
|
|
fatal("Failed to initialize xcb-xrm");
|
2013-09-19 16:48:10 +02:00
|
|
|
|
2015-02-18 21:23:47 +01:00
|
|
|
/* Did we get some usable data from the above X11 setup? */
|
|
|
|
draw_test_cairo_xcb();
|
|
|
|
|
2015-10-10 21:51:04 +02:00
|
|
|
/* Acquire the WM_Sn selection */
|
2015-10-10 22:19:22 +02:00
|
|
|
acquire_WM_Sn(replace_wm);
|
2015-10-10 21:51:04 +02:00
|
|
|
|
2009-08-30 07:26:19 +02:00
|
|
|
/* initialize dbus */
|
2008-11-18 16:31:27 +01:00
|
|
|
a_dbus_init();
|
|
|
|
|
2008-04-09 12:05:37 +02:00
|
|
|
/* Get the file descriptor corresponding to the X connection */
|
|
|
|
xfd = xcb_get_file_descriptor(globalconf.connection);
|
2012-11-21 21:01:12 +01:00
|
|
|
GIOChannel *channel = g_io_channel_unix_new(xfd);
|
|
|
|
g_io_add_watch(channel, G_IO_IN, a_xcb_io_cb, NULL);
|
|
|
|
g_io_channel_unref(channel);
|
2008-03-21 16:50:17 +01:00
|
|
|
|
2011-04-10 14:28:34 +02:00
|
|
|
/* Grab server */
|
|
|
|
xcb_grab_server(globalconf.connection);
|
|
|
|
|
2008-06-15 23:58:51 +02:00
|
|
|
{
|
|
|
|
const uint32_t select_input_val = XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT;
|
2014-03-01 17:29:00 +01:00
|
|
|
xcb_void_cookie_t cookie;
|
2008-06-15 23:58:51 +02:00
|
|
|
|
2008-04-09 12:05:37 +02:00
|
|
|
/* This causes an error if some other window manager is running */
|
2014-03-01 17:29:00 +01:00
|
|
|
cookie = xcb_change_window_attributes_checked(globalconf.connection,
|
|
|
|
globalconf.screen->root,
|
|
|
|
XCB_CW_EVENT_MASK, &select_input_val);
|
|
|
|
if (xcb_request_check(globalconf.connection, cookie))
|
2015-10-10 22:12:25 +02:00
|
|
|
fatal("another window manager is already running (can't select SubstructureRedirect)");
|
2008-06-15 23:58:51 +02:00
|
|
|
}
|
2007-09-05 20:15:00 +02:00
|
|
|
|
2010-08-07 13:28:44 +02:00
|
|
|
/* Prefetch the maximum request length */
|
|
|
|
xcb_prefetch_maximum_request_length(globalconf.connection);
|
|
|
|
|
|
|
|
/* check for xtest extension */
|
2014-01-03 16:51:16 +01:00
|
|
|
const xcb_query_extension_reply_t *query;
|
|
|
|
query = xcb_get_extension_data(globalconf.connection, &xcb_test_id);
|
Handle unexpected XCB failures (#1260)
We have many places where we are sending an XCB request and expect an
answer where the protocol guarantees that no error can occur and we are
sure to get an answer. However, for example if the X11 server crashes,
these places can still fail. This commit tries to handle failures at all
these places.
I went through the code and tried to add missing error checking (well,
NULL-pointer-checking) to all affected places.
In most cases these errors are just silently ignored. The exception is
in screen querying during startup. If, for example, querying RandR info
fails, we will fall back to Xinerama or zaphod mode. This is serious
enough that it warrants a warning. In most cases, we should exit shortly
afterwards anyway, because, as explained above, these requests should
only fail when our connection to the X11 server breaks.
References: https://github.com/awesomeWM/awesome/issues/1205#issuecomment-265869874
Signed-off-by: Uli Schlachter <psychon@znc.in>
2016-12-10 00:48:53 +01:00
|
|
|
globalconf.have_xtest = query && query->present;
|
2014-01-03 16:51:16 +01:00
|
|
|
|
|
|
|
/* check for shape extension */
|
|
|
|
query = xcb_get_extension_data(globalconf.connection, &xcb_shape_id);
|
Handle unexpected XCB failures (#1260)
We have many places where we are sending an XCB request and expect an
answer where the protocol guarantees that no error can occur and we are
sure to get an answer. However, for example if the X11 server crashes,
these places can still fail. This commit tries to handle failures at all
these places.
I went through the code and tried to add missing error checking (well,
NULL-pointer-checking) to all affected places.
In most cases these errors are just silently ignored. The exception is
in screen querying during startup. If, for example, querying RandR info
fails, we will fall back to Xinerama or zaphod mode. This is serious
enough that it warrants a warning. In most cases, we should exit shortly
afterwards anyway, because, as explained above, these requests should
only fail when our connection to the X11 server breaks.
References: https://github.com/awesomeWM/awesome/issues/1205#issuecomment-265869874
Signed-off-by: Uli Schlachter <psychon@znc.in>
2016-12-10 00:48:53 +01:00
|
|
|
globalconf.have_shape = query && query->present;
|
2017-01-26 10:43:49 +01:00
|
|
|
if (globalconf.have_shape)
|
|
|
|
{
|
|
|
|
xcb_shape_query_version_reply_t *reply =
|
|
|
|
xcb_shape_query_version_reply(globalconf.connection,
|
|
|
|
xcb_shape_query_version_unchecked(globalconf.connection),
|
|
|
|
NULL);
|
|
|
|
globalconf.have_input_shape = reply && (reply->major_version > 1 ||
|
|
|
|
(reply->major_version == 1 && reply->minor_version >= 1));
|
|
|
|
p_delete(&reply);
|
|
|
|
}
|
2010-08-07 13:28:44 +02:00
|
|
|
|
2019-02-06 09:21:26 +01:00
|
|
|
/* check for xfixes extension */
|
|
|
|
query = xcb_get_extension_data(globalconf.connection, &xcb_xfixes_id);
|
|
|
|
globalconf.have_xfixes = query && query->present;
|
|
|
|
if (globalconf.have_xfixes)
|
|
|
|
xcb_discard_reply(globalconf.connection,
|
|
|
|
xcb_xfixes_query_version(globalconf.connection, 1, 0).sequence);
|
|
|
|
|
2016-04-09 15:44:54 +02:00
|
|
|
event_init();
|
|
|
|
|
2008-03-24 00:48:42 +01:00
|
|
|
/* Allocate the key symbols */
|
2008-04-09 12:05:37 +02:00
|
|
|
globalconf.keysyms = xcb_key_symbols_alloc(globalconf.connection);
|
2008-03-24 00:48:42 +01:00
|
|
|
|
2008-06-30 18:25:01 +02:00
|
|
|
/* init atom cache */
|
|
|
|
atoms_init(globalconf.connection);
|
2007-12-27 18:18:12 +01:00
|
|
|
|
2010-08-16 13:47:40 +02:00
|
|
|
ewmh_init();
|
|
|
|
systray_init();
|
2008-06-24 19:55:14 +02:00
|
|
|
|
2009-04-03 16:30:18 +02:00
|
|
|
/* init spawn (sn) */
|
|
|
|
spawn_init();
|
|
|
|
|
2015-02-23 17:08:24 +01:00
|
|
|
/* init xkb */
|
|
|
|
xkb_init();
|
|
|
|
|
2010-09-30 14:29:01 +02:00
|
|
|
/* The default GC is just a newly created associated with a window with
|
2015-09-23 20:48:56 +02:00
|
|
|
* depth globalconf.default_depth.
|
|
|
|
* The window_no_focus is used for "nothing has the input focus". */
|
|
|
|
globalconf.focus.window_no_focus = xcb_generate_id(globalconf.connection);
|
2010-09-30 14:29:01 +02:00
|
|
|
globalconf.gc = xcb_generate_id(globalconf.connection);
|
2010-10-04 09:24:17 +02:00
|
|
|
xcb_create_window(globalconf.connection, globalconf.default_depth,
|
2015-09-23 20:48:56 +02:00
|
|
|
globalconf.focus.window_no_focus, globalconf.screen->root,
|
2010-10-04 09:24:17 +02:00
|
|
|
-1, -1, 1, 1, 0,
|
|
|
|
XCB_COPY_FROM_PARENT, globalconf.visual->visual_id,
|
2015-09-23 20:48:56 +02:00
|
|
|
XCB_CW_BACK_PIXEL | XCB_CW_BORDER_PIXEL |
|
|
|
|
XCB_CW_OVERRIDE_REDIRECT | XCB_CW_COLORMAP,
|
2010-10-04 09:24:17 +02:00
|
|
|
(const uint32_t [])
|
|
|
|
{
|
2010-10-06 20:01:44 +02:00
|
|
|
globalconf.screen->black_pixel,
|
|
|
|
globalconf.screen->black_pixel,
|
2015-09-23 20:48:56 +02:00
|
|
|
1,
|
2010-10-04 09:24:17 +02:00
|
|
|
globalconf.default_cmap
|
|
|
|
});
|
2015-11-07 11:48:10 +01:00
|
|
|
xwindow_set_class_instance(globalconf.focus.window_no_focus);
|
|
|
|
xwindow_set_name_static(globalconf.focus.window_no_focus, "Awesome no input window");
|
2015-09-23 20:48:56 +02:00
|
|
|
xcb_map_window(globalconf.connection, globalconf.focus.window_no_focus);
|
|
|
|
xcb_create_gc(globalconf.connection, globalconf.gc, globalconf.focus.window_no_focus,
|
|
|
|
XCB_GC_FOREGROUND | XCB_GC_BACKGROUND,
|
2010-09-30 14:29:01 +02:00
|
|
|
(const uint32_t[]) { globalconf.screen->black_pixel, globalconf.screen->white_pixel });
|
|
|
|
|
2011-10-19 15:11:11 +02:00
|
|
|
/* Get the window tree associated to this screen */
|
|
|
|
tree_c = xcb_query_tree_unchecked(globalconf.connection,
|
|
|
|
globalconf.screen->root);
|
|
|
|
|
|
|
|
xcb_change_window_attributes(globalconf.connection,
|
|
|
|
globalconf.screen->root,
|
|
|
|
XCB_CW_EVENT_MASK,
|
|
|
|
ROOT_WINDOW_EVENT_MASK);
|
|
|
|
|
|
|
|
/* we will receive events, stop grabbing server */
|
2019-02-27 10:20:22 +01:00
|
|
|
xutil_ungrab_server(globalconf.connection);
|
2011-10-19 15:11:11 +02:00
|
|
|
|
2016-03-27 11:28:02 +02:00
|
|
|
/* get the current wallpaper, from now on we are informed when it changes */
|
|
|
|
root_update_wallpaper();
|
|
|
|
|
2017-01-25 14:55:27 +01:00
|
|
|
/* init lua */
|
|
|
|
luaA_init(&xdg, &searchpath);
|
|
|
|
string_array_wipe(&searchpath);
|
2019-02-17 10:17:47 +01:00
|
|
|
init_rng();
|
2017-01-25 14:55:27 +01:00
|
|
|
|
|
|
|
ewmh_init_lua();
|
|
|
|
|
|
|
|
/* init screens information */
|
|
|
|
screen_scan();
|
|
|
|
|
2008-10-02 12:24:05 +02:00
|
|
|
/* Parse and run configuration file */
|
2017-01-25 14:06:41 +01:00
|
|
|
if (!luaA_parserc(&xdg, confpath))
|
2009-06-01 13:01:31 +02:00
|
|
|
fatal("couldn't find any rc file");
|
2009-04-08 15:47:31 +02:00
|
|
|
|
2009-09-08 12:01:07 +02:00
|
|
|
p_delete(&confpath);
|
|
|
|
|
2009-04-18 18:50:55 +02:00
|
|
|
xdgWipeHandle(&xdg);
|
2008-10-02 12:24:05 +02:00
|
|
|
|
|
|
|
/* scan existing windows */
|
2011-10-19 15:11:11 +02:00
|
|
|
scan(tree_c);
|
2010-08-11 11:54:30 +02:00
|
|
|
|
2015-02-14 15:41:11 +01:00
|
|
|
luaA_emit_startup();
|
2008-09-11 11:15:00 +02:00
|
|
|
|
2014-03-07 10:39:49 +01:00
|
|
|
/* Setup the main context */
|
|
|
|
g_main_context_set_poll_func(g_main_context_default(), &a_glib_poll);
|
|
|
|
gettimeofday(&last_wakeup, NULL);
|
|
|
|
|
2015-10-10 22:25:56 +02:00
|
|
|
/* main event loop (if not NULL, awesome.quit() was already called) */
|
|
|
|
if (globalconf.loop == NULL)
|
|
|
|
{
|
|
|
|
globalconf.loop = g_main_loop_new(NULL, FALSE);
|
|
|
|
g_main_loop_run(globalconf.loop);
|
|
|
|
}
|
2012-11-21 21:01:12 +01:00
|
|
|
g_main_loop_unref(globalconf.loop);
|
|
|
|
globalconf.loop = NULL;
|
2008-02-04 14:43:20 +01:00
|
|
|
|
2011-03-20 23:20:02 +01:00
|
|
|
awesome_atexit(false);
|
2007-09-05 20:15:00 +02:00
|
|
|
|
2016-10-27 10:40:53 +02:00
|
|
|
return globalconf.exit_code;
|
2007-09-05 20:15:00 +02:00
|
|
|
}
|
2008-04-09 12:05:37 +02:00
|
|
|
|
2011-09-11 16:50:01 +02:00
|
|
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
|