1744632d888842af5720a8a6a839b98771133e40
[NetworkManager.git] / src / nm-manager.c
1 /* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
2 /* NetworkManager -- Network link manager
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  *
18  * Copyright (C) 2007 - 2009 Novell, Inc.
19  * Copyright (C) 2007 - 2012 Red Hat, Inc.
20  */
21
22 #include "nm-default.h"
23
24 #include <stdlib.h>
25 #include <fcntl.h>
26 #include <errno.h>
27 #include <string.h>
28 #include <unistd.h>
29
30 #include "nm-manager.h"
31 #include "nm-bus-manager.h"
32 #include "nm-vpn-manager.h"
33 #include "nm-device.h"
34 #include "nm-device-generic.h"
35 #include "nm-platform.h"
36 #include "nm-rfkill-manager.h"
37 #include "nm-dhcp-manager.h"
38 #include "nm-settings.h"
39 #include "nm-settings-connection.h"
40 #include "nm-auth-utils.h"
41 #include "nm-auth-manager.h"
42 #include "NetworkManagerUtils.h"
43 #include "nm-device-factory.h"
44 #include "nm-enum-types.h"
45 #include "nm-sleep-monitor.h"
46 #include "nm-connectivity.h"
47 #include "nm-policy.h"
48 #include "nm-connection-provider.h"
49 #include "nm-session-monitor.h"
50 #include "nm-activation-request.h"
51 #include "nm-core-internal.h"
52 #include "nm-config.h"
53 #include "nm-audit-manager.h"
54 #include "nm-dbus-compat.h"
55 #include "NetworkManagerUtils.h"
56
57 #include "nmdbus-manager.h"
58 #include "nmdbus-device.h"
59
60 static gboolean add_device (NMManager *self, NMDevice *device, GError **error);
61
62 static NMActiveConnection *_new_active_connection (NMManager *self,
63                                                    NMConnection *connection,
64                                                    const char *specific_object,
65                                                    NMDevice *device,
66                                                    NMAuthSubject *subject,
67                                                    GError **error);
68
69 static void policy_activating_device_changed (GObject *object, GParamSpec *pspec, gpointer user_data);
70
71 static void rfkill_change (const char *desc, RfKillType rtype, gboolean enabled);
72
73 static gboolean find_master (NMManager *self,
74                              NMConnection *connection,
75                              NMDevice *device,
76                              NMSettingsConnection **out_master_connection,
77                              NMDevice **out_master_device,
78                              NMActiveConnection **out_master_ac,
79                              GError **error);
80
81 static void nm_manager_update_state (NMManager *manager);
82
83 static void connection_changed (NMSettings *settings, NMConnection *connection,
84                                 NMManager *manager);
85
86 #define TAG_ACTIVE_CONNETION_ADD_AND_ACTIVATE "act-con-add-and-activate"
87
88 typedef struct {
89         gboolean user_enabled;
90         gboolean sw_enabled;
91         gboolean hw_enabled;
92         RfKillType rtype;
93         const char *desc;
94         const char *key;
95         const char *prop;
96         const char *hw_prop;
97 } RadioState;
98
99 typedef struct {
100         char *state_file;
101
102         GSList *active_connections;
103         GSList *authorizing_connections;
104         guint ac_cleanup_id;
105         NMActiveConnection *primary_connection;
106         NMActiveConnection *activating_connection;
107         NMMetered metered;
108
109         GSList *devices;
110         NMState state;
111         NMConfig *config;
112         NMConnectivity *connectivity;
113
114         NMPolicy *policy;
115
116         NMBusManager  *dbus_mgr;
117         struct {
118                 GDBusConnection *connection;
119                 guint            id;
120         } prop_filter;
121         NMRfkillManager *rfkill_mgr;
122
123         NMSettings *settings;
124         char *hostname;
125
126         RadioState radio_states[RFKILL_TYPE_MAX];
127         gboolean sleeping;
128         gboolean net_enabled;
129
130         NMVpnManager *vpn_manager;
131
132         NMSleepMonitor *sleep_monitor;
133
134         GSList *auth_chains;
135
136         /* Firmware dir monitor */
137         GFileMonitor *fw_monitor;
138         guint fw_changed_id;
139
140         guint timestamp_update_id;
141
142         gboolean startup;
143         gboolean devices_inited;
144 } NMManagerPrivate;
145
146 #define NM_MANAGER_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), NM_TYPE_MANAGER, NMManagerPrivate))
147
148 G_DEFINE_TYPE (NMManager, nm_manager, NM_TYPE_EXPORTED_OBJECT)
149
150 enum {
151         DEVICE_ADDED,
152         INTERNAL_DEVICE_ADDED,
153         DEVICE_REMOVED,
154         INTERNAL_DEVICE_REMOVED,
155         STATE_CHANGED,
156         CHECK_PERMISSIONS,
157         USER_PERMISSIONS_CHANGED,
158         ACTIVE_CONNECTION_ADDED,
159         ACTIVE_CONNECTION_REMOVED,
160         CONFIGURE_QUIT,
161
162         LAST_SIGNAL
163 };
164
165 static guint signals[LAST_SIGNAL] = { 0 };
166
167 enum {
168         PROP_0,
169         PROP_VERSION,
170         PROP_STATE,
171         PROP_STATE_FILE,
172         PROP_STARTUP,
173         PROP_NETWORKING_ENABLED,
174         PROP_WIRELESS_ENABLED,
175         PROP_WIRELESS_HARDWARE_ENABLED,
176         PROP_WWAN_ENABLED,
177         PROP_WWAN_HARDWARE_ENABLED,
178         PROP_WIMAX_ENABLED,
179         PROP_WIMAX_HARDWARE_ENABLED,
180         PROP_ACTIVE_CONNECTIONS,
181         PROP_CONNECTIVITY,
182         PROP_PRIMARY_CONNECTION,
183         PROP_PRIMARY_CONNECTION_TYPE,
184         PROP_ACTIVATING_CONNECTION,
185         PROP_DEVICES,
186         PROP_METERED,
187         PROP_GLOBAL_DNS_CONFIGURATION,
188         PROP_ALL_DEVICES,
189
190         /* Not exported */
191         PROP_HOSTNAME,
192         PROP_SLEEPING,
193
194         LAST_PROP
195 };
196
197 NM_DEFINE_SINGLETON_INSTANCE (NMManager);
198
199 /************************************************************************/
200
201 #define _NMLOG_PREFIX_NAME      "manager"
202 #define _NMLOG(level, domain, ...) \
203     G_STMT_START { \
204         const NMLogLevel __level = (level); \
205         const NMLogDomain __domain = (domain); \
206         \
207         if (nm_logging_enabled (__level, __domain)) { \
208             const NMManager *const __self = (self); \
209             char __sbuf[32]; \
210             \
211             _nm_log (__level, __domain, 0, \
212                      "%s%s: " _NM_UTILS_MACRO_FIRST (__VA_ARGS__), \
213                      _NMLOG_PREFIX_NAME, \
214                      (__self && __self != singleton_instance) \
215                          ? nm_sprintf_buf (__sbuf, "[%p]", __self) \
216                          : "" \
217                      _NM_UTILS_MACRO_REST (__VA_ARGS__)); \
218         } \
219     } G_STMT_END
220
221 /************************************************************************/
222
223 static void active_connection_state_changed (NMActiveConnection *active,
224                                              GParamSpec *pspec,
225                                              NMManager *self);
226 static void active_connection_default_changed (NMActiveConnection *active,
227                                                GParamSpec *pspec,
228                                                NMManager *self);
229 static void active_connection_parent_active (NMActiveConnection *active,
230                                              NMActiveConnection *parent_ac,
231                                              NMManager *self);
232
233 /* Returns: whether to notify D-Bus of the removal or not */
234 static gboolean
235 active_connection_remove (NMManager *self, NMActiveConnection *active)
236 {
237         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
238         gboolean notify = nm_exported_object_is_exported (NM_EXPORTED_OBJECT (active));
239         GSList *found;
240
241         /* FIXME: switch to a GList for faster removal */
242         found = g_slist_find (priv->active_connections, active);
243         if (found) {
244                 NMSettingsConnection *connection;
245
246                 priv->active_connections = g_slist_remove (priv->active_connections, active);
247                 g_signal_emit (self, signals[ACTIVE_CONNECTION_REMOVED], 0, active);
248                 g_signal_handlers_disconnect_by_func (active, active_connection_state_changed, self);
249                 g_signal_handlers_disconnect_by_func (active, active_connection_default_changed, self);
250                 g_signal_handlers_disconnect_by_func (active, active_connection_parent_active, self);
251
252                 if (   nm_active_connection_get_assumed (active)
253                     && (connection = nm_active_connection_get_settings_connection (active))
254                     && nm_settings_connection_get_nm_generated_assumed (connection))
255                         g_object_ref (connection);
256                 else
257                         connection = NULL;
258
259                 nm_exported_object_clear_and_unexport (&active);
260
261                 if (   connection
262                     && nm_settings_has_connection (priv->settings, connection)) {
263                         _LOGD (LOGD_DEVICE, "assumed connection disconnected. Deleting generated connection '%s' (%s)",
264                                nm_settings_connection_get_id (connection), nm_settings_connection_get_uuid (connection));
265                         nm_settings_connection_delete (NM_SETTINGS_CONNECTION (connection), NULL, NULL);
266                         g_object_unref (connection);
267                 }
268         }
269
270         return found && notify;
271 }
272
273 static gboolean
274 _active_connection_cleanup (gpointer user_data)
275 {
276         NMManager *self = NM_MANAGER (user_data);
277         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
278         GSList *iter;
279
280         priv->ac_cleanup_id = 0;
281
282         g_object_freeze_notify (G_OBJECT (self));
283         iter = priv->active_connections;
284         while (iter) {
285                 NMActiveConnection *ac = iter->data;
286
287                 iter = iter->next;
288                 if (nm_active_connection_get_state (ac) == NM_ACTIVE_CONNECTION_STATE_DEACTIVATED) {
289                         if (active_connection_remove (self, ac))
290                                 g_object_notify (G_OBJECT (self), NM_MANAGER_ACTIVE_CONNECTIONS);
291                 }
292         }
293         g_object_thaw_notify (G_OBJECT (self));
294
295         return FALSE;
296 }
297
298 static void
299 active_connection_state_changed (NMActiveConnection *active,
300                                  GParamSpec *pspec,
301                                  NMManager *self)
302 {
303         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
304         NMActiveConnectionState state;
305
306         state = nm_active_connection_get_state (active);
307         if (state == NM_ACTIVE_CONNECTION_STATE_DEACTIVATED) {
308                 /* Destroy active connections from an idle handler to ensure that
309                  * their last property change notifications go out, which wouldn't
310                  * happen if we destroyed them immediately when their state was set
311                  * to DEACTIVATED.
312                  */
313                 if (!priv->ac_cleanup_id)
314                         priv->ac_cleanup_id = g_idle_add (_active_connection_cleanup, self);
315         }
316
317         nm_manager_update_state (self);
318 }
319
320 static void
321 active_connection_default_changed (NMActiveConnection *active,
322                                    GParamSpec *pspec,
323                                    NMManager *self)
324 {
325         nm_manager_update_state (self);
326 }
327
328 /**
329  * active_connection_add():
330  * @self: the #NMManager
331  * @active: the #NMActiveConnection to manage
332  *
333  * Begins to track and manage @active.  Increases the refcount of @active.
334  */
335 static void
336 active_connection_add (NMManager *self, NMActiveConnection *active)
337 {
338         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
339
340         g_return_if_fail (g_slist_find (priv->active_connections, active) == FALSE);
341
342         priv->active_connections = g_slist_prepend (priv->active_connections,
343                                                     g_object_ref (active));
344
345         g_signal_connect (active,
346                           "notify::" NM_ACTIVE_CONNECTION_STATE,
347                           G_CALLBACK (active_connection_state_changed),
348                           self);
349         g_signal_connect (active,
350                           "notify::" NM_ACTIVE_CONNECTION_DEFAULT,
351                           G_CALLBACK (active_connection_default_changed),
352                           self);
353         g_signal_connect (active,
354                           "notify::" NM_ACTIVE_CONNECTION_DEFAULT6,
355                           G_CALLBACK (active_connection_default_changed),
356                           self);
357
358         g_signal_emit (self, signals[ACTIVE_CONNECTION_ADDED], 0, active);
359
360         /* Only notify D-Bus if the active connection is actually exported */
361         if (nm_exported_object_is_exported (NM_EXPORTED_OBJECT (active)))
362                 g_object_notify (G_OBJECT (self), NM_MANAGER_ACTIVE_CONNECTIONS);
363 }
364
365 const GSList *
366 nm_manager_get_active_connections (NMManager *manager)
367 {
368         return NM_MANAGER_GET_PRIVATE (manager)->active_connections;
369 }
370
371 static NMActiveConnection *
372 find_ac_for_connection (NMManager *manager, NMConnection *connection)
373 {
374         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (manager);
375         GSList *iter;
376         const char *uuid = NULL;
377         gboolean is_settings_connection;
378
379         is_settings_connection = NM_IS_SETTINGS_CONNECTION (connection);
380
381         if (!is_settings_connection)
382                 uuid = nm_connection_get_uuid (connection);
383
384         for (iter = priv->active_connections; iter; iter = iter->next) {
385                 NMActiveConnection *ac = iter->data;
386                 NMSettingsConnection *con;
387
388                 con = nm_active_connection_get_settings_connection (ac);
389
390                 /* depending on whether we have a NMSettingsConnection or a NMConnection,
391                  * we lookup by UUID or by reference. */
392                 if (is_settings_connection) {
393                         if (con != (NMSettingsConnection *) connection)
394                                 continue;
395                 } else {
396                         if (strcmp (uuid, nm_connection_get_uuid (NM_CONNECTION (con))) != 0)
397                                 continue;
398                 }
399                 if (nm_active_connection_get_state (ac) < NM_ACTIVE_CONNECTION_STATE_DEACTIVATED)
400                         return ac;
401         }
402
403         return NULL;
404 }
405
406 /* Filter out connections that are already active.
407  * nm_settings_get_connections() returns sorted list. We need to preserve the
408  * order so that we didn't change auto-activation order (recent timestamps
409  * are first).
410  * Caller is responsible for freeing the returned list with g_slist_free().
411  */
412 GSList *
413 nm_manager_get_activatable_connections (NMManager *manager)
414 {
415         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (manager);
416         GSList *all_connections = nm_settings_get_connections (priv->settings);
417         GSList *connections = NULL, *iter;
418         NMSettingsConnection *connection;
419
420         for (iter = all_connections; iter; iter = iter->next) {
421                 connection = iter->data;
422
423                 if (!find_ac_for_connection (manager, NM_CONNECTION (connection)))
424                         connections = g_slist_prepend (connections, connection);
425         }
426
427         g_slist_free (all_connections);
428         return g_slist_reverse (connections);
429 }
430
431 static NMActiveConnection *
432 active_connection_get_by_path (NMManager *manager, const char *path)
433 {
434         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (manager);
435         GSList *iter;
436
437         g_return_val_if_fail (manager != NULL, NULL);
438         g_return_val_if_fail (path != NULL, NULL);
439
440         for (iter = priv->active_connections; iter; iter = g_slist_next (iter)) {
441                 NMActiveConnection *candidate = iter->data;
442
443                 if (g_strcmp0 (path, nm_exported_object_get_path (NM_EXPORTED_OBJECT (candidate))) == 0)
444                         return candidate;
445         }
446         return NULL;
447 }
448
449 /************************************************************************/
450
451 static void
452 _config_changed_cb (NMConfig *config, NMConfigData *config_data, NMConfigChangeFlags changes, NMConfigData *old_data, NMManager *self)
453 {
454         g_object_set (NM_MANAGER_GET_PRIVATE (self)->connectivity,
455                       NM_CONNECTIVITY_URI, nm_config_data_get_connectivity_uri (config_data),
456                       NM_CONNECTIVITY_INTERVAL, nm_config_data_get_connectivity_interval (config_data),
457                       NM_CONNECTIVITY_RESPONSE, nm_config_data_get_connectivity_response (config_data),
458                       NULL);
459
460         if (NM_FLAGS_HAS (changes, NM_CONFIG_CHANGE_GLOBAL_DNS_CONFIG))
461                 g_object_notify (G_OBJECT (self), NM_MANAGER_GLOBAL_DNS_CONFIGURATION);
462 }
463
464 /************************************************************************/
465
466 static NMDevice *
467 nm_manager_get_device_by_path (NMManager *manager, const char *path)
468 {
469         GSList *iter;
470
471         g_return_val_if_fail (path != NULL, NULL);
472
473         for (iter = NM_MANAGER_GET_PRIVATE (manager)->devices; iter; iter = iter->next) {
474                 if (!strcmp (nm_exported_object_get_path (NM_EXPORTED_OBJECT (iter->data)), path))
475                         return NM_DEVICE (iter->data);
476         }
477         return NULL;
478 }
479
480 NMDevice *
481 nm_manager_get_device_by_ifindex (NMManager *manager, int ifindex)
482 {
483         GSList *iter;
484
485         for (iter = NM_MANAGER_GET_PRIVATE (manager)->devices; iter; iter = iter->next) {
486                 NMDevice *device = NM_DEVICE (iter->data);
487
488                 if (nm_device_get_ifindex (device) == ifindex)
489                         return device;
490         }
491
492         return NULL;
493 }
494
495 static NMDevice *
496 find_device_by_hw_addr (NMManager *manager, const char *hwaddr)
497 {
498         GSList *iter;
499         const char *device_addr;
500
501         g_return_val_if_fail (hwaddr != NULL, NULL);
502
503         if (nm_utils_hwaddr_valid (hwaddr, -1)) {
504                 for (iter = NM_MANAGER_GET_PRIVATE (manager)->devices; iter; iter = iter->next) {
505                         device_addr = nm_device_get_hw_address (NM_DEVICE (iter->data));
506                         if (device_addr && nm_utils_hwaddr_matches (hwaddr, -1, device_addr, -1))
507                                 return NM_DEVICE (iter->data);
508                 }
509         }
510         return NULL;
511 }
512
513 static NMDevice *
514 find_device_by_ip_iface (NMManager *self, const gchar *iface)
515 {
516         GSList *iter;
517
518         g_return_val_if_fail (iface != NULL, NULL);
519
520         for (iter = NM_MANAGER_GET_PRIVATE (self)->devices; iter; iter = g_slist_next (iter)) {
521                 NMDevice *candidate = iter->data;
522
523                 if (   nm_device_is_real (candidate)
524                     && g_strcmp0 (nm_device_get_ip_iface (candidate), iface) == 0)
525                         return candidate;
526         }
527         return NULL;
528 }
529
530 /**
531  * find_device_by_iface:
532  * @self: the #NMManager
533  * @iface: the device interface to find
534  * @connection: a connection to ensure the returned device is compatible with
535  * @slave: a slave connection to ensure a master is compatible with
536  *
537  * Finds a device by interface name, preferring realized devices.  If @slave
538  * is given, this function will only return master devices and will ensure
539  * @slave, when activated, can be a slave of the returned master device.  If
540  * @connection is given, this function will only consider devices that are
541  * compatible with @connection.
542  *
543  * Returns: the matching #NMDevice
544  */
545 static NMDevice *
546 find_device_by_iface (NMManager *self,
547                       const char *iface,
548                       NMConnection *connection,
549                       NMConnection *slave)
550 {
551         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
552         NMDevice *fallback = NULL;
553         GSList *iter;
554
555         g_return_val_if_fail (iface != NULL, NULL);
556
557         for (iter = priv->devices; iter; iter = iter->next) {
558                 NMDevice *candidate = iter->data;
559
560                 if (strcmp (nm_device_get_iface (candidate), iface))
561                         continue;
562                 if (connection && !nm_device_check_connection_compatible (candidate, connection))
563                         continue;
564                 if (slave) {
565                         if (!nm_device_is_master (candidate))
566                                 continue;
567                         if (!nm_device_check_slave_connection_compatible (candidate, slave))
568                                 continue;
569                 }
570
571                 if (nm_device_is_real (candidate))
572                         return candidate;
573                 else if (!fallback)
574                         fallback = candidate;
575         }
576         return fallback;
577 }
578
579 static gboolean
580 manager_sleeping (NMManager *self)
581 {
582         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
583
584         if (priv->sleeping || !priv->net_enabled)
585                 return TRUE;
586         return FALSE;
587 }
588
589 static const char *
590 _nm_state_to_string (NMState state)
591 {
592         switch (state) {
593         case NM_STATE_ASLEEP:
594                 return "ASLEEP";
595         case NM_STATE_DISCONNECTED:
596                 return "DISCONNECTED";
597         case NM_STATE_DISCONNECTING:
598                 return "DISCONNECTING";
599         case NM_STATE_CONNECTING:
600                 return "CONNECTING";
601         case NM_STATE_CONNECTED_LOCAL:
602                 return "CONNECTED_LOCAL";
603         case NM_STATE_CONNECTED_SITE:
604                 return "CONNECTED_SITE";
605         case NM_STATE_CONNECTED_GLOBAL:
606                 return "CONNECTED_GLOBAL";
607         case NM_STATE_UNKNOWN:
608         default:
609                 return "UNKNOWN";
610         }
611 }
612
613 static void
614 set_state (NMManager *self, NMState state)
615 {
616         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
617
618         if (priv->state == state)
619                 return;
620
621         priv->state = state;
622
623         _LOGI (LOGD_CORE, "NetworkManager state is now %s", _nm_state_to_string (state));
624
625         g_object_notify (G_OBJECT (self), NM_MANAGER_STATE);
626         g_signal_emit (self, signals[STATE_CHANGED], 0, priv->state);
627 }
628
629 static void
630 checked_connectivity (GObject *object, GAsyncResult *result, gpointer user_data)
631 {
632         NMManager *manager = user_data;
633         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (manager);
634         NMConnectivityState connectivity;
635
636         if (priv->state == NM_STATE_CONNECTING || priv->state == NM_STATE_CONNECTED_SITE) {
637                 connectivity = nm_connectivity_check_finish (priv->connectivity, result, NULL);
638
639                 if (connectivity == NM_CONNECTIVITY_FULL)
640                         set_state (manager, NM_STATE_CONNECTED_GLOBAL);
641                 else if (   connectivity == NM_CONNECTIVITY_PORTAL
642                          || connectivity == NM_CONNECTIVITY_LIMITED)
643                         set_state (manager, NM_STATE_CONNECTED_SITE);
644                 g_object_notify (G_OBJECT (manager), NM_MANAGER_CONNECTIVITY);
645         }
646
647         g_object_unref (manager);
648 }
649
650 static NMState
651 find_best_device_state (NMManager *manager)
652 {
653         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (manager);
654         NMState best_state = NM_STATE_DISCONNECTED;
655         GSList *iter;
656
657         for (iter = priv->active_connections; iter; iter = iter->next) {
658                 NMActiveConnection *ac = NM_ACTIVE_CONNECTION (iter->data);
659                 NMActiveConnectionState ac_state = nm_active_connection_get_state (ac);
660
661                 switch (ac_state) {
662                 case NM_ACTIVE_CONNECTION_STATE_ACTIVATED:
663                         if (   nm_active_connection_get_default (ac)
664                             || nm_active_connection_get_default6 (ac)) {
665                                 if (nm_connectivity_get_state (priv->connectivity) == NM_CONNECTIVITY_FULL)
666                                         return NM_STATE_CONNECTED_GLOBAL;
667
668                                 best_state = NM_STATE_CONNECTED_SITE;
669                         } else {
670                                 if (best_state < NM_STATE_CONNECTING)
671                                         best_state = NM_STATE_CONNECTED_LOCAL;
672                         }
673                         break;
674                 case NM_ACTIVE_CONNECTION_STATE_ACTIVATING:
675                         if (!nm_active_connection_get_assumed (ac)) {
676                                 if (best_state != NM_STATE_CONNECTED_GLOBAL)
677                                         best_state = NM_STATE_CONNECTING;
678                         }
679                         break;
680                 case NM_ACTIVE_CONNECTION_STATE_DEACTIVATING:
681                         if (!nm_active_connection_get_assumed (ac)) {
682                                 if (best_state < NM_STATE_DISCONNECTING)
683                                         best_state = NM_STATE_DISCONNECTING;
684                         }
685                         break;
686                 default:
687                         break;
688                 }
689         }
690
691         return best_state;
692 }
693
694 static void
695 nm_manager_update_metered (NMManager *self)
696 {
697         NMManagerPrivate *priv;
698         NMDevice *device;
699         NMMetered value = NM_METERED_UNKNOWN;
700
701         g_return_if_fail (NM_IS_MANAGER (self));
702         priv = NM_MANAGER_GET_PRIVATE (self);
703
704         if (priv->primary_connection) {
705                 device =  nm_active_connection_get_device (priv->primary_connection);
706                 if (device)
707                         value = nm_device_get_metered (device);
708         }
709
710         if (value != priv->metered) {
711                 priv->metered = value;
712                 _LOGD (LOGD_CORE, "new metered value: %d", (int) priv->metered);
713                 g_object_notify (G_OBJECT (self), NM_MANAGER_METERED);
714         }
715 }
716
717 static void
718 nm_manager_update_state (NMManager *manager)
719 {
720         NMManagerPrivate *priv;
721         NMState new_state = NM_STATE_DISCONNECTED;
722
723         g_return_if_fail (NM_IS_MANAGER (manager));
724
725         priv = NM_MANAGER_GET_PRIVATE (manager);
726
727         if (manager_sleeping (manager))
728                 new_state = NM_STATE_ASLEEP;
729         else
730                 new_state = find_best_device_state (manager);
731
732         nm_connectivity_set_online (priv->connectivity, new_state >= NM_STATE_CONNECTED_LOCAL);
733
734         if (new_state == NM_STATE_CONNECTED_SITE) {
735                 nm_connectivity_check_async (priv->connectivity,
736                                              checked_connectivity,
737                                              g_object_ref (manager));
738         }
739
740         set_state (manager, new_state);
741 }
742
743 static void
744 manager_device_state_changed (NMDevice *device,
745                               NMDeviceState new_state,
746                               NMDeviceState old_state,
747                               NMDeviceStateReason reason,
748                               gpointer user_data)
749 {
750         NMManager *self = NM_MANAGER (user_data);
751         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
752
753         switch (new_state) {
754         case NM_DEVICE_STATE_UNMANAGED:
755         case NM_DEVICE_STATE_UNAVAILABLE:
756         case NM_DEVICE_STATE_DISCONNECTED:
757         case NM_DEVICE_STATE_PREPARE:
758         case NM_DEVICE_STATE_FAILED:
759                 g_object_notify (G_OBJECT (self), NM_MANAGER_ACTIVE_CONNECTIONS);
760                 break;
761         default:
762                 break;
763         }
764
765         if (   new_state == NM_DEVICE_STATE_UNAVAILABLE
766             || new_state == NM_DEVICE_STATE_DISCONNECTED)
767                 nm_settings_device_added (priv->settings, device);
768 }
769
770 static void device_has_pending_action_changed (NMDevice *device,
771                                                GParamSpec *pspec,
772                                                NMManager *self);
773
774 static void
775 check_if_startup_complete (NMManager *self)
776 {
777         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
778         GSList *iter;
779
780         if (!priv->startup)
781                 return;
782
783         if (!priv->devices_inited)
784                 return;
785
786         if (!nm_settings_get_startup_complete (priv->settings)) {
787                 _LOGD (LOGD_CORE, "check_if_startup_complete returns FALSE because of NMSettings");
788                 return;
789         }
790
791         for (iter = priv->devices; iter; iter = iter->next) {
792                 NMDevice *dev = iter->data;
793
794                 if (nm_device_has_pending_action (dev)) {
795                         _LOGD (LOGD_CORE, "check_if_startup_complete returns FALSE because of %s",
796                                nm_device_get_iface (dev));
797                         return;
798                 }
799         }
800
801         _LOGI (LOGD_CORE, "startup complete");
802
803         priv->startup = FALSE;
804         g_object_notify (G_OBJECT (self), "startup");
805
806         /* We don't have to watch notify::has-pending-action any more. */
807         for (iter = priv->devices; iter; iter = iter->next) {
808                 NMDevice *dev = iter->data;
809
810                 g_signal_handlers_disconnect_by_func (dev, G_CALLBACK (device_has_pending_action_changed), self);
811         }
812
813         if (nm_config_get_configure_and_quit (nm_config_get ()))
814                 g_signal_emit (self, signals[CONFIGURE_QUIT], 0);
815 }
816
817 static void
818 device_has_pending_action_changed (NMDevice *device,
819                                    GParamSpec *pspec,
820                                    NMManager *self)
821 {
822         check_if_startup_complete (self);
823 }
824
825 static void
826 settings_startup_complete_changed (NMSettings *settings,
827                                    GParamSpec *pspec,
828                                    NMManager *self)
829 {
830         check_if_startup_complete (self);
831 }
832
833 static void
834 remove_device (NMManager *self,
835                NMDevice *device,
836                gboolean quitting,
837                gboolean allow_unmanage)
838 {
839         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
840
841         _LOGD (LOGD_DEVICE, "(%s): removing device (allow_unmanage %d, managed %d)",
842                nm_device_get_iface (device), allow_unmanage, nm_device_get_managed (device, FALSE));
843
844         if (allow_unmanage && nm_device_get_managed (device, FALSE)) {
845                 NMActRequest *req = nm_device_get_act_request (device);
846                 gboolean unmanage = FALSE;
847
848                 /* Leave activated interfaces up when quitting so their configuration
849                  * can be taken over when NM restarts.  This ensures connectivity while
850                  * NM is stopped. Devices which do not support connection assumption
851                  * cannot be left up.
852                  */
853                 if (!quitting)  /* Forced removal; device already gone */
854                         unmanage = TRUE;
855                 else if (!nm_device_can_assume_active_connection (device))
856                         unmanage = TRUE;
857                 else if (!req)
858                         unmanage = TRUE;
859
860                 if (unmanage) {
861                         if (quitting)
862                                 nm_device_set_unmanaged_by_quitting (device);
863                         else
864                                 nm_device_set_unmanaged_by_flags (device, NM_UNMANAGED_PLATFORM_INIT, TRUE, NM_DEVICE_STATE_REASON_REMOVED);
865                 } else if (quitting && nm_config_get_configure_and_quit (nm_config_get ())) {
866                         nm_device_spawn_iface_helper (device);
867                 }
868         }
869
870         g_signal_handlers_disconnect_matched (device, G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, self);
871
872         nm_settings_device_removed (priv->settings, device, quitting);
873         priv->devices = g_slist_remove (priv->devices, device);
874
875         if (nm_device_is_real (device)) {
876                 g_signal_emit (self, signals[DEVICE_REMOVED], 0, device);
877                 g_object_notify (G_OBJECT (self), NM_MANAGER_DEVICES);
878                 nm_device_removed (device);
879         }
880         g_signal_emit (self, signals[INTERNAL_DEVICE_REMOVED], 0, device);
881         g_object_notify (G_OBJECT (self), NM_MANAGER_ALL_DEVICES);
882
883         nm_exported_object_clear_and_unexport (&device);
884
885         check_if_startup_complete (self);
886 }
887
888 static void
889 device_removed_cb (NMDevice *device, gpointer user_data)
890 {
891         remove_device (NM_MANAGER (user_data), device, FALSE, TRUE);
892 }
893
894 NMState
895 nm_manager_get_state (NMManager *manager)
896 {
897         g_return_val_if_fail (NM_IS_MANAGER (manager), NM_STATE_UNKNOWN);
898
899         return NM_MANAGER_GET_PRIVATE (manager)->state;
900 }
901
902 /***************************/
903
904 static NMDevice *
905 find_parent_device_for_connection (NMManager *self, NMConnection *connection, NMDeviceFactory *cached_factory)
906 {
907         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
908         NMDeviceFactory *factory;
909         const char *parent_name = NULL;
910         NMSettingsConnection *parent_connection;
911         NMDevice *parent, *first_compatible = NULL;
912         GSList *iter;
913
914         g_return_val_if_fail (NM_IS_CONNECTION (connection), NULL);
915
916         if (!cached_factory) {
917                 factory = nm_device_factory_manager_find_factory_for_connection (connection);
918                 if (!factory)
919                         return NULL;
920         } else
921                 factory = cached_factory;
922
923         parent_name = nm_device_factory_get_connection_parent (factory, connection);
924         if (!parent_name)
925                 return NULL;
926
927         /* Try as an interface name of a parent device */
928         parent = find_device_by_iface (self, parent_name, NULL, NULL);
929         if (parent)
930                 return parent;
931
932         /* Maybe a hardware address */
933         parent = find_device_by_hw_addr (self, parent_name);
934         if (parent)
935                 return parent;
936
937         /* Maybe a connection UUID */
938         parent_connection = nm_settings_get_connection_by_uuid (priv->settings, parent_name);
939         if (!parent_connection)
940                 return NULL;
941
942         /* Check if the parent connection is currently activated or is comaptible
943          * with some known device.
944          */
945         for (iter = priv->devices; iter; iter = iter->next) {
946                 NMDevice *candidate = iter->data;
947
948                 if (nm_device_get_settings_connection (candidate) == parent_connection)
949                         return candidate;
950
951                 if (   !first_compatible
952                     && nm_device_check_connection_compatible (candidate, NM_CONNECTION (parent_connection)))
953                         first_compatible = candidate;
954         }
955
956         return first_compatible;
957 }
958
959 /**
960  * nm_manager_get_connection_iface:
961  * @self: the #NMManager
962  * @connection: the #NMConnection to get the interface for
963  * @out_parent: on success, the parent device if any
964  * @error: an error if determining the virtual interface name failed
965  *
966  * Given @connection, returns the interface name that the connection
967  * would need to use when activated. %NULL is returned if the name
968  * is not specified in connection or a the name for a virtual device
969  * could not be generated.
970  *
971  * Returns: the expected interface name (caller takes ownership), or %NULL
972  */
973 char *
974 nm_manager_get_connection_iface (NMManager *self,
975                                  NMConnection *connection,
976                                  NMDevice **out_parent,
977                                  GError **error)
978 {
979         NMDeviceFactory *factory;
980         char *iface = NULL;
981         NMDevice *parent = NULL;
982
983         if (out_parent)
984                 *out_parent = NULL;
985
986         factory = nm_device_factory_manager_find_factory_for_connection (connection);
987         if (!factory) {
988                 g_set_error (error,
989                              NM_MANAGER_ERROR,
990                              NM_MANAGER_ERROR_FAILED,
991                              "NetworkManager plugin for '%s' unavailable",
992                              nm_connection_get_connection_type (connection));
993                 return NULL;
994         }
995
996         if (   !out_parent
997             && !NM_DEVICE_FACTORY_GET_INTERFACE (factory)->get_connection_iface) {
998                 /* optimization. Shortcut lookup of the partent device. */
999                 iface = g_strdup (nm_connection_get_interface_name (connection));
1000                 if (!iface) {
1001                         g_set_error (error,
1002                                      NM_MANAGER_ERROR,
1003                                      NM_MANAGER_ERROR_FAILED,
1004                                      "failed to determine interface name: error determine name for %s",
1005                                      nm_connection_get_connection_type (connection));
1006                 }
1007                 return iface;
1008         }
1009
1010         parent = find_parent_device_for_connection (self, connection, factory);
1011         iface = nm_device_factory_get_connection_iface (factory,
1012                                                         connection,
1013                                                         parent ? nm_device_get_ip_iface (parent) : NULL,
1014                                                         error);
1015         if (!iface)
1016                 return NULL;
1017
1018         if (out_parent)
1019                 *out_parent = parent;
1020         return iface;
1021 }
1022
1023 /**
1024  * system_create_virtual_device:
1025  * @self: the #NMManager
1026  * @connection: the connection which might require a virtual device
1027  *
1028  * If @connection requires a virtual device and one does not yet exist for it,
1029  * creates that device.
1030  *
1031  * Returns: A #NMDevice that was just realized; %NULL if none
1032  */
1033 static NMDevice *
1034 system_create_virtual_device (NMManager *self, NMConnection *connection)
1035 {
1036         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
1037         NMDeviceFactory *factory;
1038         gs_free_slist GSList *connections = NULL;
1039         GSList *iter;
1040         gs_free char *iface = NULL;
1041         NMDevice *device = NULL, *parent = NULL;
1042         GError *error = NULL;
1043
1044         g_return_val_if_fail (NM_IS_MANAGER (self), NULL);
1045         g_return_val_if_fail (NM_IS_CONNECTION (connection), NULL);
1046
1047         iface = nm_manager_get_connection_iface (self, connection, &parent, &error);
1048         if (!iface) {
1049                 _LOGD (LOGD_DEVICE, "(%s) can't get a name of a virtual device: %s",
1050                        nm_connection_get_id (connection), error->message);
1051                 g_error_free (error);
1052                 return NULL;
1053         }
1054
1055         /* See if there's a device that is already compatible with this connection */
1056         for (iter = priv->devices; iter; iter = g_slist_next (iter)) {
1057                 NMDevice *candidate = iter->data;
1058
1059                 if (nm_device_check_connection_compatible (candidate, connection)) {
1060                         if (nm_device_is_real (candidate)) {
1061                                 _LOGD (LOGD_DEVICE, "(%s) already created virtual interface name %s",
1062                                        nm_connection_get_id (connection), iface);
1063                                 return NULL;
1064                         }
1065
1066                         device = candidate;
1067                         break;
1068                 }
1069         }
1070
1071         if (!device) {
1072                 /* No matching device found. Proceed creating a new one. */
1073
1074                 factory = nm_device_factory_manager_find_factory_for_connection (connection);
1075                 if (!factory) {
1076                         _LOGE (LOGD_DEVICE, "(%s:%s) NetworkManager plugin for '%s' unavailable",
1077                                nm_connection_get_id (connection), iface,
1078                                nm_connection_get_connection_type (connection));
1079                         return NULL;
1080                 }
1081
1082                 device = nm_device_factory_create_device (factory, iface, NULL, connection, NULL, &error);
1083                 if (!device) {
1084                         _LOGW (LOGD_DEVICE, "(%s) factory can't create the device: %s",
1085                                nm_connection_get_id (connection), error->message);
1086                         g_error_free (error);
1087                         return NULL;
1088                 }
1089
1090                 _LOGD (LOGD_DEVICE, "(%s) create virtual device %s",
1091                        nm_connection_get_id (connection),
1092                        nm_device_get_iface (device));
1093
1094                 if (!add_device (self, device, &error)) {
1095                         _LOGW (LOGD_DEVICE, "(%s) can't register the device with manager: %s",
1096                                nm_connection_get_id (connection), error->message);
1097                         g_error_free (error);
1098                         g_object_unref (device);
1099                         return NULL;
1100                 }
1101
1102                 /* Add device takes a reference that NMManager still owns, so it's
1103                  * safe to unref here and still return @device.
1104                  */
1105                 g_object_unref (device);
1106         }
1107
1108         /* Create backing resources if the device has any autoconnect connections */
1109         connections = nm_settings_get_connections (priv->settings);
1110         for (iter = connections; iter; iter = g_slist_next (iter)) {
1111                 NMConnection *candidate = iter->data;
1112                 NMSettingConnection *s_con;
1113
1114                 if (!nm_device_check_connection_compatible (device, candidate))
1115                         continue;
1116
1117                 s_con = nm_connection_get_setting_connection (candidate);
1118                 g_assert (s_con);
1119                 if (!nm_setting_connection_get_autoconnect (s_con))
1120                         continue;
1121
1122                 /* Create any backing resources the device needs */
1123                 if (!nm_device_create_and_realize (device, connection, parent, &error)) {
1124                         _LOGW (LOGD_DEVICE, "(%s) couldn't create the device: %s",
1125                                nm_connection_get_id (connection), error->message);
1126                         g_error_free (error);
1127                         remove_device (self, device, FALSE, TRUE);
1128                         return NULL;
1129                 }
1130                 break;
1131         }
1132
1133         return device;
1134 }
1135
1136 static void
1137 retry_connections_for_parent_device (NMManager *self, NMDevice *device)
1138 {
1139         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
1140         GSList *connections, *iter;
1141
1142         g_return_if_fail (device);
1143
1144         connections = nm_settings_get_connections (priv->settings);
1145         for (iter = connections; iter; iter = g_slist_next (iter)) {
1146                 NMConnection *candidate = iter->data;
1147                 gs_free_error GError *error = NULL;
1148                 gs_free char *ifname = NULL;
1149                 NMDevice *parent;
1150
1151                 parent = find_parent_device_for_connection (self, candidate, NULL);
1152                 if (parent == device) {
1153                         /* Only try to activate devices that don't already exist */
1154                         ifname = nm_manager_get_connection_iface (self, candidate, &parent, &error);
1155                         if (ifname) {
1156                                 if (!nm_platform_link_get_by_ifname (NM_PLATFORM_GET, ifname))
1157                                         connection_changed (priv->settings, candidate, self);
1158                         }
1159                 }
1160         }
1161
1162         g_slist_free (connections);
1163 }
1164
1165 static void
1166 connection_changed (NMSettings *settings,
1167                     NMConnection *connection,
1168                     NMManager *manager)
1169 {
1170         NMDevice *device;
1171
1172         if (!nm_connection_is_virtual (connection))
1173                 return;
1174
1175         device = system_create_virtual_device (manager, connection);
1176         if (!device)
1177                 return;
1178
1179         /* Maybe the device that was created was needed by some other
1180          * connection's device (parent of a VLAN). Let the connections
1181          * can use the newly created device as a parent know. */
1182         retry_connections_for_parent_device (manager, device);
1183 }
1184
1185 static void
1186 connection_removed (NMSettings *settings,
1187                     NMSettingsConnection *connection,
1188                     NMManager *manager)
1189 {
1190         /*
1191          * Do not delete existing virtual devices to keep connectivity up.
1192          * Virtual devices are reused when NetworkManager is restarted.
1193          */
1194 }
1195
1196 static void
1197 system_unmanaged_devices_changed_cb (NMSettings *settings,
1198                                      GParamSpec *pspec,
1199                                      gpointer user_data)
1200 {
1201         NMManager *self = NM_MANAGER (user_data);
1202         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
1203         const GSList *unmanaged_specs, *iter;
1204
1205         unmanaged_specs = nm_settings_get_unmanaged_specs (priv->settings);
1206         for (iter = priv->devices; iter; iter = g_slist_next (iter))
1207                 nm_device_set_unmanaged_by_user_config (NM_DEVICE (iter->data), unmanaged_specs);
1208 }
1209
1210 static void
1211 system_hostname_changed_cb (NMSettings *settings,
1212                             GParamSpec *pspec,
1213                             gpointer user_data)
1214 {
1215         NMManager *self = NM_MANAGER (user_data);
1216         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
1217         char *hostname;
1218
1219         hostname = nm_settings_get_hostname (priv->settings);
1220
1221         /* nm_settings_get_hostname() does not return an empty hostname. */
1222         nm_assert (!hostname || *hostname);
1223
1224         if (!hostname && !priv->hostname)
1225                 return;
1226         if (hostname && priv->hostname && !strcmp (hostname, priv->hostname)) {
1227                 g_free (hostname);
1228                 return;
1229         }
1230
1231         /* realloc, to free possibly trailing data after NUL. */
1232         if (hostname)
1233                 hostname = g_realloc (hostname, strlen (hostname) + 1);
1234
1235         g_free (priv->hostname);
1236         priv->hostname = hostname;
1237         g_object_notify (G_OBJECT (self), NM_MANAGER_HOSTNAME);
1238
1239         nm_dhcp_manager_set_default_hostname (nm_dhcp_manager_get (), priv->hostname);
1240 }
1241
1242 /*******************************************************************/
1243 /* General NMManager stuff                                         */
1244 /*******************************************************************/
1245
1246 /* Store value into key-file; supported types: boolean, int, string */
1247 static gboolean
1248 write_value_to_state_file (const char *filename,
1249                            const char *group,
1250                            const char *key,
1251                            GType value_type,
1252                            gpointer value,
1253                            GError **error)
1254 {
1255         GKeyFile *key_file;
1256         char *data;
1257         gsize len = 0;
1258         gboolean ret = FALSE;
1259
1260         g_return_val_if_fail (filename != NULL, FALSE);
1261         g_return_val_if_fail (group != NULL, FALSE);
1262         g_return_val_if_fail (key != NULL, FALSE);
1263         g_return_val_if_fail (value_type == G_TYPE_BOOLEAN ||
1264                               value_type == G_TYPE_INT ||
1265                               value_type == G_TYPE_STRING,
1266                               FALSE);
1267
1268         key_file = g_key_file_new ();
1269
1270         g_key_file_set_list_separator (key_file, ',');
1271         g_key_file_load_from_file (key_file, filename, G_KEY_FILE_KEEP_COMMENTS, NULL);
1272         switch (value_type) {
1273         case G_TYPE_BOOLEAN:
1274                 g_key_file_set_boolean (key_file, group, key, *((gboolean *) value));
1275                 break;
1276         case G_TYPE_INT:
1277                 g_key_file_set_integer (key_file, group, key, *((gint *) value));
1278                 break;
1279         case G_TYPE_STRING:
1280                 g_key_file_set_string (key_file, group, key, *((const gchar **) value));
1281                 break;
1282         }
1283
1284         data = g_key_file_to_data (key_file, &len, NULL);
1285         if (data) {
1286                 ret = g_file_set_contents (filename, data, len, error);
1287                 g_free (data);
1288         }
1289         g_key_file_free (key_file);
1290
1291         return ret;
1292 }
1293
1294 static gboolean
1295 radio_enabled_for_rstate (RadioState *rstate, gboolean check_changeable)
1296 {
1297         gboolean enabled;
1298
1299         enabled = rstate->user_enabled && rstate->hw_enabled;
1300         if (check_changeable)
1301                 enabled &= rstate->sw_enabled;
1302         return enabled;
1303 }
1304
1305 static gboolean
1306 radio_enabled_for_type (NMManager *self, RfKillType rtype, gboolean check_changeable)
1307 {
1308         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
1309
1310         return radio_enabled_for_rstate (&priv->radio_states[rtype], check_changeable);
1311 }
1312
1313 static void
1314 manager_update_radio_enabled (NMManager *self,
1315                               RadioState *rstate,
1316                               gboolean enabled)
1317 {
1318         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
1319         GSList *iter;
1320
1321         /* Do nothing for radio types not yet implemented */
1322         if (!rstate->prop)
1323                 return;
1324
1325         g_object_notify (G_OBJECT (self), rstate->prop);
1326
1327         /* Don't touch devices if asleep/networking disabled */
1328         if (manager_sleeping (self))
1329                 return;
1330
1331         /* enable/disable wireless devices as required */
1332         for (iter = priv->devices; iter; iter = iter->next) {
1333                 NMDevice *device = NM_DEVICE (iter->data);
1334
1335                 if (nm_device_get_rfkill_type (device) == rstate->rtype) {
1336                         _LOGD (LOGD_RFKILL, "(%s): setting radio %s",
1337                                nm_device_get_iface (device),
1338                                enabled ? "enabled" : "disabled");
1339                         nm_device_set_enabled (device, enabled);
1340                 }
1341         }
1342 }
1343
1344 static void
1345 update_rstate_from_rfkill (NMRfkillManager *rfkill_mgr, RadioState *rstate)
1346 {
1347         switch (nm_rfkill_manager_get_rfkill_state (rfkill_mgr, rstate->rtype)) {
1348         case RFKILL_UNBLOCKED:
1349                 rstate->sw_enabled = TRUE;
1350                 rstate->hw_enabled = TRUE;
1351                 break;
1352         case RFKILL_SOFT_BLOCKED:
1353                 rstate->sw_enabled = FALSE;
1354                 rstate->hw_enabled = TRUE;
1355                 break;
1356         case RFKILL_HARD_BLOCKED:
1357                 rstate->sw_enabled = FALSE;
1358                 rstate->hw_enabled = FALSE;
1359                 break;
1360         default:
1361                 g_warn_if_reached ();
1362                 break;
1363         }
1364 }
1365
1366 static void
1367 manager_rfkill_update_one_type (NMManager *self,
1368                                 RadioState *rstate,
1369                                 RfKillType rtype)
1370 {
1371         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
1372         gboolean old_enabled, new_enabled, old_rfkilled, new_rfkilled, old_hwe;
1373
1374         old_enabled = radio_enabled_for_rstate (rstate, TRUE);
1375         old_rfkilled = rstate->hw_enabled && rstate->sw_enabled;
1376         old_hwe = rstate->hw_enabled;
1377
1378         /* recheck kernel rfkill state */
1379         update_rstate_from_rfkill (priv->rfkill_mgr, rstate);
1380
1381         /* Print out all states affecting device enablement */
1382         if (rstate->desc) {
1383                 _LOGD (LOGD_RFKILL, "%s hw-enabled %d sw-enabled %d",
1384                        rstate->desc, rstate->hw_enabled, rstate->sw_enabled);
1385         }
1386
1387         /* Log new killswitch state */
1388         new_rfkilled = rstate->hw_enabled && rstate->sw_enabled;
1389         if (old_rfkilled != new_rfkilled) {
1390                 _LOGI (LOGD_RFKILL, "%s now %s by radio killswitch",
1391                        rstate->desc,
1392                        new_rfkilled ? "enabled" : "disabled");
1393         }
1394
1395         /* Send out property changed signal for HW enabled */
1396         if (rstate->hw_enabled != old_hwe) {
1397                 if (rstate->hw_prop)
1398                         g_object_notify (G_OBJECT (self), rstate->hw_prop);
1399         }
1400
1401         /* And finally update the actual device radio state itself; respect the
1402          * daemon state here because this is never called from user-triggered
1403          * radio changes and we only want to ignore the daemon enabled state when
1404          * handling user radio change requests.
1405          */
1406         new_enabled = radio_enabled_for_rstate (rstate, TRUE);
1407         if (new_enabled != old_enabled)
1408                 manager_update_radio_enabled (self, rstate, new_enabled);
1409 }
1410
1411 static void
1412 nm_manager_rfkill_update (NMManager *self, RfKillType rtype)
1413 {
1414         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
1415         guint i;
1416
1417         if (rtype != RFKILL_TYPE_UNKNOWN)
1418                 manager_rfkill_update_one_type (self, &priv->radio_states[rtype], rtype);
1419         else {
1420                 /* Otherwise sync all radio types */
1421                 for (i = 0; i < RFKILL_TYPE_MAX; i++)
1422                         manager_rfkill_update_one_type (self, &priv->radio_states[i], i);
1423         }
1424 }
1425
1426 static void
1427 device_auth_done_cb (NMAuthChain *chain,
1428                      GError *auth_error,
1429                      GDBusMethodInvocation *context,
1430                      gpointer user_data)
1431 {
1432         NMManager *self = NM_MANAGER (user_data);
1433         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
1434         GError *error = NULL;
1435         NMAuthCallResult result;
1436         NMDevice *device;
1437         const char *permission;
1438         NMDeviceAuthRequestFunc callback;
1439         NMAuthSubject *subject;
1440
1441         g_assert (context);
1442
1443         priv->auth_chains = g_slist_remove (priv->auth_chains, chain);
1444
1445         permission = nm_auth_chain_get_data (chain, "requested-permission");
1446         g_assert (permission);
1447         callback = nm_auth_chain_get_data (chain, "callback");
1448         g_assert (callback);
1449         device = nm_auth_chain_get_data (chain, "device");
1450         g_assert (device);
1451
1452         result = nm_auth_chain_get_result (chain, permission);
1453         subject = nm_auth_chain_get_subject (chain);
1454
1455         if (auth_error) {
1456                 /* translate the auth error into a manager permission denied error */
1457                 _LOGD (LOGD_CORE, "%s request failed: %s", permission, auth_error->message);
1458                 error = g_error_new (NM_MANAGER_ERROR,
1459                                      NM_MANAGER_ERROR_PERMISSION_DENIED,
1460                                      "%s request failed: %s",
1461                                      permission, auth_error->message);
1462         } else if (result != NM_AUTH_CALL_RESULT_YES) {
1463                 _LOGD (LOGD_CORE, "%s request failed: not authorized", permission);
1464                 error = g_error_new (NM_MANAGER_ERROR,
1465                                      NM_MANAGER_ERROR_PERMISSION_DENIED,
1466                                      "%s request failed: not authorized",
1467                                      permission);
1468         }
1469
1470         g_assert (error || (result == NM_AUTH_CALL_RESULT_YES));
1471
1472         callback (device,
1473                   context,
1474                   subject,
1475                   error,
1476                   nm_auth_chain_get_data (chain, "user-data"));
1477
1478         g_clear_error (&error);
1479         nm_auth_chain_unref (chain);
1480 }
1481
1482 static void
1483 device_auth_request_cb (NMDevice *device,
1484                         GDBusMethodInvocation *context,
1485                         NMConnection *connection,
1486                         const char *permission,
1487                         gboolean allow_interaction,
1488                         NMDeviceAuthRequestFunc callback,
1489                         gpointer user_data,
1490                         NMManager *self)
1491 {
1492         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
1493         GError *error = NULL;
1494         NMAuthSubject *subject = NULL;
1495         char *error_desc = NULL;
1496         NMAuthChain *chain;
1497
1498         /* Validate the caller */
1499         subject = nm_auth_subject_new_unix_process_from_context (context);
1500         if (!subject) {
1501                 error = g_error_new_literal (NM_MANAGER_ERROR,
1502                                              NM_MANAGER_ERROR_PERMISSION_DENIED,
1503                                              "Failed to get request UID.");
1504                 goto done;
1505         }
1506
1507         /* Ensure the subject has permissions for this connection */
1508         if (connection && !nm_auth_is_subject_in_acl (connection,
1509                                                       subject,
1510                                                       &error_desc)) {
1511                 error = g_error_new_literal (NM_MANAGER_ERROR,
1512                                              NM_MANAGER_ERROR_PERMISSION_DENIED,
1513                                              error_desc);
1514                 g_free (error_desc);
1515                 goto done;
1516         }
1517
1518         /* Validate the request */
1519         chain = nm_auth_chain_new_subject (subject, context, device_auth_done_cb, self);
1520         if (!chain) {
1521                 error = g_error_new_literal (NM_MANAGER_ERROR,
1522                                              NM_MANAGER_ERROR_PERMISSION_DENIED,
1523                                              "Unable to authenticate request.");
1524                 goto done;
1525         }
1526
1527         priv->auth_chains = g_slist_append (priv->auth_chains, chain);
1528         nm_auth_chain_set_data (chain, "device", g_object_ref (device), g_object_unref);
1529         nm_auth_chain_set_data (chain, "requested-permission", g_strdup (permission), g_free);
1530         nm_auth_chain_set_data (chain, "callback", callback, NULL);
1531         nm_auth_chain_set_data (chain, "user-data", user_data, NULL);
1532         nm_auth_chain_add_call (chain, permission, allow_interaction);
1533
1534 done:
1535         if (error)
1536                 callback (device, context, subject, error, user_data);
1537
1538         g_clear_object (&subject);
1539         g_clear_error (&error);
1540 }
1541
1542 static gboolean
1543 match_connection_filter (NMConnection *connection, gpointer user_data)
1544 {
1545         if (nm_settings_connection_get_nm_generated_assumed (NM_SETTINGS_CONNECTION (connection)))
1546                 return FALSE;
1547
1548         return nm_device_check_connection_compatible (NM_DEVICE (user_data), connection);
1549 }
1550
1551 /**
1552  * get_existing_connection:
1553  * @manager: #NMManager instance
1554  * @device: #NMDevice instance
1555  * @out_generated: (allow-none): return TRUE, if the connection was generated.
1556  *
1557  * Returns: a #NMSettingsConnection to be assumed by the device, or %NULL if
1558  *   the device does not support assuming existing connections.
1559  */
1560 static NMSettingsConnection *
1561 get_existing_connection (NMManager *self, NMDevice *device, gboolean *out_generated)
1562 {
1563         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
1564         gs_free_slist GSList *connections = nm_manager_get_activatable_connections (self);
1565         NMConnection *connection = NULL;
1566         NMSettingsConnection *matched;
1567         NMSettingsConnection *added = NULL;
1568         GError *error = NULL;
1569         NMDevice *master = NULL;
1570         int ifindex = nm_device_get_ifindex (device);
1571
1572         if (out_generated)
1573                 *out_generated = FALSE;
1574
1575         nm_device_capture_initial_config (device);
1576
1577         if (ifindex) {
1578                 int master_ifindex = nm_platform_link_get_master (NM_PLATFORM_GET, ifindex);
1579
1580                 if (master_ifindex) {
1581                         master = nm_manager_get_device_by_ifindex (self, master_ifindex);
1582                         if (!master) {
1583                                 _LOGD (LOGD_DEVICE, "(%s): cannot generate connection for slave before its master (%s/%d)",
1584                                        nm_device_get_iface (device), nm_platform_link_get_name (NM_PLATFORM_GET, master_ifindex), master_ifindex);
1585                                 return NULL;
1586                         }
1587                         if (!nm_device_get_act_request (master)) {
1588                                 _LOGD (LOGD_DEVICE, "(%s): cannot generate connection for slave before master %s activates",
1589                                        nm_device_get_iface (device), nm_device_get_iface (master));
1590                                 return NULL;
1591                         }
1592                 }
1593         }
1594
1595         /* The core of the API is nm_device_generate_connection() function and
1596          * update_connection() virtual method and the convenient connection_type
1597          * class attribute. Subclasses supporting the new API must have
1598          * update_connection() implemented, otherwise nm_device_generate_connection()
1599          * returns NULL.
1600          */
1601         connection = nm_device_generate_connection (device, master);
1602         if (!connection)
1603                 return NULL;
1604
1605         /* Now we need to compare the generated connection to each configured
1606          * connection. The comparison function is the heart of the connection
1607          * assumption implementation and it must compare the connections very
1608          * carefully to sort out various corner cases. Also, the comparison is
1609          * not entirely symmetric.
1610          *
1611          * When no configured connection matches the generated connection, we keep
1612          * the generated connection instead.
1613          */
1614         connections = g_slist_reverse (g_slist_sort (connections, nm_settings_sort_connections));
1615         matched = NM_SETTINGS_CONNECTION (nm_utils_match_connection (connections,
1616                                                                      connection,
1617                                                                      nm_device_has_carrier (device),
1618                                                                      nm_device_get_ip4_route_metric (device),
1619                                                                      nm_device_get_ip6_route_metric (device),
1620                                                                      match_connection_filter,
1621                                                                      device));
1622         if (matched) {
1623                 _LOGI (LOGD_DEVICE, "(%s): found matching connection '%s'",
1624                        nm_device_get_iface (device),
1625                        nm_settings_connection_get_id (matched));
1626                 g_object_unref (connection);
1627                 return matched;
1628         }
1629
1630         _LOGD (LOGD_DEVICE, "(%s): generated connection '%s'",
1631                nm_device_get_iface (device),
1632                nm_connection_get_id (connection));
1633
1634         added = nm_settings_add_connection (priv->settings, connection, FALSE, &error);
1635         if (added) {
1636                 nm_settings_connection_set_flags (NM_SETTINGS_CONNECTION (added),
1637                                                   NM_SETTINGS_CONNECTION_FLAGS_NM_GENERATED |
1638                                                   NM_SETTINGS_CONNECTION_FLAGS_NM_GENERATED_ASSUMED,
1639                                                   TRUE);
1640                 if (out_generated)
1641                         *out_generated = TRUE;
1642         } else {
1643                 _LOGW (LOGD_SETTINGS, "(%s) Couldn't save generated connection '%s': %s",
1644                        nm_device_get_iface (device),
1645                        nm_connection_get_id (connection),
1646                        error->message);
1647                 g_clear_error (&error);
1648         }
1649         g_object_unref (connection);
1650
1651         return added ? added : NULL;
1652 }
1653
1654 static gboolean
1655 assume_connection (NMManager *self, NMDevice *device, NMSettingsConnection *connection)
1656 {
1657         NMActiveConnection *active, *master_ac;
1658         NMAuthSubject *subject;
1659         GError *error = NULL;
1660
1661         _LOGD (LOGD_DEVICE, "(%s): will attempt to assume connection",
1662                nm_device_get_iface (device));
1663
1664         /* Move device to DISCONNECTED to activate the connection */
1665         if (nm_device_get_state (device) == NM_DEVICE_STATE_UNAVAILABLE) {
1666                 nm_device_state_changed (device,
1667                                          NM_DEVICE_STATE_DISCONNECTED,
1668                                          NM_DEVICE_STATE_REASON_CONNECTION_ASSUMED);
1669         }
1670         g_return_val_if_fail (nm_device_get_state (device) >= NM_DEVICE_STATE_DISCONNECTED, FALSE);
1671
1672         subject = nm_auth_subject_new_internal ();
1673         active = _new_active_connection (self, NM_CONNECTION (connection), NULL, device, subject, &error);
1674         g_object_unref (subject);
1675
1676         if (!active) {
1677                 _LOGW (LOGD_DEVICE, "assumed connection %s failed to activate: %s",
1678                        nm_connection_get_path (NM_CONNECTION (connection)),
1679                        error->message);
1680                 g_error_free (error);
1681                 return FALSE;
1682         }
1683
1684         /* If the device is a slave or VLAN, find the master ActiveConnection */
1685         master_ac = NULL;
1686         if (find_master (self, NM_CONNECTION (connection), device, NULL, NULL, &master_ac, NULL) && master_ac)
1687                 nm_active_connection_set_master (active, master_ac);
1688
1689         nm_active_connection_set_assumed (active, TRUE);
1690         nm_exported_object_export (NM_EXPORTED_OBJECT (active));
1691         active_connection_add (self, active);
1692         nm_device_queue_activation (device, NM_ACT_REQUEST (active));
1693         g_object_unref (active);
1694
1695         return TRUE;
1696 }
1697
1698 static gboolean
1699 recheck_assume_connection (NMManager *self, NMDevice *device)
1700 {
1701         NMSettingsConnection *connection;
1702         gboolean was_unmanaged = FALSE, success, generated = FALSE;
1703         NMDeviceState state;
1704
1705         g_return_val_if_fail (NM_IS_MANAGER (self), FALSE);
1706         g_return_val_if_fail (NM_IS_DEVICE (device), FALSE);
1707
1708         if (nm_device_get_is_nm_owned (device))
1709                 return FALSE;
1710
1711         if (!nm_device_get_managed (device, FALSE))
1712                 return FALSE;
1713
1714         state = nm_device_get_state (device);
1715         if (state > NM_DEVICE_STATE_DISCONNECTED)
1716                 return FALSE;
1717
1718         connection = get_existing_connection (self, device, &generated);
1719         if (!connection) {
1720                 _LOGD (LOGD_DEVICE, "(%s): can't assume; no connection",
1721                        nm_device_get_iface (device));
1722                 return FALSE;
1723         }
1724
1725         if (state == NM_DEVICE_STATE_UNMANAGED) {
1726                 was_unmanaged = TRUE;
1727                 nm_device_state_changed (device,
1728                                          NM_DEVICE_STATE_UNAVAILABLE,
1729                                          NM_DEVICE_STATE_REASON_CONNECTION_ASSUMED);
1730         }
1731
1732         success = assume_connection (self, device, connection);
1733         if (!success) {
1734                 if (was_unmanaged) {
1735                         nm_device_state_changed (device,
1736                                                  NM_DEVICE_STATE_UNAVAILABLE,
1737                                                  NM_DEVICE_STATE_REASON_CONFIG_FAILED);
1738                 }
1739
1740                 if (generated) {
1741                         _LOGD (LOGD_DEVICE, "(%s): connection assumption failed. Deleting generated connection",
1742                                nm_device_get_iface (device));
1743
1744                         nm_settings_connection_delete (connection, NULL, NULL);
1745                 }
1746         }
1747
1748         return success;
1749 }
1750
1751 static void
1752 recheck_assume_connection_cb (NMDevice *device, gpointer user_data)
1753 {
1754         recheck_assume_connection (user_data, device);
1755 }
1756
1757 static void
1758 device_ip_iface_changed (NMDevice *device,
1759                          GParamSpec *pspec,
1760                          NMManager *self)
1761 {
1762         const char *ip_iface = nm_device_get_ip_iface (device);
1763         GSList *iter;
1764
1765         /* Remove NMDevice objects that are actually child devices of others,
1766          * when the other device finally knows its IP interface name.  For example,
1767          * remove the PPP interface that's a child of a WWAN device, since it's
1768          * not really a standalone NMDevice.
1769          */
1770         for (iter = NM_MANAGER_GET_PRIVATE (self)->devices; iter; iter = iter->next) {
1771                 NMDevice *candidate = NM_DEVICE (iter->data);
1772
1773                 if (   candidate != device
1774                     && g_strcmp0 (nm_device_get_iface (candidate), ip_iface) == 0
1775                     && nm_device_is_real (candidate)) {
1776                         remove_device (self, candidate, FALSE, FALSE);
1777                         break;
1778                 }
1779         }
1780 }
1781
1782 static void
1783 device_iface_changed (NMDevice *device,
1784                       GParamSpec *pspec,
1785                       NMManager *self)
1786 {
1787         /* Virtual connections may refer to the new device name as
1788          * parent device, retry to activate them.
1789          */
1790         retry_connections_for_parent_device (self, device);
1791 }
1792
1793
1794 static void
1795 device_realized (NMDevice *device,
1796                  GParamSpec *pspec,
1797                  NMManager *self)
1798 {
1799         /* Emit D-Bus signals */
1800         g_signal_emit (self, signals[DEVICE_ADDED], 0, device);
1801         g_object_notify (G_OBJECT (self), NM_MANAGER_DEVICES);
1802 }
1803
1804 static void
1805 _device_realize_finish (NMManager *self, NMDevice *device, const NMPlatformLink *plink)
1806 {
1807         g_return_if_fail (NM_IS_MANAGER (self));
1808         g_return_if_fail (NM_IS_DEVICE (device));
1809
1810         nm_device_realize_finish (device, plink);
1811
1812         if (!nm_device_get_managed (device, FALSE))
1813                 return;
1814
1815         if (recheck_assume_connection (self, device))
1816                 return;
1817
1818         /* if we failed to assume a connection for the managed device, but the device
1819          * is still unavailable. Set UNAVAILABLE state again, this time with NOW_MANAGED. */
1820         nm_device_state_changed (device,
1821                                  NM_DEVICE_STATE_UNAVAILABLE,
1822                                  NM_DEVICE_STATE_REASON_NOW_MANAGED);
1823         nm_device_emit_recheck_auto_activate (device);
1824 }
1825
1826 /**
1827  * add_device:
1828  * @self: the #NMManager
1829  * @device: the #NMDevice to add
1830  * @error: (out): the #GError
1831  *
1832  * If successful, this function will increase the references count of @device.
1833  * Callers should decrease the reference count.
1834  */
1835 static gboolean
1836 add_device (NMManager *self, NMDevice *device, GError **error)
1837 {
1838         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
1839         const char *iface, *type_desc;
1840         RfKillType rtype;
1841         GSList *iter, *remove = NULL;
1842         int ifindex;
1843         const char *dbus_path;
1844
1845         /* No duplicates */
1846         ifindex = nm_device_get_ifindex (device);
1847         if (ifindex > 0 && nm_manager_get_device_by_ifindex (self, ifindex)) {
1848                 g_set_error (error, NM_MANAGER_ERROR, NM_MANAGER_ERROR_FAILED,
1849                              "A device with ifindex %d already exists", ifindex);
1850                 return FALSE;
1851         }
1852
1853         /* Remove existing devices owned by the new device; eg remove ethernet
1854          * ports that are owned by a WWAN modem, since udev may announce them
1855          * before the modem is fully discovered.
1856          *
1857          * FIXME: use parent/child device relationships instead of removing
1858          * the child NMDevice entirely
1859          */
1860         for (iter = priv->devices; iter; iter = iter->next) {
1861                 NMDevice *candidate = iter->data;
1862
1863                 iface = nm_device_get_ip_iface (candidate);
1864                 if (nm_device_is_real (candidate) && nm_device_owns_iface (device, iface))
1865                         remove = g_slist_prepend (remove, candidate);
1866         }
1867         for (iter = remove; iter; iter = iter->next)
1868                 remove_device (self, NM_DEVICE (iter->data), FALSE, FALSE);
1869         g_slist_free (remove);
1870
1871         priv->devices = g_slist_append (priv->devices, g_object_ref (device));
1872
1873         g_signal_connect (device, NM_DEVICE_STATE_CHANGED,
1874                           G_CALLBACK (manager_device_state_changed),
1875                           self);
1876
1877         g_signal_connect (device, NM_DEVICE_AUTH_REQUEST,
1878                           G_CALLBACK (device_auth_request_cb),
1879                           self);
1880
1881         g_signal_connect (device, NM_DEVICE_REMOVED,
1882                           G_CALLBACK (device_removed_cb),
1883                           self);
1884
1885         g_signal_connect (device, NM_DEVICE_RECHECK_ASSUME,
1886                           G_CALLBACK (recheck_assume_connection_cb),
1887                           self);
1888
1889         g_signal_connect (device, "notify::" NM_DEVICE_IP_IFACE,
1890                           G_CALLBACK (device_ip_iface_changed),
1891                           self);
1892
1893         g_signal_connect (device, "notify::" NM_DEVICE_IFACE,
1894                           G_CALLBACK (device_iface_changed),
1895                           self);
1896
1897         g_signal_connect (device, "notify::" NM_DEVICE_REAL,
1898                           G_CALLBACK (device_realized),
1899                           self);
1900
1901         if (priv->startup) {
1902                 g_signal_connect (device, "notify::" NM_DEVICE_HAS_PENDING_ACTION,
1903                                   G_CALLBACK (device_has_pending_action_changed),
1904                                   self);
1905         }
1906
1907         /* Update global rfkill state for this device type with the device's
1908          * rfkill state, and then set this device's rfkill state based on the
1909          * global state.
1910          */
1911         rtype = nm_device_get_rfkill_type (device);
1912         if (rtype != RFKILL_TYPE_UNKNOWN) {
1913                 nm_manager_rfkill_update (self, rtype);
1914                 nm_device_set_enabled (device, radio_enabled_for_type (self, rtype, TRUE));
1915         }
1916
1917         iface = nm_device_get_iface (device);
1918         g_assert (iface);
1919         type_desc = nm_device_get_type_desc (device);
1920         g_assert (type_desc);
1921
1922         nm_device_set_unmanaged_by_user_config (device, nm_settings_get_unmanaged_specs (priv->settings));
1923
1924         nm_device_set_unmanaged_flags (device,
1925                                        NM_UNMANAGED_SLEEPING,
1926                                        manager_sleeping (self));
1927
1928         dbus_path = nm_exported_object_export (NM_EXPORTED_OBJECT (device));
1929         _LOGI (LOGD_DEVICE, "(%s): new %s device (%s)", iface, type_desc, dbus_path);
1930
1931         nm_settings_device_added (priv->settings, device);
1932         g_signal_emit (self, signals[INTERNAL_DEVICE_ADDED], 0, device);
1933         g_object_notify (G_OBJECT (self), NM_MANAGER_ALL_DEVICES);
1934
1935         for (iter = priv->devices; iter; iter = iter->next) {
1936                 NMDevice *d = iter->data;
1937
1938                 if (d != device)
1939                         nm_device_notify_new_device_added (d, device);
1940         }
1941
1942         /* Virtual connections may refer to the new device as
1943          * parent device, retry to activate them.
1944          */
1945         retry_connections_for_parent_device (self, device);
1946
1947         return TRUE;
1948 }
1949
1950 /*******************************************************************/
1951
1952 static void
1953 factory_device_added_cb (NMDeviceFactory *factory,
1954                          NMDevice *device,
1955                          gpointer user_data)
1956 {
1957         NMManager *self = user_data;
1958         GError *error = NULL;
1959
1960         g_return_if_fail (NM_IS_MANAGER (self));
1961
1962         if (nm_device_realize_start (device, NULL, NULL, &error)) {
1963                 add_device (self, device, NULL);
1964                 _device_realize_finish (self, device, NULL);
1965         } else {
1966                 _LOGW (LOGD_DEVICE, "(%s): failed to realize device: %s",
1967                        nm_device_get_iface (device), error->message);
1968                 g_error_free (error);
1969         }
1970 }
1971
1972 static gboolean
1973 factory_component_added_cb (NMDeviceFactory *factory,
1974                             GObject *component,
1975                             gpointer user_data)
1976 {
1977         GSList *iter;
1978
1979         g_return_val_if_fail (NM_IS_MANAGER (user_data), FALSE);
1980
1981         for (iter = NM_MANAGER_GET_PRIVATE (user_data)->devices; iter; iter = iter->next) {
1982                 if (nm_device_notify_component_added ((NMDevice *) iter->data, component))
1983                         return TRUE;
1984         }
1985         return FALSE;
1986 }
1987
1988 static void
1989 _register_device_factory (NMDeviceFactory *factory, gpointer user_data)
1990 {
1991         NMManager *self = NM_MANAGER (user_data);
1992
1993         g_signal_connect (factory,
1994                           NM_DEVICE_FACTORY_DEVICE_ADDED,
1995                           G_CALLBACK (factory_device_added_cb),
1996                           self);
1997         g_signal_connect (factory,
1998                           NM_DEVICE_FACTORY_COMPONENT_ADDED,
1999                           G_CALLBACK (factory_component_added_cb),
2000                           self);
2001 }
2002
2003 /*******************************************************************/
2004
2005 static void
2006 platform_link_added (NMManager *self,
2007                      int ifindex,
2008                      const NMPlatformLink *plink)
2009 {
2010         NMDeviceFactory *factory;
2011         NMDevice *device = NULL;
2012         GError *error = NULL;
2013         gboolean nm_plugin_missing = FALSE;
2014         GSList *iter;
2015
2016         g_return_if_fail (ifindex > 0);
2017
2018         if (nm_manager_get_device_by_ifindex (self, ifindex))
2019                 return;
2020
2021         /* Let unrealized devices try to realize themselves with the link */
2022         for (iter = NM_MANAGER_GET_PRIVATE (self)->devices; iter; iter = iter->next) {
2023                 NMDevice *candidate = iter->data;
2024                 gboolean compatible = TRUE;
2025
2026                 if (strcmp (nm_device_get_iface (candidate), plink->name))
2027                         continue;
2028
2029                 if (nm_device_is_real (candidate)) {
2030                         /* Ignore the link added event since there's already a realized
2031                          * device with the link's name.
2032                          */
2033                         return;
2034                 } else if (nm_device_realize_start (candidate, plink, &compatible, &error)) {
2035                         /* Success */
2036                         _device_realize_finish (self, candidate, plink);
2037                         return;
2038                 }
2039
2040                 _LOGD (LOGD_DEVICE, "(%s): failed to realize from plink: '%s'",
2041                        plink->name, error->message);
2042                 g_clear_error (&error);
2043
2044                 /* Try next unrealized device */
2045         }
2046
2047         /* Try registered device factories */
2048         factory = nm_device_factory_manager_find_factory_for_link_type (plink->type);
2049         if (factory) {
2050                 gboolean ignore = FALSE;
2051
2052                 device = nm_device_factory_create_device (factory, plink->name, plink, NULL, &ignore, &error);
2053                 if (!device) {
2054                         if (!ignore) {
2055                                 _LOGW (LOGD_HW, "%s: factory failed to create device: %s",
2056                                        plink->name, error->message);
2057                                 g_clear_error (&error);
2058                         }
2059                         return;
2060                 }
2061         }
2062
2063         if (device == NULL) {
2064                 switch (plink->type) {
2065                 case NM_LINK_TYPE_WWAN_ETHERNET:
2066                 case NM_LINK_TYPE_BNEP:
2067                 case NM_LINK_TYPE_OLPC_MESH:
2068                 case NM_LINK_TYPE_TEAM:
2069                 case NM_LINK_TYPE_WIFI:
2070                         _LOGI (LOGD_HW, "(%s): '%s' plugin not available; creating generic device",
2071                                plink->name, nm_link_type_to_string (plink->type));
2072                         nm_plugin_missing = TRUE;
2073                         /* fall through */
2074                 default:
2075                         device = nm_device_generic_new (plink);
2076                         break;
2077                 }
2078         }
2079
2080         if (device) {
2081                 if (nm_plugin_missing)
2082                         nm_device_set_nm_plugin_missing (device, TRUE);
2083                 if (nm_device_realize_start (device, plink, NULL, &error)) {
2084                         add_device (self, device, NULL);
2085                         _device_realize_finish (self, device, plink);
2086                 } else {
2087                         _LOGW (LOGD_DEVICE, "%s: failed to realize device: %s",
2088                                plink->name, error->message);
2089                         g_clear_error (&error);
2090                 }
2091                 g_object_unref (device);
2092         }
2093 }
2094
2095 typedef struct {
2096         NMManager *self;
2097         int ifindex;
2098 } PlatformLinkCbData;
2099
2100 static gboolean
2101 _platform_link_cb_idle (PlatformLinkCbData *data)
2102 {
2103         NMManager *self = data->self;
2104         const NMPlatformLink *l;
2105
2106         if (!self)
2107                 goto out;
2108
2109         g_object_remove_weak_pointer (G_OBJECT (self), (gpointer *) &data->self);
2110
2111         l = nm_platform_link_get (NM_PLATFORM_GET, data->ifindex);
2112         if (l) {
2113                 NMPlatformLink pllink;
2114
2115                 pllink = *l; /* make a copy of the link instance */
2116                 platform_link_added (self, data->ifindex, &pllink);
2117         } else {
2118                 NMDevice *device;
2119                 GError *error = NULL;
2120
2121                 device = nm_manager_get_device_by_ifindex (self, data->ifindex);
2122                 if (device) {
2123                         if (nm_device_is_software (device)) {
2124                                 /* Our software devices stick around until their connection is removed */
2125                                 if (!nm_device_unrealize (device, FALSE, &error)) {
2126                                         _LOGW (LOGD_DEVICE, "(%s): failed to unrealize: %s",
2127                                                nm_device_get_iface (device),
2128                                                error->message);
2129                                         g_clear_error (&error);
2130                                         remove_device (self, device, FALSE, TRUE);
2131                                 }
2132                         } else {
2133                                 /* Hardware and external devices always get removed when their kernel link is gone */
2134                                 remove_device (self, device, FALSE, TRUE);
2135                         }
2136                 }
2137         }
2138
2139 out:
2140         g_slice_free (PlatformLinkCbData, data);
2141         return G_SOURCE_REMOVE;
2142 }
2143
2144 static void
2145 platform_link_cb (NMPlatform *platform,
2146                   NMPObjectType obj_type,
2147                   int ifindex,
2148                   NMPlatformLink *plink,
2149                   NMPlatformSignalChangeType change_type,
2150                   gpointer user_data)
2151 {
2152         PlatformLinkCbData *data;
2153
2154         switch (change_type) {
2155         case NM_PLATFORM_SIGNAL_ADDED:
2156         case NM_PLATFORM_SIGNAL_REMOVED:
2157                 data = g_slice_new (PlatformLinkCbData);
2158                 data->self = NM_MANAGER (user_data);
2159                 data->ifindex = ifindex;
2160                 g_object_add_weak_pointer (G_OBJECT (data->self), (gpointer *) &data->self);
2161                 g_idle_add ((GSourceFunc) _platform_link_cb_idle, data);
2162                 break;
2163         default:
2164                 break;
2165         }
2166 }
2167
2168 static void
2169 platform_query_devices (NMManager *self)
2170 {
2171         GArray *links_array;
2172         NMPlatformLink *links;
2173         int i;
2174
2175         links_array = nm_platform_link_get_all (NM_PLATFORM_GET);
2176         links = (NMPlatformLink *) links_array->data;
2177         for (i = 0; i < links_array->len; i++)
2178                 platform_link_added (self, links[i].ifindex, &links[i]);
2179
2180         g_array_unref (links_array);
2181 }
2182
2183 static void
2184 rfkill_manager_rfkill_changed_cb (NMRfkillManager *rfkill_mgr,
2185                                   RfKillType rtype,
2186                                   RfKillState udev_state,
2187                                   gpointer user_data)
2188 {
2189         nm_manager_rfkill_update (NM_MANAGER (user_data), rtype);
2190 }
2191
2192 const GSList *
2193 nm_manager_get_devices (NMManager *manager)
2194 {
2195         g_return_val_if_fail (NM_IS_MANAGER (manager), NULL);
2196
2197         return NM_MANAGER_GET_PRIVATE (manager)->devices;
2198 }
2199
2200 static NMDevice *
2201 nm_manager_get_connection_device (NMManager *self,
2202                                   NMConnection *connection)
2203 {
2204         NMActiveConnection *ac = find_ac_for_connection (self, connection);
2205         if (ac == NULL)
2206                 return NULL;
2207
2208         return nm_active_connection_get_device (ac);
2209 }
2210
2211 static NMDevice *
2212 nm_manager_get_best_device_for_connection (NMManager *self,
2213                                            NMConnection *connection,
2214                                            gboolean for_user_request)
2215 {
2216         const GSList *devices, *iter;
2217         NMDevice *act_device = nm_manager_get_connection_device (self, connection);
2218         NMDeviceCheckConAvailableFlags flags;
2219
2220         if (act_device)
2221                 return act_device;
2222
2223         flags = for_user_request ? NM_DEVICE_CHECK_CON_AVAILABLE_FOR_USER_REQUEST : NM_DEVICE_CHECK_CON_AVAILABLE_NONE;
2224
2225         /* Pick the first device that's compatible with the connection. */
2226         devices = nm_manager_get_devices (self);
2227         for (iter = devices; iter; iter = g_slist_next (iter)) {
2228                 NMDevice *device = NM_DEVICE (iter->data);
2229
2230                 if (nm_device_check_connection_available (device, connection, flags, NULL))
2231                         return device;
2232         }
2233
2234         /* No luck. :( */
2235         return NULL;
2236 }
2237
2238 static void
2239 _get_devices (NMManager *self,
2240               GDBusMethodInvocation *context,
2241               gboolean all_devices)
2242 {
2243         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
2244         gs_free const char **paths = NULL;
2245         guint i;
2246         GSList *iter;
2247
2248         paths = g_new (const char *, g_slist_length (priv->devices) + 1);
2249
2250         for (i = 0, iter = priv->devices; iter; iter = iter->next) {
2251                 const char *path;
2252
2253                 path = nm_exported_object_get_path (NM_EXPORTED_OBJECT (iter->data));
2254                 if (   path
2255                     && (all_devices || nm_device_is_real (iter->data)))
2256                         paths[i++] = path;
2257         }
2258         paths[i++] = NULL;
2259
2260         g_dbus_method_invocation_return_value (context,
2261                                                g_variant_new ("(^ao)", (char **) paths));
2262 }
2263
2264 static void
2265 impl_manager_get_devices (NMManager *self,
2266                           GDBusMethodInvocation *context)
2267 {
2268         _get_devices (self, context, FALSE);
2269 }
2270
2271 static void
2272 impl_manager_get_all_devices (NMManager *self,
2273                               GDBusMethodInvocation *context)
2274 {
2275         _get_devices (self, context, TRUE);
2276 }
2277
2278 static void
2279 impl_manager_get_device_by_ip_iface (NMManager *self,
2280                                      GDBusMethodInvocation *context,
2281                                      const char *iface)
2282 {
2283         NMDevice *device;
2284         const char *path = NULL;
2285
2286         device = find_device_by_ip_iface (self, iface);
2287         if (device)
2288                 path = nm_exported_object_get_path (NM_EXPORTED_OBJECT (device));
2289
2290         if (path == NULL) {
2291                 g_dbus_method_invocation_return_error (context,
2292                                                        NM_MANAGER_ERROR,
2293                                                        NM_MANAGER_ERROR_UNKNOWN_DEVICE,
2294                                                        "No device found for the requested iface.");
2295         } else {
2296                 g_dbus_method_invocation_return_value (context,
2297                                                        g_variant_new ("(o)", path));
2298         }
2299 }
2300
2301 static gboolean
2302 is_compatible_with_slave (NMConnection *master, NMConnection *slave)
2303 {
2304         NMSettingConnection *s_con;
2305
2306         g_return_val_if_fail (master, FALSE);
2307         g_return_val_if_fail (slave, FALSE);
2308
2309         s_con = nm_connection_get_setting_connection (slave);
2310         g_assert (s_con);
2311
2312         return nm_connection_is_type (master, nm_setting_connection_get_slave_type (s_con));
2313 }
2314
2315 /**
2316  * find_master:
2317  * @self: #NMManager object
2318  * @connection: the #NMConnection to find the master connection and device for
2319  * @device: the #NMDevice, if any, which will activate @connection
2320  * @out_master_connection: on success, the master connection of @connection if
2321  *   that master connection was found
2322  * @out_master_device: on success, the master device of @connection if that
2323  *   master device was found
2324  * @out_master_ac: on success, the master ActiveConnection of @connection if
2325  *   there already is one
2326  * @error: the error, if an error occurred
2327  *
2328  * Given an #NMConnection, attempts to find its master. If @connection has
2329  * no master, this will return %TRUE and @out_master_connection and
2330  * @out_master_device will be untouched.
2331  *
2332  * If @connection does have a master, then the outputs depend on what is in its
2333  * #NMSettingConnection:master property:
2334  *
2335  * If "master" is the ifname of an existing #NMDevice, and that device has a
2336  * compatible master connection activated or activating on it, then
2337  * @out_master_device, @out_master_connection, and @out_master_ac will all be
2338  * set. If the device exists and is idle, only @out_master_device will be set.
2339  * If the device exists and has an incompatible connection on it, an error
2340  * will be returned.
2341  *
2342  * If "master" is the ifname of a non-existent device, then @out_master_device
2343  * will be %NULL, and @out_master_connection will be a connection whose
2344  * activation would cause the creation of that device. @out_master_ac MAY be
2345  * set in this case as well (if the connection has started activating, but has
2346  * not yet created its device).
2347  *
2348  * If "master" is the UUID of a compatible master connection, then
2349  * @out_master_connection will be the identified connection, and @out_master_device
2350  * and/or @out_master_ac will be set if the connection is currently activating.
2351  * (@out_master_device will not be set if the device exists but does not have
2352  * @out_master_connection active/activating on it.)
2353  *
2354  * Returns: %TRUE if the master device and/or connection could be found or if
2355  *  the connection did not require a master, %FALSE otherwise
2356  **/
2357 static gboolean
2358 find_master (NMManager *self,
2359              NMConnection *connection,
2360              NMDevice *device,
2361              NMSettingsConnection **out_master_connection,
2362              NMDevice **out_master_device,
2363              NMActiveConnection **out_master_ac,
2364              GError **error)
2365 {
2366         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
2367         NMSettingConnection *s_con;
2368         const char *master;
2369         NMDevice *master_device = NULL;
2370         NMSettingsConnection *master_connection = NULL;
2371         GSList *iter;
2372
2373         s_con = nm_connection_get_setting_connection (connection);
2374         g_assert (s_con);
2375         master = nm_setting_connection_get_master (s_con);
2376
2377         if (master == NULL)
2378                 return TRUE;  /* success, but no master */
2379
2380         /* Try as an interface name first */
2381         master_device = find_device_by_iface (self, master, NULL, connection);
2382         if (master_device) {
2383                 if (master_device == device) {
2384                         g_set_error_literal (error, NM_MANAGER_ERROR, NM_MANAGER_ERROR_DEPENDENCY_FAILED,
2385                                              "Device cannot be its own master");
2386                         return FALSE;
2387                 }
2388
2389                 master_connection = nm_device_get_settings_connection (master_device);
2390                 if (master_connection && !is_compatible_with_slave (NM_CONNECTION (master_connection), connection)) {
2391                         g_set_error (error, NM_MANAGER_ERROR, NM_MANAGER_ERROR_DEPENDENCY_FAILED,
2392                                      "The active connection on %s is not compatible",
2393                                      nm_device_get_iface (master_device));
2394                         return FALSE;
2395                 }
2396         } else {
2397                 /* Try master as a connection UUID */
2398                 master_connection = nm_settings_get_connection_by_uuid (priv->settings, master);
2399                 if (master_connection) {
2400                         /* Check if the master connection is activated on some device already */
2401                         for (iter = priv->devices; iter; iter = g_slist_next (iter)) {
2402                                 NMDevice *candidate = NM_DEVICE (iter->data);
2403
2404                                 if (candidate == device)
2405                                         continue;
2406
2407                                 if (nm_device_get_settings_connection (candidate) == master_connection) {
2408                                         master_device = candidate;
2409                                         break;
2410                                 }
2411                         }
2412                 }
2413         }
2414
2415         if (out_master_connection)
2416                 *out_master_connection = master_connection;
2417         if (out_master_device)
2418                 *out_master_device = master_device;
2419         if (out_master_ac && master_connection)
2420                 *out_master_ac = find_ac_for_connection (self, NM_CONNECTION (master_connection));
2421
2422         if (master_device || master_connection)
2423                 return TRUE;
2424         else {
2425                 g_set_error_literal (error, NM_MANAGER_ERROR, NM_MANAGER_ERROR_UNKNOWN_DEVICE,
2426                                      "Master connection not found or invalid");
2427                 return FALSE;
2428         }
2429 }
2430
2431 /**
2432  * ensure_master_active_connection:
2433  * @self: the #NMManager
2434  * @subject: the #NMAuthSubject representing the requestor of this activation
2435  * @connection: the connection that should depend on @master_connection
2436  * @device: the #NMDevice, if any, which will activate @connection
2437  * @master_connection: the master connection, or %NULL
2438  * @master_device: the master device, or %NULL
2439  * @error: the error, if an error occurred
2440  *
2441  * Determines whether a given #NMConnection depends on another connection to
2442  * be activated, and if so, finds that master connection or creates it.
2443  *
2444  * If @master_device and @master_connection are both set then @master_connection
2445  * MUST already be activated or activating on @master_device, and the function will
2446  * return the existing #NMActiveConnection.
2447  *
2448  * If only @master_device is set, and it has an #NMActiveConnection, then the
2449  * function will return it if it is a compatible master, or an error if not. If it
2450  * doesn't have an AC, then the function will create one if a compatible master
2451  * connection exists, or return an error if not.
2452  *
2453  * If only @master_connection is set, then this will try to find or create a compatible
2454  * #NMDevice, and either activate @master_connection on that device or return an error.
2455  *
2456  * Returns: the master #NMActiveConnection that the caller should depend on, or
2457  * %NULL if an error occurred
2458  */
2459 static NMActiveConnection *
2460 ensure_master_active_connection (NMManager *self,
2461                                  NMAuthSubject *subject,
2462                                  NMConnection *connection,
2463                                  NMDevice *device,
2464                                  NMSettingsConnection *master_connection,
2465                                  NMDevice *master_device,
2466                                  GError **error)
2467 {
2468         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
2469         NMActiveConnection *master_ac = NULL;
2470         NMDeviceState master_state;
2471         GSList *iter;
2472
2473         g_assert (connection);
2474         g_assert (master_connection || master_device);
2475
2476         /* If the master device isn't activated then we need to activate it using
2477          * compatible connection.  If it's already activating we can just proceed.
2478          */
2479         if (master_device) {
2480                 NMSettingsConnection *device_connection = nm_device_get_settings_connection (master_device);
2481
2482                 /* If we're passed a connection and a device, we require that connection
2483                  * be already activated on the device, eg returned from find_master().
2484                  */
2485                 g_assert (!master_connection || master_connection == device_connection);
2486                 if (device_connection && !is_compatible_with_slave (NM_CONNECTION (device_connection), connection)) {
2487                         g_set_error (error, NM_MANAGER_ERROR, NM_MANAGER_ERROR_DEPENDENCY_FAILED,
2488                                      "The active connection %s is not compatible",
2489                                      nm_connection_get_id (connection));
2490                         return NULL;
2491                 }
2492
2493                 master_state = nm_device_get_state (master_device);
2494                 if (   (master_state == NM_DEVICE_STATE_ACTIVATED)
2495                     || nm_device_is_activating (master_device)) {
2496                         /* Device already using master_connection */
2497                         g_assert (device_connection);
2498                         return NM_ACTIVE_CONNECTION (nm_device_get_act_request (master_device));
2499                 }
2500
2501                 /* If the device is disconnected, find a compatible connection and
2502                  * activate it on the device.
2503                  */
2504                 if (master_state == NM_DEVICE_STATE_DISCONNECTED || !nm_device_is_real (master_device)) {
2505                         GSList *connections;
2506
2507                         g_assert (master_connection == NULL);
2508
2509                         /* Find a compatible connection and activate this device using it */
2510                         connections = nm_manager_get_activatable_connections (self);
2511                         for (iter = connections; iter; iter = g_slist_next (iter)) {
2512                                 NMSettingsConnection *candidate = NM_SETTINGS_CONNECTION (iter->data);
2513
2514                                 /* Ensure eg bond/team slave and the candidate master is a
2515                                  * bond/team master
2516                                  */
2517                                 if (!is_compatible_with_slave (NM_CONNECTION (candidate), connection))
2518                                         continue;
2519
2520                                 if (nm_device_check_connection_available (master_device, NM_CONNECTION (candidate), NM_DEVICE_CHECK_CON_AVAILABLE_FOR_USER_REQUEST, NULL)) {
2521                                         master_ac = nm_manager_activate_connection (self,
2522                                                                                     candidate,
2523                                                                                     NULL,
2524                                                                                     master_device,
2525                                                                                     subject,
2526                                                                                     error);
2527                                         g_slist_free (connections);
2528                                         return master_ac;
2529                                 }
2530                         }
2531                         g_slist_free (connections);
2532
2533                         g_set_error (error,
2534                                      NM_MANAGER_ERROR,
2535                                      NM_MANAGER_ERROR_UNKNOWN_CONNECTION,
2536                                      "No compatible connection found.");
2537                         return NULL;
2538                 }
2539
2540                 /* Otherwise, the device is unmanaged, unavailable, or disconnecting */
2541                 g_set_error (error,
2542                              NM_MANAGER_ERROR,
2543                              NM_MANAGER_ERROR_DEPENDENCY_FAILED,
2544                              "Device unmanaged or not available for activation");
2545         } else if (master_connection) {
2546                 gboolean found_device = FALSE;
2547
2548                 /* Find a compatible device and activate it using this connection */
2549                 for (iter = priv->devices; iter; iter = g_slist_next (iter)) {
2550                         NMDevice *candidate = NM_DEVICE (iter->data);
2551
2552                         if (candidate == device) {
2553                                 /* A device obviously can't be its own master */
2554                                 continue;
2555                         }
2556
2557                         if (!nm_device_check_connection_available (candidate, NM_CONNECTION (master_connection), NM_DEVICE_CHECK_CON_AVAILABLE_FOR_USER_REQUEST, NULL))
2558                                 continue;
2559
2560                         found_device = TRUE;
2561                         if (!nm_device_is_software (candidate)) {
2562                                 master_state = nm_device_get_state (candidate);
2563                                 if (nm_device_is_real (candidate) && master_state != NM_DEVICE_STATE_DISCONNECTED)
2564                                         continue;
2565                         }
2566
2567                         master_ac = nm_manager_activate_connection (self,
2568                                                                     master_connection,
2569                                                                     NULL,
2570                                                                     candidate,
2571                                                                     subject,
2572                                                                     error);
2573                         return master_ac;
2574                 }
2575
2576                 g_set_error (error,
2577                              NM_MANAGER_ERROR,
2578                              NM_MANAGER_ERROR_UNKNOWN_DEVICE,
2579                              "No device available");
2580         } else
2581                 g_assert_not_reached ();
2582
2583         return NULL;
2584 }
2585
2586 /**
2587  * find_slaves:
2588  * @manager: #NMManager object
2589  * @connection: the master #NMSettingsConnection to find slave connections for
2590  * @device: the master #NMDevice for the @connection
2591  *
2592  * Given an #NMSettingsConnection, attempts to find its slaves. If @connection is not
2593  * master, or has not any slaves, this will return %NULL.
2594  *
2595  * Returns: list of slave connections for given master @connection, or %NULL
2596  **/
2597 static GSList *
2598 find_slaves (NMManager *manager,
2599              NMSettingsConnection *connection,
2600              NMDevice *device)
2601 {
2602         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (manager);
2603         GSList *all_connections, *iter;
2604         GSList *slaves = NULL;
2605         NMSettingConnection *s_con;
2606         const char *master;
2607
2608         s_con = nm_connection_get_setting_connection (NM_CONNECTION (connection));
2609         g_assert (s_con);
2610         master = nm_setting_connection_get_master (s_con);
2611
2612         if (master != NULL)
2613                 return NULL;  /* connection is not master */
2614
2615         /* Search through all connections, not only inactive ones, because
2616          * even if a slave was already active, it might be deactivated during
2617          * master reactivation.
2618          */
2619         all_connections = nm_settings_get_connections (priv->settings);
2620         for (iter = all_connections; iter; iter = iter->next) {
2621                 NMSettingsConnection *master_connection = NULL;
2622                 NMDevice *master_device = NULL;
2623                 NMConnection *candidate = iter->data;
2624
2625                 find_master (manager, candidate, NULL, &master_connection, &master_device, NULL, NULL);
2626                 if (   (master_connection && master_connection == connection)
2627                     || (master_device && master_device == device)) {
2628                         slaves = g_slist_prepend (slaves, candidate);
2629                 }
2630         }
2631         g_slist_free (all_connections);
2632
2633         return g_slist_reverse (slaves);
2634 }
2635
2636 static gboolean
2637 should_connect_slaves (NMConnection *connection, NMDevice *device)
2638 {
2639         NMSettingConnection *s_con;
2640         NMSettingConnectionAutoconnectSlaves autoconnect_slaves;
2641         gs_free char *value = NULL;
2642
2643         s_con = nm_connection_get_setting_connection (connection);
2644         g_assert (s_con);
2645
2646         /* Check autoconnect-slaves property */
2647         autoconnect_slaves = nm_setting_connection_get_autoconnect_slaves (s_con);
2648         if (autoconnect_slaves != NM_SETTING_CONNECTION_AUTOCONNECT_SLAVES_DEFAULT)
2649                 goto out;
2650
2651         /* Check configuration default for autoconnect-slaves property */
2652         value = nm_config_data_get_connection_default (NM_CONFIG_GET_DATA,
2653                                                        "connection.autoconnect-slaves", device);
2654         if (value)
2655                 autoconnect_slaves = _nm_utils_ascii_str_to_int64 (value, 10, 0, 1, -1);
2656
2657 out:
2658         if (autoconnect_slaves == NM_SETTING_CONNECTION_AUTOCONNECT_SLAVES_NO)
2659                 return FALSE;
2660         if (autoconnect_slaves == NM_SETTING_CONNECTION_AUTOCONNECT_SLAVES_YES)
2661                 return TRUE;
2662         return FALSE;
2663 }
2664
2665 static gboolean
2666 autoconnect_slaves (NMManager *self,
2667                     NMSettingsConnection *master_connection,
2668                     NMDevice *master_device,
2669                     NMAuthSubject *subject)
2670 {
2671         GError *local_err = NULL;
2672         gboolean ret = FALSE;
2673
2674         if (should_connect_slaves (NM_CONNECTION (master_connection), master_device)) {
2675                 GSList *slaves, *iter;
2676
2677                 iter = slaves = find_slaves (self, master_connection, master_device);
2678                 ret = slaves != NULL;
2679
2680                 while (iter) {
2681                         NMSettingsConnection *slave_connection = iter->data;
2682
2683                         iter = iter->next;
2684                         _LOGD (LOGD_CORE, "will activate slave connection '%s' (%s) as a dependency for master '%s' (%s)",
2685                                nm_settings_connection_get_id (slave_connection),
2686                                nm_settings_connection_get_uuid (slave_connection),
2687                                nm_settings_connection_get_id (master_connection),
2688                                nm_settings_connection_get_uuid (master_connection));
2689
2690                         /* Schedule slave activation */
2691                         nm_manager_activate_connection (self,
2692                                                         slave_connection,
2693                                                         NULL,
2694                                                         nm_manager_get_best_device_for_connection (self, NM_CONNECTION (slave_connection), FALSE),
2695                                                         subject,
2696                                                         &local_err);
2697                         if (local_err) {
2698                                 _LOGW (LOGD_CORE, "Slave connection activation failed: %s", local_err->message);
2699                                 g_error_free (local_err);
2700                         }
2701                 }
2702                 g_slist_free (slaves);
2703         }
2704         return ret;
2705 }
2706
2707 static gboolean
2708 _internal_activate_vpn (NMManager *self, NMActiveConnection *active, GError **error)
2709 {
2710         g_assert (NM_IS_VPN_CONNECTION (active));
2711
2712         nm_exported_object_export (NM_EXPORTED_OBJECT (active));
2713         return nm_vpn_manager_activate_connection (NM_MANAGER_GET_PRIVATE (self)->vpn_manager,
2714                                                    NM_VPN_CONNECTION (active),
2715                                                    error);
2716 }
2717
2718 /* Traverse the device to disconnected state. This means that the device is ready
2719  * for connection and will proceed activating if there's an activation request
2720  * enqueued.
2721  */
2722 static void
2723 unmanaged_to_disconnected (NMDevice *device)
2724 {
2725         /* when creating the software device, it can happen that the device is
2726          * still unmanaged by NM_UNMANAGED_PLATFORM_INIT because we didn't yet
2727          * get the udev event. At this point, we can no longer delay the activation
2728          * and force the device to be managed. */
2729         nm_device_set_unmanaged_by_flags (device, NM_UNMANAGED_PLATFORM_INIT, FALSE, NM_DEVICE_STATE_REASON_USER_REQUESTED);
2730
2731         nm_device_set_unmanaged_by_flags (device, NM_UNMANAGED_USER_EXPLICIT, FALSE, NM_DEVICE_STATE_REASON_USER_REQUESTED);
2732
2733         g_return_if_fail (nm_device_get_managed (device, FALSE));
2734
2735         if (nm_device_get_state (device) == NM_DEVICE_STATE_UNMANAGED) {
2736                 nm_device_state_changed (device,
2737                                          NM_DEVICE_STATE_UNAVAILABLE,
2738                                          NM_DEVICE_STATE_REASON_USER_REQUESTED);
2739         }
2740
2741         if (   nm_device_is_available (device, NM_DEVICE_CHECK_DEV_AVAILABLE_FOR_USER_REQUEST)
2742             && (nm_device_get_state (device) == NM_DEVICE_STATE_UNAVAILABLE)) {
2743                 nm_device_state_changed (device,
2744                                          NM_DEVICE_STATE_DISCONNECTED,
2745                                          NM_DEVICE_STATE_REASON_USER_REQUESTED);
2746         }
2747 }
2748
2749 /* The parent connection is ready; we can proceed realizing the device and
2750  * progressing the device to disconencted state.
2751  */
2752 static void
2753 active_connection_parent_active (NMActiveConnection *active,
2754                                  NMActiveConnection *parent_ac,
2755                                  NMManager *self)
2756 {
2757         NMDevice *device = nm_active_connection_get_device (active);
2758         GError *error = NULL;
2759
2760         g_signal_handlers_disconnect_by_func (active,
2761                                               (GCallback) active_connection_parent_active,
2762                                               self);
2763
2764         if (parent_ac) {
2765                 NMSettingsConnection *connection = nm_active_connection_get_settings_connection (active);
2766                 NMDevice *parent = nm_active_connection_get_device (parent_ac);
2767
2768                 if (nm_device_create_and_realize (device, (NMConnection *) connection, parent, &error)) {
2769                         /* We can now proceed to disconnected state so that activation proceeds. */
2770                         unmanaged_to_disconnected (device);
2771                 } else {
2772                         nm_log_warn (LOGD_CORE, "Could not realize device '%s': %s",
2773                                      nm_device_get_iface (device), error->message);
2774                         nm_active_connection_set_state (active, NM_ACTIVE_CONNECTION_STATE_DEACTIVATED);
2775                 }
2776         } else {
2777                 nm_log_warn (LOGD_CORE, "The parent connection device '%s' depended on disappeared.",
2778                              nm_device_get_iface (device));
2779                 nm_active_connection_set_state (active, NM_ACTIVE_CONNECTION_STATE_DEACTIVATED);
2780         }
2781 }
2782
2783 static gboolean
2784 _internal_activate_device (NMManager *self, NMActiveConnection *active, GError **error)
2785 {
2786         NMDevice *device, *existing, *master_device = NULL;
2787         NMConnection *applied;
2788         NMSettingsConnection *connection;
2789         NMSettingsConnection *master_connection = NULL;
2790         NMConnection *existing_connection = NULL;
2791         NMActiveConnection *master_ac = NULL;
2792         NMAuthSubject *subject;
2793         char *error_desc = NULL;
2794
2795         g_return_val_if_fail (NM_IS_MANAGER (self), FALSE);
2796         g_return_val_if_fail (NM_IS_ACTIVE_CONNECTION (active), FALSE);
2797         g_return_val_if_fail (error == NULL || *error == NULL, FALSE);
2798
2799         g_assert (NM_IS_VPN_CONNECTION (active) == FALSE);
2800
2801         connection = nm_active_connection_get_settings_connection (active);
2802         g_assert (connection);
2803
2804         applied = nm_active_connection_get_applied_connection (active);
2805
2806         device = nm_active_connection_get_device (active);
2807         g_return_val_if_fail (device != NULL, FALSE);
2808
2809         /* If the device is active and its connection is not visible to the
2810          * user that's requesting this new activation, fail, since other users
2811          * should not be allowed to implicitly deactivate private connections
2812          * by activating a connection of their own.
2813          */
2814         existing_connection = nm_device_get_applied_connection (device);
2815         subject = nm_active_connection_get_subject (active);
2816         if (existing_connection &&
2817             !nm_auth_is_subject_in_acl (existing_connection,
2818                                         subject,
2819                                         &error_desc)) {
2820                 g_set_error (error,
2821                              NM_MANAGER_ERROR,
2822                              NM_MANAGER_ERROR_PERMISSION_DENIED,
2823                              "Private connection already active on the device: %s",
2824                              error_desc);
2825                 g_free (error_desc);
2826                 return FALSE;
2827         }
2828
2829         /* Final connection must be available on device */
2830         if (!nm_device_check_connection_available (device, applied, NM_DEVICE_CHECK_CON_AVAILABLE_FOR_USER_REQUEST, NULL)) {
2831                 g_set_error (error, NM_MANAGER_ERROR, NM_MANAGER_ERROR_UNKNOWN_CONNECTION,
2832                              "Connection '%s' is not available on the device %s at this time.",
2833                              nm_settings_connection_get_id (connection), nm_device_get_iface (device));
2834                 return FALSE;
2835         }
2836
2837         /* Create any backing resources the device needs */
2838         if (!nm_device_is_real (device)) {
2839                 NMDevice *parent;
2840
2841                 parent = find_parent_device_for_connection (self, (NMConnection *) connection, NULL);
2842
2843                 if (parent && !nm_device_is_real (parent)) {
2844                         NMSettingsConnection *parent_con;
2845                         NMActiveConnection *parent_ac;
2846
2847                         parent_con = nm_device_get_best_connection (parent, NULL, error);
2848                         if (!parent_con) {
2849                                 g_prefix_error (error, "%s failed to create parent: ", nm_device_get_iface (device));
2850                                 return FALSE;
2851                         }
2852
2853                         parent_ac = nm_manager_activate_connection (self, parent_con, NULL, parent, subject, error);
2854                         if (!parent_ac) {
2855                                 g_prefix_error (error, "%s failed to activate parent: ", nm_device_get_iface (device));
2856                                 return FALSE;
2857                         }
2858
2859                         /* We can't realize now; defer until the parent device is ready. */
2860                         g_signal_connect (active,
2861                                           NM_ACTIVE_CONNECTION_PARENT_ACTIVE,
2862                                           (GCallback) active_connection_parent_active,
2863                                           self);
2864                         nm_active_connection_set_parent (active, parent_ac);
2865                 } else {
2866                         /* We can realize now; no need to wait for a parent device. */
2867                         if (!nm_device_create_and_realize (device, (NMConnection *) connection, parent, error)) {
2868                                 g_prefix_error (error, "%s failed to create resources: ", nm_device_get_iface (device));
2869                                 return FALSE;
2870                         }
2871                 }
2872         }
2873
2874         /* Try to find the master connection/device if the connection has a dependency */
2875         if (!find_master (self, applied, device,
2876                           &master_connection, &master_device, &master_ac,
2877                           error)) {
2878                 g_prefix_error (error, "Can not find a master for %s: ",
2879                                 nm_settings_connection_get_id (connection));
2880                 return FALSE;
2881         }
2882
2883         /* Ensure there's a master active connection the new connection we're
2884          * activating can depend on.
2885          */
2886         if (master_connection || master_device) {
2887                 if (master_connection) {
2888                         _LOGD (LOGD_CORE, "Activation of '%s' requires master connection '%s'",
2889                                nm_settings_connection_get_id (connection),
2890                                nm_settings_connection_get_id (master_connection));
2891                 }
2892                 if (master_device) {
2893                         _LOGD (LOGD_CORE, "Activation of '%s' requires master device '%s'",
2894                                nm_settings_connection_get_id (connection),
2895                                nm_device_get_ip_iface (master_device));
2896                 }
2897
2898                 /* Ensure eg bond slave and the candidate master is a bond master */
2899                 if (master_connection && !is_compatible_with_slave (NM_CONNECTION (master_connection), applied)) {
2900                         g_set_error (error, NM_MANAGER_ERROR, NM_MANAGER_ERROR_DEPENDENCY_FAILED,
2901                                      "The master connection '%s' is not compatible with '%s'",
2902                                      nm_settings_connection_get_id (master_connection),
2903                                      nm_settings_connection_get_id (connection));
2904                         return FALSE;
2905                 }
2906
2907                 if (!master_ac) {
2908                         master_ac = ensure_master_active_connection (self,
2909                                                                      nm_active_connection_get_subject (active),
2910                                                                      applied,
2911                                                                      device,
2912                                                                      master_connection,
2913                                                                      master_device,
2914                                                                      error);
2915                         if (!master_ac) {
2916                                 if (master_device) {
2917                                         g_prefix_error (error, "Master device '%s' can't be activated: ",
2918                                                         nm_device_get_ip_iface (device));
2919                                 } else {
2920                                         g_prefix_error (error, "Master connection '%s' can't be activated: ",
2921                                                         nm_settings_connection_get_id (connection));
2922                                 }
2923                                 return FALSE;
2924                         }
2925                 }
2926
2927                 nm_active_connection_set_master (active, master_ac);
2928                 _LOGD (LOGD_CORE, "Activation of '%s' depends on active connection %p %s",
2929                        nm_settings_connection_get_id (connection),
2930                        master_ac,
2931                        nm_exported_object_get_path (NM_EXPORTED_OBJECT  (master_ac)) ?: "");
2932         }
2933
2934         /* Check slaves for master connection and possibly activate them */
2935         autoconnect_slaves (self, connection, device, nm_active_connection_get_subject (active));
2936
2937         /* Disconnect the connection if connected or queued on another device */
2938         existing = nm_manager_get_connection_device (self, NM_CONNECTION (connection));
2939         if (existing)
2940                 nm_device_steal_connection (existing, connection);
2941
2942         /* If the device is there, we can ready it for the activation. */
2943         if (nm_device_is_real (device))
2944                 unmanaged_to_disconnected (device);
2945
2946         /* Export the new ActiveConnection to clients and start it on the device */
2947         nm_exported_object_export (NM_EXPORTED_OBJECT (active));
2948         nm_device_queue_activation (device, NM_ACT_REQUEST (active));
2949         return TRUE;
2950 }
2951
2952 static gboolean
2953 _internal_activate_generic (NMManager *self, NMActiveConnection *active, GError **error)
2954 {
2955         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
2956         gboolean success = FALSE;
2957
2958         /* Ensure activation request is still valid, eg that its device hasn't gone
2959          * away or that some other dependency has not failed.
2960          */
2961         if (nm_active_connection_get_state (active) >= NM_ACTIVE_CONNECTION_STATE_DEACTIVATING) {
2962                 g_set_error_literal (error,
2963                                      NM_MANAGER_ERROR,
2964                                      NM_MANAGER_ERROR_DEPENDENCY_FAILED,
2965                                      "Activation failed because dependencies failed.");
2966                 return FALSE;
2967         }
2968
2969         if (NM_IS_VPN_CONNECTION (active))
2970                 success = _internal_activate_vpn (self, active, error);
2971         else
2972                 success = _internal_activate_device (self, active, error);
2973
2974         if (success) {
2975                 /* Force an update of the Manager's activating-connection property.
2976                  * The device changes state before the AC gets exported, which causes
2977                  * the manager's 'activating-connection' property to be NULL since the
2978                  * AC only gets a D-Bus path when it's exported.  So now that the AC
2979                  * is exported, make sure the manager's activating-connection property
2980                  * is up-to-date.
2981                  */
2982                 active_connection_add (self, active);
2983                 policy_activating_device_changed (G_OBJECT (priv->policy), NULL, self);
2984         }
2985
2986         return success;
2987 }
2988
2989 static NMActiveConnection *
2990 _new_vpn_active_connection (NMManager *self,
2991                             NMSettingsConnection *settings_connection,
2992                             const char *specific_object,
2993                             NMAuthSubject *subject,
2994                             GError **error)
2995 {
2996         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
2997         NMActiveConnection *parent = NULL;
2998         NMDevice *device = NULL;
2999
3000         g_return_val_if_fail (!settings_connection || NM_IS_SETTINGS_CONNECTION (settings_connection), NULL);
3001
3002         if (specific_object) {
3003                 /* Find the specific connection the client requested we use */
3004                 parent = active_connection_get_by_path (self, specific_object);
3005                 if (!parent) {
3006                         g_set_error_literal (error, NM_MANAGER_ERROR, NM_MANAGER_ERROR_CONNECTION_NOT_ACTIVE,
3007                                              "Base connection for VPN connection not active.");
3008                         return NULL;
3009                 }
3010         } else
3011                 parent = priv->primary_connection;
3012
3013         if (!parent) {
3014                 g_set_error_literal (error, NM_MANAGER_ERROR, NM_MANAGER_ERROR_UNKNOWN_CONNECTION,
3015                                      "Could not find source connection.");
3016                 return NULL;
3017         }
3018
3019         device = nm_active_connection_get_device (parent);
3020         if (!device) {
3021                 g_set_error_literal (error, NM_MANAGER_ERROR, NM_MANAGER_ERROR_UNKNOWN_DEVICE,
3022                                      "Source connection had no active device.");
3023                 return NULL;
3024         }
3025
3026         return (NMActiveConnection *) nm_vpn_connection_new (settings_connection,
3027                                                              device,
3028                                                              nm_exported_object_get_path (NM_EXPORTED_OBJECT (parent)),
3029                                                              subject);
3030 }
3031
3032 static NMActiveConnection *
3033 _new_active_connection (NMManager *self,
3034                         NMConnection *connection,
3035                         const char *specific_object,
3036                         NMDevice *device,
3037                         NMAuthSubject *subject,
3038                         GError **error)
3039 {
3040         NMSettingsConnection *settings_connection = NULL;
3041         NMActiveConnection *existing_ac;
3042         gboolean is_vpn;
3043
3044         g_return_val_if_fail (NM_IS_CONNECTION (connection), NULL);
3045         g_return_val_if_fail (NM_IS_AUTH_SUBJECT (subject), NULL);
3046
3047         /* Can't create new AC for already-active connection */
3048         existing_ac = find_ac_for_connection (self, connection);
3049         if (NM_IS_VPN_CONNECTION (existing_ac)) {
3050                 g_set_error (error, NM_MANAGER_ERROR, NM_MANAGER_ERROR_CONNECTION_ALREADY_ACTIVE,
3051                              "Connection '%s' is already active",
3052                              nm_connection_get_id (connection));
3053                 return NULL;
3054         }
3055
3056         /* Normalize the specific object */
3057         if (specific_object && g_strcmp0 (specific_object, "/") == 0)
3058                 specific_object = NULL;
3059
3060         is_vpn = nm_connection_is_type (NM_CONNECTION (connection), NM_SETTING_VPN_SETTING_NAME);
3061
3062         if (NM_IS_SETTINGS_CONNECTION (connection))
3063                 settings_connection = (NMSettingsConnection *) connection;
3064
3065         if (is_vpn) {
3066                 return _new_vpn_active_connection (self,
3067                                                    settings_connection,
3068                                                    specific_object,
3069                                                    subject,
3070                                                    error);
3071         }
3072
3073         return (NMActiveConnection *) nm_act_request_new (settings_connection,
3074                                                           specific_object,
3075                                                           subject,
3076                                                           device);
3077 }
3078
3079 static void
3080 _internal_activation_failed (NMManager *self,
3081                              NMActiveConnection *active,
3082                              const char *error_desc)
3083 {
3084         _LOGD (LOGD_CORE, "Failed to activate '%s': %s",
3085                nm_active_connection_get_settings_connection_id (active),
3086                error_desc);
3087
3088         if (nm_active_connection_get_state (active) <= NM_ACTIVE_CONNECTION_STATE_ACTIVATED) {
3089                 nm_active_connection_set_state (active, NM_ACTIVE_CONNECTION_STATE_DEACTIVATING);
3090                 nm_active_connection_set_state (active, NM_ACTIVE_CONNECTION_STATE_DEACTIVATED);
3091         }
3092 }
3093
3094 static void
3095 _internal_activation_auth_done (NMActiveConnection *active,
3096                                 gboolean success,
3097                                 const char *error_desc,
3098                                 gpointer user_data1,
3099                                 gpointer user_data2)
3100 {
3101         NMManager *self = user_data1;
3102         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
3103         GError *error = NULL;
3104
3105         priv->authorizing_connections = g_slist_remove (priv->authorizing_connections, active);
3106
3107         if (success) {
3108                 if (_internal_activate_generic (self, active, &error)) {
3109                         g_object_unref (active);
3110                         return;
3111                 }
3112         }
3113
3114         g_assert (error_desc || error);
3115         _internal_activation_failed (self, active, error_desc ? error_desc : error->message);
3116         g_object_unref (active);
3117         g_clear_error (&error);
3118 }
3119
3120 /**
3121  * nm_manager_activate_connection():
3122  * @self: the #NMManager
3123  * @connection: the #NMSettingsConnection to activate on @device
3124  * @specific_object: the specific object path, if any, for the activation
3125  * @device: the #NMDevice to activate @connection on
3126  * @subject: the subject which requested activation
3127  * @error: return location for an error
3128  *
3129  * Begins a new internally-initiated activation of @connection on @device.
3130  * @subject should be the subject of the activation that triggered this
3131  * one, or if this is an autoconnect request, a new internal subject.
3132  * The returned #NMActiveConnection is owned by the Manager and should be
3133  * referenced by the caller if the caller continues to use it.
3134  *
3135  * Returns: (transfer none): the new #NMActiveConnection that tracks
3136  * activation of @connection on @device
3137  */
3138 NMActiveConnection *
3139 nm_manager_activate_connection (NMManager *self,
3140                                 NMSettingsConnection *connection,
3141                                 const char *specific_object,
3142                                 NMDevice *device,
3143                                 NMAuthSubject *subject,
3144                                 GError **error)
3145 {
3146         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
3147         NMActiveConnection *active;
3148         char *error_desc = NULL;
3149         GSList *iter;
3150
3151         g_return_val_if_fail (self != NULL, NULL);
3152         g_return_val_if_fail (connection != NULL, NULL);
3153         g_return_val_if_fail (error != NULL, NULL);
3154         g_return_val_if_fail (*error == NULL, NULL);
3155
3156         /* Ensure the subject has permissions for this connection */
3157         if (!nm_auth_is_subject_in_acl (NM_CONNECTION (connection),
3158                                         subject,
3159                                         &error_desc)) {
3160                 g_set_error_literal (error,
3161                                      NM_MANAGER_ERROR,
3162                                      NM_MANAGER_ERROR_PERMISSION_DENIED,
3163                                      error_desc);
3164                 g_free (error_desc);
3165                 return NULL;
3166         }
3167
3168         /* Look for a active connection that's equivalent and is already pending authorization
3169          * and eventual activation. This is used to de-duplicate concurrent activations which would
3170          * otherwise race and cause the device to disconnect and reconnect repeatedly.
3171          * In particular, this allows the master and multiple slaves to concurrently auto-activate
3172          * while all the slaves would use the same active-connection. */
3173         for (iter = priv->authorizing_connections; iter; iter = g_slist_next (iter)) {
3174                 active = iter->data;
3175
3176                 if (   connection == nm_active_connection_get_settings_connection (active)
3177                     && g_strcmp0 (nm_active_connection_get_specific_object (active), specific_object) == 0
3178                     && nm_active_connection_get_device (active) == device
3179                     && nm_auth_subject_is_internal (nm_active_connection_get_subject (active))
3180                     && nm_auth_subject_is_internal (subject))
3181                         return active;
3182         }
3183
3184         active = _new_active_connection (self,
3185                                          NM_CONNECTION (connection),
3186                                          specific_object,
3187                                          device,
3188                                          subject,
3189                                          error);
3190         if (active) {
3191                 priv->authorizing_connections = g_slist_prepend (priv->authorizing_connections, active);
3192                 nm_active_connection_authorize (active, NULL, _internal_activation_auth_done, self, NULL);
3193         }
3194         return active;
3195 }
3196
3197 /**
3198  * validate_activation_request:
3199  * @self: the #NMManager
3200  * @context: the D-Bus context of the requestor
3201  * @connection: the partial or complete #NMConnection to be activated
3202  * @device_path: the object path of the device to be activated, or "/"
3203  * @out_device: on successful reutrn, the #NMDevice to be activated with @connection
3204  * @out_vpn: on successful return, %TRUE if @connection is a VPN connection
3205  * @error: location to store an error on failure
3206  *
3207  * Performs basic validation on an activation request, including ensuring that
3208  * the requestor is a valid Unix process, is not disallowed in @connection
3209  * permissions, and that a device exists that can activate @connection.
3210  *
3211  * Returns: on success, the #NMAuthSubject representing the requestor, or
3212  *   %NULL on error
3213  */
3214 static NMAuthSubject *
3215 validate_activation_request (NMManager *self,
3216                              GDBusMethodInvocation *context,
3217                              NMConnection *connection,
3218                              const char *device_path,
3219                              NMDevice **out_device,
3220                              gboolean *out_vpn,
3221                              GError **error)
3222 {
3223         NMDevice *device = NULL;
3224         gboolean vpn = FALSE;
3225         NMAuthSubject *subject = NULL;
3226         char *error_desc = NULL;
3227
3228         g_assert (connection);
3229         g_assert (out_device);
3230         g_assert (out_vpn);
3231
3232         /* Validate the caller */
3233         subject = nm_auth_subject_new_unix_process_from_context (context);
3234         if (!subject) {
3235                 g_set_error_literal (error,
3236                                      NM_MANAGER_ERROR,
3237                                      NM_MANAGER_ERROR_PERMISSION_DENIED,
3238                                      "Failed to get request UID.");
3239                 return NULL;
3240         }
3241
3242         /* Ensure the subject has permissions for this connection */
3243         if (!nm_auth_is_subject_in_acl (connection,
3244                                         subject,
3245                                         &error_desc)) {
3246                 g_set_error_literal (error,
3247                                      NM_MANAGER_ERROR,
3248                                      NM_MANAGER_ERROR_PERMISSION_DENIED,
3249                                      error_desc);
3250                 g_free (error_desc);
3251                 goto error;
3252         }
3253
3254         /* Not implemented yet, we want to fail early */
3255         if (   nm_connection_get_setting_connection (connection)
3256             && nm_connection_get_setting_ip6_config (connection)
3257             && !strcmp (nm_utils_get_ip_config_method (connection, NM_TYPE_SETTING_IP6_CONFIG),
3258                         NM_SETTING_IP6_CONFIG_METHOD_SHARED)) {
3259                 g_set_error_literal (error,
3260                                      NM_MANAGER_ERROR,
3261                                      NM_MANAGER_ERROR_CONNECTION_NOT_AVAILABLE,
3262                                      "Sharing IPv6 connections is not supported yet.");
3263                 return NULL;
3264         }
3265
3266         /* Check whether it's a VPN or not */
3267         if (   nm_connection_get_setting_vpn (connection)
3268             || nm_connection_is_type (connection, NM_SETTING_VPN_SETTING_NAME))
3269                 vpn = TRUE;
3270
3271         /* Normalize device path */
3272         if (device_path && g_strcmp0 (device_path, "/") == 0)
3273                 device_path = NULL;
3274
3275         /* And validate it */
3276         if (device_path) {
3277                 device = nm_manager_get_device_by_path (self, device_path);
3278                 if (!device) {
3279                         g_set_error_literal (error,
3280                                              NM_MANAGER_ERROR,
3281                                              NM_MANAGER_ERROR_UNKNOWN_DEVICE,
3282                                              "Device not found");
3283                         goto error;
3284                 }
3285         } else
3286                 device = nm_manager_get_best_device_for_connection (self, connection, TRUE);
3287
3288         if (!device && !vpn) {
3289                 gboolean is_software = nm_connection_is_virtual (connection);
3290
3291                 /* VPN and software-device connections don't need a device yet */
3292                 if (!is_software) {
3293                         g_set_error_literal (error,
3294                                              NM_MANAGER_ERROR,
3295                                              NM_MANAGER_ERROR_UNKNOWN_DEVICE,
3296                                              "No suitable device found for this connection.");
3297                         goto error;
3298                 }
3299
3300                 if (is_software) {
3301                         char *iface;
3302
3303                         /* Look for an existing device with the connection's interface name */
3304                         iface = nm_manager_get_connection_iface (self, connection, NULL, error);
3305                         if (!iface)
3306                                 goto error;
3307
3308                         device = find_device_by_iface (self, iface, connection, NULL);
3309                         g_free (iface);
3310                 }
3311         }
3312
3313         if ((!vpn || device_path) && !device) {
3314                 g_set_error_literal (error,
3315                                      NM_MANAGER_ERROR,
3316                                      NM_MANAGER_ERROR_UNKNOWN_DEVICE,
3317                                      "Failed to find a compatible device for this connection");
3318                 goto error;
3319         }
3320
3321         *out_device = device;
3322         *out_vpn = vpn;
3323         return subject;
3324
3325 error:
3326         g_object_unref (subject);
3327         return NULL;
3328 }
3329
3330 /***********************************************************************/
3331
3332 static void
3333 _activation_auth_done (NMActiveConnection *active,
3334                        gboolean success,
3335                        const char *error_desc,
3336                        gpointer user_data1,
3337                        gpointer user_data2)
3338 {
3339         NMManager *self = user_data1;
3340         GDBusMethodInvocation *context = user_data2;
3341         GError *error = NULL;
3342         NMAuthSubject *subject;
3343         NMSettingsConnection *connection;
3344
3345         subject = nm_active_connection_get_subject (active);
3346         connection = nm_active_connection_get_settings_connection (active);
3347
3348         if (success) {
3349                 if (_internal_activate_generic (self, active, &error)) {
3350                         g_dbus_method_invocation_return_value (context,
3351                                                                g_variant_new ("(o)",
3352                                                                nm_exported_object_get_path (NM_EXPORTED_OBJECT (active))));
3353                         nm_audit_log_connection_op (NM_AUDIT_OP_CONN_ACTIVATE, connection, TRUE,
3354                                                     subject, NULL);
3355                         g_object_unref (active);
3356                         return;
3357                 }
3358         } else {
3359                 error = g_error_new_literal (NM_MANAGER_ERROR,
3360                                              NM_MANAGER_ERROR_PERMISSION_DENIED,
3361                                              error_desc);
3362         }
3363
3364         g_assert (error);
3365         nm_audit_log_connection_op (NM_AUDIT_OP_CONN_ACTIVATE, connection, FALSE,
3366                                     subject, error->message);
3367         _internal_activation_failed (self, active, error->message);
3368
3369         g_object_unref (active);
3370         g_dbus_method_invocation_take_error (context, error);
3371 }
3372
3373 static void
3374 impl_manager_activate_connection (NMManager *self,
3375                                   GDBusMethodInvocation *context,
3376                                   const char *connection_path,
3377                                   const char *device_path,
3378                                   const char *specific_object_path)
3379 {
3380         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
3381         NMActiveConnection *active = NULL;
3382         NMAuthSubject *subject = NULL;
3383         NMSettingsConnection *connection = NULL;
3384         NMDevice *device = NULL;
3385         gboolean is_vpn = FALSE;
3386         GError *error = NULL;
3387
3388         /* Normalize object paths */
3389         if (g_strcmp0 (connection_path, "/") == 0)
3390                 connection_path = NULL;
3391         if (g_strcmp0 (specific_object_path, "/") == 0)
3392                 specific_object_path = NULL;
3393         if (g_strcmp0 (device_path, "/") == 0)
3394                 device_path = NULL;
3395
3396         /* If the connection path is given and valid, that connection is activated.
3397          * Otherwise the "best" connection for the device is chosen and activated,
3398          * regardless of whether that connection is autoconnect-enabled or not
3399          * (since this is an explicit request, not an auto-activation request).
3400          */
3401         if (connection_path) {
3402                 connection = nm_settings_get_connection_by_path (priv->settings, connection_path);
3403                 if (!connection) {
3404                         error = g_error_new_literal (NM_MANAGER_ERROR,
3405                                                      NM_MANAGER_ERROR_UNKNOWN_CONNECTION,
3406                                                      "Connection could not be found.");
3407                         goto error;
3408                 }
3409         } else {
3410                 /* If no connection is given, find a suitable connection for the given device path */
3411                 if (!device_path) {
3412                         error = g_error_new_literal (NM_MANAGER_ERROR, NM_MANAGER_ERROR_UNKNOWN_DEVICE,
3413                                                      "Only devices may be activated without a specifying a connection");
3414                         goto error;
3415                 }
3416                 device = nm_manager_get_device_by_path (self, device_path);
3417                 if (!device) {
3418                         error = g_error_new (NM_MANAGER_ERROR, NM_MANAGER_ERROR_UNKNOWN_DEVICE,
3419                                              "Can not activate an unknown device '%s'", device_path);
3420                         goto error;
3421                 }
3422
3423                 connection = nm_device_get_best_connection (device, specific_object_path, &error);
3424                 if (!connection)
3425                         goto error;
3426         }
3427
3428         subject = validate_activation_request (self,
3429                                                context,
3430                                                NM_CONNECTION (connection),
3431                                                device_path,
3432                                                &device,
3433                                                &is_vpn,
3434                                                &error);
3435         if (!subject)
3436                 goto error;
3437
3438         active = _new_active_connection (self,
3439                                          NM_CONNECTION (connection),
3440                                          specific_object_path,
3441                                          device,
3442                                          subject,
3443                                          &error);
3444         if (!active)
3445                 goto error;
3446
3447         nm_active_connection_authorize (active, NULL, _activation_auth_done, self, context);
3448         g_clear_object (&subject);
3449         return;
3450
3451 error:
3452         if (connection) {
3453                 nm_audit_log_connection_op (NM_AUDIT_OP_CONN_ACTIVATE, connection, FALSE,
3454                                             subject, error->message);
3455         }
3456         g_clear_object (&active);
3457         g_clear_object (&subject);
3458
3459         g_assert (error);
3460         g_dbus_method_invocation_take_error (context, error);
3461 }
3462
3463 /***********************************************************************/
3464
3465 typedef struct {
3466         NMManager *manager;
3467         NMActiveConnection *active;
3468 } AddAndActivateInfo;
3469
3470 static void
3471 activation_add_done (NMSettings *settings,
3472                      NMSettingsConnection *new_connection,
3473                      GError *error,
3474                      GDBusMethodInvocation *context,
3475                      NMAuthSubject *subject,
3476                      gpointer user_data)
3477 {
3478         AddAndActivateInfo *info = user_data;
3479         NMManager *self;
3480         gs_unref_object NMActiveConnection *active = NULL;
3481         GError *local = NULL;
3482
3483         self = info->manager;
3484         active = info->active;
3485         g_slice_free (AddAndActivateInfo, info);
3486
3487         if (!error) {
3488                 nm_active_connection_set_settings_connection (active, new_connection);
3489
3490                 if (_internal_activate_generic (self, active, &local)) {
3491                         nm_settings_connection_commit_changes (new_connection,
3492                                                                NM_SETTINGS_CONNECTION_COMMIT_REASON_USER_ACTION | NM_SETTINGS_CONNECTION_COMMIT_REASON_ID_CHANGED,
3493                                                                NULL, NULL);
3494                         g_dbus_method_invocation_return_value (
3495                             context,
3496                             g_variant_new ("(oo)",
3497                                            nm_connection_get_path (NM_CONNECTION (new_connection)),
3498                                            nm_exported_object_get_path (NM_EXPORTED_OBJECT (active))));
3499                         nm_audit_log_connection_op (NM_AUDIT_OP_CONN_ADD_ACTIVATE,
3500                                                     nm_active_connection_get_settings_connection (active),
3501                                                     TRUE,
3502                                                     nm_active_connection_get_subject (active),
3503                                                     NULL);
3504                         return;
3505                 }
3506                 error = local;
3507         }
3508
3509         g_assert (error);
3510         _internal_activation_failed (self, active, error->message);
3511         nm_settings_connection_delete (new_connection, NULL, NULL);
3512         g_dbus_method_invocation_return_gerror (context, error);
3513         nm_audit_log_connection_op (NM_AUDIT_OP_CONN_ADD_ACTIVATE,
3514                                     NULL,
3515                                     FALSE,
3516                                     nm_active_connection_get_subject (active),
3517                                     error->message);
3518         g_object_unref (active);
3519         g_clear_error (&local);
3520 }
3521
3522 static void
3523 _add_and_activate_auth_done (NMActiveConnection *active,
3524                              gboolean success,
3525                              const char *error_desc,
3526                              gpointer user_data1,
3527                              gpointer user_data2)
3528 {
3529         NMManager *self = user_data1;
3530         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
3531         GDBusMethodInvocation *context = user_data2;
3532         AddAndActivateInfo *info;
3533         GError *error = NULL;
3534
3535         if (success) {
3536                 NMConnection *connection;
3537
3538                 connection = g_object_steal_data (G_OBJECT (active),
3539                                                   TAG_ACTIVE_CONNETION_ADD_AND_ACTIVATE);
3540
3541                 info = g_slice_new (AddAndActivateInfo);
3542                 info->manager = self;
3543                 info->active = g_object_ref (active);
3544
3545                 /* Basic sender auth checks performed; try to add the connection */
3546                 nm_settings_add_connection_dbus (priv->settings,
3547                                                  connection,
3548                                                  FALSE,
3549                                                  context,
3550                                                  activation_add_done,
3551                                                  info);
3552                 g_object_unref (connection);
3553         } else {
3554                 g_assert (error_desc);
3555                 error = g_error_new_literal (NM_MANAGER_ERROR,
3556                                              NM_MANAGER_ERROR_PERMISSION_DENIED,
3557                                              error_desc);
3558                 nm_audit_log_connection_op (NM_AUDIT_OP_CONN_ADD_ACTIVATE,
3559                                             NULL,
3560                                             FALSE,
3561                                             nm_active_connection_get_subject (active),
3562                                             error->message);
3563                 g_dbus_method_invocation_take_error (context, error);
3564         }
3565
3566         g_object_unref (active);
3567 }
3568
3569 static void
3570 impl_manager_add_and_activate_connection (NMManager *self,
3571                                           GDBusMethodInvocation *context,
3572                                           GVariant *settings,
3573                                           const char *device_path,
3574                                           const char *specific_object_path)
3575 {
3576         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
3577         NMConnection *connection = NULL;
3578         GSList *all_connections = NULL;
3579         NMActiveConnection *active = NULL;
3580         NMAuthSubject *subject = NULL;
3581         GError *error = NULL;
3582         NMDevice *device = NULL;
3583         gboolean vpn = FALSE;
3584
3585         /* Normalize object paths */
3586         if (g_strcmp0 (specific_object_path, "/") == 0)
3587                 specific_object_path = NULL;
3588         if (g_strcmp0 (device_path, "/") == 0)
3589                 device_path = NULL;
3590
3591         /* Try to create a new connection with the given settings.
3592          * We allow empty settings for AddAndActivateConnection(). In that case,
3593          * the connection will be completed in nm_utils_complete_generic() or
3594          * nm_device_complete_connection() below. Just make sure we don't expect
3595          * specific data being in the connection till then (especially in
3596          * validate_activation_request()).
3597          */
3598         connection = nm_simple_connection_new ();
3599         if (settings && g_variant_n_children (settings))
3600                 _nm_connection_replace_settings (connection, settings, NM_SETTING_PARSE_FLAGS_STRICT, NULL);
3601
3602         subject = validate_activation_request (self,
3603                                                context,
3604                                                connection,
3605                                                device_path,
3606                                                &device,
3607                                                &vpn,
3608                                                &error);
3609         if (!subject)
3610                 goto error;
3611
3612         all_connections = nm_settings_get_connections (priv->settings);
3613         if (vpn) {
3614                 /* Try to fill the VPN's connection setting and name at least */
3615                 if (!nm_connection_get_setting_vpn (connection)) {
3616                         error = g_error_new_literal (NM_CONNECTION_ERROR,
3617                                                      NM_CONNECTION_ERROR_MISSING_SETTING,
3618                                                      "VPN connections require a 'vpn' setting");
3619                         g_prefix_error (&error, "%s: ", NM_SETTING_VPN_SETTING_NAME);
3620                         goto error;
3621                 }
3622
3623                 nm_utils_complete_generic (NM_PLATFORM_GET,
3624                                            connection,
3625                                            NM_SETTING_VPN_SETTING_NAME,
3626                                            all_connections,
3627                                            NULL,
3628                                            _("VPN connection"),
3629                                            NULL,
3630                                            FALSE); /* No IPv6 by default for now */
3631         } else {
3632                 /* Let each device subclass complete the connection */
3633                 if (!nm_device_complete_connection (device,
3634                                                     connection,
3635                                                     specific_object_path,
3636                                                     all_connections,
3637                                                     &error))
3638                         goto error;
3639         }
3640         g_slist_free (all_connections);
3641         all_connections = NULL;
3642
3643         active = _new_active_connection (self,
3644                                          connection,
3645                                          specific_object_path,
3646                                          device,
3647                                          subject,
3648                                          &error);
3649         if (!active)
3650                 goto error;
3651
3652         g_object_set_data_full (G_OBJECT (active),
3653                                 TAG_ACTIVE_CONNETION_ADD_AND_ACTIVATE,
3654                                 connection,
3655                                 g_object_unref);
3656
3657         nm_active_connection_authorize (active, connection, _add_and_activate_auth_done, self, context);
3658         g_object_unref (subject);
3659         return;
3660
3661 error:
3662         nm_audit_log_connection_op (NM_AUDIT_OP_CONN_ADD_ACTIVATE, NULL, FALSE, subject, error->message);
3663         g_clear_object (&connection);
3664         g_slist_free (all_connections);
3665         g_clear_object (&subject);
3666         g_clear_object (&active);
3667
3668         g_assert (error);
3669         g_dbus_method_invocation_take_error (context, error);
3670 }
3671
3672 /***********************************************************************/
3673
3674 gboolean
3675 nm_manager_deactivate_connection (NMManager *manager,
3676                                   const char *connection_path,
3677                                   NMDeviceStateReason reason,
3678                                   GError **error)
3679 {
3680         NMActiveConnection *active;
3681         gboolean success = FALSE;
3682
3683         active = active_connection_get_by_path (manager, connection_path);
3684         if (!active) {
3685                 g_set_error_literal (error, NM_MANAGER_ERROR, NM_MANAGER_ERROR_CONNECTION_NOT_ACTIVE,
3686                                      "The connection was not active.");
3687                 return FALSE;
3688         }
3689
3690         if (NM_IS_VPN_CONNECTION (active)) {
3691                 NMVpnConnectionStateReason vpn_reason = NM_VPN_CONNECTION_STATE_REASON_USER_DISCONNECTED;
3692
3693                 if (reason == NM_DEVICE_STATE_REASON_CONNECTION_REMOVED)
3694                         vpn_reason = NM_VPN_CONNECTION_STATE_REASON_CONNECTION_REMOVED;
3695                 if (nm_vpn_connection_deactivate (NM_VPN_CONNECTION (active), vpn_reason, FALSE))
3696                         success = TRUE;
3697                 else
3698                         g_set_error_literal (error, NM_MANAGER_ERROR, NM_MANAGER_ERROR_CONNECTION_NOT_ACTIVE,
3699                                              "The VPN connection was not active.");
3700         } else {
3701                 g_assert (NM_IS_ACT_REQUEST (active));
3702                 nm_device_state_changed (nm_active_connection_get_device (active),
3703                                          NM_DEVICE_STATE_DEACTIVATING,
3704                                          reason);
3705                 success = TRUE;
3706         }
3707
3708         if (success)
3709                 g_object_notify (G_OBJECT (manager), NM_MANAGER_ACTIVE_CONNECTIONS);
3710
3711         return success;
3712 }
3713
3714 static void
3715 deactivate_net_auth_done_cb (NMAuthChain *chain,
3716                              GError *auth_error,
3717                              GDBusMethodInvocation *context,
3718                              gpointer user_data)
3719 {
3720         NMManager *self = NM_MANAGER (user_data);
3721         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
3722         GError *error = NULL;
3723         NMAuthCallResult result;
3724         NMActiveConnection *active;
3725         char *path;
3726
3727         g_assert (context);
3728
3729         priv->auth_chains = g_slist_remove (priv->auth_chains, chain);
3730
3731         path = nm_auth_chain_get_data (chain, "path");
3732         result = nm_auth_chain_get_result (chain, NM_AUTH_PERMISSION_NETWORK_CONTROL);
3733
3734         if (auth_error) {
3735                 _LOGD (LOGD_CORE, "Disconnect request failed: %s", auth_error->message);
3736                 error = g_error_new (NM_MANAGER_ERROR,
3737                                      NM_MANAGER_ERROR_PERMISSION_DENIED,
3738                                      "Deactivate request failed: %s",
3739                                      auth_error->message);
3740         } else if (result != NM_AUTH_CALL_RESULT_YES) {
3741                 error = g_error_new_literal (NM_MANAGER_ERROR,
3742                                              NM_MANAGER_ERROR_PERMISSION_DENIED,
3743                                              "Not authorized to deactivate connections");
3744         } else {
3745                 /* success; deactivation allowed */
3746                 if (!nm_manager_deactivate_connection (self,
3747                                                        path,
3748                                                        NM_DEVICE_STATE_REASON_USER_REQUESTED,
3749                                                        &error))
3750                         nm_assert (error);
3751         }
3752
3753         active = active_connection_get_by_path (self, path);
3754         if (active) {
3755                 nm_audit_log_connection_op (NM_AUDIT_OP_CONN_DEACTIVATE,
3756                                             nm_active_connection_get_settings_connection (active),
3757                                             !error,
3758                                             nm_auth_chain_get_subject (chain),
3759                                             error ? error->message : NULL);
3760         }
3761
3762         if (error)
3763                 g_dbus_method_invocation_take_error (context, error);
3764         else
3765                 g_dbus_method_invocation_return_value (context, NULL);
3766
3767         nm_auth_chain_unref (chain);
3768 }
3769
3770 static void
3771 impl_manager_deactivate_connection (NMManager *self,
3772                                     GDBusMethodInvocation *context,
3773                                     const char *active_path)
3774 {
3775         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
3776         NMActiveConnection *ac;
3777         NMSettingsConnection *connection = NULL;
3778         GError *error = NULL;
3779         NMAuthSubject *subject = NULL;
3780         NMAuthChain *chain;
3781         char *error_desc = NULL;
3782
3783         /* Find the connection by its object path */
3784         ac = active_connection_get_by_path (self, active_path);
3785         if (ac)
3786                 connection = nm_active_connection_get_settings_connection (ac);
3787
3788         if (!connection) {
3789                 error = g_error_new_literal (NM_MANAGER_ERROR,
3790                                              NM_MANAGER_ERROR_CONNECTION_NOT_ACTIVE,
3791                                              "The connection was not active.");
3792                 goto done;
3793         }
3794
3795         /* Validate the caller */
3796         subject = nm_auth_subject_new_unix_process_from_context (context);
3797         if (!subject) {
3798                 error = g_error_new_literal (NM_MANAGER_ERROR,
3799                                              NM_MANAGER_ERROR_PERMISSION_DENIED,
3800                                              "Failed to get request UID.");
3801                 goto done;
3802         }
3803
3804         /* Ensure the subject has permissions for this connection */
3805         if (!nm_auth_is_subject_in_acl (NM_CONNECTION (connection),
3806                                         subject,
3807                                         &error_desc)) {
3808                 error = g_error_new_literal (NM_MANAGER_ERROR,
3809                                              NM_MANAGER_ERROR_PERMISSION_DENIED,
3810                                              error_desc);
3811                 g_free (error_desc);
3812                 goto done;
3813         }
3814
3815         /* Validate the user request */
3816         chain = nm_auth_chain_new_subject (subject, context, deactivate_net_auth_done_cb, self);
3817         if (!chain) {
3818                 error = g_error_new_literal (NM_MANAGER_ERROR,
3819                                              NM_MANAGER_ERROR_PERMISSION_DENIED,
3820                                              "Unable to authenticate request.");
3821                 goto done;
3822         }
3823
3824         priv->auth_chains = g_slist_append (priv->auth_chains, chain);
3825         nm_auth_chain_set_data (chain, "path", g_strdup (active_path), g_free);
3826         nm_auth_chain_add_call (chain, NM_AUTH_PERMISSION_NETWORK_CONTROL, TRUE);
3827
3828 done:
3829         if (error) {
3830                 if (connection) {
3831                         nm_audit_log_connection_op (NM_AUDIT_OP_CONN_DEACTIVATE, connection, FALSE,
3832                                                     subject, error->message);
3833                 }
3834                 g_dbus_method_invocation_take_error (context, error);
3835         }
3836         g_clear_object (&subject);
3837 }
3838
3839 static gboolean
3840 device_is_wake_on_lan (NMDevice *device)
3841 {
3842         return nm_platform_link_get_wake_on_lan (NM_PLATFORM_GET, nm_device_get_ip_ifindex (device));
3843 }
3844
3845 static void
3846 do_sleep_wake (NMManager *self, gboolean sleeping_changed)
3847 {
3848         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
3849         gboolean suspending, waking_from_suspend;
3850         GSList *iter;
3851
3852         suspending = sleeping_changed && priv->sleeping;
3853         waking_from_suspend = sleeping_changed && !priv->sleeping;
3854
3855         if (manager_sleeping (self)) {
3856                 _LOGI (LOGD_SUSPEND, "%s...", suspending ? "sleeping" : "disabling");
3857
3858                 /* FIXME: are there still hardware devices that need to be disabled around
3859                  * suspend/resume?
3860                  */
3861                 for (iter = priv->devices; iter; iter = iter->next) {
3862                         NMDevice *device = iter->data;
3863
3864                         /* FIXME: shouldn't we be unmanaging software devices if !suspending? */
3865                         if (nm_device_is_software (device))
3866                                 continue;
3867                         /* Wake-on-LAN devices will be taken down post-suspend rather than pre- */
3868                         if (suspending && device_is_wake_on_lan (device))
3869                                 continue;
3870
3871                         nm_device_set_unmanaged_by_flags (device, NM_UNMANAGED_SLEEPING, TRUE, NM_DEVICE_STATE_REASON_SLEEPING);
3872                 }
3873         } else {
3874                 _LOGI (LOGD_SUSPEND, "%s...", waking_from_suspend ? "waking up" : "re-enabling");
3875
3876                 if (waking_from_suspend) {
3877                         /* Belatedly take down Wake-on-LAN devices; ideally we wouldn't have to do this
3878                          * but for now it's the only way to make sure we re-check their connectivity.
3879                          */
3880                         for (iter = priv->devices; iter; iter = iter->next) {
3881                                 NMDevice *device = iter->data;
3882
3883                                 if (nm_device_is_software (device))
3884                                         continue;
3885                                 if (device_is_wake_on_lan (device))
3886                                         nm_device_set_unmanaged_by_flags (device, NM_UNMANAGED_SLEEPING, TRUE, NM_DEVICE_STATE_REASON_SLEEPING);
3887                         }
3888                 }
3889
3890                 /* Ensure rfkill state is up-to-date since we don't respond to state
3891                  * changes during sleep.
3892                  */
3893                 nm_manager_rfkill_update (self, RFKILL_TYPE_UNKNOWN);
3894
3895                 /* Re-manage managed devices */
3896                 for (iter = priv->devices; iter; iter = iter->next) {
3897                         NMDevice *device = NM_DEVICE (iter->data);
3898                         guint i;
3899
3900                         if (nm_device_is_software (device))
3901                                 continue;
3902
3903                         /* enable/disable wireless devices since that we don't respond
3904                          * to killswitch changes during sleep.
3905                          */
3906                         for (i = 0; i < RFKILL_TYPE_MAX; i++) {
3907                                 RadioState *rstate = &priv->radio_states[i];
3908                                 gboolean enabled = radio_enabled_for_rstate (rstate, TRUE);
3909
3910                                 if (rstate->desc) {
3911                                         _LOGD (LOGD_RFKILL, "%s %s devices (hw_enabled %d, sw_enabled %d, user_enabled %d)",
3912                                                enabled ? "enabling" : "disabling",
3913                                                rstate->desc, rstate->hw_enabled, rstate->sw_enabled, rstate->user_enabled);
3914                                 }
3915
3916                                 if (nm_device_get_rfkill_type (device) == rstate->rtype)
3917                                         nm_device_set_enabled (device, enabled);
3918                         }
3919
3920                         nm_device_set_autoconnect (device, TRUE);
3921
3922                         nm_device_set_unmanaged_by_flags (device, NM_UNMANAGED_SLEEPING, FALSE, NM_DEVICE_STATE_REASON_NOW_MANAGED);
3923                 }
3924         }
3925
3926         nm_manager_update_state (self);
3927 }
3928
3929 static void
3930 _internal_sleep (NMManager *self, gboolean do_sleep)
3931 {
3932         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
3933
3934         if (priv->sleeping == do_sleep)
3935                 return;
3936
3937         _LOGI (LOGD_SUSPEND, "%s requested (sleeping: %s  enabled: %s)",
3938                do_sleep ? "sleep" : "wake",
3939                priv->sleeping ? "yes" : "no",
3940                priv->net_enabled ? "yes" : "no");
3941
3942         priv->sleeping = do_sleep;
3943
3944         do_sleep_wake (self, TRUE);
3945
3946         g_object_notify (G_OBJECT (self), NM_MANAGER_SLEEPING);
3947 }
3948
3949 #if 0
3950 static void
3951 sleep_auth_done_cb (NMAuthChain *chain,
3952                     GError *error,
3953                     GDBusMethodInvocation *context,
3954                     gpointer user_data)
3955 {
3956         NMManager *self = NM_MANAGER (user_data);
3957         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
3958         GError *ret_error;
3959         NMAuthCallResult result;
3960         gboolean do_sleep;
3961
3962         priv->auth_chains = g_slist_remove (priv->auth_chains, chain);
3963
3964         result = nm_auth_chain_get_result (chain, NM_AUTH_PERMISSION_SLEEP_WAKE);
3965         if (error) {
3966                 _LOGD (LOGD_SUSPEND, "Sleep/wake request failed: %s", error->message);
3967                 ret_error = g_error_new (NM_MANAGER_ERROR,
3968                                          NM_MANAGER_ERROR_PERMISSION_DENIED,
3969                                          "Sleep/wake request failed: %s",
3970                                          error->message);
3971                 g_dbus_method_invocation_take_error (context, ret_error);
3972         } else if (result != NM_AUTH_CALL_RESULT_YES) {
3973                 ret_error = g_error_new_literal (NM_MANAGER_ERROR,
3974                                                  NM_MANAGER_ERROR_PERMISSION_DENIED,
3975                                                  "Not authorized to sleep/wake");
3976                 g_dbus_method_invocation_take_error (context, ret_error);
3977         } else {
3978                 /* Auth success */
3979                 do_sleep = GPOINTER_TO_UINT (nm_auth_chain_get_data (chain, "sleep"));
3980                 _internal_sleep (self, do_sleep);
3981                 g_dbus_method_invocation_return_value (context, NULL);
3982         }
3983
3984         nm_auth_chain_unref (chain);
3985 }
3986 #endif
3987
3988 static void
3989 impl_manager_sleep (NMManager *self,
3990                     GDBusMethodInvocation *context,
3991                     gboolean do_sleep)
3992 {
3993         NMManagerPrivate *priv;
3994         GError *error = NULL;
3995         gs_unref_object NMAuthSubject *subject = NULL;
3996 #if 0
3997         NMAuthChain *chain;
3998         const char *error_desc = NULL;
3999 #endif
4000
4001         g_return_if_fail (NM_IS_MANAGER (self));
4002
4003         priv = NM_MANAGER_GET_PRIVATE (self);
4004         subject = nm_auth_subject_new_unix_process_from_context (context);
4005
4006         if (priv->sleeping == do_sleep) {
4007                 error = g_error_new (NM_MANAGER_ERROR,
4008                                      NM_MANAGER_ERROR_ALREADY_ASLEEP_OR_AWAKE,
4009                                      "Already %s", do_sleep ? "asleep" : "awake");
4010                 nm_audit_log_control_op (NM_AUDIT_OP_SLEEP_CONTROL, do_sleep ? "on" : "off", FALSE, subject,
4011                                          error->message);
4012                 g_dbus_method_invocation_take_error (context, error);
4013                 return;
4014         }
4015
4016         /* Unconditionally allow the request.  Previously it was polkit protected
4017          * but unfortunately that doesn't work for short-lived processes like
4018          * pm-utils.  It uses dbus-send without --print-reply, which quits
4019          * immediately after sending the request, and NM is unable to obtain the
4020          * sender's UID as dbus-send has already dropped off the bus.  Thus NM
4021          * fails the request.  Instead, don't validate the request, but rely on
4022          * D-Bus permissions to restrict the call to root.
4023          */
4024         _internal_sleep (self, do_sleep);
4025         nm_audit_log_control_op (NM_AUDIT_OP_SLEEP_CONTROL, do_sleep ? "on" : "off", TRUE, subject, NULL);
4026         g_dbus_method_invocation_return_value (context, NULL);
4027         return;
4028
4029 #if 0
4030         chain = nm_auth_chain_new (context, sleep_auth_done_cb, self, &error_desc);
4031         if (chain) {
4032                 priv->auth_chains = g_slist_append (priv->auth_chains, chain);
4033                 nm_auth_chain_set_data (chain, "sleep", GUINT_TO_POINTER (do_sleep), NULL);
4034                 nm_auth_chain_add_call (chain, NM_AUTH_PERMISSION_SLEEP_WAKE, TRUE);
4035         } else {
4036                 error = g_error_new_literal (NM_MANAGER_ERROR,
4037                                              NM_MANAGER_ERROR_PERMISSION_DENIED,
4038                                              error_desc);
4039                 g_dbus_method_invocation_take_error (context, error);
4040         }
4041 #endif
4042 }
4043
4044 static void
4045 sleeping_cb (NMSleepMonitor *monitor, gpointer user_data)
4046 {
4047         nm_log_dbg (LOGD_SUSPEND, "Received sleeping signal");
4048         _internal_sleep (NM_MANAGER (user_data), TRUE);
4049 }
4050
4051 static void
4052 resuming_cb (NMSleepMonitor *monitor, gpointer user_data)
4053 {
4054         nm_log_dbg (LOGD_SUSPEND, "Received resuming signal");
4055         _internal_sleep (NM_MANAGER (user_data), FALSE);
4056 }
4057
4058 static void
4059 _internal_enable (NMManager *self, gboolean enable)
4060 {
4061         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
4062         GError *err = NULL;
4063
4064         /* Update "NetworkingEnabled" key in state file */
4065         if (priv->state_file) {
4066                 if (!write_value_to_state_file (priv->state_file,
4067                                                 "main", "NetworkingEnabled",
4068                                                 G_TYPE_BOOLEAN, (gpointer) &enable,
4069                                                 &err)) {
4070                         /* Not a hard error */
4071                         _LOGW (LOGD_SUSPEND, "writing to state file %s failed: %s",
4072                                priv->state_file,
4073                                err->message);
4074                 }
4075         }
4076
4077         _LOGI (LOGD_SUSPEND, "%s requested (sleeping: %s  enabled: %s)",
4078                enable ? "enable" : "disable",
4079                priv->sleeping ? "yes" : "no",
4080                priv->net_enabled ? "yes" : "no");
4081
4082         priv->net_enabled = enable;
4083
4084         do_sleep_wake (self, FALSE);
4085
4086         g_object_notify (G_OBJECT (self), NM_MANAGER_NETWORKING_ENABLED);
4087 }
4088
4089 static void
4090 enable_net_done_cb (NMAuthChain *chain,
4091                     GError *error,
4092                     GDBusMethodInvocation *context,
4093                     gpointer user_data)
4094 {
4095         NMManager *self = NM_MANAGER (user_data);
4096         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
4097         GError *ret_error = NULL;
4098         NMAuthCallResult result;
4099         gboolean enable;
4100         NMAuthSubject *subject;
4101
4102         g_assert (context);
4103
4104         priv->auth_chains = g_slist_remove (priv->auth_chains, chain);
4105         enable = GPOINTER_TO_UINT (nm_auth_chain_get_data (chain, "enable"));
4106         subject = nm_auth_chain_get_subject (chain);
4107
4108         result = nm_auth_chain_get_result (chain, NM_AUTH_PERMISSION_ENABLE_DISABLE_NETWORK);
4109         if (error) {
4110                 _LOGD (LOGD_CORE, "Enable request failed: %s", error->message);
4111                 ret_error = g_error_new (NM_MANAGER_ERROR,
4112                                          NM_MANAGER_ERROR_PERMISSION_DENIED,
4113                                          "Enable request failed: %s",
4114                                          error->message);
4115         } else if (result != NM_AUTH_CALL_RESULT_YES) {
4116                 ret_error = g_error_new_literal (NM_MANAGER_ERROR,
4117                                                  NM_MANAGER_ERROR_PERMISSION_DENIED,
4118                                                  "Not authorized to enable/disable networking");
4119         } else {
4120                 /* Auth success */
4121                 _internal_enable (self, enable);
4122                 g_dbus_method_invocation_return_value (context, NULL);
4123                 nm_audit_log_control_op (NM_AUDIT_OP_NET_CONTROL, enable ? "on" : "off", TRUE,
4124                                          subject, NULL);
4125         }
4126
4127         if (ret_error) {
4128                 nm_audit_log_control_op (NM_AUDIT_OP_NET_CONTROL, enable ? "on" : "off", FALSE,
4129                                          subject, ret_error->message);
4130                 g_dbus_method_invocation_take_error (context, ret_error);
4131         }
4132
4133         nm_auth_chain_unref (chain);
4134 }
4135
4136 static void
4137 impl_manager_enable (NMManager *self,
4138                      GDBusMethodInvocation *context,
4139                      gboolean enable)
4140 {
4141         NMManagerPrivate *priv;
4142         NMAuthChain *chain;
4143         GError *error = NULL;
4144
4145         g_return_if_fail (NM_IS_MANAGER (self));
4146
4147         priv = NM_MANAGER_GET_PRIVATE (self);
4148
4149         if (priv->net_enabled == enable) {
4150                 error = g_error_new (NM_MANAGER_ERROR,
4151                                      NM_MANAGER_ERROR_ALREADY_ENABLED_OR_DISABLED,
4152                                      "Already %s", enable ? "enabled" : "disabled");
4153                 goto done;
4154         }
4155
4156         chain = nm_auth_chain_new_context (context, enable_net_done_cb, self);
4157         if (!chain) {
4158                 error = g_error_new_literal (NM_MANAGER_ERROR,
4159                                              NM_MANAGER_ERROR_PERMISSION_DENIED,
4160                                              "Unable to authenticate request.");
4161                 goto done;
4162         }
4163
4164         priv->auth_chains = g_slist_append (priv->auth_chains, chain);
4165         nm_auth_chain_set_data (chain, "enable", GUINT_TO_POINTER (enable), NULL);
4166         nm_auth_chain_add_call (chain, NM_AUTH_PERMISSION_ENABLE_DISABLE_NETWORK, TRUE);
4167
4168 done:
4169         if (error)
4170                 g_dbus_method_invocation_take_error (context, error);
4171 }
4172
4173 /* Permissions */
4174
4175 static void
4176 get_perm_add_result (NMAuthChain *chain, GVariantBuilder *results, const char *permission)
4177 {
4178         NMAuthCallResult result;
4179
4180         result = nm_auth_chain_get_result (chain, permission);
4181         if (result == NM_AUTH_CALL_RESULT_YES)
4182                 g_variant_builder_add (results, "{ss}", permission, "yes");
4183         else if (result == NM_AUTH_CALL_RESULT_NO)
4184                 g_variant_builder_add (results, "{ss}", permission, "no");
4185         else if (result == NM_AUTH_CALL_RESULT_AUTH)
4186                 g_variant_builder_add (results, "{ss}", permission, "auth");
4187         else {
4188                 nm_log_dbg (LOGD_CORE, "unknown auth chain result %d", result);
4189         }
4190 }
4191
4192 static void
4193 get_permissions_done_cb (NMAuthChain *chain,
4194                          GError *error,
4195                          GDBusMethodInvocation *context,
4196                          gpointer user_data)
4197 {
4198         NMManager *self = NM_MANAGER (user_data);
4199         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
4200         GError *ret_error;
4201         GVariantBuilder results;
4202
4203         g_assert (context);
4204
4205         priv->auth_chains = g_slist_remove (priv->auth_chains, chain);
4206         if (error) {
4207                 _LOGD (LOGD_CORE, "Permissions request failed: %s", error->message);
4208                 ret_error = g_error_new (NM_MANAGER_ERROR,
4209                                          NM_MANAGER_ERROR_PERMISSION_DENIED,
4210                                          "Permissions request failed: %s",
4211                                          error->message);
4212                 g_dbus_method_invocation_take_error (context, ret_error);
4213         } else {
4214                 g_variant_builder_init (&results, G_VARIANT_TYPE ("a{ss}"));
4215
4216                 get_perm_add_result (chain, &results, NM_AUTH_PERMISSION_ENABLE_DISABLE_NETWORK);
4217                 get_perm_add_result (chain, &results, NM_AUTH_PERMISSION_SLEEP_WAKE);
4218                 get_perm_add_result (chain, &results, NM_AUTH_PERMISSION_ENABLE_DISABLE_WIFI);
4219                 get_perm_add_result (chain, &results, NM_AUTH_PERMISSION_ENABLE_DISABLE_WWAN);
4220                 get_perm_add_result (chain, &results, NM_AUTH_PERMISSION_ENABLE_DISABLE_WIMAX);
4221                 get_perm_add_result (chain, &results, NM_AUTH_PERMISSION_NETWORK_CONTROL);
4222                 get_perm_add_result (chain, &results, NM_AUTH_PERMISSION_WIFI_SHARE_PROTECTED);
4223                 get_perm_add_result (chain, &results, NM_AUTH_PERMISSION_WIFI_SHARE_OPEN);
4224                 get_perm_add_result (chain, &results, NM_AUTH_PERMISSION_SETTINGS_MODIFY_SYSTEM);
4225                 get_perm_add_result (chain, &results, NM_AUTH_PERMISSION_SETTINGS_MODIFY_OWN);
4226                 get_perm_add_result (chain, &results, NM_AUTH_PERMISSION_SETTINGS_MODIFY_HOSTNAME);
4227
4228                 g_dbus_method_invocation_return_value (context,
4229                                                        g_variant_new ("(a{ss})", &results));
4230         }
4231
4232         nm_auth_chain_unref (chain);
4233 }
4234
4235 static void
4236 impl_manager_get_permissions (NMManager *self,
4237                               GDBusMethodInvocation *context)
4238 {
4239         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
4240         NMAuthChain *chain;
4241         GError *error = NULL;
4242
4243         chain = nm_auth_chain_new_context (context, get_permissions_done_cb, self);
4244         if (!chain) {
4245                 error = g_error_new_literal (NM_MANAGER_ERROR,
4246                                              NM_MANAGER_ERROR_PERMISSION_DENIED,
4247                                              "Unable to authenticate request.");
4248                 g_dbus_method_invocation_take_error (context, error);
4249                 return;
4250         }
4251
4252         priv->auth_chains = g_slist_append (priv->auth_chains, chain);
4253         nm_auth_chain_add_call (chain, NM_AUTH_PERMISSION_ENABLE_DISABLE_NETWORK, FALSE);
4254         nm_auth_chain_add_call (chain, NM_AUTH_PERMISSION_SLEEP_WAKE, FALSE);
4255         nm_auth_chain_add_call (chain, NM_AUTH_PERMISSION_ENABLE_DISABLE_WIFI, FALSE);
4256         nm_auth_chain_add_call (chain, NM_AUTH_PERMISSION_ENABLE_DISABLE_WWAN, FALSE);
4257         nm_auth_chain_add_call (chain, NM_AUTH_PERMISSION_ENABLE_DISABLE_WIMAX, FALSE);
4258         nm_auth_chain_add_call (chain, NM_AUTH_PERMISSION_NETWORK_CONTROL, FALSE);
4259         nm_auth_chain_add_call (chain, NM_AUTH_PERMISSION_WIFI_SHARE_PROTECTED, FALSE);
4260         nm_auth_chain_add_call (chain, NM_AUTH_PERMISSION_WIFI_SHARE_OPEN, FALSE);
4261         nm_auth_chain_add_call (chain, NM_AUTH_PERMISSION_SETTINGS_MODIFY_SYSTEM, FALSE);
4262         nm_auth_chain_add_call (chain, NM_AUTH_PERMISSION_SETTINGS_MODIFY_OWN, FALSE);
4263         nm_auth_chain_add_call (chain, NM_AUTH_PERMISSION_SETTINGS_MODIFY_HOSTNAME, FALSE);
4264 }
4265
4266 static void
4267 impl_manager_get_state (NMManager *self,
4268                         GDBusMethodInvocation *context)
4269 {
4270         nm_manager_update_state (self);
4271         g_dbus_method_invocation_return_value (context,
4272                                                g_variant_new ("(u)", NM_MANAGER_GET_PRIVATE (self)->state));
4273 }
4274
4275 static void
4276 impl_manager_set_logging (NMManager *self,
4277                           GDBusMethodInvocation *context,
4278                           const char *level,
4279                           const char *domains)
4280 {
4281         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
4282         GError *error = NULL;
4283         gulong caller_uid = G_MAXULONG;
4284
4285         if (!nm_bus_manager_get_caller_info (priv->dbus_mgr, context, NULL, &caller_uid, NULL)) {
4286                 error = g_error_new_literal (NM_MANAGER_ERROR,
4287                                              NM_MANAGER_ERROR_PERMISSION_DENIED,
4288                                              "Failed to get request UID.");
4289                 goto done;
4290         }
4291
4292         if (0 != caller_uid) {
4293                 error = g_error_new_literal (NM_MANAGER_ERROR,
4294                                              NM_MANAGER_ERROR_PERMISSION_DENIED,
4295                                              "Permission denied");
4296                 goto done;
4297         }
4298
4299         if (nm_logging_setup (level, domains, NULL, &error)) {
4300                 _LOGI (LOGD_CORE, "logging: level '%s' domains '%s'",
4301                        nm_logging_level_to_string (), nm_logging_domains_to_string ());
4302         }
4303
4304 done:
4305         if (error)
4306                 g_dbus_method_invocation_take_error (context, error);
4307         else
4308                 g_dbus_method_invocation_return_value (context, NULL);
4309 }
4310
4311 static void
4312 impl_manager_get_logging (NMManager *manager,
4313                           GDBusMethodInvocation *context)
4314 {
4315         g_dbus_method_invocation_return_value (context,
4316                                                g_variant_new ("(ss)",
4317                                                               nm_logging_level_to_string (),
4318                                                               nm_logging_domains_to_string ()));
4319 }
4320
4321 static void
4322 connectivity_check_done (GObject *object,
4323                          GAsyncResult *result,
4324                          gpointer user_data)
4325 {
4326         GDBusMethodInvocation *context = user_data;
4327         NMConnectivityState state;
4328         GError *error = NULL;
4329
4330         state = nm_connectivity_check_finish (NM_CONNECTIVITY (object), result, &error);
4331         if (error)
4332                 g_dbus_method_invocation_take_error (context, error);
4333         else {
4334                 g_dbus_method_invocation_return_value (context,
4335                                                        g_variant_new ("(u)", state));
4336         }
4337 }
4338
4339
4340 static void
4341 check_connectivity_auth_done_cb (NMAuthChain *chain,
4342                                  GError *auth_error,
4343                                  GDBusMethodInvocation *context,
4344                                  gpointer user_data)
4345 {
4346         NMManager *self = NM_MANAGER (user_data);
4347         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
4348         GError *error = NULL;
4349         NMAuthCallResult result;
4350
4351         priv->auth_chains = g_slist_remove (priv->auth_chains, chain);
4352
4353         result = nm_auth_chain_get_result (chain, NM_AUTH_PERMISSION_NETWORK_CONTROL);
4354
4355         if (auth_error) {
4356                 _LOGD (LOGD_CORE, "CheckConnectivity request failed: %s", auth_error->message);
4357                 error = g_error_new (NM_MANAGER_ERROR,
4358                                      NM_MANAGER_ERROR_PERMISSION_DENIED,
4359                                      "Connectivity check request failed: %s",
4360                                      auth_error->message);
4361         } else if (result != NM_AUTH_CALL_RESULT_YES) {
4362                 error = g_error_new_literal (NM_MANAGER_ERROR,
4363                                              NM_MANAGER_ERROR_PERMISSION_DENIED,
4364                                              "Not authorized to recheck connectivity");
4365         } else {
4366                 /* it's allowed */
4367                 nm_connectivity_check_async (priv->connectivity,
4368                                              connectivity_check_done,
4369                                              context);
4370         }
4371
4372         if (error)
4373                 g_dbus_method_invocation_take_error (context, error);
4374         nm_auth_chain_unref (chain);
4375 }
4376
4377 static void
4378 impl_manager_check_connectivity (NMManager *self,
4379                                  GDBusMethodInvocation *context)
4380 {
4381         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
4382         NMAuthChain *chain;
4383         GError *error = NULL;
4384
4385         /* Validate the request */
4386         chain = nm_auth_chain_new_context (context, check_connectivity_auth_done_cb, self);
4387         if (!chain) {
4388                 error = g_error_new_literal (NM_MANAGER_ERROR,
4389                                              NM_MANAGER_ERROR_PERMISSION_DENIED,
4390                                              "Unable to authenticate request.");
4391                 g_dbus_method_invocation_take_error (context, error);
4392                 return;
4393         }
4394
4395         priv->auth_chains = g_slist_append (priv->auth_chains, chain);
4396         nm_auth_chain_add_call (chain, NM_AUTH_PERMISSION_NETWORK_CONTROL, TRUE);
4397 }
4398
4399 static void
4400 start_factory (NMDeviceFactory *factory, gpointer user_data)
4401 {
4402         nm_device_factory_start (factory);
4403 }
4404
4405 gboolean
4406 nm_manager_start (NMManager *self, GError **error)
4407 {
4408         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
4409         GSList *iter, *connections;
4410         guint i;
4411
4412         if (!nm_settings_start (priv->settings, error))
4413                 return FALSE;
4414
4415         g_signal_connect (NM_PLATFORM_GET,
4416                           NM_PLATFORM_SIGNAL_LINK_CHANGED,
4417                           G_CALLBACK (platform_link_cb),
4418                           self);
4419
4420         /* Set initial radio enabled/disabled state */
4421         for (i = 0; i < RFKILL_TYPE_MAX; i++) {
4422                 RadioState *rstate = &priv->radio_states[i];
4423                 gboolean enabled;
4424
4425                 if (!rstate->desc)
4426                         continue;
4427
4428                 /* recheck kernel rfkill state */
4429                 update_rstate_from_rfkill (priv->rfkill_mgr, rstate);
4430
4431                 if (rstate->desc) {
4432                         _LOGI (LOGD_RFKILL, "%s %s by radio killswitch; %s by state file",
4433                                rstate->desc,
4434                                (rstate->hw_enabled && rstate->sw_enabled) ? "enabled" : "disabled",
4435                                rstate->user_enabled ? "enabled" : "disabled");
4436                 }
4437                 enabled = radio_enabled_for_rstate (rstate, TRUE);
4438                 manager_update_radio_enabled (self, rstate, enabled);
4439         }
4440
4441         /* Log overall networking status - enabled/disabled */
4442         _LOGI (LOGD_CORE, "Networking is %s by state file",
4443                priv->net_enabled ? "enabled" : "disabled");
4444
4445         system_unmanaged_devices_changed_cb (priv->settings, NULL, self);
4446         system_hostname_changed_cb (priv->settings, NULL, self);
4447
4448         /* Start device factories */
4449         nm_device_factory_manager_load_factories (_register_device_factory, self);
4450         nm_device_factory_manager_for_each_factory (start_factory, NULL);
4451
4452         platform_query_devices (self);
4453
4454         /* Load VPN plugins */
4455         priv->vpn_manager = g_object_ref (nm_vpn_manager_get ());
4456
4457         /* Connections added before the manager is started do not emit
4458          * connection-added signals thus devices have to be created manually.
4459          */
4460         _LOGD (LOGD_CORE, "creating virtual devices...");
4461         connections = nm_settings_get_connections (priv->settings);
4462         for (iter = connections; iter; iter = iter->next)
4463                 connection_changed (priv->settings, NM_CONNECTION (iter->data), self);
4464         g_slist_free (connections);
4465
4466         priv->devices_inited = TRUE;
4467
4468         check_if_startup_complete (self);
4469
4470         return TRUE;
4471 }
4472
4473 void
4474 nm_manager_stop (NMManager *self)
4475 {
4476         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
4477
4478         /* Remove all devices */
4479         while (priv->devices)
4480                 remove_device (self, NM_DEVICE (priv->devices->data), TRUE, TRUE);
4481
4482         _active_connection_cleanup (self);
4483 }
4484
4485 static gboolean
4486 handle_firmware_changed (gpointer user_data)
4487 {
4488         NMManager *self = NM_MANAGER (user_data);
4489         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
4490         GSList *iter;
4491
4492         priv->fw_changed_id = 0;
4493
4494         /* Try to re-enable devices with missing firmware */
4495         for (iter = priv->devices; iter; iter = iter->next) {
4496                 NMDevice *candidate = NM_DEVICE (iter->data);
4497                 NMDeviceState state = nm_device_get_state (candidate);
4498
4499                 if (   nm_device_get_firmware_missing (candidate)
4500                     && (state == NM_DEVICE_STATE_UNAVAILABLE)) {
4501                         _LOGI (LOGD_CORE, "(%s): firmware may now be available",
4502                                nm_device_get_iface (candidate));
4503
4504                         /* Re-set unavailable state to try bringing the device up again */
4505                         nm_device_state_changed (candidate,
4506                                                  NM_DEVICE_STATE_UNAVAILABLE,
4507                                                  NM_DEVICE_STATE_REASON_NONE);
4508                 }
4509         }
4510
4511         return FALSE;
4512 }
4513
4514 static void
4515 connectivity_changed (NMConnectivity *connectivity,
4516                       GParamSpec *pspec,
4517                       gpointer user_data)
4518 {
4519         NMManager *self = NM_MANAGER (user_data);
4520
4521         _LOGD (LOGD_CORE, "connectivity checking indicates %s",
4522                nm_connectivity_state_to_string (nm_connectivity_get_state (connectivity)));
4523
4524         nm_manager_update_state (self);
4525         g_object_notify (G_OBJECT (self), NM_MANAGER_CONNECTIVITY);
4526 }
4527
4528 static void
4529 firmware_dir_changed (GFileMonitor *monitor,
4530                       GFile *file,
4531                       GFile *other_file,
4532                       GFileMonitorEvent event_type,
4533                       gpointer user_data)
4534 {
4535         NMManager *self = NM_MANAGER (user_data);
4536         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
4537
4538         switch (event_type) {
4539         case G_FILE_MONITOR_EVENT_CREATED:
4540         case G_FILE_MONITOR_EVENT_CHANGED:
4541         case G_FILE_MONITOR_EVENT_MOVED:
4542         case G_FILE_MONITOR_EVENT_ATTRIBUTE_CHANGED:
4543         case G_FILE_MONITOR_EVENT_CHANGES_DONE_HINT:
4544                 if (!priv->fw_changed_id) {
4545                         priv->fw_changed_id = g_timeout_add_seconds (4, handle_firmware_changed, self);
4546                         _LOGI (LOGD_CORE, "kernel firmware directory '%s' changed",
4547                                KERNEL_FIRMWARE_DIR);
4548                 }
4549                 break;
4550         default:
4551                 break;
4552         }
4553 }
4554
4555 static void
4556 connection_metered_changed (GObject *object,
4557                             NMMetered metered,
4558                             gpointer user_data)
4559 {
4560         nm_manager_update_metered (NM_MANAGER (user_data));
4561 }
4562
4563 static void
4564 policy_default_device_changed (GObject *object, GParamSpec *pspec, gpointer user_data)
4565 {
4566         NMManager *self = NM_MANAGER (user_data);
4567         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
4568         NMDevice *best;
4569         NMActiveConnection *ac;
4570
4571         /* Note: this assumes that it's not possible for the IP4 default
4572          * route to be going over the default-ip6-device. If that changes,
4573          * we need something more complicated here.
4574          */
4575         best = nm_policy_get_default_ip4_device (priv->policy);
4576         if (!best)
4577                 best = nm_policy_get_default_ip6_device (priv->policy);
4578
4579         if (best)
4580                 ac = NM_ACTIVE_CONNECTION (nm_device_get_act_request (best));
4581         else
4582                 ac = NULL;
4583
4584         if (ac != priv->primary_connection) {
4585                 if (priv->primary_connection) {
4586                         g_signal_handlers_disconnect_by_func (priv->primary_connection,
4587                                                               G_CALLBACK (connection_metered_changed),
4588                                                               self);
4589                         g_clear_object (&priv->primary_connection);
4590                 }
4591
4592                 priv->primary_connection = ac ? g_object_ref (ac) : NULL;
4593
4594                 if (priv->primary_connection) {
4595                         g_signal_connect (priv->primary_connection, NM_ACTIVE_CONNECTION_DEVICE_METERED_CHANGED,
4596                                           G_CALLBACK (connection_metered_changed), self);
4597                 }
4598                 _LOGD (LOGD_CORE, "PrimaryConnection now %s", ac ? nm_active_connection_get_settings_connection_id (ac) : "(none)");
4599                 g_object_notify (G_OBJECT (self), NM_MANAGER_PRIMARY_CONNECTION);
4600                 g_object_notify (G_OBJECT (self), NM_MANAGER_PRIMARY_CONNECTION_TYPE);
4601                 nm_manager_update_metered (self);
4602         }
4603 }
4604
4605 static void
4606 policy_activating_device_changed (GObject *object, GParamSpec *pspec, gpointer user_data)
4607 {
4608         NMManager *self = NM_MANAGER (user_data);
4609         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
4610         NMDevice *activating, *best;
4611         NMActiveConnection *ac;
4612
4613         /* We only look at activating-ip6-device if activating-ip4-device
4614          * AND default-ip4-device are NULL; if default-ip4-device is
4615          * non-NULL, then activating-ip6-device is irrelevant, since while
4616          * that device might become the new default-ip6-device, it can't
4617          * become primary-connection while default-ip4-device is set to
4618          * something else.
4619          */
4620         activating = nm_policy_get_activating_ip4_device (priv->policy);
4621         best = nm_policy_get_default_ip4_device (priv->policy);
4622         if (!activating && !best)
4623                 activating = nm_policy_get_activating_ip6_device (priv->policy);
4624
4625         if (activating)
4626                 ac = NM_ACTIVE_CONNECTION (nm_device_get_act_request (activating));
4627         else
4628                 ac = NULL;
4629
4630         if (ac != priv->activating_connection) {
4631                 g_clear_object (&priv->activating_connection);
4632                 priv->activating_connection = ac ? g_object_ref (ac) : NULL;
4633                 _LOGD (LOGD_CORE, "ActivatingConnection now %s", ac ? nm_active_connection_get_settings_connection_id (ac) : "(none)");
4634                 g_object_notify (G_OBJECT (self), NM_MANAGER_ACTIVATING_CONNECTION);
4635         }
4636 }
4637
4638 #define NM_PERM_DENIED_ERROR "org.freedesktop.NetworkManager.PermissionDenied"
4639
4640 typedef struct {
4641         NMManager *self;
4642         GDBusConnection *connection;
4643         GDBusMessage *message;
4644         NMAuthSubject *subject;
4645         const char *permission;
4646         const char *audit_op;
4647         char *audit_prop_value;
4648         GType interface_type;
4649         const char *glib_propname;
4650 } PropertyFilterData;
4651
4652 static void
4653 free_property_filter_data (PropertyFilterData *pfd)
4654 {
4655         g_object_unref (pfd->self);
4656         g_object_unref (pfd->connection);
4657         g_object_unref (pfd->message);
4658         g_clear_object (&pfd->subject);
4659         g_free (pfd->audit_prop_value);
4660         g_slice_free (PropertyFilterData, pfd);
4661 }
4662
4663 static void
4664 prop_set_auth_done_cb (NMAuthChain *chain,
4665                        GError *error,
4666                        GDBusMethodInvocation *context, /* NULL */
4667                        gpointer user_data)
4668 {
4669         PropertyFilterData *pfd = user_data;
4670         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (pfd->self);
4671         NMAuthCallResult result;
4672         GDBusMessage *reply = NULL;
4673         const char *error_message;
4674         gs_unref_object NMExportedObject *object = NULL;
4675         const NMGlobalDnsConfig *global_dns;
4676         gs_unref_variant GVariant *value = NULL;
4677         GVariant *args;
4678
4679         priv->auth_chains = g_slist_remove (priv->auth_chains, chain);
4680         result = nm_auth_chain_get_result (chain, pfd->permission);
4681         if (error || (result != NM_AUTH_CALL_RESULT_YES)) {
4682                 reply = g_dbus_message_new_method_error (pfd->message,
4683                                                          NM_PERM_DENIED_ERROR,
4684                                                          (error_message = "Not authorized to perform this operation"));
4685                 if (error)
4686                         error_message = error->message;
4687                 goto done;
4688         }
4689
4690         object = NM_EXPORTED_OBJECT (nm_bus_manager_get_registered_object (priv->dbus_mgr,
4691                                                                            g_dbus_message_get_path (pfd->message)));
4692         if (!object) {
4693                 reply = g_dbus_message_new_method_error (pfd->message,
4694                                                          "org.freedesktop.DBus.Error.UnknownObject",
4695                                                          (error_message = "Object doesn't exist."));
4696                 goto done;
4697         }
4698
4699         /* do some extra type checking... */
4700         if (!nm_exported_object_get_interface_by_type (object, pfd->interface_type)) {
4701                 reply = g_dbus_message_new_method_error (pfd->message,
4702                                                          "org.freedesktop.DBus.Error.InvalidArgs",
4703                                                          (error_message = "Object is of unexpected type."));
4704                 goto done;
4705         }
4706
4707         args = g_dbus_message_get_body (pfd->message);
4708         g_variant_get (args, "(&s&sv)", NULL, NULL, &value);
4709         g_assert (pfd->glib_propname);
4710
4711         if (!strcmp (pfd->glib_propname, NM_MANAGER_GLOBAL_DNS_CONFIGURATION)) {
4712                 g_assert (g_variant_is_of_type (value, G_VARIANT_TYPE ("a{sv}")));
4713                 global_dns = nm_config_data_get_global_dns_config (nm_config_get_data (priv->config));
4714
4715                 if (global_dns && !nm_global_dns_config_is_internal (global_dns)) {
4716                         reply = g_dbus_message_new_method_error (pfd->message,
4717                                                                  NM_PERM_DENIED_ERROR,
4718                                                                  (error_message = "Global DNS configuration already set via configuration file"));
4719                         goto done;
4720                 }
4721                 /* ... but set the property on the @object itself. It would be correct to set the property
4722                  * on the skeleton interface, but as it is now, the result is the same. */
4723                 g_object_set (object, pfd->glib_propname, value, NULL);
4724         } else {
4725                 g_assert (g_variant_is_of_type (value, G_VARIANT_TYPE_BOOLEAN));
4726                 /* the same here */
4727                 g_object_set (object, pfd->glib_propname, g_variant_get_boolean (value), NULL);
4728         }
4729
4730         reply = g_dbus_message_new_method_reply (pfd->message);
4731         g_dbus_message_set_body (reply, g_variant_new_tuple (NULL, 0));
4732         error_message = NULL;
4733 done:
4734         nm_audit_log_control_op (pfd->audit_op, pfd->audit_prop_value, !error_message, pfd->subject, error_message);
4735
4736         g_dbus_connection_send_message (pfd->connection, reply,
4737                                         G_DBUS_SEND_MESSAGE_FLAGS_NONE,
4738                                         NULL, NULL);
4739         g_object_unref (reply);
4740         nm_auth_chain_unref (chain);
4741
4742         free_property_filter_data (pfd);
4743 }
4744
4745 static gboolean
4746 do_set_property_check (gpointer user_data)
4747 {
4748         PropertyFilterData *pfd = user_data;
4749         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (pfd->self);
4750         GDBusMessage *reply = NULL;
4751         NMAuthChain *chain;
4752         const char *error_message = NULL;
4753
4754         pfd->subject = nm_auth_subject_new_unix_process_from_message (pfd->connection, pfd->message);
4755         if (!pfd->subject) {
4756                 reply = g_dbus_message_new_method_error (pfd->message,
4757                                                          NM_PERM_DENIED_ERROR,
4758                                                          (error_message = "Could not determine request UID."));
4759                 goto out;
4760         }
4761
4762         /* Validate the user request */
4763         chain = nm_auth_chain_new_subject (pfd->subject, NULL, prop_set_auth_done_cb, pfd);
4764         if (!chain) {
4765                 reply = g_dbus_message_new_method_error (pfd->message,
4766                                                          NM_PERM_DENIED_ERROR,
4767                                                          (error_message = "Could not authenticate request."));
4768                 goto out;
4769         }
4770
4771         priv->auth_chains = g_slist_append (priv->auth_chains, chain);
4772         nm_auth_chain_add_call (chain, pfd->permission, TRUE);
4773
4774 out:
4775         if (reply) {
4776                 nm_audit_log_control_op (pfd->audit_op, pfd->audit_prop_value, FALSE, pfd->subject, error_message);
4777                 g_dbus_connection_send_message (pfd->connection, reply,
4778                                                 G_DBUS_SEND_MESSAGE_FLAGS_NONE,
4779                                                 NULL, NULL);
4780                 g_object_unref (reply);
4781                 free_property_filter_data (pfd);
4782         }
4783
4784         return FALSE;
4785 }
4786
4787 static GDBusMessage *
4788 prop_filter (GDBusConnection *connection,
4789              GDBusMessage *message,
4790              gboolean incoming,
4791              gpointer user_data)
4792 {
4793         gs_unref_object NMManager *self = NULL;
4794         GVariant *args;
4795         const char *propiface = NULL;
4796         const char *propname = NULL;
4797         const char *glib_propname = NULL, *permission = NULL;
4798         const char *audit_op = NULL;
4799         GType interface_type = G_TYPE_INVALID;
4800         PropertyFilterData *pfd;
4801         const GVariantType *expected_type = G_VARIANT_TYPE_BOOLEAN;
4802         gs_unref_variant GVariant *value = NULL;
4803
4804         self = g_weak_ref_get (user_data);
4805         if (!self)
4806                 return message;
4807
4808         /* The sole purpose of this function is to validate property accesses on the
4809          * NMManager object since gdbus doesn't give us this functionality.
4810          */
4811
4812         /* Only filter org.freedesktop.DBus.Properties.Set calls */
4813         if (   !incoming
4814             || g_dbus_message_get_message_type (message) != G_DBUS_MESSAGE_TYPE_METHOD_CALL
4815             || g_strcmp0 (g_dbus_message_get_interface (message), DBUS_INTERFACE_PROPERTIES) != 0
4816             || g_strcmp0 (g_dbus_message_get_member (message), "Set") != 0)
4817                 return message;
4818
4819         args = g_dbus_message_get_body (message);
4820         if (!g_variant_is_of_type (args, G_VARIANT_TYPE ("(ssv)")))
4821                 return message;
4822         g_variant_get (args, "(&s&sv)", &propiface, &propname, &value);
4823
4824         /* Only filter calls to filtered properties, on existing objects */
4825         if (!strcmp (propiface, NM_DBUS_INTERFACE)) {
4826                 if (!strcmp (propname, "WirelessEnabled")) {
4827                         glib_propname = NM_MANAGER_WIRELESS_ENABLED;
4828                         permission = NM_AUTH_PERMISSION_ENABLE_DISABLE_WIFI;
4829                         audit_op = NM_AUDIT_OP_RADIO_CONTROL;
4830                 } else if (!strcmp (propname, "WwanEnabled")) {
4831                         glib_propname = NM_MANAGER_WWAN_ENABLED;
4832                         permission = NM_AUTH_PERMISSION_ENABLE_DISABLE_WWAN;
4833                         audit_op = NM_AUDIT_OP_RADIO_CONTROL;
4834                 } else if (!strcmp (propname, "WimaxEnabled")) {
4835                         glib_propname = NM_MANAGER_WIMAX_ENABLED;
4836                         permission = NM_AUTH_PERMISSION_ENABLE_DISABLE_WIMAX;
4837                         audit_op = NM_AUDIT_OP_RADIO_CONTROL;
4838                 } else if (!strcmp (propname, "GlobalDnsConfiguration")) {
4839                         glib_propname = NM_MANAGER_GLOBAL_DNS_CONFIGURATION;
4840                         permission = NM_AUTH_PERMISSION_SETTINGS_MODIFY_GLOBAL_DNS;
4841                         audit_op = NM_AUDIT_OP_NET_CONTROL;
4842                         expected_type = G_VARIANT_TYPE ("a{sv}");
4843                 } else
4844                         return message;
4845                 interface_type = NMDBUS_TYPE_MANAGER_SKELETON;
4846         } else if (!strcmp (propiface, NM_DBUS_INTERFACE_DEVICE)) {
4847                 if (!strcmp (propname, "Autoconnect")) {
4848                         glib_propname = NM_DEVICE_AUTOCONNECT;
4849                         permission = NM_AUTH_PERMISSION_NETWORK_CONTROL;
4850                         audit_op = NM_AUDIT_OP_DEVICE_AUTOCONNECT;
4851                 } else if (!strcmp (propname, "Managed")) {
4852                         glib_propname = NM_DEVICE_MANAGED;
4853                         permission = NM_AUTH_PERMISSION_NETWORK_CONTROL;
4854                         audit_op = NM_AUDIT_OP_DEVICE_MANAGED;
4855                 } else
4856                         return message;
4857                 interface_type = NMDBUS_TYPE_DEVICE_SKELETON;
4858         } else
4859                 return message;
4860
4861         if (!g_variant_is_of_type (value, expected_type))
4862                 return message;
4863
4864         /* This filter function is called from a gdbus worker thread which we can't
4865          * make other D-Bus calls from. In particular, we cannot call
4866          * org.freedesktop.DBus.GetConnectionUnixUser to find the remote UID.
4867          */
4868         pfd = g_slice_new0 (PropertyFilterData);
4869         pfd->self = self;
4870         self = NULL;
4871         pfd->connection = g_object_ref (connection);
4872         pfd->message = message;
4873         pfd->permission = permission;
4874         pfd->interface_type = interface_type;
4875         pfd->glib_propname = glib_propname;
4876         pfd->audit_op = audit_op;
4877         if (g_variant_is_of_type (value, G_VARIANT_TYPE_BOOLEAN)) {
4878                 pfd->audit_prop_value = g_strdup_printf ("%s:%d", pfd->glib_propname,
4879                                                          g_variant_get_boolean (value));
4880         } else
4881                 pfd->audit_prop_value = g_strdup (pfd->glib_propname);
4882
4883         g_idle_add (do_set_property_check, pfd);
4884
4885         return NULL;
4886 }
4887
4888 /******************************************************************************/
4889
4890 static int
4891 _set_prop_filter_free2 (gpointer user_data)
4892 {
4893         g_slice_free (GWeakRef, user_data);
4894         return G_SOURCE_REMOVE;
4895 }
4896
4897 static void
4898 _set_prop_filter_free (gpointer user_data)
4899 {
4900         g_weak_ref_clear (user_data);
4901
4902         /* Delay the final deletion of the user_data. There is a race when
4903          * calling g_dbus_connection_remove_filter() that the callback and user_data
4904          * might have been copied and being executed after the destroy function
4905          * runs (bgo #704568).
4906          * This doesn't really fix the race, but it should work well enough. */
4907         g_timeout_add_seconds (2, _set_prop_filter_free2, user_data);
4908 }
4909
4910 static void
4911 _set_prop_filter (NMManager *self, GDBusConnection *connection)
4912 {
4913         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
4914
4915         nm_assert ((!priv->prop_filter.connection) == (!priv->prop_filter.id));
4916
4917         if (priv->prop_filter.connection == connection)
4918                 return;
4919
4920         if (priv->prop_filter.connection) {
4921                 g_dbus_connection_remove_filter (priv->prop_filter.connection, priv->prop_filter.id);
4922                 priv->prop_filter.id = 0;
4923                 g_clear_object (&priv->prop_filter.connection);
4924         }
4925         if (connection) {
4926                 GWeakRef *wptr;
4927
4928                 wptr = g_slice_new (GWeakRef);
4929                 g_weak_ref_init  (wptr, self);
4930                 priv->prop_filter.id = g_dbus_connection_add_filter (connection, prop_filter, wptr, _set_prop_filter_free);
4931                 priv->prop_filter.connection = g_object_ref (connection);
4932         }
4933 }
4934
4935 /******************************************************************************/
4936
4937 static void
4938 authority_changed_cb (NMAuthManager *auth_manager, gpointer user_data)
4939 {
4940         /* Let clients know they should re-check their authorization */
4941         g_signal_emit (NM_MANAGER (user_data), signals[CHECK_PERMISSIONS], 0);
4942 }
4943
4944 #define KERN_RFKILL_OP_CHANGE_ALL 3
4945 #define KERN_RFKILL_TYPE_WLAN     1
4946 #define KERN_RFKILL_TYPE_WWAN     5
4947 struct rfkill_event {
4948         __u32 idx;
4949         __u8  type;
4950         __u8  op;
4951         __u8  soft, hard;
4952 } __attribute__((packed));
4953
4954 static void
4955 rfkill_change (const char *desc, RfKillType rtype, gboolean enabled)
4956 {
4957         int fd;
4958         struct rfkill_event event;
4959         ssize_t len;
4960
4961         g_return_if_fail (rtype == RFKILL_TYPE_WLAN || rtype == RFKILL_TYPE_WWAN);
4962
4963         errno = 0;
4964         fd = open ("/dev/rfkill", O_RDWR);
4965         if (fd < 0) {
4966                 if (errno == EACCES)
4967                         nm_log_warn (LOGD_RFKILL, "(%s): failed to open killswitch device", desc);
4968                 return;
4969         }
4970
4971         if (fcntl (fd, F_SETFL, O_NONBLOCK) < 0) {
4972                 nm_log_warn (LOGD_RFKILL, "(%s): failed to set killswitch device for "
4973                              "non-blocking operation", desc);
4974                 close (fd);
4975                 return;
4976         }
4977
4978         memset (&event, 0, sizeof (event));
4979         event.op = KERN_RFKILL_OP_CHANGE_ALL;
4980         switch (rtype) {
4981         case RFKILL_TYPE_WLAN:
4982                 event.type = KERN_RFKILL_TYPE_WLAN;
4983                 break;
4984         case RFKILL_TYPE_WWAN:
4985                 event.type = KERN_RFKILL_TYPE_WWAN;
4986                 break;
4987         default:
4988                 g_assert_not_reached ();
4989         }
4990         event.soft = enabled ? 0 : 1;
4991
4992         len = write (fd, &event, sizeof (event));
4993         if (len < 0) {
4994                 nm_log_warn (LOGD_RFKILL, "(%s): failed to change WiFi killswitch state: (%d) %s",
4995                              desc, errno, g_strerror (errno));
4996         } else if (len == sizeof (event)) {
4997                 nm_log_info (LOGD_RFKILL, "%s hardware radio set %s",
4998                              desc, enabled ? "enabled" : "disabled");
4999         } else {
5000                 /* Failed to write full structure */
5001                 nm_log_warn (LOGD_RFKILL, "(%s): failed to change WiFi killswitch state", desc);
5002         }
5003
5004         close (fd);
5005 }
5006
5007 static void
5008 manager_radio_user_toggled (NMManager *self,
5009                             RadioState *rstate,
5010                             gboolean enabled)
5011 {
5012         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
5013         GError *error = NULL;
5014         gboolean old_enabled, new_enabled;
5015
5016         /* Don't touch devices if asleep/networking disabled */
5017         if (manager_sleeping (self))
5018                 return;
5019
5020         if (rstate->desc) {
5021                 _LOGD (LOGD_RFKILL, "(%s): setting radio %s by user",
5022                        rstate->desc,
5023                        enabled ? "enabled" : "disabled");
5024         }
5025
5026         /* Update enabled key in state file */
5027         if (priv->state_file) {
5028                 if (!write_value_to_state_file (priv->state_file,
5029                                                 "main", rstate->key,
5030                                                 G_TYPE_BOOLEAN, (gpointer) &enabled,
5031                                                 &error)) {
5032                         _LOGW (LOGD_CORE, "writing to state file %s failed: %s",
5033                                priv->state_file,
5034                                error->message);
5035                         g_clear_error (&error);
5036                 }
5037         }
5038
5039         /* When the user toggles the radio, their request should override any
5040          * daemon (like ModemManager) enabled state that can be changed.  For WWAN
5041          * for example, we want the WwanEnabled property to reflect the daemon state
5042          * too so that users can toggle the modem powered, but we don't want that
5043          * daemon state to affect whether or not the user *can* turn it on, which is
5044          * what the kernel rfkill state does.  So we ignore daemon enabled state
5045          * when determining what the new state should be since it shouldn't block
5046          * the user's request.
5047          */
5048         old_enabled = radio_enabled_for_rstate (rstate, TRUE);
5049         rstate->user_enabled = enabled;
5050         new_enabled = radio_enabled_for_rstate (rstate, FALSE);
5051         if (new_enabled != old_enabled) {
5052                 /* Try to change the kernel rfkill state */
5053                 if (rstate->rtype == RFKILL_TYPE_WLAN || rstate->rtype == RFKILL_TYPE_WWAN)
5054                         rfkill_change (rstate->desc, rstate->rtype, new_enabled);
5055
5056                 manager_update_radio_enabled (self, rstate, new_enabled);
5057         }
5058 }
5059
5060 static gboolean
5061 periodic_update_active_connection_timestamps (gpointer user_data)
5062 {
5063         NMManager *manager = NM_MANAGER (user_data);
5064         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (manager);
5065         GSList *iter;
5066
5067         for (iter = priv->active_connections; iter; iter = g_slist_next (iter)) {
5068                 NMActiveConnection *ac = iter->data;
5069                 NMSettingsConnection *connection;
5070
5071                 if (nm_active_connection_get_state (ac) == NM_ACTIVE_CONNECTION_STATE_ACTIVATED) {
5072                         connection = nm_active_connection_get_settings_connection (ac);
5073                         nm_settings_connection_update_timestamp (connection, (guint64) time (NULL), FALSE);
5074                 }
5075         }
5076
5077         return TRUE;
5078 }
5079
5080 static void
5081 dbus_connection_changed_cb (NMBusManager *dbus_mgr,
5082                             GDBusConnection *connection,
5083                             gpointer user_data)
5084 {
5085         _set_prop_filter (NM_MANAGER (user_data), connection);
5086 }
5087
5088 /**********************************************************************/
5089
5090 NM_DEFINE_SINGLETON_REGISTER (NMManager);
5091
5092 NMManager *
5093 nm_manager_get (void)
5094 {
5095         g_return_val_if_fail (singleton_instance, NULL);
5096         return singleton_instance;
5097 }
5098
5099 NMConnectionProvider *
5100 nm_connection_provider_get (void)
5101 {
5102         NMConnectionProvider *p;
5103
5104         g_return_val_if_fail (singleton_instance, NULL);
5105
5106         p = NM_CONNECTION_PROVIDER (NM_MANAGER_GET_PRIVATE (singleton_instance)->settings);
5107         g_return_val_if_fail (p, NULL);
5108         return p;
5109 }
5110
5111 NMManager *
5112 nm_manager_setup (const char *state_file,
5113                   gboolean initial_net_enabled,
5114                   gboolean initial_wifi_enabled,
5115                   gboolean initial_wwan_enabled)
5116 {
5117         NMManager *self;
5118
5119         g_return_val_if_fail (!singleton_instance, singleton_instance);
5120
5121         self = g_object_new (NM_TYPE_MANAGER,
5122                              NM_MANAGER_NETWORKING_ENABLED, initial_net_enabled,
5123                              NM_MANAGER_WIRELESS_ENABLED, initial_wifi_enabled,
5124                              NM_MANAGER_WWAN_ENABLED, initial_wwan_enabled,
5125                              NM_MANAGER_STATE_FILE, state_file,
5126                              NULL);
5127         nm_assert (NM_IS_MANAGER (self));
5128         singleton_instance = self;
5129
5130         nm_singleton_instance_register ();
5131         _LOGD (LOGD_CORE, "setup %s singleton (%p)", "NMManager", singleton_instance);
5132
5133         nm_exported_object_export ((NMExportedObject *) self);
5134
5135         return self;
5136 }
5137
5138 static void
5139 constructed (GObject *object)
5140 {
5141         NMManager *self = NM_MANAGER (object);
5142         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
5143         NMConfigData *config_data;
5144
5145         G_OBJECT_CLASS (nm_manager_parent_class)->constructed (object);
5146
5147         _set_prop_filter (self, nm_bus_manager_get_connection (priv->dbus_mgr));
5148
5149         priv->settings = nm_settings_new ();
5150         g_signal_connect (priv->settings, "notify::" NM_SETTINGS_STARTUP_COMPLETE,
5151                           G_CALLBACK (settings_startup_complete_changed), self);
5152         g_signal_connect (priv->settings, "notify::" NM_SETTINGS_UNMANAGED_SPECS,
5153                           G_CALLBACK (system_unmanaged_devices_changed_cb), self);
5154         g_signal_connect (priv->settings, "notify::" NM_SETTINGS_HOSTNAME,
5155                           G_CALLBACK (system_hostname_changed_cb), self);
5156         g_signal_connect (priv->settings, NM_SETTINGS_SIGNAL_CONNECTION_ADDED,
5157                           G_CALLBACK (connection_changed), self);
5158         g_signal_connect (priv->settings, NM_SETTINGS_SIGNAL_CONNECTION_UPDATED_BY_USER,
5159                           G_CALLBACK (connection_changed), self);
5160         g_signal_connect (priv->settings, NM_SETTINGS_SIGNAL_CONNECTION_REMOVED,
5161                           G_CALLBACK (connection_removed), self);
5162
5163         priv->policy = nm_policy_new (self, priv->settings);
5164         g_signal_connect (priv->policy, "notify::" NM_POLICY_DEFAULT_IP4_DEVICE,
5165                           G_CALLBACK (policy_default_device_changed), self);
5166         g_signal_connect (priv->policy, "notify::" NM_POLICY_DEFAULT_IP6_DEVICE,
5167                           G_CALLBACK (policy_default_device_changed), self);
5168         g_signal_connect (priv->policy, "notify::" NM_POLICY_ACTIVATING_IP4_DEVICE,
5169                           G_CALLBACK (policy_activating_device_changed), self);
5170         g_signal_connect (priv->policy, "notify::" NM_POLICY_ACTIVATING_IP6_DEVICE,
5171                           G_CALLBACK (policy_activating_device_changed), self);
5172
5173         priv->config = g_object_ref (nm_config_get ());
5174         g_signal_connect (G_OBJECT (priv->config),
5175                           NM_CONFIG_SIGNAL_CONFIG_CHANGED,
5176                           G_CALLBACK (_config_changed_cb),
5177                           self);
5178
5179         config_data = nm_config_get_data (priv->config);
5180         priv->connectivity = nm_connectivity_new (nm_config_data_get_connectivity_uri (config_data),
5181                                                   nm_config_data_get_connectivity_interval (config_data),
5182                                                   nm_config_data_get_connectivity_response (config_data));
5183         g_signal_connect (priv->connectivity, "notify::" NM_CONNECTIVITY_STATE,
5184                           G_CALLBACK (connectivity_changed), self);
5185
5186         priv->rfkill_mgr = nm_rfkill_manager_new ();
5187         g_signal_connect (priv->rfkill_mgr,
5188                           "rfkill-changed",
5189                           G_CALLBACK (rfkill_manager_rfkill_changed_cb),
5190                           self);
5191
5192         /* Force kernel WiFi/WWAN rfkill state to follow NM saved WiFi/WWAN state
5193          * in case the BIOS doesn't save rfkill state, and to be consistent with user
5194          * changes to the WirelessEnabled/WWANEnabled properties which toggle kernel
5195          * rfkill.
5196          */
5197         rfkill_change (priv->radio_states[RFKILL_TYPE_WLAN].desc, RFKILL_TYPE_WLAN, priv->radio_states[RFKILL_TYPE_WLAN].user_enabled);
5198         rfkill_change (priv->radio_states[RFKILL_TYPE_WWAN].desc, RFKILL_TYPE_WWAN, priv->radio_states[RFKILL_TYPE_WWAN].user_enabled);
5199 }
5200
5201 static void
5202 nm_manager_init (NMManager *self)
5203 {
5204         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
5205         guint i;
5206         GFile *file;
5207
5208         /* Initialize rfkill structures and states */
5209         memset (priv->radio_states, 0, sizeof (priv->radio_states));
5210
5211         priv->radio_states[RFKILL_TYPE_WLAN].user_enabled = TRUE;
5212         priv->radio_states[RFKILL_TYPE_WLAN].key = "WirelessEnabled";
5213         priv->radio_states[RFKILL_TYPE_WLAN].prop = NM_MANAGER_WIRELESS_ENABLED;
5214         priv->radio_states[RFKILL_TYPE_WLAN].hw_prop = NM_MANAGER_WIRELESS_HARDWARE_ENABLED;
5215         priv->radio_states[RFKILL_TYPE_WLAN].desc = "WiFi";
5216         priv->radio_states[RFKILL_TYPE_WLAN].rtype = RFKILL_TYPE_WLAN;
5217
5218         priv->radio_states[RFKILL_TYPE_WWAN].user_enabled = TRUE;
5219         priv->radio_states[RFKILL_TYPE_WWAN].key = "WWANEnabled";
5220         priv->radio_states[RFKILL_TYPE_WWAN].prop = NM_MANAGER_WWAN_ENABLED;
5221         priv->radio_states[RFKILL_TYPE_WWAN].hw_prop = NM_MANAGER_WWAN_HARDWARE_ENABLED;
5222         priv->radio_states[RFKILL_TYPE_WWAN].desc = "WWAN";
5223         priv->radio_states[RFKILL_TYPE_WWAN].rtype = RFKILL_TYPE_WWAN;
5224
5225         for (i = 0; i < RFKILL_TYPE_MAX; i++)
5226                 priv->radio_states[i].hw_enabled = TRUE;
5227
5228         priv->sleeping = FALSE;
5229         priv->state = NM_STATE_DISCONNECTED;
5230         priv->startup = TRUE;
5231
5232         priv->dbus_mgr = g_object_ref (nm_bus_manager_get ());
5233         g_signal_connect (priv->dbus_mgr,
5234                           NM_BUS_MANAGER_DBUS_CONNECTION_CHANGED,
5235                           G_CALLBACK (dbus_connection_changed_cb),
5236                           self);
5237
5238         /* sleep/wake handling */
5239         priv->sleep_monitor = g_object_ref (nm_sleep_monitor_get ());
5240         g_signal_connect (priv->sleep_monitor, NM_SLEEP_MONITOR_SLEEPING,
5241                           G_CALLBACK (sleeping_cb), self);
5242         g_signal_connect (priv->sleep_monitor, NM_SLEEP_MONITOR_RESUMING,
5243                           G_CALLBACK (resuming_cb), self);
5244
5245         /* Listen for authorization changes */
5246         g_signal_connect (nm_auth_manager_get (),
5247                           NM_AUTH_MANAGER_SIGNAL_CHANGED,
5248                           G_CALLBACK (authority_changed_cb),
5249                           self);
5250
5251
5252         /* Monitor the firmware directory */
5253         if (strlen (KERNEL_FIRMWARE_DIR)) {
5254                 file = g_file_new_for_path (KERNEL_FIRMWARE_DIR "/");
5255                 priv->fw_monitor = g_file_monitor_directory (file, G_FILE_MONITOR_NONE, NULL, NULL);
5256                 g_object_unref (file);
5257         }
5258
5259         if (priv->fw_monitor) {
5260                 g_signal_connect (priv->fw_monitor, "changed",
5261                                   G_CALLBACK (firmware_dir_changed),
5262                                   self);
5263                 _LOGI (LOGD_CORE, "monitoring kernel firmware directory '%s'.",
5264                              KERNEL_FIRMWARE_DIR);
5265         } else {
5266                 _LOGW (LOGD_CORE, "failed to monitor kernel firmware directory '%s'.",
5267                        KERNEL_FIRMWARE_DIR);
5268         }
5269
5270         /* Update timestamps in active connections */
5271         priv->timestamp_update_id = g_timeout_add_seconds (300, (GSourceFunc) periodic_update_active_connection_timestamps, self);
5272
5273         priv->metered = NM_METERED_UNKNOWN;
5274 }
5275
5276 static gboolean
5277 device_is_real (GObject *device, gpointer user_data)
5278 {
5279         return nm_device_is_real (NM_DEVICE (device));
5280 }
5281
5282 static void
5283 get_property (GObject *object, guint prop_id,
5284               GValue *value, GParamSpec *pspec)
5285 {
5286         NMManager *self = NM_MANAGER (object);
5287         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
5288         NMConfigData *config_data;
5289         const NMGlobalDnsConfig *dns_config;
5290         const char *type;
5291
5292         switch (prop_id) {
5293         case PROP_VERSION:
5294                 g_value_set_string (value, VERSION);
5295                 break;
5296         case PROP_STATE:
5297                 nm_manager_update_state (self);
5298                 g_value_set_uint (value, priv->state);
5299                 break;
5300         case PROP_STARTUP:
5301                 g_value_set_boolean (value, priv->startup);
5302                 break;
5303         case PROP_NETWORKING_ENABLED:
5304                 g_value_set_boolean (value, priv->net_enabled);
5305                 break;
5306         case PROP_WIRELESS_ENABLED:
5307                 g_value_set_boolean (value, radio_enabled_for_type (self, RFKILL_TYPE_WLAN, TRUE));
5308                 break;
5309         case PROP_WIRELESS_HARDWARE_ENABLED:
5310                 g_value_set_boolean (value, priv->radio_states[RFKILL_TYPE_WLAN].hw_enabled);
5311                 break;
5312         case PROP_WWAN_ENABLED:
5313                 g_value_set_boolean (value, radio_enabled_for_type (self, RFKILL_TYPE_WWAN, TRUE));
5314                 break;
5315         case PROP_WWAN_HARDWARE_ENABLED:
5316                 g_value_set_boolean (value, priv->radio_states[RFKILL_TYPE_WWAN].hw_enabled);
5317                 break;
5318         case PROP_WIMAX_ENABLED:
5319                 g_value_set_boolean (value, FALSE);
5320                 break;
5321         case PROP_WIMAX_HARDWARE_ENABLED:
5322                 g_value_set_boolean (value, FALSE);
5323                 break;
5324         case PROP_ACTIVE_CONNECTIONS:
5325                 nm_utils_g_value_set_object_path_array (value, priv->active_connections, NULL, NULL);
5326                 break;
5327         case PROP_CONNECTIVITY:
5328                 g_value_set_uint (value, nm_connectivity_get_state (priv->connectivity));
5329                 break;
5330         case PROP_PRIMARY_CONNECTION:
5331                 nm_utils_g_value_set_object_path (value, priv->primary_connection);
5332                 break;
5333         case PROP_PRIMARY_CONNECTION_TYPE:
5334                 type = NULL;
5335                 if (priv->primary_connection) {
5336                         NMConnection *con;
5337
5338                         con = nm_active_connection_get_applied_connection (priv->primary_connection);
5339                         if (con)
5340                                 type = nm_connection_get_connection_type (con);
5341                 }
5342                 g_value_set_string (value, type ? type : "");
5343                 break;
5344         case PROP_ACTIVATING_CONNECTION:
5345                 nm_utils_g_value_set_object_path (value, priv->activating_connection);
5346                 break;
5347         case PROP_HOSTNAME:
5348                 g_value_set_string (value, priv->hostname);
5349                 break;
5350         case PROP_SLEEPING:
5351                 g_value_set_boolean (value, priv->sleeping);
5352                 break;
5353         case PROP_DEVICES:
5354                 nm_utils_g_value_set_object_path_array (value, priv->devices, device_is_real, NULL);
5355                 break;
5356         case PROP_METERED:
5357                 g_value_set_uint (value, priv->metered);
5358                 break;
5359         case PROP_GLOBAL_DNS_CONFIGURATION:
5360                 config_data = nm_config_get_data (priv->config);
5361                 dns_config = nm_config_data_get_global_dns_config (config_data);
5362                 nm_global_dns_config_to_dbus (dns_config, value);
5363                 break;
5364         case PROP_ALL_DEVICES:
5365                 nm_utils_g_value_set_object_path_array (value, priv->devices, NULL, NULL);
5366                 break;
5367         default:
5368                 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
5369                 break;
5370         }
5371 }
5372
5373 static void
5374 set_property (GObject *object, guint prop_id,
5375               const GValue *value, GParamSpec *pspec)
5376 {
5377         NMManager *self = NM_MANAGER (object);
5378         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
5379         NMGlobalDnsConfig *dns_config;
5380         GError *error = NULL;
5381
5382         switch (prop_id) {
5383         case PROP_STATE_FILE:
5384                 /* construct-only */
5385                 priv->state_file = g_value_dup_string (value);
5386                 break;
5387         case PROP_NETWORKING_ENABLED:
5388                 /* construct-only */
5389                 priv->net_enabled = g_value_get_boolean (value);
5390                 break;
5391         case PROP_WIRELESS_ENABLED:
5392                 if (!priv->rfkill_mgr) {
5393                         /* called during object construction. */
5394                         priv->radio_states[RFKILL_TYPE_WLAN].user_enabled = g_value_get_boolean (value);
5395                 } else {
5396                         manager_radio_user_toggled (NM_MANAGER (object),
5397                                                     &priv->radio_states[RFKILL_TYPE_WLAN],
5398                                                     g_value_get_boolean (value));
5399                 }
5400                 break;
5401         case PROP_WWAN_ENABLED:
5402                 if (!priv->rfkill_mgr) {
5403                         /* called during object construction. */
5404                         priv->radio_states[RFKILL_TYPE_WWAN].user_enabled = g_value_get_boolean (value);
5405                 } else {
5406                         manager_radio_user_toggled (NM_MANAGER (object),
5407                                                     &priv->radio_states[RFKILL_TYPE_WWAN],
5408                                                     g_value_get_boolean (value));
5409                 }
5410                 break;
5411         case PROP_WIMAX_ENABLED:
5412                 /* WIMAX is depreacted. This does nothing. */
5413                 break;
5414         case PROP_GLOBAL_DNS_CONFIGURATION:
5415                 dns_config = nm_global_dns_config_from_dbus (value, &error);
5416                 if (!error)
5417                         nm_config_set_global_dns (priv->config, dns_config, &error);
5418
5419                 nm_global_dns_config_free (dns_config);
5420
5421                 if (error) {
5422                         _LOGD (LOGD_CORE, "set global DNS failed with error: %s", error->message);
5423                         g_error_free (error);
5424                 }
5425                 break;
5426         default:
5427                 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
5428                 break;
5429         }
5430 }
5431
5432 static void
5433 _deinit_device_factory (NMDeviceFactory *factory, gpointer user_data)
5434 {
5435         g_signal_handlers_disconnect_matched (factory, G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, NM_MANAGER (user_data));
5436 }
5437
5438 static void
5439 dispose (GObject *object)
5440 {
5441         NMManager *manager = NM_MANAGER (object);
5442         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (manager);
5443
5444         g_slist_free_full (priv->auth_chains, (GDestroyNotify) nm_auth_chain_unref);
5445         priv->auth_chains = NULL;
5446
5447         g_signal_handlers_disconnect_by_func (nm_auth_manager_get (),
5448                                               G_CALLBACK (authority_changed_cb),
5449                                               manager);
5450
5451         g_assert (priv->devices == NULL);
5452
5453         nm_clear_g_source (&priv->ac_cleanup_id);
5454
5455         while (priv->active_connections)
5456                 active_connection_remove (manager, NM_ACTIVE_CONNECTION (priv->active_connections->data));
5457         g_clear_pointer (&priv->active_connections, g_slist_free);
5458         g_clear_object (&priv->primary_connection);
5459         g_clear_object (&priv->activating_connection);
5460
5461         if (priv->config) {
5462                 g_signal_handlers_disconnect_by_func (priv->config, _config_changed_cb, manager);
5463                 g_clear_object (&priv->config);
5464         }
5465         if (priv->connectivity) {
5466                 g_signal_handlers_disconnect_by_func (priv->connectivity, connectivity_changed, manager);
5467                 g_clear_object (&priv->connectivity);
5468         }
5469
5470         g_free (priv->hostname);
5471
5472         if (priv->policy) {
5473                 g_signal_handlers_disconnect_by_func (priv->policy, policy_default_device_changed, manager);
5474                 g_signal_handlers_disconnect_by_func (priv->policy, policy_activating_device_changed, manager);
5475                 g_clear_object (&priv->policy);
5476         }
5477
5478         if (priv->settings) {
5479                 g_signal_handlers_disconnect_by_func (priv->settings, settings_startup_complete_changed, manager);
5480                 g_signal_handlers_disconnect_by_func (priv->settings, system_unmanaged_devices_changed_cb, manager);
5481                 g_signal_handlers_disconnect_by_func (priv->settings, system_hostname_changed_cb, manager);
5482                 g_signal_handlers_disconnect_by_func (priv->settings, connection_changed, manager);
5483                 g_signal_handlers_disconnect_by_func (priv->settings, connection_removed, manager);
5484                 g_clear_object (&priv->settings);
5485         }
5486
5487         g_clear_pointer (&priv->state_file, g_free);
5488         g_clear_object (&priv->vpn_manager);
5489
5490         /* Unregister property filter */
5491         if (priv->dbus_mgr) {
5492                 g_signal_handlers_disconnect_by_func (priv->dbus_mgr, dbus_connection_changed_cb, manager);
5493                 g_clear_object (&priv->dbus_mgr);
5494         }
5495         _set_prop_filter (manager, NULL);
5496
5497         if (priv->sleep_monitor) {
5498                 g_signal_handlers_disconnect_by_func (priv->sleep_monitor, sleeping_cb, manager);
5499                 g_signal_handlers_disconnect_by_func (priv->sleep_monitor, resuming_cb, manager);
5500                 g_clear_object (&priv->sleep_monitor);
5501         }
5502
5503         if (priv->fw_monitor) {
5504                 g_signal_handlers_disconnect_by_func (priv->fw_monitor, firmware_dir_changed, manager);
5505
5506                 nm_clear_g_source (&priv->fw_changed_id);
5507
5508                 g_file_monitor_cancel (priv->fw_monitor);
5509                 g_clear_object (&priv->fw_monitor);
5510         }
5511
5512         if (priv->rfkill_mgr) {
5513                 g_signal_handlers_disconnect_by_func (priv->rfkill_mgr, rfkill_manager_rfkill_changed_cb, manager);
5514                 g_clear_object (&priv->rfkill_mgr);
5515         }
5516
5517         nm_device_factory_manager_for_each_factory (_deinit_device_factory, manager);
5518
5519         nm_clear_g_source (&priv->timestamp_update_id);
5520
5521         G_OBJECT_CLASS (nm_manager_parent_class)->dispose (object);
5522 }
5523
5524 static void
5525 nm_manager_class_init (NMManagerClass *manager_class)
5526 {
5527         GObjectClass *object_class = G_OBJECT_CLASS (manager_class);
5528         NMExportedObjectClass *exported_object_class = NM_EXPORTED_OBJECT_CLASS (manager_class);
5529
5530         g_type_class_add_private (manager_class, sizeof (NMManagerPrivate));
5531
5532         exported_object_class->export_path = NM_DBUS_PATH;
5533
5534         /* virtual methods */
5535         object_class->constructed = constructed;
5536         object_class->set_property = set_property;
5537         object_class->get_property = get_property;
5538         object_class->dispose = dispose;
5539
5540         /* properties */
5541         g_object_class_install_property
5542                 (object_class, PROP_VERSION,
5543                  g_param_spec_string (NM_MANAGER_VERSION, "", "",
5544                                       NULL,
5545                                       G_PARAM_READABLE |
5546                                       G_PARAM_STATIC_STRINGS));
5547
5548         g_object_class_install_property (object_class,
5549                                          PROP_STATE_FILE,
5550                                          g_param_spec_string (NM_MANAGER_STATE_FILE, "", "",
5551                                                               NULL,
5552                                                               G_PARAM_WRITABLE |
5553                                                               G_PARAM_CONSTRUCT_ONLY |
5554                                                               G_PARAM_STATIC_STRINGS));
5555
5556         g_object_class_install_property
5557                 (object_class, PROP_STATE,
5558                  g_param_spec_uint (NM_MANAGER_STATE, "", "",
5559                                     0, NM_STATE_DISCONNECTED, 0,
5560                                     G_PARAM_READABLE |
5561                                     G_PARAM_STATIC_STRINGS));
5562
5563         g_object_class_install_property
5564                 (object_class, PROP_STARTUP,
5565                  g_param_spec_boolean (NM_MANAGER_STARTUP, "", "",
5566                                        TRUE,
5567                                        G_PARAM_READABLE |
5568                                        G_PARAM_STATIC_STRINGS));
5569
5570         g_object_class_install_property
5571                 (object_class, PROP_NETWORKING_ENABLED,
5572                  g_param_spec_boolean (NM_MANAGER_NETWORKING_ENABLED, "", "",
5573                                        TRUE,
5574                                        G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY |
5575                                        G_PARAM_STATIC_STRINGS));
5576
5577         g_object_class_install_property
5578                 (object_class, PROP_WIRELESS_ENABLED,
5579                  g_param_spec_boolean (NM_MANAGER_WIRELESS_ENABLED, "", "",
5580                                        TRUE,
5581                                        G_PARAM_READWRITE |
5582                                        G_PARAM_CONSTRUCT |
5583                                        G_PARAM_STATIC_STRINGS));
5584
5585         g_object_class_install_property
5586                 (object_class, PROP_WIRELESS_HARDWARE_ENABLED,
5587                  g_param_spec_boolean (NM_MANAGER_WIRELESS_HARDWARE_ENABLED, "", "",
5588                                        TRUE,
5589                                        G_PARAM_READABLE |
5590                                        G_PARAM_STATIC_STRINGS));
5591
5592         g_object_class_install_property
5593                 (object_class, PROP_WWAN_ENABLED,
5594                  g_param_spec_boolean (NM_MANAGER_WWAN_ENABLED, "", "",
5595                                        TRUE,
5596                                        G_PARAM_READWRITE |
5597                                        G_PARAM_CONSTRUCT |
5598                                        G_PARAM_STATIC_STRINGS));
5599
5600         g_object_class_install_property
5601                 (object_class, PROP_WWAN_HARDWARE_ENABLED,
5602                  g_param_spec_boolean (NM_MANAGER_WWAN_HARDWARE_ENABLED, "", "",
5603                                        TRUE,
5604                                        G_PARAM_READABLE |
5605                                        G_PARAM_STATIC_STRINGS));
5606
5607         g_object_class_install_property
5608                 (object_class, PROP_WIMAX_ENABLED,
5609                  g_param_spec_boolean (NM_MANAGER_WIMAX_ENABLED, "", "",
5610                                        TRUE,
5611                                        G_PARAM_READWRITE |
5612                                        G_PARAM_STATIC_STRINGS));
5613
5614         g_object_class_install_property
5615                 (object_class, PROP_WIMAX_HARDWARE_ENABLED,
5616                  g_param_spec_boolean (NM_MANAGER_WIMAX_HARDWARE_ENABLED, "", "",
5617                                        TRUE,
5618                                        G_PARAM_READABLE |
5619                                        G_PARAM_STATIC_STRINGS));
5620
5621         g_object_class_install_property
5622                 (object_class, PROP_ACTIVE_CONNECTIONS,
5623                  g_param_spec_boxed (NM_MANAGER_ACTIVE_CONNECTIONS, "", "",
5624                                      G_TYPE_STRV,
5625                                      G_PARAM_READABLE |
5626                                      G_PARAM_STATIC_STRINGS));
5627
5628         g_object_class_install_property
5629                 (object_class, PROP_CONNECTIVITY,
5630                  g_param_spec_uint (NM_MANAGER_CONNECTIVITY, "", "",
5631                                     NM_CONNECTIVITY_UNKNOWN, NM_CONNECTIVITY_FULL, NM_CONNECTIVITY_UNKNOWN,
5632                                     G_PARAM_READABLE |
5633                                     G_PARAM_STATIC_STRINGS));
5634
5635         g_object_class_install_property
5636                 (object_class, PROP_PRIMARY_CONNECTION,
5637                  g_param_spec_string (NM_MANAGER_PRIMARY_CONNECTION, "", "",
5638                                       NULL,
5639                                       G_PARAM_READABLE |
5640                                       G_PARAM_STATIC_STRINGS));
5641
5642         g_object_class_install_property
5643                 (object_class, PROP_PRIMARY_CONNECTION_TYPE,
5644                  g_param_spec_string (NM_MANAGER_PRIMARY_CONNECTION_TYPE, "", "",
5645                                       NULL,
5646                                       G_PARAM_READABLE |
5647                                       G_PARAM_STATIC_STRINGS));
5648
5649
5650         g_object_class_install_property
5651                 (object_class, PROP_ACTIVATING_CONNECTION,
5652                  g_param_spec_string (NM_MANAGER_ACTIVATING_CONNECTION, "", "",
5653                                       NULL,
5654                                       G_PARAM_READABLE |
5655                                       G_PARAM_STATIC_STRINGS));
5656
5657         /* Hostname is not exported over D-Bus */
5658         g_object_class_install_property
5659                 (object_class, PROP_HOSTNAME,
5660                  g_param_spec_string (NM_MANAGER_HOSTNAME, "", "",
5661                                       NULL,
5662                                       G_PARAM_READABLE |
5663                                       G_PARAM_STATIC_STRINGS));
5664
5665         /* Sleeping is not exported over D-Bus */
5666         g_object_class_install_property
5667                 (object_class, PROP_SLEEPING,
5668                  g_param_spec_boolean (NM_MANAGER_SLEEPING, "", "",
5669                                        FALSE,
5670                                        G_PARAM_READABLE |
5671                                        G_PARAM_STATIC_STRINGS));
5672
5673         g_object_class_install_property
5674                 (object_class, PROP_DEVICES,
5675                  g_param_spec_boxed (NM_MANAGER_DEVICES, "", "",
5676                                      G_TYPE_STRV,
5677                                      G_PARAM_READABLE |
5678                                      G_PARAM_STATIC_STRINGS));
5679
5680         /**
5681          * NMManager:metered:
5682          *
5683          * Whether the connectivity is metered.
5684          *
5685          * Since: 1.2
5686          **/
5687         g_object_class_install_property
5688                 (object_class, PROP_METERED,
5689                  g_param_spec_uint (NM_MANAGER_METERED, "", "",
5690                                     0, G_MAXUINT32, NM_METERED_UNKNOWN,
5691                                     G_PARAM_READABLE |
5692                                     G_PARAM_STATIC_STRINGS));
5693
5694         /**
5695          * NMManager:global-dns-configuration:
5696          *
5697          * The global DNS configuration.
5698          *
5699          * Since: 1.2
5700          **/
5701         g_object_class_install_property
5702                 (object_class, PROP_GLOBAL_DNS_CONFIGURATION,
5703                  g_param_spec_variant (NM_MANAGER_GLOBAL_DNS_CONFIGURATION, "", "",
5704                                        G_VARIANT_TYPE ("a{sv}"),
5705                                        NULL,
5706                                        G_PARAM_READWRITE |
5707                                        G_PARAM_STATIC_STRINGS));
5708
5709         /**
5710          * NMManager:all-devices:
5711          *
5712          * All devices, including those that are not realized.
5713          *
5714          * Since: 1.2
5715          **/
5716         g_object_class_install_property
5717                 (object_class, PROP_ALL_DEVICES,
5718                  g_param_spec_boxed (NM_MANAGER_ALL_DEVICES, "", "",
5719                                      G_TYPE_STRV,
5720                                      G_PARAM_READABLE |
5721                                      G_PARAM_STATIC_STRINGS));
5722
5723         /* signals */
5724
5725         /* D-Bus exported; emitted only for realized devices */
5726         signals[DEVICE_ADDED] =
5727                 g_signal_new ("device-added",
5728                               G_OBJECT_CLASS_TYPE (object_class),
5729                               G_SIGNAL_RUN_FIRST,
5730                               G_STRUCT_OFFSET (NMManagerClass, device_added),
5731                               NULL, NULL, NULL,
5732                               G_TYPE_NONE, 1, NM_TYPE_DEVICE);
5733
5734         /* Emitted for both realized devices and placeholder devices */
5735         signals[INTERNAL_DEVICE_ADDED] =
5736                 g_signal_new ("internal-device-added",
5737                               G_OBJECT_CLASS_TYPE (object_class),
5738                               G_SIGNAL_RUN_FIRST, 0,
5739                               NULL, NULL, NULL,
5740                               G_TYPE_NONE, 1, G_TYPE_OBJECT);
5741
5742         /* D-Bus exported; emitted only for realized devices */
5743         signals[DEVICE_REMOVED] =
5744                 g_signal_new ("device-removed",
5745                               G_OBJECT_CLASS_TYPE (object_class),
5746                               G_SIGNAL_RUN_FIRST,
5747                               G_STRUCT_OFFSET (NMManagerClass, device_removed),
5748                               NULL, NULL, NULL,
5749                               G_TYPE_NONE, 1, NM_TYPE_DEVICE);
5750
5751         /* Emitted for both realized devices and placeholder devices */
5752         signals[INTERNAL_DEVICE_REMOVED] =
5753                 g_signal_new ("internal-device-removed",
5754                               G_OBJECT_CLASS_TYPE (object_class),
5755                               G_SIGNAL_RUN_FIRST, 0,
5756                               NULL, NULL, NULL,
5757                               G_TYPE_NONE, 1, G_TYPE_OBJECT);
5758
5759         signals[STATE_CHANGED] =
5760                 g_signal_new (NM_MANAGER_STATE_CHANGED,
5761                               G_OBJECT_CLASS_TYPE (object_class),
5762                               G_SIGNAL_RUN_FIRST,
5763                               G_STRUCT_OFFSET (NMManagerClass, state_changed),
5764                               NULL, NULL, NULL,
5765                               G_TYPE_NONE, 1, G_TYPE_UINT);
5766
5767         signals[CHECK_PERMISSIONS] =
5768                 g_signal_new ("check-permissions",
5769                               G_OBJECT_CLASS_TYPE (object_class),
5770                               G_SIGNAL_RUN_FIRST,
5771                               0, NULL, NULL, NULL,
5772                               G_TYPE_NONE, 0);
5773
5774         signals[USER_PERMISSIONS_CHANGED] =
5775                 g_signal_new ("user-permissions-changed",
5776                               G_OBJECT_CLASS_TYPE (object_class),
5777                               G_SIGNAL_RUN_FIRST,
5778                               0, NULL, NULL, NULL,
5779                               G_TYPE_NONE, 0);
5780
5781         signals[ACTIVE_CONNECTION_ADDED] =
5782                 g_signal_new (NM_MANAGER_ACTIVE_CONNECTION_ADDED,
5783                               G_OBJECT_CLASS_TYPE (object_class),
5784                               G_SIGNAL_RUN_FIRST,
5785                               0, NULL, NULL, NULL,
5786                               G_TYPE_NONE, 1, NM_TYPE_ACTIVE_CONNECTION);
5787
5788         signals[ACTIVE_CONNECTION_REMOVED] =
5789                 g_signal_new (NM_MANAGER_ACTIVE_CONNECTION_REMOVED,
5790                               G_OBJECT_CLASS_TYPE (object_class),
5791                               G_SIGNAL_RUN_FIRST,
5792                               0, NULL, NULL, NULL,
5793                               G_TYPE_NONE, 1, NM_TYPE_ACTIVE_CONNECTION);
5794
5795         signals[CONFIGURE_QUIT] =
5796                 g_signal_new (NM_MANAGER_CONFIGURE_QUIT,
5797                               G_OBJECT_CLASS_TYPE (object_class),
5798                               G_SIGNAL_RUN_FIRST,
5799                               0, NULL, NULL, NULL,
5800                               G_TYPE_NONE, 0);
5801
5802         nm_exported_object_class_add_interface (NM_EXPORTED_OBJECT_CLASS (manager_class),
5803                                                 NMDBUS_TYPE_MANAGER_SKELETON,
5804                                                 "GetDevices", impl_manager_get_devices,
5805                                                 "GetAllDevices", impl_manager_get_all_devices,
5806                                                 "GetDeviceByIpIface", impl_manager_get_device_by_ip_iface,
5807                                                 "ActivateConnection", impl_manager_activate_connection,
5808                                                 "AddAndActivateConnection", impl_manager_add_and_activate_connection,
5809                                                 "DeactivateConnection", impl_manager_deactivate_connection,
5810                                                 "Sleep", impl_manager_sleep,
5811                                                 "Enable", impl_manager_enable,
5812                                                 "GetPermissions", impl_manager_get_permissions,
5813                                                 "SetLogging", impl_manager_set_logging,
5814                                                 "GetLogging", impl_manager_get_logging,
5815                                                 "CheckConnectivity", impl_manager_check_connectivity,
5816                                                 "state", impl_manager_get_state,
5817                                                 NULL);
5818 }
5819