summaryrefslogtreecommitdiff
path: root/config/config.c
blob: 8cb4406b5acf665a1093c31591812539e5cc2686 (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
/*
 * Copyright © 2006 Daniel Stone
 *
 * Permission to use, copy, modify, distribute, and sell this software and its
 * documentation for any purpose is hereby granted without fee, provided that
 * the above copyright notice appear in all copies and that both that
 * copyright notice and this permission notice appear in supporting
 * documentation, and that the name of the copyright holders and/or authors
 * not be used in advertising or publicity pertaining to distribution of the
 * software without specific, written prior permission.  The copyright holders
 * and/or authors make no representations about the suitability of this
 * software for any purpose.  It is provided "as is" without express or
 * implied warranty.
 *
 * THE COPYRIGHT HOLDERS AND/OR AUTHORS DISCLAIM ALL WARRANTIES WITH REGARD
 * TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
 * FITNESS, IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND/OR AUTHORS BE LIABLE
 * FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
 * RESULTING FROM LOSS OF 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.
 */

#ifdef HAVE_DIX_CONFIG_H
#include <dix-config.h>
#endif

#ifdef HAVE_DBUS
#define DBUS_API_SUBJECT_TO_CHANGE
#include <dbus/dbus.h>
#include <string.h>
#include "opaque.h" /* for 'display': there has to be a better way */
                    /* the above comment lies.  there is no better way. */
#include "input.h"
#include "config.h"

#define MATCH_RULE "type='method_call',interface='org.x.config.input'"

#define MALFORMED_MSG "config: malformed message, dropping"
#define MALFORMED_MESSAGE() DebugF(MALFORMED_MSG)
#define MALFORMED_MESSAGE_ERROR() DebugF(MALFORMED_MSG ": %s, %s", \
                                       error.name, error.message)

static DBusConnection *configConnection = NULL;
static int configfd = -1;
static char busobject[32] = { 0 };
static char busname[64] = { 0 };

void
configDispatch()
{
    if (!configConnection)
        return;

    dbus_connection_read_write_dispatch(configConnection, 0);
}

static DBusHandlerResult
configMessage(DBusConnection *connection, DBusMessage *message, void *closure)
{
    InputOption *option = NULL, *ret = NULL;
    DBusMessageIter iter, subiter;
    DBusError error;
    char *tmp = NULL;
    int deviceid = -1;
    DeviceIntPtr pDev = NULL;

    dbus_error_init(&error);

    if (strcmp(dbus_message_get_interface(message),
               "org.x.config.input") == 0) {
        if (!dbus_message_iter_init(message, &iter)) {
            ErrorF("config: failed to init iterator\n");
            dbus_error_free(&error);
            return DBUS_HANDLER_RESULT_NEED_MEMORY; /* ?? */
        }
        if (strcmp(dbus_message_get_member(message), "add") == 0) {
            DebugF("config: adding device\n");
            /* signature should be [ss][ss]... */
            while (dbus_message_iter_get_arg_type(&iter) == DBUS_TYPE_ARRAY) {
                option = (InputOption *)xcalloc(sizeof(InputOption), 1);
                if (!option) {
                    while (ret) {
                        option = ret;
                        ret = ret->next;
                        xfree(option);
                    }
                    dbus_error_free(&error);
                    return DBUS_HANDLER_RESULT_NEED_MEMORY;
                }

                dbus_message_iter_recurse(&iter, &subiter);

                if (dbus_message_iter_get_arg_type(&subiter) !=
                    DBUS_TYPE_STRING) {
                    MALFORMED_MESSAGE();
                    xfree(option);
                    dbus_error_free(&error);
                    return DBUS_HANDLER_RESULT_HANDLED;
                }
                dbus_message_iter_get_basic(&subiter, &tmp);
                if (!tmp) {
                    MALFORMED_MESSAGE();
                    xfree(option);
                    break;
                }
                option->key = xstrdup(tmp);
                if (!option->key) {
                    ErrorF("couldn't duplicate the key!\n");
                    xfree(option);
                    break;
                }

                if (!dbus_message_iter_has_next(&subiter)) {
                    MALFORMED_MESSAGE();
                    xfree(option->key);
                    xfree(option);
                    dbus_error_free(&error);
                    return DBUS_HANDLER_RESULT_HANDLED;
                }
                dbus_message_iter_next(&subiter);

                if (dbus_message_iter_get_arg_type(&subiter) !=
                    DBUS_TYPE_STRING) {
                    MALFORMED_MESSAGE();
                    xfree(option);
                    dbus_error_free(&error);
                    return DBUS_HANDLER_RESULT_HANDLED;
                }
                dbus_message_iter_get_basic(&subiter, &tmp);
                if (!tmp) {
                    MALFORMED_MESSAGE();
                    xfree(option->key);
                    xfree(option);
                    break;
                }
                option->value = xstrdup(tmp);
                if (!option->value) {
                    ErrorF("couldn't duplicate the option!\n");
                    xfree(option->value);
                    xfree(option);
                    break;
                }

                option->next = ret;
                ret = option;
                dbus_message_iter_next(&iter);
            }

            if (NewInputDeviceRequest(ret) != Success) {
                DebugF("config: NewInputDeviceRequest failed\n");
            }
            dbus_error_free(&error);
            return DBUS_HANDLER_RESULT_HANDLED;
        }
        else if (strcmp(dbus_message_get_member(message), "remove") == 0) {
            ErrorF("config: removing device\n");
            if (!dbus_message_get_args(message, &error, DBUS_TYPE_INT32,
                                       &deviceid, DBUS_TYPE_INVALID)) {
                MALFORMED_MESSAGE_ERROR();
                dbus_error_free(&error);
                return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
            }
            if (deviceid < 0 || !(pDev = LookupDeviceIntRec(deviceid))) {
                DebugF("config: bogus device id %d given\n", deviceid);
                dbus_error_free(&error);
                return DBUS_HANDLER_RESULT_HANDLED;
            }
            /* Call PIE here so we don't try to dereference a device that's
             * already been removed.  Technically there's still a small race
             * here, so we should ensure that SIGIO is blocked. */
            ProcessInputEvents();
            RemoveDevice(pDev);
            dbus_error_free(&error);
            return DBUS_HANDLER_RESULT_HANDLED;
        }
    }

    dbus_error_free(&error);

    return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
}

void
configInitialise()
{
    DBusConnection *bus = NULL;
    DBusError error;
    DBusObjectPathVTable vtable;

    configConnection = NULL;

    dbus_error_init(&error);
    bus = dbus_bus_get(DBUS_BUS_SYSTEM, &error);
    if (!bus || dbus_error_is_set(&error)) {
        dbus_error_free(&error);
        FatalError("[dbus] some kind of error occurred: %s (%s)\n", error.name,
                   error.message);
        return;
    }

    if (!dbus_connection_get_unix_fd(bus, &configfd)) {
        dbus_connection_close(bus);
        configfd = -1;
        FatalError("[dbus] couldn't get fd for bus\n");
        return;
    }

    snprintf(busname, sizeof(busname), "org.x.config.display%d", atoi(display));
    if (!dbus_bus_request_name(bus, busname, 0, &error) ||
        dbus_error_is_set(&error)) {
        dbus_error_free(&error);
        dbus_connection_close(bus);
        configfd = -1;
        FatalError("[dbus] couldn't take over org.x.config: %s (%s)\n",
                   error.name, error.message);
        return;
    }

    /* blocks until we get a reply. */
    dbus_bus_add_match(bus, MATCH_RULE, &error);
    if (dbus_error_is_set(&error)) {
        dbus_error_free(&error);
        dbus_bus_release_name(bus, busname, &error);
        dbus_connection_close(bus);
        configfd = -1;
        FatalError("[dbus] couldn't match X.Org rule: %s (%s)\n", error.name,
                   error.message);
        return;
    }

    vtable.message_function = configMessage;
    snprintf(busobject, sizeof(busobject), "/org/x/config/%d", atoi(display));
    if (!dbus_connection_register_object_path(bus, busobject, &vtable, NULL)) {
        configfd = -1;
        dbus_bus_release_name(bus, busname, &error);
        dbus_bus_remove_match(bus, MATCH_RULE, &error);
        dbus_connection_close(bus);
        FatalError("[dbus] couldn't register object path\n");
        return;
    }

    DebugF("[dbus] registered object path %s\n", busobject);

    dbus_error_free(&error);

    configConnection = bus;

    AddGeneralSocket(configfd);
}

void
configFini()
{
    DBusError error;

    if (configConnection) {
        dbus_error_init(&error);
        dbus_bus_remove_match(configConnection, MATCH_RULE, &error);
        dbus_bus_release_name(configConnection, busname, &error);
        dbus_connection_close(configConnection);
        RemoveGeneralSocket(configfd);
        configConnection = NULL;
        configfd = -1;
        dbus_error_free(&error);
    }
}
#else
void
configDispatch()
{
}

void
configInitialise()
{
}

void
configFini()
{
}
#endif