aboutsummaryrefslogtreecommitdiffstats
path: root/src/location-geoclue2.c
blob: 199db2dbd1434436a17aeec20e68332e45e497d6 (plain) (blame)
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
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
/*-
 * redshift-ng - Automatically adjust display colour temperature according the Sun
 * 
 * Copyright (c) 2009-2018        Jon Lund Steffensen <jonlst@gmail.com>
 * Copyright (c) 2014-2016, 2025  Mattias Andrée <m@maandree.se>
 * 
 * redshift-ng 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 3 of the License, or
 * (at your option) any later version.
 * 
 * redshift-ng 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 redshift-ng.  If not, see <http://www.gnu.org/licenses/>.
 */
#include "common.h"

#if defined(__clang__)
# pragma clang diagnostic push
# pragma clang diagnostic ignored "-Wreserved-identifier"
# pragma clang diagnostic ignored "-Wreserved-macro-identifier"
# pragma clang diagnostic ignored "-Wdocumentation-unknown-command"
# pragma clang diagnostic ignored "-Wdocumentation"
# pragma clang diagnostic ignored "-Wpadded"
#endif
#include <glib.h>
#include <glib/gprintf.h>
#include <gio/gio.h>
#if defined(__clang__)
# pragma clang diagnostic pop
#endif


/**
 * D-Bus error indicating denial of access
 */
#define DBUS_ACCESS_ERROR  "org.freedesktop.DBus.Error.AccessDenied"


/**
 * Location data
 */
struct location_data {
	/**
	 * The user's geographical location
	 */
	struct location location;

	/**
	 * Whether the location provider is available
	 */
	int available;

	/**
	 * Whether an unrecoverable error has occurred
	 */
	int error;
};


struct location_state {
	GMainLoop *loop;

	/**
	 * Slave thread, used to receive location updates
	 */
	GThread *thread;

	/**
	 * Read-end of piped used to send location data
	 * from the slave thread to the master thread
	 */
	int pipe_fd_read;

	/**
	 * Write-end of piped used to send location data
	 * from the slave thread to the master thread
	 */
	int pipe_fd_write;

	/**
	 * Location data available from the slave thread
	 */
	struct location_data data;

	/**
	 * Location data sent to the master thread
	 */
	struct location_data saved_data;
};


/* Print the message explaining denial from GeoClue */
static void
print_denial_message(void)
{
	g_printerr(_(
		"Access to the current location was denied by GeoClue!\n"
		"Make sure that location services are enabled and that"
		" Redshift is permitted\nto use location services."
		" See https://github.com/jonls/redshift#faq for more\n"
		"information.\n"));
}


static void
send_data(struct location_state *state)
{
	while (write(state->pipe_fd_write, &state->data, sizeof(state->data)) == -1 && errno == EINTR);
}


/* Indicate an unrecoverable error during GeoClue2 communication */
static void
mark_error(struct location_state *state)
{
	state->data.error = 1;
	send_data(state);
}


/* Handle position change callbacks */
static void
geoclue_client_signal_cb(GDBusProxy *client, gchar *sender_name, gchar *signal_name, GVariant *parameters, gpointer user_data)
{
	struct location_state *state = user_data;
	const gchar *location_path;
	GDBusProxy *location;
	GError *error;
	GVariant *lat_v, *lon_v;

	(void) sender_name;

	/* Only handle LocationUpdated signals */
	if (g_strcmp0(signal_name, "LocationUpdated"))
		return;

	/* Obtain location path */
	g_variant_get_child(parameters, 1, "&o", &location_path);

	/* Obtain location */
	error = NULL;
	location = g_dbus_proxy_new_sync(g_dbus_proxy_get_connection(client), G_DBUS_PROXY_FLAGS_NONE,
	                                 NULL, "org.freedesktop.GeoClue2", location_path,
	                                 "org.freedesktop.GeoClue2.Location", NULL, &error);
	if (!location) {
		weprintf(_("Unable to obtain location: %s."), error->message);
		g_error_free(error);
		mark_error(state);
		return;
	}

	/* Read location properties */
	lat_v = g_dbus_proxy_get_cached_property(location, "Latitude");
	state->data.location.latitude = g_variant_get_double(lat_v);
	lon_v = g_dbus_proxy_get_cached_property(location, "Longitude");
	state->data.location.longitude = g_variant_get_double(lon_v);
	state->data.available = 1;

	send_data(state);
}


/* Callback when GeoClue name appears on the bus */
static void
on_name_appeared(GDBusConnection *conn, const gchar *name, const gchar *name_owner, gpointer user_data)
{
	struct location_state *state = user_data;
	const gchar *client_path;
	GDBusProxy *geoclue_client;
	GVariant *client_path_v;
	GDBusProxy *geoclue_manager;
	GError *error;
	GVariant *ret_v;
	gchar *dbus_error;

	(void) name;
	(void) name_owner;

	/* Obtain GeoClue Manager */
	error = NULL;
	geoclue_manager = g_dbus_proxy_new_sync(conn, G_DBUS_PROXY_FLAGS_NONE, NULL,
	                                        "org.freedesktop.GeoClue2", "/org/freedesktop/GeoClue2/Manager",
	                                        "org.freedesktop.GeoClue2.Manager", NULL, &error);
	if (!geoclue_manager) {
		weprintf(_("Unable to obtain GeoClue Manager: %s."), error->message);
		g_error_free(error);
		mark_error(state);
		return;
	}

	/* Obtain GeoClue Client path */
	error = NULL;
	client_path_v = g_dbus_proxy_call_sync(geoclue_manager, "GetClient", NULL,
	                                       G_DBUS_CALL_FLAGS_NONE, -1, NULL, &error);
	if (!client_path_v) {
		weprintf(_("Unable to obtain GeoClue client path: %s."), error->message);
		g_error_free(error);
		g_object_unref(geoclue_manager);
		mark_error(state);
		return;
	}

	g_variant_get(client_path_v, "(&o)", &client_path);

	/* Obtain GeoClue client */
	error = NULL;
	geoclue_client = g_dbus_proxy_new_sync(conn, G_DBUS_PROXY_FLAGS_NONE, NULL, "org.freedesktop.GeoClue2",
	                                       client_path, "org.freedesktop.GeoClue2.Client", NULL, &error);
	if (!geoclue_client) {
		weprintf(_("Unable to obtain GeoClue Client: %s."), error->message);
		g_error_free(error);
		g_variant_unref(client_path_v);
		g_object_unref(geoclue_manager);
		mark_error(state);
		return;
	}

	g_variant_unref(client_path_v);

	/* Set desktop id (basename of the .desktop file) */
	error = NULL;
	ret_v = g_dbus_proxy_call_sync(geoclue_client, "org.freedesktop.DBus.Properties.Set",
	                               g_variant_new("(ssv)", "org.freedesktop.GeoClue2.Client",
	                                             "DesktopId", g_variant_new("s", "redshift")),
	                               G_DBUS_CALL_FLAGS_NONE, -1, NULL, &error);
	if (!ret_v) {
		/* Ignore this error for now. The property is not available
		 * in early versions of GeoClue2. */
	} else {
		g_variant_unref(ret_v);
	}

	/* Set distance threshold */
	error = NULL;
	ret_v = g_dbus_proxy_call_sync(geoclue_client, "org.freedesktop.DBus.Properties.Set",
	                               g_variant_new("(ssv)", "org.freedesktop.GeoClue2.Client",
	                                             "DistanceThreshold", g_variant_new("u", 50000)),
	                               G_DBUS_CALL_FLAGS_NONE, -1, NULL, &error);
	if (!ret_v) {
		weprintf(_("Unable to set distance threshold: %s."), error->message);
		g_error_free(error);
		g_object_unref(geoclue_client);
		g_object_unref(geoclue_manager);
		mark_error(state);
		return;
	}

	g_variant_unref(ret_v);

	/* Attach signal callback to client */
	g_signal_connect(geoclue_client, "g-signal", G_CALLBACK(geoclue_client_signal_cb), user_data);

	/* Start GeoClue client */
	error = NULL;
	ret_v = g_dbus_proxy_call_sync(geoclue_client, "Start", NULL, G_DBUS_CALL_FLAGS_NONE, -1, NULL, &error);
	if (!ret_v) {
		weprintf(_("Unable to start GeoClue client: %s."), error->message);
		if (g_dbus_error_is_remote_error(error)) {
			dbus_error = g_dbus_error_get_remote_error( error);
			if (!g_strcmp0(dbus_error, DBUS_ACCESS_ERROR))
				print_denial_message();
			g_free(dbus_error);
		}
		g_error_free(error);
		g_object_unref(geoclue_client);
		g_object_unref(geoclue_manager);
		mark_error(state);
		return;
	}

	g_variant_unref(ret_v);
}


/* Callback when GeoClue disappears from the bus */
static void
on_name_vanished(GDBusConnection *connection, const gchar *name, gpointer user_data)
{
	struct location_state *state = user_data;

	(void) connection;
	(void) name;

	state->data.available = 0;
	send_data(state);
}


/* Callback when the pipe to the main thread is closed */
static gboolean
on_pipe_closed(GIOChannel *channel, GIOCondition condition, gpointer user_data)
{
	struct location_state *state = user_data;
	g_main_loop_quit(state->loop);

	(void) channel;
	(void) condition;
	return FALSE;
}


/* Run loop for location provider thread */
static void *
run_geoclue2_loop(void *state_)
{
	struct location_state *state = state_;
	GMainContext *context;
	guint watcher_id;
	GIOChannel *pipe_channel;
	GSource *pipe_source;

	context = g_main_context_new();
	g_main_context_push_thread_default(context);
	state->loop = g_main_loop_new(context, FALSE);

	watcher_id = g_bus_watch_name(G_BUS_TYPE_SYSTEM, "org.freedesktop.GeoClue2",
	                              G_BUS_NAME_WATCHER_FLAGS_AUTO_START,
	                              on_name_appeared, on_name_vanished, state, NULL);

	/* Listen for closure of pipe */
	pipe_channel = g_io_channel_unix_new(state->pipe_fd_write);
	pipe_source = g_io_create_watch(pipe_channel, G_IO_IN | G_IO_HUP | G_IO_ERR);
        g_source_set_callback(pipe_source, (GSourceFunc)on_pipe_closed, state, NULL);
        g_source_attach(pipe_source, context);

	g_main_loop_run(state->loop);

	g_source_unref(pipe_source);
	g_io_channel_unref(pipe_channel);
	close(state->pipe_fd_write);

	g_bus_unwatch_name(watcher_id);

	g_main_loop_unref(state->loop);
	g_main_context_unref(context);

	return NULL;
}


static int
geoclue2_create(struct location_state **state_out)
{
#if !GLIB_CHECK_VERSION(2, 35, 0)
	g_type_init();
#endif
	*state_out = emalloc(sizeof(**state_out));
	return 0;
}


static int
geoclue2_start(struct location_state *state)
{
	int pipefds[2];

	state->pipe_fd_read = -1;
	state->pipe_fd_write = -1;

	state->data.available = 0;
	state->data.error = 0;
	state->data.location.latitude = 0;
	state->data.location.longitude = 0;
	state->saved_data = state->data;

	pipe_rdnonblock(pipefds);
	state->pipe_fd_read = pipefds[0];
	state->pipe_fd_write = pipefds[1];

	send_data(state); /* TODO why? */

	state->thread = g_thread_new("geoclue2", run_geoclue2_loop, state);

	return 0;
}


static void
geoclue2_free(struct location_state *state)
{
	if (state->pipe_fd_read >= 0)
		close(state->pipe_fd_read);

	/* Closing the pipe should cause the thread to exit, but it may be blocked by I/O */
	install_forceful_exit_signal_handlers();
	g_thread_join(state->thread);
	state->thread = NULL;

	free(state);
}


static void
geoclue2_print_help(void)
{
	printf(_("Use the location as discovered by a GeoClue2 provider.\n"));
	printf("\n");
}


static int
geoclue2_set_option(struct location_state *state, const char *key, const char *value)
{
	(void) state;
	(void) value;
	weprintf(_("Unknown method parameter: `%s'."), key);
	return -1;
}


static int
geoclue2_get_fd(struct location_state *state)
{
	return state->pipe_fd_read;
}


static int
geoclue2_fetch(struct location_state *state, struct location *location_out, int *available_out)
{
	struct location_data data;
	ssize_t r;

	for (;;) {
		r = read(state->pipe_fd_read, &data, sizeof(data));
		if (r == (ssize_t)sizeof(data)) {
			state->saved_data = data;
		} else if (r > 0) {
			/* writes of 512 bytes or less are always atomic on pipes */
			weprintf("read <pipe>: %s", _("Unexpected message size"));
		} else if (!r || errno == EAGAIN) {
			break;
		} else if (errno != EINTR) {
			weprintf("read <pipe>:");
			state->saved_data.error = 1;
			break;
		}
	}

	*location_out = state->saved_data.location;
	*available_out = state->saved_data.available;
	return state->saved_data.error ? -1 : 0;
}


const struct location_provider geoclue2_location_provider = LOCATION_PROVIDER_INIT("geoclue2", geoclue2);