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
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
* vi:set noexpandtab tabstop=8 shiftwidth=8:
*
* Copyright (C) 2013 Richard Hughes <richard@hughsie.com>
* Copyright (C) 2015-2016 Kalev Lember <klember@redhat.com>
*
* SPDX-License-Identifier: GPL-2.0+
*/
#include <config.h>
#include <packagekit-glib2/packagekit.h>
#include "packagekit-common.h"
#include <gnome-software.h>
/*
* Mark previously downloaded packages as zero size, and also allow
* scheduling the offline update.
*/
struct GsPluginData {
GFileMonitor *monitor;
GFileMonitor *monitor_trigger;
GPermission *permission;
gboolean is_triggered;
GHashTable *hash_prepared;
GMutex hash_prepared_mutex;
};
void
gs_plugin_initialize (GsPlugin *plugin)
{
GsPluginData *priv = gs_plugin_alloc_data (plugin, sizeof(GsPluginData));
gs_plugin_add_rule (plugin, GS_PLUGIN_RULE_RUN_AFTER, "packagekit-refresh");
gs_plugin_add_rule (plugin, GS_PLUGIN_RULE_RUN_AFTER, "packagekit-refine");
gs_plugin_add_rule (plugin, GS_PLUGIN_RULE_RUN_BEFORE, "generic-updates");
g_mutex_init (&priv->hash_prepared_mutex);
priv->hash_prepared = g_hash_table_new_full (g_str_hash, g_str_equal,
g_free, NULL);
}
void
gs_plugin_destroy (GsPlugin *plugin)
{
GsPluginData *priv = gs_plugin_get_data (plugin);
g_hash_table_unref (priv->hash_prepared);
g_mutex_clear (&priv->hash_prepared_mutex);
if (priv->monitor != NULL)
g_object_unref (priv->monitor);
if (priv->monitor_trigger != NULL)
g_object_unref (priv->monitor_trigger);
}
static void
gs_plugin_systemd_updates_permission_cb (GPermission *permission,
GParamSpec *pspec,
gpointer data)
{
GsPlugin *plugin = GS_PLUGIN (data);
gboolean ret = g_permission_get_allowed (permission) ||
g_permission_get_can_acquire (permission);
gs_plugin_set_allow_updates (plugin, ret);
}
static gboolean
gs_plugin_systemd_update_cache (GsPlugin *plugin, GError **error)
{
GsPluginData *priv = gs_plugin_get_data (plugin);
g_autoptr(GError) error_local = NULL;
g_auto(GStrv) package_ids = NULL;
g_autoptr(GMutexLocker) locker = g_mutex_locker_new (&priv->hash_prepared_mutex);
/* invalidate */
g_hash_table_remove_all (priv->hash_prepared);
/* get new list of package-ids */
package_ids = pk_offline_get_prepared_ids (&error_local);
if (package_ids == NULL) {
if (g_error_matches (error_local,
PK_OFFLINE_ERROR,
PK_OFFLINE_ERROR_NO_DATA)) {
return TRUE;
}
g_set_error (error,
GS_PLUGIN_ERROR,
GS_PLUGIN_ERROR_INVALID_FORMAT,
"Failed to get prepared IDs: %s",
error_local->message);
return FALSE;
}
for (guint i = 0; package_ids[i] != NULL; i++) {
g_hash_table_insert (priv->hash_prepared,
g_strdup (package_ids[i]),
GUINT_TO_POINTER (1));
}
return TRUE;
}
static void
gs_plugin_systemd_updates_changed_cb (GFileMonitor *monitor,
GFile *file, GFile *other_file,
GFileMonitorEvent event_type,
gpointer user_data)
{
GsPlugin *plugin = GS_PLUGIN (user_data);
/* update UI */
gs_plugin_systemd_update_cache (plugin, NULL);
gs_plugin_updates_changed (plugin);
}
static void
gs_plugin_systemd_updates_refresh_is_triggered (GsPlugin *plugin, GCancellable *cancellable)
{
GsPluginData *priv = gs_plugin_get_data (plugin);
g_autoptr(GFile) file_trigger = NULL;
file_trigger = g_file_new_for_path ("/system-update");
priv->is_triggered = g_file_query_exists (file_trigger, NULL);
g_debug ("offline trigger is now %s",
priv->is_triggered ? "enabled" : "disabled");
}
static void
gs_plugin_systemd_trigger_changed_cb (GFileMonitor *monitor,
GFile *file, GFile *other_file,
GFileMonitorEvent event_type,
gpointer user_data)
{
GsPlugin *plugin = GS_PLUGIN (user_data);
gs_plugin_systemd_updates_refresh_is_triggered (plugin, NULL);
}
static void
gs_plugin_systemd_refine_app (GsPlugin *plugin, GsApp *app)
{
GsPluginData *priv = gs_plugin_get_data (plugin);
const gchar *package_id;
g_autoptr(GMutexLocker) locker = NULL;
/* only process this app if was created by this plugin */
if (g_strcmp0 (gs_app_get_management_plugin (app), "packagekit") != 0)
return;
/* the package is already downloaded */
package_id = gs_app_get_source_id_default (app);
if (package_id == NULL)
return;
locker = g_mutex_locker_new (&priv->hash_prepared_mutex);
if (g_hash_table_lookup (priv->hash_prepared, package_id) != NULL)
gs_app_set_size_download (app, 0);
}
gboolean
gs_plugin_refine (GsPlugin *plugin,
GsAppList *list,
GsPluginRefineFlags flags,
GCancellable *cancellable,
GError **error)
{
/* not now */
if ((flags & GS_PLUGIN_REFINE_FLAGS_REQUIRE_SIZE) == 0)
return TRUE;
/* re-read /var/lib/PackageKit/prepared-update */
if (!gs_plugin_systemd_update_cache (plugin, error))
return FALSE;
for (guint i = 0; i < gs_app_list_length (list); i++) {
GsApp *app = gs_app_list_index (list, i);
GsAppList *related = gs_app_get_related (app);
/* refine the app itself */
gs_plugin_systemd_refine_app (plugin, app);
/* and anything related for proxy apps */
for (guint j = 0; j < gs_app_list_length (related); j++) {
GsApp *app_related = gs_app_list_index (related, j);
gs_plugin_systemd_refine_app (plugin, app_related);
}
}
return TRUE;
}
gboolean
gs_plugin_setup (GsPlugin *plugin, GCancellable *cancellable, GError **error)
{
GsPluginData *priv = gs_plugin_get_data (plugin);
g_autoptr(GFile) file_trigger = NULL;
/* watch the prepared file */
priv->monitor = pk_offline_get_prepared_monitor (cancellable, error);
if (priv->monitor == NULL) {
gs_utils_error_convert_gio (error);
return FALSE;
}
g_signal_connect (priv->monitor, "changed",
G_CALLBACK (gs_plugin_systemd_updates_changed_cb),
plugin);
/* watch the trigger file */
file_trigger = g_file_new_for_path ("/system-update");
priv->monitor_trigger = g_file_monitor_file (file_trigger,
G_FILE_MONITOR_NONE,
NULL,
error);
if (priv->monitor_trigger == NULL) {
gs_utils_error_convert_gio (error);
return FALSE;
}
g_signal_connect (priv->monitor_trigger, "changed",
G_CALLBACK (gs_plugin_systemd_trigger_changed_cb),
plugin);
/* check if we have permission to trigger the update */
priv->permission = gs_utils_get_permission (
"org.freedesktop.packagekit.trigger-offline-update",
NULL, NULL);
if (priv->permission != NULL) {
g_signal_connect (priv->permission, "notify",
G_CALLBACK (gs_plugin_systemd_updates_permission_cb),
plugin);
}
/* get the list of currently downloaded packages */
return gs_plugin_systemd_update_cache (plugin, error);
}
static gboolean
_systemd_trigger_app (GsPlugin *plugin,
GsApp *app,
GCancellable *cancellable,
GError **error)
{
GsPluginData *priv = gs_plugin_get_data (plugin);
/* if we can process this online do not require a trigger */
if (gs_app_get_state (app) != AS_APP_STATE_UPDATABLE)
return TRUE;
/* only process this app if was created by this plugin */
if (g_strcmp0 (gs_app_get_management_plugin (app), "packagekit") != 0)
return TRUE;
/* already in correct state */
if (priv->is_triggered)
return TRUE;
/* trigger offline update */
if (!pk_offline_trigger (PK_OFFLINE_ACTION_REBOOT,
cancellable, error)) {
gs_plugin_packagekit_error_convert (error);
return FALSE;
}
/* don't rely on the file monitor */
gs_plugin_systemd_updates_refresh_is_triggered (plugin, cancellable);
/* success */
return TRUE;
}
gboolean
gs_plugin_update (GsPlugin *plugin,
GsAppList *list,
GCancellable *cancellable,
GError **error)
{
/* any are us? */
for (guint i = 0; i < gs_app_list_length (list); i++) {
GsApp *app = gs_app_list_index (list, i);
GsAppList *related = gs_app_get_related (app);
/* try to trigger this app */
if (!gs_app_has_quirk (app, GS_APP_QUIRK_IS_PROXY)) {
if (!_systemd_trigger_app (plugin, app, cancellable, error))
return FALSE;
continue;
}
/* try to trigger each related app */
for (guint j = 0; j < gs_app_list_length (related); j++) {
GsApp *app_tmp = gs_app_list_index (related, j);
if (!_systemd_trigger_app (plugin, app_tmp, cancellable, error))
return FALSE;
}
}
/* success */
return TRUE;
}
gboolean
gs_plugin_update_cancel (GsPlugin *plugin,
GsApp *app,
GCancellable *cancellable,
GError **error)
{
GsPluginData *priv = gs_plugin_get_data (plugin);
/* only process this app if was created by this plugin */
if (g_strcmp0 (gs_app_get_management_plugin (app), "packagekit") != 0)
return TRUE;
/* already in correct state */
if (!priv->is_triggered)
return TRUE;
/* cancel offline update */
if (!pk_offline_cancel (NULL, error))
return FALSE;
/* don't rely on the file monitor */
gs_plugin_systemd_updates_refresh_is_triggered (plugin, cancellable);
/* success! */
return TRUE;
}
gboolean
gs_plugin_app_upgrade_trigger (GsPlugin *plugin,
GsApp *app,
GCancellable *cancellable,
GError **error)
{
/* only process this app if was created by this plugin */
if (g_strcmp0 (gs_app_get_management_plugin (app), "packagekit") != 0)
return TRUE;
return pk_offline_trigger_upgrade (PK_OFFLINE_ACTION_REBOOT, cancellable, error);
}
|