8b978647b2c82310f72f36ff85dc6d3a66295a08
[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 a valid master for '%s'",
2393                                      nm_device_get_iface (master_device),
2394                                      nm_connection_get_id (connection));
2395                         return FALSE;
2396                 }
2397         } else {
2398                 /* Try master as a connection UUID */
2399                 master_connection = nm_settings_get_connection_by_uuid (priv->settings, master);
2400                 if (master_connection) {
2401                         /* Check if the master connection is activated on some device already */
2402                         for (iter = priv->devices; iter; iter = g_slist_next (iter)) {
2403                                 NMDevice *candidate = NM_DEVICE (iter->data);
2404
2405                                 if (candidate == device)
2406                                         continue;
2407
2408                                 if (nm_device_get_settings_connection (candidate) == master_connection) {
2409                                         master_device = candidate;
2410                                         break;
2411                                 }
2412                         }
2413                 }
2414         }
2415
2416         if (out_master_connection)
2417                 *out_master_connection = master_connection;
2418         if (out_master_device)
2419                 *out_master_device = master_device;
2420         if (out_master_ac && master_connection)
2421                 *out_master_ac = find_ac_for_connection (self, NM_CONNECTION (master_connection));
2422
2423         if (master_device || master_connection)
2424                 return TRUE;
2425         else {
2426                 g_set_error_literal (error, NM_MANAGER_ERROR, NM_MANAGER_ERROR_UNKNOWN_DEVICE,
2427                                      "Master connection not found or invalid");
2428                 return FALSE;
2429         }
2430 }
2431
2432 /**
2433  * ensure_master_active_connection:
2434  * @self: the #NMManager
2435  * @subject: the #NMAuthSubject representing the requestor of this activation
2436  * @connection: the connection that should depend on @master_connection
2437  * @device: the #NMDevice, if any, which will activate @connection
2438  * @master_connection: the master connection, or %NULL
2439  * @master_device: the master device, or %NULL
2440  * @error: the error, if an error occurred
2441  *
2442  * Determines whether a given #NMConnection depends on another connection to
2443  * be activated, and if so, finds that master connection or creates it.
2444  *
2445  * If @master_device and @master_connection are both set then @master_connection
2446  * MUST already be activated or activating on @master_device, and the function will
2447  * return the existing #NMActiveConnection.
2448  *
2449  * If only @master_device is set, and it has an #NMActiveConnection, then the
2450  * function will return it if it is a compatible master, or an error if not. If it
2451  * doesn't have an AC, then the function will create one if a compatible master
2452  * connection exists, or return an error if not.
2453  *
2454  * If only @master_connection is set, then this will try to find or create a compatible
2455  * #NMDevice, and either activate @master_connection on that device or return an error.
2456  *
2457  * Returns: the master #NMActiveConnection that the caller should depend on, or
2458  * %NULL if an error occurred
2459  */
2460 static NMActiveConnection *
2461 ensure_master_active_connection (NMManager *self,
2462                                  NMAuthSubject *subject,
2463                                  NMConnection *connection,
2464                                  NMDevice *device,
2465                                  NMSettingsConnection *master_connection,
2466                                  NMDevice *master_device,
2467                                  GError **error)
2468 {
2469         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
2470         NMActiveConnection *master_ac = NULL;
2471         NMDeviceState master_state;
2472         GSList *iter;
2473
2474         g_assert (connection);
2475         g_assert (master_connection || master_device);
2476
2477         /* If the master device isn't activated then we need to activate it using
2478          * compatible connection.  If it's already activating we can just proceed.
2479          */
2480         if (master_device) {
2481                 NMSettingsConnection *device_connection = nm_device_get_settings_connection (master_device);
2482
2483                 /* If we're passed a connection and a device, we require that connection
2484                  * be already activated on the device, eg returned from find_master().
2485                  */
2486                 g_assert (!master_connection || master_connection == device_connection);
2487                 if (device_connection && !is_compatible_with_slave (NM_CONNECTION (device_connection), connection)) {
2488                         g_set_error (error, NM_MANAGER_ERROR, NM_MANAGER_ERROR_DEPENDENCY_FAILED,
2489                                      "The active connection on %s is not a valid master for '%s'",
2490                                      nm_device_get_iface (master_device),
2491                                      nm_connection_get_id (connection));
2492                         return NULL;
2493                 }
2494
2495                 master_state = nm_device_get_state (master_device);
2496                 if (   (master_state == NM_DEVICE_STATE_ACTIVATED)
2497                     || nm_device_is_activating (master_device)) {
2498                         /* Device already using master_connection */
2499                         g_assert (device_connection);
2500                         return NM_ACTIVE_CONNECTION (nm_device_get_act_request (master_device));
2501                 }
2502
2503                 /* If the device is disconnected, find a compatible connection and
2504                  * activate it on the device.
2505                  */
2506                 if (master_state == NM_DEVICE_STATE_DISCONNECTED || !nm_device_is_real (master_device)) {
2507                         GSList *connections;
2508
2509                         g_assert (master_connection == NULL);
2510
2511                         /* Find a compatible connection and activate this device using it */
2512                         connections = nm_manager_get_activatable_connections (self);
2513                         for (iter = connections; iter; iter = g_slist_next (iter)) {
2514                                 NMSettingsConnection *candidate = NM_SETTINGS_CONNECTION (iter->data);
2515
2516                                 /* Ensure eg bond/team slave and the candidate master is a
2517                                  * bond/team master
2518                                  */
2519                                 if (!is_compatible_with_slave (NM_CONNECTION (candidate), connection))
2520                                         continue;
2521
2522                                 if (nm_device_check_connection_available (master_device, NM_CONNECTION (candidate), NM_DEVICE_CHECK_CON_AVAILABLE_FOR_USER_REQUEST, NULL)) {
2523                                         master_ac = nm_manager_activate_connection (self,
2524                                                                                     candidate,
2525                                                                                     NULL,
2526                                                                                     master_device,
2527                                                                                     subject,
2528                                                                                     error);
2529                                         if (!master_ac)
2530                                                 g_prefix_error (error, "%s", "Master device activation failed: ");
2531                                         g_slist_free (connections);
2532                                         return master_ac;
2533                                 }
2534                         }
2535                         g_slist_free (connections);
2536
2537                         g_set_error (error,
2538                                      NM_MANAGER_ERROR,
2539                                      NM_MANAGER_ERROR_UNKNOWN_CONNECTION,
2540                                      "No compatible connection found for master device %s.",
2541                                      nm_device_get_iface (master_device));
2542                         return NULL;
2543                 }
2544
2545                 /* Otherwise, the device is unmanaged, unavailable, or disconnecting */
2546                 g_set_error (error,
2547                              NM_MANAGER_ERROR,
2548                              NM_MANAGER_ERROR_DEPENDENCY_FAILED,
2549                              "Master device %s unmanaged or not available for activation",
2550                              nm_device_get_iface (master_device));
2551         } else if (master_connection) {
2552                 gboolean found_device = FALSE;
2553
2554                 /* Find a compatible device and activate it using this connection */
2555                 for (iter = priv->devices; iter; iter = g_slist_next (iter)) {
2556                         NMDevice *candidate = NM_DEVICE (iter->data);
2557
2558                         if (candidate == device) {
2559                                 /* A device obviously can't be its own master */
2560                                 continue;
2561                         }
2562
2563                         if (!nm_device_check_connection_available (candidate, NM_CONNECTION (master_connection), NM_DEVICE_CHECK_CON_AVAILABLE_FOR_USER_REQUEST, NULL))
2564                                 continue;
2565
2566                         found_device = TRUE;
2567                         if (!nm_device_is_software (candidate)) {
2568                                 master_state = nm_device_get_state (candidate);
2569                                 if (nm_device_is_real (candidate) && master_state != NM_DEVICE_STATE_DISCONNECTED)
2570                                         continue;
2571                         }
2572
2573                         master_ac = nm_manager_activate_connection (self,
2574                                                                     master_connection,
2575                                                                     NULL,
2576                                                                     candidate,
2577                                                                     subject,
2578                                                                     error);
2579                         if (!master_ac)
2580                                 g_prefix_error (error, "%s", "Master device activation failed: ");
2581                         return master_ac;
2582                 }
2583
2584                 g_set_error (error,
2585                              NM_MANAGER_ERROR,
2586                              NM_MANAGER_ERROR_UNKNOWN_DEVICE,
2587                              "No compatible disconnected device found for master connection %s.",
2588                              nm_settings_connection_get_uuid (master_connection));
2589         } else
2590                 g_assert_not_reached ();
2591
2592         return NULL;
2593 }
2594
2595 /**
2596  * find_slaves:
2597  * @manager: #NMManager object
2598  * @connection: the master #NMSettingsConnection to find slave connections for
2599  * @device: the master #NMDevice for the @connection
2600  *
2601  * Given an #NMSettingsConnection, attempts to find its slaves. If @connection is not
2602  * master, or has not any slaves, this will return %NULL.
2603  *
2604  * Returns: list of slave connections for given master @connection, or %NULL
2605  **/
2606 static GSList *
2607 find_slaves (NMManager *manager,
2608              NMSettingsConnection *connection,
2609              NMDevice *device)
2610 {
2611         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (manager);
2612         GSList *all_connections, *iter;
2613         GSList *slaves = NULL;
2614         NMSettingConnection *s_con;
2615         const char *master;
2616
2617         s_con = nm_connection_get_setting_connection (NM_CONNECTION (connection));
2618         g_assert (s_con);
2619         master = nm_setting_connection_get_master (s_con);
2620
2621         if (master != NULL)
2622                 return NULL;  /* connection is not master */
2623
2624         /* Search through all connections, not only inactive ones, because
2625          * even if a slave was already active, it might be deactivated during
2626          * master reactivation.
2627          */
2628         all_connections = nm_settings_get_connections (priv->settings);
2629         for (iter = all_connections; iter; iter = iter->next) {
2630                 NMSettingsConnection *master_connection = NULL;
2631                 NMDevice *master_device = NULL;
2632                 NMConnection *candidate = iter->data;
2633
2634                 find_master (manager, candidate, NULL, &master_connection, &master_device, NULL, NULL);
2635                 if (   (master_connection && master_connection == connection)
2636                     || (master_device && master_device == device)) {
2637                         slaves = g_slist_prepend (slaves, candidate);
2638                 }
2639         }
2640         g_slist_free (all_connections);
2641
2642         return g_slist_reverse (slaves);
2643 }
2644
2645 static gboolean
2646 should_connect_slaves (NMConnection *connection, NMDevice *device)
2647 {
2648         NMSettingConnection *s_con;
2649         NMSettingConnectionAutoconnectSlaves autoconnect_slaves;
2650         gs_free char *value = NULL;
2651
2652         s_con = nm_connection_get_setting_connection (connection);
2653         g_assert (s_con);
2654
2655         /* Check autoconnect-slaves property */
2656         autoconnect_slaves = nm_setting_connection_get_autoconnect_slaves (s_con);
2657         if (autoconnect_slaves != NM_SETTING_CONNECTION_AUTOCONNECT_SLAVES_DEFAULT)
2658                 goto out;
2659
2660         /* Check configuration default for autoconnect-slaves property */
2661         value = nm_config_data_get_connection_default (NM_CONFIG_GET_DATA,
2662                                                        "connection.autoconnect-slaves", device);
2663         if (value)
2664                 autoconnect_slaves = _nm_utils_ascii_str_to_int64 (value, 10, 0, 1, -1);
2665
2666 out:
2667         if (autoconnect_slaves == NM_SETTING_CONNECTION_AUTOCONNECT_SLAVES_NO)
2668                 return FALSE;
2669         if (autoconnect_slaves == NM_SETTING_CONNECTION_AUTOCONNECT_SLAVES_YES)
2670                 return TRUE;
2671         return FALSE;
2672 }
2673
2674 static gboolean
2675 autoconnect_slaves (NMManager *self,
2676                     NMSettingsConnection *master_connection,
2677                     NMDevice *master_device,
2678                     NMAuthSubject *subject)
2679 {
2680         GError *local_err = NULL;
2681         gboolean ret = FALSE;
2682
2683         if (should_connect_slaves (NM_CONNECTION (master_connection), master_device)) {
2684                 GSList *slaves, *iter;
2685
2686                 iter = slaves = find_slaves (self, master_connection, master_device);
2687                 ret = slaves != NULL;
2688
2689                 while (iter) {
2690                         NMSettingsConnection *slave_connection = iter->data;
2691
2692                         iter = iter->next;
2693                         _LOGD (LOGD_CORE, "will activate slave connection '%s' (%s) as a dependency for master '%s' (%s)",
2694                                nm_settings_connection_get_id (slave_connection),
2695                                nm_settings_connection_get_uuid (slave_connection),
2696                                nm_settings_connection_get_id (master_connection),
2697                                nm_settings_connection_get_uuid (master_connection));
2698
2699                         /* Schedule slave activation */
2700                         nm_manager_activate_connection (self,
2701                                                         slave_connection,
2702                                                         NULL,
2703                                                         nm_manager_get_best_device_for_connection (self, NM_CONNECTION (slave_connection), FALSE),
2704                                                         subject,
2705                                                         &local_err);
2706                         if (local_err) {
2707                                 _LOGW (LOGD_CORE, "Slave connection activation failed: %s", local_err->message);
2708                                 g_error_free (local_err);
2709                         }
2710                 }
2711                 g_slist_free (slaves);
2712         }
2713         return ret;
2714 }
2715
2716 static gboolean
2717 _internal_activate_vpn (NMManager *self, NMActiveConnection *active, GError **error)
2718 {
2719         g_assert (NM_IS_VPN_CONNECTION (active));
2720
2721         nm_exported_object_export (NM_EXPORTED_OBJECT (active));
2722         return nm_vpn_manager_activate_connection (NM_MANAGER_GET_PRIVATE (self)->vpn_manager,
2723                                                    NM_VPN_CONNECTION (active),
2724                                                    error);
2725 }
2726
2727 /* Traverse the device to disconnected state. This means that the device is ready
2728  * for connection and will proceed activating if there's an activation request
2729  * enqueued.
2730  */
2731 static void
2732 unmanaged_to_disconnected (NMDevice *device)
2733 {
2734         /* when creating the software device, it can happen that the device is
2735          * still unmanaged by NM_UNMANAGED_PLATFORM_INIT because we didn't yet
2736          * get the udev event. At this point, we can no longer delay the activation
2737          * and force the device to be managed. */
2738         nm_device_set_unmanaged_by_flags (device, NM_UNMANAGED_PLATFORM_INIT, FALSE, NM_DEVICE_STATE_REASON_USER_REQUESTED);
2739
2740         nm_device_set_unmanaged_by_flags (device, NM_UNMANAGED_USER_EXPLICIT, FALSE, NM_DEVICE_STATE_REASON_USER_REQUESTED);
2741
2742         g_return_if_fail (nm_device_get_managed (device, FALSE));
2743
2744         if (nm_device_get_state (device) == NM_DEVICE_STATE_UNMANAGED) {
2745                 nm_device_state_changed (device,
2746                                          NM_DEVICE_STATE_UNAVAILABLE,
2747                                          NM_DEVICE_STATE_REASON_USER_REQUESTED);
2748         }
2749
2750         if (   nm_device_is_available (device, NM_DEVICE_CHECK_DEV_AVAILABLE_FOR_USER_REQUEST)
2751             && (nm_device_get_state (device) == NM_DEVICE_STATE_UNAVAILABLE)) {
2752                 nm_device_state_changed (device,
2753                                          NM_DEVICE_STATE_DISCONNECTED,
2754                                          NM_DEVICE_STATE_REASON_USER_REQUESTED);
2755         }
2756 }
2757
2758 /* The parent connection is ready; we can proceed realizing the device and
2759  * progressing the device to disconencted state.
2760  */
2761 static void
2762 active_connection_parent_active (NMActiveConnection *active,
2763                                  NMActiveConnection *parent_ac,
2764                                  NMManager *self)
2765 {
2766         NMDevice *device = nm_active_connection_get_device (active);
2767         GError *error = NULL;
2768
2769         g_signal_handlers_disconnect_by_func (active,
2770                                               (GCallback) active_connection_parent_active,
2771                                               self);
2772
2773         if (parent_ac) {
2774                 NMSettingsConnection *connection = nm_active_connection_get_settings_connection (active);
2775                 NMDevice *parent = nm_active_connection_get_device (parent_ac);
2776
2777                 if (nm_device_create_and_realize (device, (NMConnection *) connection, parent, &error)) {
2778                         /* We can now proceed to disconnected state so that activation proceeds. */
2779                         unmanaged_to_disconnected (device);
2780                 } else {
2781                         nm_log_warn (LOGD_CORE, "Could not realize device '%s': %s",
2782                                      nm_device_get_iface (device), error->message);
2783                         nm_active_connection_set_state (active, NM_ACTIVE_CONNECTION_STATE_DEACTIVATED);
2784                 }
2785         } else {
2786                 nm_log_warn (LOGD_CORE, "The parent connection device '%s' depended on disappeared.",
2787                              nm_device_get_iface (device));
2788                 nm_active_connection_set_state (active, NM_ACTIVE_CONNECTION_STATE_DEACTIVATED);
2789         }
2790 }
2791
2792 static gboolean
2793 _internal_activate_device (NMManager *self, NMActiveConnection *active, GError **error)
2794 {
2795         NMDevice *device, *existing, *master_device = NULL;
2796         NMConnection *applied;
2797         NMSettingsConnection *connection;
2798         NMSettingsConnection *master_connection = NULL;
2799         NMConnection *existing_connection = NULL;
2800         NMActiveConnection *master_ac = NULL;
2801         NMAuthSubject *subject;
2802         char *error_desc = NULL;
2803
2804         g_return_val_if_fail (NM_IS_MANAGER (self), FALSE);
2805         g_return_val_if_fail (NM_IS_ACTIVE_CONNECTION (active), FALSE);
2806         g_return_val_if_fail (error == NULL || *error == NULL, FALSE);
2807
2808         g_assert (NM_IS_VPN_CONNECTION (active) == FALSE);
2809
2810         connection = nm_active_connection_get_settings_connection (active);
2811         g_assert (connection);
2812
2813         applied = nm_active_connection_get_applied_connection (active);
2814
2815         device = nm_active_connection_get_device (active);
2816         g_return_val_if_fail (device != NULL, FALSE);
2817
2818         /* If the device is active and its connection is not visible to the
2819          * user that's requesting this new activation, fail, since other users
2820          * should not be allowed to implicitly deactivate private connections
2821          * by activating a connection of their own.
2822          */
2823         existing_connection = nm_device_get_applied_connection (device);
2824         subject = nm_active_connection_get_subject (active);
2825         if (existing_connection &&
2826             !nm_auth_is_subject_in_acl (existing_connection,
2827                                         subject,
2828                                         &error_desc)) {
2829                 g_set_error (error,
2830                              NM_MANAGER_ERROR,
2831                              NM_MANAGER_ERROR_PERMISSION_DENIED,
2832                              "Private connection already active on the device: %s",
2833                              error_desc);
2834                 g_free (error_desc);
2835                 return FALSE;
2836         }
2837
2838         /* Final connection must be available on device */
2839         if (!nm_device_check_connection_available (device, applied, NM_DEVICE_CHECK_CON_AVAILABLE_FOR_USER_REQUEST, NULL)) {
2840                 g_set_error (error, NM_MANAGER_ERROR, NM_MANAGER_ERROR_UNKNOWN_CONNECTION,
2841                              "Connection '%s' is not available on the device %s at this time.",
2842                              nm_settings_connection_get_id (connection), nm_device_get_iface (device));
2843                 return FALSE;
2844         }
2845
2846         /* Create any backing resources the device needs */
2847         if (!nm_device_is_real (device)) {
2848                 NMDevice *parent;
2849
2850                 parent = find_parent_device_for_connection (self, (NMConnection *) connection, NULL);
2851
2852                 if (parent && !nm_device_is_real (parent)) {
2853                         NMSettingsConnection *parent_con;
2854                         NMActiveConnection *parent_ac;
2855
2856                         parent_con = nm_device_get_best_connection (parent, NULL, error);
2857                         if (!parent_con) {
2858                                 g_prefix_error (error, "%s failed to create parent: ", nm_device_get_iface (device));
2859                                 return FALSE;
2860                         }
2861
2862                         parent_ac = nm_manager_activate_connection (self, parent_con, NULL, parent, subject, error);
2863                         if (!parent_ac) {
2864                                 g_prefix_error (error, "%s failed to activate parent: ", nm_device_get_iface (device));
2865                                 return FALSE;
2866                         }
2867
2868                         /* We can't realize now; defer until the parent device is ready. */
2869                         g_signal_connect (active,
2870                                           NM_ACTIVE_CONNECTION_PARENT_ACTIVE,
2871                                           (GCallback) active_connection_parent_active,
2872                                           self);
2873                         nm_active_connection_set_parent (active, parent_ac);
2874                 } else {
2875                         /* We can realize now; no need to wait for a parent device. */
2876                         if (!nm_device_create_and_realize (device, (NMConnection *) connection, parent, error)) {
2877                                 g_prefix_error (error, "%s failed to create resources: ", nm_device_get_iface (device));
2878                                 return FALSE;
2879                         }
2880                 }
2881         }
2882
2883         /* Try to find the master connection/device if the connection has a dependency */
2884         if (!find_master (self, applied, device,
2885                           &master_connection, &master_device, &master_ac,
2886                           error))
2887                 return FALSE;
2888
2889         /* Ensure there's a master active connection the new connection we're
2890          * activating can depend on.
2891          */
2892         if (master_connection || master_device) {
2893                 if (master_connection) {
2894                         _LOGD (LOGD_CORE, "Activation of '%s' requires master connection '%s'",
2895                                nm_settings_connection_get_id (connection),
2896                                nm_settings_connection_get_id (master_connection));
2897                 }
2898                 if (master_device) {
2899                         _LOGD (LOGD_CORE, "Activation of '%s' requires master device '%s'",
2900                                nm_settings_connection_get_id (connection),
2901                                nm_device_get_ip_iface (master_device));
2902                 }
2903
2904                 /* Ensure eg bond slave and the candidate master is a bond master */
2905                 if (master_connection && !is_compatible_with_slave (NM_CONNECTION (master_connection), applied)) {
2906                         g_set_error_literal (error, NM_MANAGER_ERROR, NM_MANAGER_ERROR_DEPENDENCY_FAILED,
2907                                              "The master connection was not compatible");
2908                         return FALSE;
2909                 }
2910
2911                 if (!master_ac) {
2912                         master_ac = ensure_master_active_connection (self,
2913                                                                      nm_active_connection_get_subject (active),
2914                                                                      applied,
2915                                                                      device,
2916                                                                      master_connection,
2917                                                                      master_device,
2918                                                                      error);
2919                         if (!master_ac) {
2920                                 if (error)
2921                                         g_assert (*error);
2922                                 return FALSE;
2923                         }
2924                 }
2925
2926                 nm_active_connection_set_master (active, master_ac);
2927                 _LOGD (LOGD_CORE, "Activation of '%s' depends on active connection %p %s",
2928                        nm_settings_connection_get_id (connection),
2929                        master_ac,
2930                        nm_exported_object_get_path (NM_EXPORTED_OBJECT  (master_ac)) ?: "");
2931         }
2932
2933         /* Check slaves for master connection and possibly activate them */
2934         autoconnect_slaves (self, connection, device, nm_active_connection_get_subject (active));
2935
2936         /* Disconnect the connection if connected or queued on another device */
2937         existing = nm_manager_get_connection_device (self, NM_CONNECTION (connection));
2938         if (existing)
2939                 nm_device_steal_connection (existing, connection);
2940
2941         /* If the device is there, we can ready it for the activation. */
2942         if (nm_device_is_real (device))
2943                 unmanaged_to_disconnected (device);
2944
2945         /* Export the new ActiveConnection to clients and start it on the device */
2946         nm_exported_object_export (NM_EXPORTED_OBJECT (active));
2947         nm_device_queue_activation (device, NM_ACT_REQUEST (active));
2948         return TRUE;
2949 }
2950
2951 static gboolean
2952 _internal_activate_generic (NMManager *self, NMActiveConnection *active, GError **error)
2953 {
2954         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
2955         gboolean success = FALSE;
2956
2957         /* Ensure activation request is still valid, eg that its device hasn't gone
2958          * away or that some other dependency has not failed.
2959          */
2960         if (nm_active_connection_get_state (active) >= NM_ACTIVE_CONNECTION_STATE_DEACTIVATING) {
2961                 g_set_error_literal (error,
2962                                      NM_MANAGER_ERROR,
2963                                      NM_MANAGER_ERROR_DEPENDENCY_FAILED,
2964                                      "Activation failed because dependencies failed.");
2965                 return FALSE;
2966         }
2967
2968         if (NM_IS_VPN_CONNECTION (active))
2969                 success = _internal_activate_vpn (self, active, error);
2970         else
2971                 success = _internal_activate_device (self, active, error);
2972
2973         if (success) {
2974                 /* Force an update of the Manager's activating-connection property.
2975                  * The device changes state before the AC gets exported, which causes
2976                  * the manager's 'activating-connection' property to be NULL since the
2977                  * AC only gets a D-Bus path when it's exported.  So now that the AC
2978                  * is exported, make sure the manager's activating-connection property
2979                  * is up-to-date.
2980                  */
2981                 active_connection_add (self, active);
2982                 policy_activating_device_changed (G_OBJECT (priv->policy), NULL, self);
2983         }
2984
2985         return success;
2986 }
2987
2988 static NMActiveConnection *
2989 _new_vpn_active_connection (NMManager *self,
2990                             NMSettingsConnection *settings_connection,
2991                             const char *specific_object,
2992                             NMAuthSubject *subject,
2993                             GError **error)
2994 {
2995         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
2996         NMActiveConnection *parent = NULL;
2997         NMDevice *device = NULL;
2998
2999         g_return_val_if_fail (!settings_connection || NM_IS_SETTINGS_CONNECTION (settings_connection), NULL);
3000
3001         if (specific_object) {
3002                 /* Find the specific connection the client requested we use */
3003                 parent = active_connection_get_by_path (self, specific_object);
3004                 if (!parent) {
3005                         g_set_error_literal (error, NM_MANAGER_ERROR, NM_MANAGER_ERROR_CONNECTION_NOT_ACTIVE,
3006                                              "Base connection for VPN connection not active.");
3007                         return NULL;
3008                 }
3009         } else
3010                 parent = priv->primary_connection;
3011
3012         if (!parent) {
3013                 g_set_error_literal (error, NM_MANAGER_ERROR, NM_MANAGER_ERROR_UNKNOWN_CONNECTION,
3014                                      "Could not find source connection.");
3015                 return NULL;
3016         }
3017
3018         device = nm_active_connection_get_device (parent);
3019         if (!device) {
3020                 g_set_error_literal (error, NM_MANAGER_ERROR, NM_MANAGER_ERROR_UNKNOWN_DEVICE,
3021                                      "Source connection had no active device.");
3022                 return NULL;
3023         }
3024
3025         return (NMActiveConnection *) nm_vpn_connection_new (settings_connection,
3026                                                              device,
3027                                                              nm_exported_object_get_path (NM_EXPORTED_OBJECT (parent)),
3028                                                              subject);
3029 }
3030
3031 static NMActiveConnection *
3032 _new_active_connection (NMManager *self,
3033                         NMConnection *connection,
3034                         const char *specific_object,
3035                         NMDevice *device,
3036                         NMAuthSubject *subject,
3037                         GError **error)
3038 {
3039         NMSettingsConnection *settings_connection = NULL;
3040         NMActiveConnection *existing_ac;
3041         gboolean is_vpn;
3042
3043         g_return_val_if_fail (NM_IS_CONNECTION (connection), NULL);
3044         g_return_val_if_fail (NM_IS_AUTH_SUBJECT (subject), NULL);
3045
3046         /* Can't create new AC for already-active connection */
3047         existing_ac = find_ac_for_connection (self, connection);
3048         if (NM_IS_VPN_CONNECTION (existing_ac)) {
3049                 g_set_error (error, NM_MANAGER_ERROR, NM_MANAGER_ERROR_CONNECTION_ALREADY_ACTIVE,
3050                              "Connection '%s' is already active",
3051                              nm_connection_get_id (connection));
3052                 return NULL;
3053         }
3054
3055         /* Normalize the specific object */
3056         if (specific_object && g_strcmp0 (specific_object, "/") == 0)
3057                 specific_object = NULL;
3058
3059         is_vpn = nm_connection_is_type (NM_CONNECTION (connection), NM_SETTING_VPN_SETTING_NAME);
3060
3061         if (NM_IS_SETTINGS_CONNECTION (connection))
3062                 settings_connection = (NMSettingsConnection *) connection;
3063
3064         if (is_vpn) {
3065                 return _new_vpn_active_connection (self,
3066                                                    settings_connection,
3067                                                    specific_object,
3068                                                    subject,
3069                                                    error);
3070         }
3071
3072         return (NMActiveConnection *) nm_act_request_new (settings_connection,
3073                                                           specific_object,
3074                                                           subject,
3075                                                           device);
3076 }
3077
3078 static void
3079 _internal_activation_failed (NMManager *self,
3080                              NMActiveConnection *active,
3081                              const char *error_desc)
3082 {
3083         _LOGD (LOGD_CORE, "Failed to activate '%s': %s",
3084                nm_active_connection_get_settings_connection_id (active),
3085                error_desc);
3086
3087         if (nm_active_connection_get_state (active) <= NM_ACTIVE_CONNECTION_STATE_ACTIVATED) {
3088                 nm_active_connection_set_state (active, NM_ACTIVE_CONNECTION_STATE_DEACTIVATING);
3089                 nm_active_connection_set_state (active, NM_ACTIVE_CONNECTION_STATE_DEACTIVATED);
3090         }
3091 }
3092
3093 static void
3094 _internal_activation_auth_done (NMActiveConnection *active,
3095                                 gboolean success,
3096                                 const char *error_desc,
3097                                 gpointer user_data1,
3098                                 gpointer user_data2)
3099 {
3100         NMManager *self = user_data1;
3101         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
3102         GError *error = NULL;
3103
3104         priv->authorizing_connections = g_slist_remove (priv->authorizing_connections, active);
3105
3106         if (success) {
3107                 if (_internal_activate_generic (self, active, &error)) {
3108                         g_object_unref (active);
3109                         return;
3110                 }
3111         }
3112
3113         g_assert (error_desc || error);
3114         _internal_activation_failed (self, active, error_desc ? error_desc : error->message);
3115         g_object_unref (active);
3116         g_clear_error (&error);
3117 }
3118
3119 /**
3120  * nm_manager_activate_connection():
3121  * @self: the #NMManager
3122  * @connection: the #NMSettingsConnection to activate on @device
3123  * @specific_object: the specific object path, if any, for the activation
3124  * @device: the #NMDevice to activate @connection on
3125  * @subject: the subject which requested activation
3126  * @error: return location for an error
3127  *
3128  * Begins a new internally-initiated activation of @connection on @device.
3129  * @subject should be the subject of the activation that triggered this
3130  * one, or if this is an autoconnect request, a new internal subject.
3131  * The returned #NMActiveConnection is owned by the Manager and should be
3132  * referenced by the caller if the caller continues to use it.
3133  *
3134  * Returns: (transfer none): the new #NMActiveConnection that tracks
3135  * activation of @connection on @device
3136  */
3137 NMActiveConnection *
3138 nm_manager_activate_connection (NMManager *self,
3139                                 NMSettingsConnection *connection,
3140                                 const char *specific_object,
3141                                 NMDevice *device,
3142                                 NMAuthSubject *subject,
3143                                 GError **error)
3144 {
3145         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
3146         NMActiveConnection *active;
3147         char *error_desc = NULL;
3148         GSList *iter;
3149
3150         g_return_val_if_fail (self != NULL, NULL);
3151         g_return_val_if_fail (connection != NULL, NULL);
3152         g_return_val_if_fail (error != NULL, NULL);
3153         g_return_val_if_fail (*error == NULL, NULL);
3154
3155         /* Ensure the subject has permissions for this connection */
3156         if (!nm_auth_is_subject_in_acl (NM_CONNECTION (connection),
3157                                         subject,
3158                                         &error_desc)) {
3159                 g_set_error_literal (error,
3160                                      NM_MANAGER_ERROR,
3161                                      NM_MANAGER_ERROR_PERMISSION_DENIED,
3162                                      error_desc);
3163                 g_free (error_desc);
3164                 return NULL;
3165         }
3166
3167         /* Look for a active connection that's equivalent and is already pending authorization
3168          * and eventual activation. This is used to de-duplicate concurrent activations which would
3169          * otherwise race and cause the device to disconnect and reconnect repeatedly.
3170          * In particular, this allows the master and multiple slaves to concurrently auto-activate
3171          * while all the slaves would use the same active-connection. */
3172         for (iter = priv->authorizing_connections; iter; iter = g_slist_next (iter)) {
3173                 active = iter->data;
3174
3175                 if (   connection == nm_active_connection_get_settings_connection (active)
3176                     && g_strcmp0 (nm_active_connection_get_specific_object (active), specific_object) == 0
3177                     && nm_active_connection_get_device (active) == device
3178                     && nm_auth_subject_is_internal (nm_active_connection_get_subject (active))
3179                     && nm_auth_subject_is_internal (subject))
3180                         return active;
3181         }
3182
3183         active = _new_active_connection (self,
3184                                          NM_CONNECTION (connection),
3185                                          specific_object,
3186                                          device,
3187                                          subject,
3188                                          error);
3189         if (active) {
3190                 priv->authorizing_connections = g_slist_prepend (priv->authorizing_connections, active);
3191                 nm_active_connection_authorize (active, NULL, _internal_activation_auth_done, self, NULL);
3192         }
3193         return active;
3194 }
3195
3196 /**
3197  * validate_activation_request:
3198  * @self: the #NMManager
3199  * @context: the D-Bus context of the requestor
3200  * @connection: the partial or complete #NMConnection to be activated
3201  * @device_path: the object path of the device to be activated, or "/"
3202  * @out_device: on successful reutrn, the #NMDevice to be activated with @connection
3203  * @out_vpn: on successful return, %TRUE if @connection is a VPN connection
3204  * @error: location to store an error on failure
3205  *
3206  * Performs basic validation on an activation request, including ensuring that
3207  * the requestor is a valid Unix process, is not disallowed in @connection
3208  * permissions, and that a device exists that can activate @connection.
3209  *
3210  * Returns: on success, the #NMAuthSubject representing the requestor, or
3211  *   %NULL on error
3212  */
3213 static NMAuthSubject *
3214 validate_activation_request (NMManager *self,
3215                              GDBusMethodInvocation *context,
3216                              NMConnection *connection,
3217                              const char *device_path,
3218                              NMDevice **out_device,
3219                              gboolean *out_vpn,
3220                              GError **error)
3221 {
3222         NMDevice *device = NULL;
3223         gboolean vpn = FALSE;
3224         NMAuthSubject *subject = NULL;
3225         char *error_desc = NULL;
3226
3227         g_assert (connection);
3228         g_assert (out_device);
3229         g_assert (out_vpn);
3230
3231         /* Validate the caller */
3232         subject = nm_auth_subject_new_unix_process_from_context (context);
3233         if (!subject) {
3234                 g_set_error_literal (error,
3235                                      NM_MANAGER_ERROR,
3236                                      NM_MANAGER_ERROR_PERMISSION_DENIED,
3237                                      "Failed to get request UID.");
3238                 return NULL;
3239         }
3240
3241         /* Ensure the subject has permissions for this connection */
3242         if (!nm_auth_is_subject_in_acl (connection,
3243                                         subject,
3244                                         &error_desc)) {
3245                 g_set_error_literal (error,
3246                                      NM_MANAGER_ERROR,
3247                                      NM_MANAGER_ERROR_PERMISSION_DENIED,
3248                                      error_desc);
3249                 g_free (error_desc);
3250                 goto error;
3251         }
3252
3253         /* Not implemented yet, we want to fail early */
3254         if (   nm_connection_get_setting_connection (connection)
3255             && nm_connection_get_setting_ip6_config (connection)
3256             && !strcmp (nm_utils_get_ip_config_method (connection, NM_TYPE_SETTING_IP6_CONFIG),
3257                         NM_SETTING_IP6_CONFIG_METHOD_SHARED)) {
3258                 g_set_error_literal (error,
3259                                      NM_MANAGER_ERROR,
3260                                      NM_MANAGER_ERROR_CONNECTION_NOT_AVAILABLE,
3261                                      "Sharing IPv6 connections is not supported yet.");
3262                 return NULL;
3263         }
3264
3265         /* Check whether it's a VPN or not */
3266         if (   nm_connection_get_setting_vpn (connection)
3267             || nm_connection_is_type (connection, NM_SETTING_VPN_SETTING_NAME))
3268                 vpn = TRUE;
3269
3270         /* Normalize device path */
3271         if (device_path && g_strcmp0 (device_path, "/") == 0)
3272                 device_path = NULL;
3273
3274         /* And validate it */
3275         if (device_path) {
3276                 device = nm_manager_get_device_by_path (self, device_path);
3277                 if (!device) {
3278                         g_set_error_literal (error,
3279                                              NM_MANAGER_ERROR,
3280                                              NM_MANAGER_ERROR_UNKNOWN_DEVICE,
3281                                              "Device not found");
3282                         goto error;
3283                 }
3284         } else
3285                 device = nm_manager_get_best_device_for_connection (self, connection, TRUE);
3286
3287         if (!device && !vpn) {
3288                 gboolean is_software = nm_connection_is_virtual (connection);
3289
3290                 /* VPN and software-device connections don't need a device yet */
3291                 if (!is_software) {
3292                         g_set_error_literal (error,
3293                                              NM_MANAGER_ERROR,
3294                                              NM_MANAGER_ERROR_UNKNOWN_DEVICE,
3295                                              "No suitable device found for this connection.");
3296                         goto error;
3297                 }
3298
3299                 if (is_software) {
3300                         char *iface;
3301
3302                         /* Look for an existing device with the connection's interface name */
3303                         iface = nm_manager_get_connection_iface (self, connection, NULL, error);
3304                         if (!iface)
3305                                 goto error;
3306
3307                         device = find_device_by_iface (self, iface, connection, NULL);
3308                         g_free (iface);
3309                 }
3310         }
3311
3312         if ((!vpn || device_path) && !device) {
3313                 g_set_error_literal (error,
3314                                      NM_MANAGER_ERROR,
3315                                      NM_MANAGER_ERROR_UNKNOWN_DEVICE,
3316                                      "Failed to find a compatible device for this connection");
3317                 goto error;
3318         }
3319
3320         *out_device = device;
3321         *out_vpn = vpn;
3322         return subject;
3323
3324 error:
3325         g_object_unref (subject);
3326         return NULL;
3327 }
3328
3329 /***********************************************************************/
3330
3331 static void
3332 _activation_auth_done (NMActiveConnection *active,
3333                        gboolean success,
3334                        const char *error_desc,
3335                        gpointer user_data1,
3336                        gpointer user_data2)
3337 {
3338         NMManager *self = user_data1;
3339         GDBusMethodInvocation *context = user_data2;
3340         GError *error = NULL;
3341         NMAuthSubject *subject;
3342         NMSettingsConnection *connection;
3343
3344         subject = nm_active_connection_get_subject (active);
3345         connection = nm_active_connection_get_settings_connection (active);
3346
3347         if (success) {
3348                 if (_internal_activate_generic (self, active, &error)) {
3349                         g_dbus_method_invocation_return_value (context,
3350                                                                g_variant_new ("(o)",
3351                                                                nm_exported_object_get_path (NM_EXPORTED_OBJECT (active))));
3352                         nm_audit_log_connection_op (NM_AUDIT_OP_CONN_ACTIVATE, connection, TRUE,
3353                                                     subject, NULL);
3354                         g_object_unref (active);
3355                         return;
3356                 }
3357         } else {
3358                 error = g_error_new_literal (NM_MANAGER_ERROR,
3359                                              NM_MANAGER_ERROR_PERMISSION_DENIED,
3360                                              error_desc);
3361         }
3362
3363         g_assert (error);
3364         nm_audit_log_connection_op (NM_AUDIT_OP_CONN_ACTIVATE, connection, FALSE,
3365                                     subject, error->message);
3366         _internal_activation_failed (self, active, error->message);
3367
3368         g_object_unref (active);
3369         g_dbus_method_invocation_take_error (context, error);
3370 }
3371
3372 static void
3373 impl_manager_activate_connection (NMManager *self,
3374                                   GDBusMethodInvocation *context,
3375                                   const char *connection_path,
3376                                   const char *device_path,
3377                                   const char *specific_object_path)
3378 {
3379         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
3380         NMActiveConnection *active = NULL;
3381         NMAuthSubject *subject = NULL;
3382         NMSettingsConnection *connection = NULL;
3383         NMDevice *device = NULL;
3384         gboolean is_vpn = FALSE;
3385         GError *error = NULL;
3386
3387         /* Normalize object paths */
3388         if (g_strcmp0 (connection_path, "/") == 0)
3389                 connection_path = NULL;
3390         if (g_strcmp0 (specific_object_path, "/") == 0)
3391                 specific_object_path = NULL;
3392         if (g_strcmp0 (device_path, "/") == 0)
3393                 device_path = NULL;
3394
3395         /* If the connection path is given and valid, that connection is activated.
3396          * Otherwise the "best" connection for the device is chosen and activated,
3397          * regardless of whether that connection is autoconnect-enabled or not
3398          * (since this is an explicit request, not an auto-activation request).
3399          */
3400         if (connection_path) {
3401                 connection = nm_settings_get_connection_by_path (priv->settings, connection_path);
3402                 if (!connection) {
3403                         error = g_error_new_literal (NM_MANAGER_ERROR,
3404                                                      NM_MANAGER_ERROR_UNKNOWN_CONNECTION,
3405                                                      "Connection could not be found.");
3406                         goto error;
3407                 }
3408         } else {
3409                 /* If no connection is given, find a suitable connection for the given device path */
3410                 if (!device_path) {
3411                         error = g_error_new_literal (NM_MANAGER_ERROR, NM_MANAGER_ERROR_UNKNOWN_DEVICE,
3412                                                      "Only devices may be activated without a specifying a connection");
3413                         goto error;
3414                 }
3415                 device = nm_manager_get_device_by_path (self, device_path);
3416                 if (!device) {
3417                         error = g_error_new (NM_MANAGER_ERROR, NM_MANAGER_ERROR_UNKNOWN_DEVICE,
3418                                              "Cannot activate unknown device %s", device_path);
3419                         goto error;
3420                 }
3421
3422                 connection = nm_device_get_best_connection (device, specific_object_path, &error);
3423                 if (!connection)
3424                         goto error;
3425         }
3426
3427         subject = validate_activation_request (self,
3428                                                context,
3429                                                NM_CONNECTION (connection),
3430                                                device_path,
3431                                                &device,
3432                                                &is_vpn,
3433                                                &error);
3434         if (!subject)
3435                 goto error;
3436
3437         active = _new_active_connection (self,
3438                                          NM_CONNECTION (connection),
3439                                          specific_object_path,
3440                                          device,
3441                                          subject,
3442                                          &error);
3443         if (!active)
3444                 goto error;
3445
3446         nm_active_connection_authorize (active, NULL, _activation_auth_done, self, context);
3447         g_clear_object (&subject);
3448         return;
3449
3450 error:
3451         if (connection) {
3452                 nm_audit_log_connection_op (NM_AUDIT_OP_CONN_ACTIVATE, connection, FALSE,
3453                                             subject, error->message);
3454         }
3455         g_clear_object (&active);
3456         g_clear_object (&subject);
3457
3458         g_assert (error);
3459         g_dbus_method_invocation_take_error (context, error);
3460 }
3461
3462 /***********************************************************************/
3463
3464 typedef struct {
3465         NMManager *manager;
3466         NMActiveConnection *active;
3467 } AddAndActivateInfo;
3468
3469 static void
3470 activation_add_done (NMSettings *settings,
3471                      NMSettingsConnection *new_connection,
3472                      GError *error,
3473                      GDBusMethodInvocation *context,
3474                      NMAuthSubject *subject,
3475                      gpointer user_data)
3476 {
3477         AddAndActivateInfo *info = user_data;
3478         NMManager *self;
3479         gs_unref_object NMActiveConnection *active = NULL;
3480         GError *local = NULL;
3481
3482         self = info->manager;
3483         active = info->active;
3484         g_slice_free (AddAndActivateInfo, info);
3485
3486         if (!error) {
3487                 nm_active_connection_set_settings_connection (active, new_connection);
3488
3489                 if (_internal_activate_generic (self, active, &local)) {
3490                         nm_settings_connection_commit_changes (new_connection,
3491                                                                NM_SETTINGS_CONNECTION_COMMIT_REASON_USER_ACTION | NM_SETTINGS_CONNECTION_COMMIT_REASON_ID_CHANGED,
3492                                                                NULL, NULL);
3493                         g_dbus_method_invocation_return_value (
3494                             context,
3495                             g_variant_new ("(oo)",
3496                                            nm_connection_get_path (NM_CONNECTION (new_connection)),
3497                                            nm_exported_object_get_path (NM_EXPORTED_OBJECT (active))));
3498                         nm_audit_log_connection_op (NM_AUDIT_OP_CONN_ADD_ACTIVATE,
3499                                                     nm_active_connection_get_settings_connection (active),
3500                                                     TRUE,
3501                                                     nm_active_connection_get_subject (active),
3502                                                     NULL);
3503                         return;
3504                 }
3505                 error = local;
3506         }
3507
3508         g_assert (error);
3509         _internal_activation_failed (self, active, error->message);
3510         nm_settings_connection_delete (new_connection, NULL, NULL);
3511         g_dbus_method_invocation_return_gerror (context, error);
3512         nm_audit_log_connection_op (NM_AUDIT_OP_CONN_ADD_ACTIVATE,
3513                                     NULL,
3514                                     FALSE,
3515                                     nm_active_connection_get_subject (active),
3516                                     error->message);
3517         g_clear_error (&local);
3518 }
3519
3520 static void
3521 _add_and_activate_auth_done (NMActiveConnection *active,
3522                              gboolean success,
3523                              const char *error_desc,
3524                              gpointer user_data1,
3525                              gpointer user_data2)
3526 {
3527         NMManager *self = user_data1;
3528         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
3529         GDBusMethodInvocation *context = user_data2;
3530         AddAndActivateInfo *info;
3531         GError *error = NULL;
3532
3533         if (success) {
3534                 NMConnection *connection;
3535
3536                 connection = g_object_steal_data (G_OBJECT (active),
3537                                                   TAG_ACTIVE_CONNETION_ADD_AND_ACTIVATE);
3538
3539                 info = g_slice_new (AddAndActivateInfo);
3540                 info->manager = self;
3541                 info->active = g_object_ref (active);
3542
3543                 /* Basic sender auth checks performed; try to add the connection */
3544                 nm_settings_add_connection_dbus (priv->settings,
3545                                                  connection,
3546                                                  FALSE,
3547                                                  context,
3548                                                  activation_add_done,
3549                                                  info);
3550                 g_object_unref (connection);
3551         } else {
3552                 g_assert (error_desc);
3553                 error = g_error_new_literal (NM_MANAGER_ERROR,
3554                                              NM_MANAGER_ERROR_PERMISSION_DENIED,
3555                                              error_desc);
3556                 nm_audit_log_connection_op (NM_AUDIT_OP_CONN_ADD_ACTIVATE,
3557                                             NULL,
3558                                             FALSE,
3559                                             nm_active_connection_get_subject (active),
3560                                             error->message);
3561                 g_dbus_method_invocation_take_error (context, error);
3562         }
3563
3564         g_object_unref (active);
3565 }
3566
3567 static void
3568 impl_manager_add_and_activate_connection (NMManager *self,
3569                                           GDBusMethodInvocation *context,
3570                                           GVariant *settings,
3571                                           const char *device_path,
3572                                           const char *specific_object_path)
3573 {
3574         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
3575         NMConnection *connection = NULL;
3576         GSList *all_connections = NULL;
3577         NMActiveConnection *active = NULL;
3578         NMAuthSubject *subject = NULL;
3579         GError *error = NULL;
3580         NMDevice *device = NULL;
3581         gboolean vpn = FALSE;
3582
3583         /* Normalize object paths */
3584         if (g_strcmp0 (specific_object_path, "/") == 0)
3585                 specific_object_path = NULL;
3586         if (g_strcmp0 (device_path, "/") == 0)
3587                 device_path = NULL;
3588
3589         /* Try to create a new connection with the given settings.
3590          * We allow empty settings for AddAndActivateConnection(). In that case,
3591          * the connection will be completed in nm_utils_complete_generic() or
3592          * nm_device_complete_connection() below. Just make sure we don't expect
3593          * specific data being in the connection till then (especially in
3594          * validate_activation_request()).
3595          */
3596         connection = nm_simple_connection_new ();
3597         if (settings && g_variant_n_children (settings))
3598                 _nm_connection_replace_settings (connection, settings, NM_SETTING_PARSE_FLAGS_STRICT, NULL);
3599
3600         subject = validate_activation_request (self,
3601                                                context,
3602                                                connection,
3603                                                device_path,
3604                                                &device,
3605                                                &vpn,
3606                                                &error);
3607         if (!subject)
3608                 goto error;
3609
3610         all_connections = nm_settings_get_connections (priv->settings);
3611         if (vpn) {
3612                 /* Try to fill the VPN's connection setting and name at least */
3613                 if (!nm_connection_get_setting_vpn (connection)) {
3614                         error = g_error_new_literal (NM_CONNECTION_ERROR,
3615                                                      NM_CONNECTION_ERROR_MISSING_SETTING,
3616                                                      "VPN connections require a 'vpn' setting");
3617                         g_prefix_error (&error, "%s: ", NM_SETTING_VPN_SETTING_NAME);
3618                         goto error;
3619                 }
3620
3621                 nm_utils_complete_generic (NM_PLATFORM_GET,
3622                                            connection,
3623                                            NM_SETTING_VPN_SETTING_NAME,
3624                                            all_connections,
3625                                            NULL,
3626                                            _("VPN connection"),
3627                                            NULL,
3628                                            FALSE); /* No IPv6 by default for now */
3629         } else {
3630                 /* Let each device subclass complete the connection */
3631                 if (!nm_device_complete_connection (device,
3632                                                     connection,
3633                                                     specific_object_path,
3634                                                     all_connections,
3635                                                     &error))
3636                         goto error;
3637         }
3638         g_slist_free (all_connections);
3639         all_connections = NULL;
3640
3641         active = _new_active_connection (self,
3642                                          connection,
3643                                          specific_object_path,
3644                                          device,
3645                                          subject,
3646                                          &error);
3647         if (!active)
3648                 goto error;
3649
3650         g_object_set_data_full (G_OBJECT (active),
3651                                 TAG_ACTIVE_CONNETION_ADD_AND_ACTIVATE,
3652                                 connection,
3653                                 g_object_unref);
3654
3655         nm_active_connection_authorize (active, connection, _add_and_activate_auth_done, self, context);
3656         g_object_unref (subject);
3657         return;
3658
3659 error:
3660         nm_audit_log_connection_op (NM_AUDIT_OP_CONN_ADD_ACTIVATE, NULL, FALSE, subject, error->message);
3661         g_clear_object (&connection);
3662         g_slist_free (all_connections);
3663         g_clear_object (&subject);
3664         g_clear_object (&active);
3665
3666         g_assert (error);
3667         g_dbus_method_invocation_take_error (context, error);
3668 }
3669
3670 /***********************************************************************/
3671
3672 gboolean
3673 nm_manager_deactivate_connection (NMManager *manager,
3674                                   const char *connection_path,
3675                                   NMDeviceStateReason reason,
3676                                   GError **error)
3677 {
3678         NMActiveConnection *active;
3679         gboolean success = FALSE;
3680
3681         active = active_connection_get_by_path (manager, connection_path);
3682         if (!active) {
3683                 g_set_error_literal (error, NM_MANAGER_ERROR, NM_MANAGER_ERROR_CONNECTION_NOT_ACTIVE,
3684                                      "The connection was not active.");
3685                 return FALSE;
3686         }
3687
3688         if (NM_IS_VPN_CONNECTION (active)) {
3689                 NMVpnConnectionStateReason vpn_reason = NM_VPN_CONNECTION_STATE_REASON_USER_DISCONNECTED;
3690
3691                 if (reason == NM_DEVICE_STATE_REASON_CONNECTION_REMOVED)
3692                         vpn_reason = NM_VPN_CONNECTION_STATE_REASON_CONNECTION_REMOVED;
3693                 if (nm_vpn_connection_deactivate (NM_VPN_CONNECTION (active), vpn_reason, FALSE))
3694                         success = TRUE;
3695                 else
3696                         g_set_error_literal (error, NM_MANAGER_ERROR, NM_MANAGER_ERROR_CONNECTION_NOT_ACTIVE,
3697                                              "The VPN connection was not active.");
3698         } else {
3699                 g_assert (NM_IS_ACT_REQUEST (active));
3700                 nm_device_state_changed (nm_active_connection_get_device (active),
3701                                          NM_DEVICE_STATE_DEACTIVATING,
3702                                          reason);
3703                 success = TRUE;
3704         }
3705
3706         if (success)
3707                 g_object_notify (G_OBJECT (manager), NM_MANAGER_ACTIVE_CONNECTIONS);
3708
3709         return success;
3710 }
3711
3712 static void
3713 deactivate_net_auth_done_cb (NMAuthChain *chain,
3714                              GError *auth_error,
3715                              GDBusMethodInvocation *context,
3716                              gpointer user_data)
3717 {
3718         NMManager *self = NM_MANAGER (user_data);
3719         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
3720         GError *error = NULL;
3721         NMAuthCallResult result;
3722         NMActiveConnection *active;
3723         char *path;
3724
3725         g_assert (context);
3726
3727         priv->auth_chains = g_slist_remove (priv->auth_chains, chain);
3728
3729         path = nm_auth_chain_get_data (chain, "path");
3730         result = nm_auth_chain_get_result (chain, NM_AUTH_PERMISSION_NETWORK_CONTROL);
3731
3732         if (auth_error) {
3733                 _LOGD (LOGD_CORE, "Disconnect request failed: %s", auth_error->message);
3734                 error = g_error_new (NM_MANAGER_ERROR,
3735                                      NM_MANAGER_ERROR_PERMISSION_DENIED,
3736                                      "Deactivate request failed: %s",
3737                                      auth_error->message);
3738         } else if (result != NM_AUTH_CALL_RESULT_YES) {
3739                 error = g_error_new_literal (NM_MANAGER_ERROR,
3740                                              NM_MANAGER_ERROR_PERMISSION_DENIED,
3741                                              "Not authorized to deactivate connections");
3742         } else {
3743                 /* success; deactivation allowed */
3744                 if (!nm_manager_deactivate_connection (self,
3745                                                        path,
3746                                                        NM_DEVICE_STATE_REASON_USER_REQUESTED,
3747                                                        &error))
3748                         nm_assert (error);
3749         }
3750
3751         active = active_connection_get_by_path (self, path);
3752         if (active) {
3753                 nm_audit_log_connection_op (NM_AUDIT_OP_CONN_DEACTIVATE,
3754                                             nm_active_connection_get_settings_connection (active),
3755                                             !error,
3756                                             nm_auth_chain_get_subject (chain),
3757                                             error ? error->message : NULL);
3758         }
3759
3760         if (error)
3761                 g_dbus_method_invocation_take_error (context, error);
3762         else
3763                 g_dbus_method_invocation_return_value (context, NULL);
3764
3765         nm_auth_chain_unref (chain);
3766 }
3767
3768 static void
3769 impl_manager_deactivate_connection (NMManager *self,
3770                                     GDBusMethodInvocation *context,
3771                                     const char *active_path)
3772 {
3773         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
3774         NMActiveConnection *ac;
3775         NMSettingsConnection *connection = NULL;
3776         GError *error = NULL;
3777         NMAuthSubject *subject = NULL;
3778         NMAuthChain *chain;
3779         char *error_desc = NULL;
3780
3781         /* Find the connection by its object path */
3782         ac = active_connection_get_by_path (self, active_path);
3783         if (ac)
3784                 connection = nm_active_connection_get_settings_connection (ac);
3785
3786         if (!connection) {
3787                 error = g_error_new_literal (NM_MANAGER_ERROR,
3788                                              NM_MANAGER_ERROR_CONNECTION_NOT_ACTIVE,
3789                                              "The connection was not active.");
3790                 goto done;
3791         }
3792
3793         /* Validate the caller */
3794         subject = nm_auth_subject_new_unix_process_from_context (context);
3795         if (!subject) {
3796                 error = g_error_new_literal (NM_MANAGER_ERROR,
3797                                              NM_MANAGER_ERROR_PERMISSION_DENIED,
3798                                              "Failed to get request UID.");
3799                 goto done;
3800         }
3801
3802         /* Ensure the subject has permissions for this connection */
3803         if (!nm_auth_is_subject_in_acl (NM_CONNECTION (connection),
3804                                         subject,
3805                                         &error_desc)) {
3806                 error = g_error_new_literal (NM_MANAGER_ERROR,
3807                                              NM_MANAGER_ERROR_PERMISSION_DENIED,
3808                                              error_desc);
3809                 g_free (error_desc);
3810                 goto done;
3811         }
3812
3813         /* Validate the user request */
3814         chain = nm_auth_chain_new_subject (subject, context, deactivate_net_auth_done_cb, self);
3815         if (!chain) {
3816                 error = g_error_new_literal (NM_MANAGER_ERROR,
3817                                              NM_MANAGER_ERROR_PERMISSION_DENIED,
3818                                              "Unable to authenticate request.");
3819                 goto done;
3820         }
3821
3822         priv->auth_chains = g_slist_append (priv->auth_chains, chain);
3823         nm_auth_chain_set_data (chain, "path", g_strdup (active_path), g_free);
3824         nm_auth_chain_add_call (chain, NM_AUTH_PERMISSION_NETWORK_CONTROL, TRUE);
3825
3826 done:
3827         if (error) {
3828                 if (connection) {
3829                         nm_audit_log_connection_op (NM_AUDIT_OP_CONN_DEACTIVATE, connection, FALSE,
3830                                                     subject, error->message);
3831                 }
3832                 g_dbus_method_invocation_take_error (context, error);
3833         }
3834         g_clear_object (&subject);
3835 }
3836
3837 static gboolean
3838 device_is_wake_on_lan (NMDevice *device)
3839 {
3840         return nm_platform_link_get_wake_on_lan (NM_PLATFORM_GET, nm_device_get_ip_ifindex (device));
3841 }
3842
3843 static void
3844 do_sleep_wake (NMManager *self, gboolean sleeping_changed)
3845 {
3846         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
3847         gboolean suspending, waking_from_suspend;
3848         GSList *iter;
3849
3850         suspending = sleeping_changed && priv->sleeping;
3851         waking_from_suspend = sleeping_changed && !priv->sleeping;
3852
3853         if (manager_sleeping (self)) {
3854                 _LOGI (LOGD_SUSPEND, "%s...", suspending ? "sleeping" : "disabling");
3855
3856                 /* FIXME: are there still hardware devices that need to be disabled around
3857                  * suspend/resume?
3858                  */
3859                 for (iter = priv->devices; iter; iter = iter->next) {
3860                         NMDevice *device = iter->data;
3861
3862                         /* FIXME: shouldn't we be unmanaging software devices if !suspending? */
3863                         if (nm_device_is_software (device))
3864                                 continue;
3865                         /* Wake-on-LAN devices will be taken down post-suspend rather than pre- */
3866                         if (suspending && device_is_wake_on_lan (device))
3867                                 continue;
3868
3869                         nm_device_set_unmanaged_by_flags (device, NM_UNMANAGED_SLEEPING, TRUE, NM_DEVICE_STATE_REASON_SLEEPING);
3870                 }
3871         } else {
3872                 _LOGI (LOGD_SUSPEND, "%s...", waking_from_suspend ? "waking up" : "re-enabling");
3873
3874                 if (waking_from_suspend) {
3875                         /* Belatedly take down Wake-on-LAN devices; ideally we wouldn't have to do this
3876                          * but for now it's the only way to make sure we re-check their connectivity.
3877                          */
3878                         for (iter = priv->devices; iter; iter = iter->next) {
3879                                 NMDevice *device = iter->data;
3880
3881                                 if (nm_device_is_software (device))
3882                                         continue;
3883                                 if (device_is_wake_on_lan (device))
3884                                         nm_device_set_unmanaged_by_flags (device, NM_UNMANAGED_SLEEPING, TRUE, NM_DEVICE_STATE_REASON_SLEEPING);
3885                         }
3886                 }
3887
3888                 /* Ensure rfkill state is up-to-date since we don't respond to state
3889                  * changes during sleep.
3890                  */
3891                 nm_manager_rfkill_update (self, RFKILL_TYPE_UNKNOWN);
3892
3893                 /* Re-manage managed devices */
3894                 for (iter = priv->devices; iter; iter = iter->next) {
3895                         NMDevice *device = NM_DEVICE (iter->data);
3896                         guint i;
3897
3898                         if (nm_device_is_software (device))
3899                                 continue;
3900
3901                         /* enable/disable wireless devices since that we don't respond
3902                          * to killswitch changes during sleep.
3903                          */
3904                         for (i = 0; i < RFKILL_TYPE_MAX; i++) {
3905                                 RadioState *rstate = &priv->radio_states[i];
3906                                 gboolean enabled = radio_enabled_for_rstate (rstate, TRUE);
3907
3908                                 if (rstate->desc) {
3909                                         _LOGD (LOGD_RFKILL, "%s %s devices (hw_enabled %d, sw_enabled %d, user_enabled %d)",
3910                                                enabled ? "enabling" : "disabling",
3911                                                rstate->desc, rstate->hw_enabled, rstate->sw_enabled, rstate->user_enabled);
3912                                 }
3913
3914                                 if (nm_device_get_rfkill_type (device) == rstate->rtype)
3915                                         nm_device_set_enabled (device, enabled);
3916                         }
3917
3918                         nm_device_set_autoconnect (device, TRUE);
3919
3920                         nm_device_set_unmanaged_by_flags (device, NM_UNMANAGED_SLEEPING, FALSE, NM_DEVICE_STATE_REASON_NOW_MANAGED);
3921                 }
3922         }
3923
3924         nm_manager_update_state (self);
3925 }
3926
3927 static void
3928 _internal_sleep (NMManager *self, gboolean do_sleep)
3929 {
3930         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
3931
3932         if (priv->sleeping == do_sleep)
3933                 return;
3934
3935         _LOGI (LOGD_SUSPEND, "%s requested (sleeping: %s  enabled: %s)",
3936                do_sleep ? "sleep" : "wake",
3937                priv->sleeping ? "yes" : "no",
3938                priv->net_enabled ? "yes" : "no");
3939
3940         priv->sleeping = do_sleep;
3941
3942         do_sleep_wake (self, TRUE);
3943
3944         g_object_notify (G_OBJECT (self), NM_MANAGER_SLEEPING);
3945 }
3946
3947 #if 0
3948 static void
3949 sleep_auth_done_cb (NMAuthChain *chain,
3950                     GError *error,
3951                     GDBusMethodInvocation *context,
3952                     gpointer user_data)
3953 {
3954         NMManager *self = NM_MANAGER (user_data);
3955         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
3956         GError *ret_error;
3957         NMAuthCallResult result;
3958         gboolean do_sleep;
3959
3960         priv->auth_chains = g_slist_remove (priv->auth_chains, chain);
3961
3962         result = nm_auth_chain_get_result (chain, NM_AUTH_PERMISSION_SLEEP_WAKE);
3963         if (error) {
3964                 _LOGD (LOGD_SUSPEND, "Sleep/wake request failed: %s", error->message);
3965                 ret_error = g_error_new (NM_MANAGER_ERROR,
3966                                          NM_MANAGER_ERROR_PERMISSION_DENIED,
3967                                          "Sleep/wake request failed: %s",
3968                                          error->message);
3969                 g_dbus_method_invocation_take_error (context, ret_error);
3970         } else if (result != NM_AUTH_CALL_RESULT_YES) {
3971                 ret_error = g_error_new_literal (NM_MANAGER_ERROR,
3972                                                  NM_MANAGER_ERROR_PERMISSION_DENIED,
3973                                                  "Not authorized to sleep/wake");
3974                 g_dbus_method_invocation_take_error (context, ret_error);
3975         } else {
3976                 /* Auth success */
3977                 do_sleep = GPOINTER_TO_UINT (nm_auth_chain_get_data (chain, "sleep"));
3978                 _internal_sleep (self, do_sleep);
3979                 g_dbus_method_invocation_return_value (context, NULL);
3980         }
3981
3982         nm_auth_chain_unref (chain);
3983 }
3984 #endif
3985
3986 static void
3987 impl_manager_sleep (NMManager *self,
3988                     GDBusMethodInvocation *context,
3989                     gboolean do_sleep)
3990 {
3991         NMManagerPrivate *priv;
3992         GError *error = NULL;
3993         gs_unref_object NMAuthSubject *subject = NULL;
3994 #if 0
3995         NMAuthChain *chain;
3996         const char *error_desc = NULL;
3997 #endif
3998
3999         g_return_if_fail (NM_IS_MANAGER (self));
4000
4001         priv = NM_MANAGER_GET_PRIVATE (self);
4002         subject = nm_auth_subject_new_unix_process_from_context (context);
4003
4004         if (priv->sleeping == do_sleep) {
4005                 error = g_error_new (NM_MANAGER_ERROR,
4006                                      NM_MANAGER_ERROR_ALREADY_ASLEEP_OR_AWAKE,
4007                                      "Already %s", do_sleep ? "asleep" : "awake");
4008                 nm_audit_log_control_op (NM_AUDIT_OP_SLEEP_CONTROL, do_sleep ? "on" : "off", FALSE, subject,
4009                                          error->message);
4010                 g_dbus_method_invocation_take_error (context, error);
4011                 return;
4012         }
4013
4014         /* Unconditionally allow the request.  Previously it was polkit protected
4015          * but unfortunately that doesn't work for short-lived processes like
4016          * pm-utils.  It uses dbus-send without --print-reply, which quits
4017          * immediately after sending the request, and NM is unable to obtain the
4018          * sender's UID as dbus-send has already dropped off the bus.  Thus NM
4019          * fails the request.  Instead, don't validate the request, but rely on
4020          * D-Bus permissions to restrict the call to root.
4021          */
4022         _internal_sleep (self, do_sleep);
4023         nm_audit_log_control_op (NM_AUDIT_OP_SLEEP_CONTROL, do_sleep ? "on" : "off", TRUE, subject, NULL);
4024         g_dbus_method_invocation_return_value (context, NULL);
4025         return;
4026
4027 #if 0
4028         chain = nm_auth_chain_new (context, sleep_auth_done_cb, self, &error_desc);
4029         if (chain) {
4030                 priv->auth_chains = g_slist_append (priv->auth_chains, chain);
4031                 nm_auth_chain_set_data (chain, "sleep", GUINT_TO_POINTER (do_sleep), NULL);
4032                 nm_auth_chain_add_call (chain, NM_AUTH_PERMISSION_SLEEP_WAKE, TRUE);
4033         } else {
4034                 error = g_error_new_literal (NM_MANAGER_ERROR,
4035                                              NM_MANAGER_ERROR_PERMISSION_DENIED,
4036                                              error_desc);
4037                 g_dbus_method_invocation_take_error (context, error);
4038         }
4039 #endif
4040 }
4041
4042 static void
4043 sleeping_cb (NMSleepMonitor *monitor, gpointer user_data)
4044 {
4045         nm_log_dbg (LOGD_SUSPEND, "Received sleeping signal");
4046         _internal_sleep (NM_MANAGER (user_data), TRUE);
4047 }
4048
4049 static void
4050 resuming_cb (NMSleepMonitor *monitor, gpointer user_data)
4051 {
4052         nm_log_dbg (LOGD_SUSPEND, "Received resuming signal");
4053         _internal_sleep (NM_MANAGER (user_data), FALSE);
4054 }
4055
4056 static void
4057 _internal_enable (NMManager *self, gboolean enable)
4058 {
4059         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
4060         GError *err = NULL;
4061
4062         /* Update "NetworkingEnabled" key in state file */
4063         if (priv->state_file) {
4064                 if (!write_value_to_state_file (priv->state_file,
4065                                                 "main", "NetworkingEnabled",
4066                                                 G_TYPE_BOOLEAN, (gpointer) &enable,
4067                                                 &err)) {
4068                         /* Not a hard error */
4069                         _LOGW (LOGD_SUSPEND, "writing to state file %s failed: %s",
4070                                priv->state_file,
4071                                err->message);
4072                 }
4073         }
4074
4075         _LOGI (LOGD_SUSPEND, "%s requested (sleeping: %s  enabled: %s)",
4076                enable ? "enable" : "disable",
4077                priv->sleeping ? "yes" : "no",
4078                priv->net_enabled ? "yes" : "no");
4079
4080         priv->net_enabled = enable;
4081
4082         do_sleep_wake (self, FALSE);
4083
4084         g_object_notify (G_OBJECT (self), NM_MANAGER_NETWORKING_ENABLED);
4085 }
4086
4087 static void
4088 enable_net_done_cb (NMAuthChain *chain,
4089                     GError *error,
4090                     GDBusMethodInvocation *context,
4091                     gpointer user_data)
4092 {
4093         NMManager *self = NM_MANAGER (user_data);
4094         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
4095         GError *ret_error = NULL;
4096         NMAuthCallResult result;
4097         gboolean enable;
4098         NMAuthSubject *subject;
4099
4100         g_assert (context);
4101
4102         priv->auth_chains = g_slist_remove (priv->auth_chains, chain);
4103         enable = GPOINTER_TO_UINT (nm_auth_chain_get_data (chain, "enable"));
4104         subject = nm_auth_chain_get_subject (chain);
4105
4106         result = nm_auth_chain_get_result (chain, NM_AUTH_PERMISSION_ENABLE_DISABLE_NETWORK);
4107         if (error) {
4108                 _LOGD (LOGD_CORE, "Enable request failed: %s", error->message);
4109                 ret_error = g_error_new (NM_MANAGER_ERROR,
4110                                          NM_MANAGER_ERROR_PERMISSION_DENIED,
4111                                          "Enable request failed: %s",
4112                                          error->message);
4113         } else if (result != NM_AUTH_CALL_RESULT_YES) {
4114                 ret_error = g_error_new_literal (NM_MANAGER_ERROR,
4115                                                  NM_MANAGER_ERROR_PERMISSION_DENIED,
4116                                                  "Not authorized to enable/disable networking");
4117         } else {
4118                 /* Auth success */
4119                 _internal_enable (self, enable);
4120                 g_dbus_method_invocation_return_value (context, NULL);
4121                 nm_audit_log_control_op (NM_AUDIT_OP_NET_CONTROL, enable ? "on" : "off", TRUE,
4122                                          subject, NULL);
4123         }
4124
4125         if (ret_error) {
4126                 nm_audit_log_control_op (NM_AUDIT_OP_NET_CONTROL, enable ? "on" : "off", FALSE,
4127                                          subject, ret_error->message);
4128                 g_dbus_method_invocation_take_error (context, ret_error);
4129         }
4130
4131         nm_auth_chain_unref (chain);
4132 }
4133
4134 static void
4135 impl_manager_enable (NMManager *self,
4136                      GDBusMethodInvocation *context,
4137                      gboolean enable)
4138 {
4139         NMManagerPrivate *priv;
4140         NMAuthChain *chain;
4141         GError *error = NULL;
4142
4143         g_return_if_fail (NM_IS_MANAGER (self));
4144
4145         priv = NM_MANAGER_GET_PRIVATE (self);
4146
4147         if (priv->net_enabled == enable) {
4148                 error = g_error_new (NM_MANAGER_ERROR,
4149                                      NM_MANAGER_ERROR_ALREADY_ENABLED_OR_DISABLED,
4150                                      "Already %s", enable ? "enabled" : "disabled");
4151                 goto done;
4152         }
4153
4154         chain = nm_auth_chain_new_context (context, enable_net_done_cb, self);
4155         if (!chain) {
4156                 error = g_error_new_literal (NM_MANAGER_ERROR,
4157                                              NM_MANAGER_ERROR_PERMISSION_DENIED,
4158                                              "Unable to authenticate request.");
4159                 goto done;
4160         }
4161
4162         priv->auth_chains = g_slist_append (priv->auth_chains, chain);
4163         nm_auth_chain_set_data (chain, "enable", GUINT_TO_POINTER (enable), NULL);
4164         nm_auth_chain_add_call (chain, NM_AUTH_PERMISSION_ENABLE_DISABLE_NETWORK, TRUE);
4165
4166 done:
4167         if (error)
4168                 g_dbus_method_invocation_take_error (context, error);
4169 }
4170
4171 /* Permissions */
4172
4173 static void
4174 get_perm_add_result (NMAuthChain *chain, GVariantBuilder *results, const char *permission)
4175 {
4176         NMAuthCallResult result;
4177
4178         result = nm_auth_chain_get_result (chain, permission);
4179         if (result == NM_AUTH_CALL_RESULT_YES)
4180                 g_variant_builder_add (results, "{ss}", permission, "yes");
4181         else if (result == NM_AUTH_CALL_RESULT_NO)
4182                 g_variant_builder_add (results, "{ss}", permission, "no");
4183         else if (result == NM_AUTH_CALL_RESULT_AUTH)
4184                 g_variant_builder_add (results, "{ss}", permission, "auth");
4185         else {
4186                 nm_log_dbg (LOGD_CORE, "unknown auth chain result %d", result);
4187         }
4188 }
4189
4190 static void
4191 get_permissions_done_cb (NMAuthChain *chain,
4192                          GError *error,
4193                          GDBusMethodInvocation *context,
4194                          gpointer user_data)
4195 {
4196         NMManager *self = NM_MANAGER (user_data);
4197         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
4198         GError *ret_error;
4199         GVariantBuilder results;
4200
4201         g_assert (context);
4202
4203         priv->auth_chains = g_slist_remove (priv->auth_chains, chain);
4204         if (error) {
4205                 _LOGD (LOGD_CORE, "Permissions request failed: %s", error->message);
4206                 ret_error = g_error_new (NM_MANAGER_ERROR,
4207                                          NM_MANAGER_ERROR_PERMISSION_DENIED,
4208                                          "Permissions request failed: %s",
4209                                          error->message);
4210                 g_dbus_method_invocation_take_error (context, ret_error);
4211         } else {
4212                 g_variant_builder_init (&results, G_VARIANT_TYPE ("a{ss}"));
4213
4214                 get_perm_add_result (chain, &results, NM_AUTH_PERMISSION_ENABLE_DISABLE_NETWORK);
4215                 get_perm_add_result (chain, &results, NM_AUTH_PERMISSION_SLEEP_WAKE);
4216                 get_perm_add_result (chain, &results, NM_AUTH_PERMISSION_ENABLE_DISABLE_WIFI);
4217                 get_perm_add_result (chain, &results, NM_AUTH_PERMISSION_ENABLE_DISABLE_WWAN);
4218                 get_perm_add_result (chain, &results, NM_AUTH_PERMISSION_ENABLE_DISABLE_WIMAX);
4219                 get_perm_add_result (chain, &results, NM_AUTH_PERMISSION_NETWORK_CONTROL);
4220                 get_perm_add_result (chain, &results, NM_AUTH_PERMISSION_WIFI_SHARE_PROTECTED);
4221                 get_perm_add_result (chain, &results, NM_AUTH_PERMISSION_WIFI_SHARE_OPEN);
4222                 get_perm_add_result (chain, &results, NM_AUTH_PERMISSION_SETTINGS_MODIFY_SYSTEM);
4223                 get_perm_add_result (chain, &results, NM_AUTH_PERMISSION_SETTINGS_MODIFY_OWN);
4224                 get_perm_add_result (chain, &results, NM_AUTH_PERMISSION_SETTINGS_MODIFY_HOSTNAME);
4225
4226                 g_dbus_method_invocation_return_value (context,
4227                                                        g_variant_new ("(a{ss})", &results));
4228         }
4229
4230         nm_auth_chain_unref (chain);
4231 }
4232
4233 static void
4234 impl_manager_get_permissions (NMManager *self,
4235                               GDBusMethodInvocation *context)
4236 {
4237         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
4238         NMAuthChain *chain;
4239         GError *error = NULL;
4240
4241         chain = nm_auth_chain_new_context (context, get_permissions_done_cb, self);
4242         if (!chain) {
4243                 error = g_error_new_literal (NM_MANAGER_ERROR,
4244                                              NM_MANAGER_ERROR_PERMISSION_DENIED,
4245                                              "Unable to authenticate request.");
4246                 g_dbus_method_invocation_take_error (context, error);
4247                 return;
4248         }
4249
4250         priv->auth_chains = g_slist_append (priv->auth_chains, chain);
4251         nm_auth_chain_add_call (chain, NM_AUTH_PERMISSION_ENABLE_DISABLE_NETWORK, FALSE);
4252         nm_auth_chain_add_call (chain, NM_AUTH_PERMISSION_SLEEP_WAKE, FALSE);
4253         nm_auth_chain_add_call (chain, NM_AUTH_PERMISSION_ENABLE_DISABLE_WIFI, FALSE);
4254         nm_auth_chain_add_call (chain, NM_AUTH_PERMISSION_ENABLE_DISABLE_WWAN, FALSE);
4255         nm_auth_chain_add_call (chain, NM_AUTH_PERMISSION_ENABLE_DISABLE_WIMAX, FALSE);
4256         nm_auth_chain_add_call (chain, NM_AUTH_PERMISSION_NETWORK_CONTROL, FALSE);
4257         nm_auth_chain_add_call (chain, NM_AUTH_PERMISSION_WIFI_SHARE_PROTECTED, FALSE);
4258         nm_auth_chain_add_call (chain, NM_AUTH_PERMISSION_WIFI_SHARE_OPEN, FALSE);
4259         nm_auth_chain_add_call (chain, NM_AUTH_PERMISSION_SETTINGS_MODIFY_SYSTEM, FALSE);
4260         nm_auth_chain_add_call (chain, NM_AUTH_PERMISSION_SETTINGS_MODIFY_OWN, FALSE);
4261         nm_auth_chain_add_call (chain, NM_AUTH_PERMISSION_SETTINGS_MODIFY_HOSTNAME, FALSE);
4262 }
4263
4264 static void
4265 impl_manager_get_state (NMManager *self,
4266                         GDBusMethodInvocation *context)
4267 {
4268         nm_manager_update_state (self);
4269         g_dbus_method_invocation_return_value (context,
4270                                                g_variant_new ("(u)", NM_MANAGER_GET_PRIVATE (self)->state));
4271 }
4272
4273 static void
4274 impl_manager_set_logging (NMManager *self,
4275                           GDBusMethodInvocation *context,
4276                           const char *level,
4277                           const char *domains)
4278 {
4279         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
4280         GError *error = NULL;
4281         gulong caller_uid = G_MAXULONG;
4282
4283         if (!nm_bus_manager_get_caller_info (priv->dbus_mgr, context, NULL, &caller_uid, NULL)) {
4284                 error = g_error_new_literal (NM_MANAGER_ERROR,
4285                                              NM_MANAGER_ERROR_PERMISSION_DENIED,
4286                                              "Failed to get request UID.");
4287                 goto done;
4288         }
4289
4290         if (0 != caller_uid) {
4291                 error = g_error_new_literal (NM_MANAGER_ERROR,
4292                                              NM_MANAGER_ERROR_PERMISSION_DENIED,
4293                                              "Permission denied");
4294                 goto done;
4295         }
4296
4297         if (nm_logging_setup (level, domains, NULL, &error)) {
4298                 _LOGI (LOGD_CORE, "logging: level '%s' domains '%s'",
4299                        nm_logging_level_to_string (), nm_logging_domains_to_string ());
4300         }
4301
4302 done:
4303         if (error)
4304                 g_dbus_method_invocation_take_error (context, error);
4305         else
4306                 g_dbus_method_invocation_return_value (context, NULL);
4307 }
4308
4309 static void
4310 impl_manager_get_logging (NMManager *manager,
4311                           GDBusMethodInvocation *context)
4312 {
4313         g_dbus_method_invocation_return_value (context,
4314                                                g_variant_new ("(ss)",
4315                                                               nm_logging_level_to_string (),
4316                                                               nm_logging_domains_to_string ()));
4317 }
4318
4319 static void
4320 connectivity_check_done (GObject *object,
4321                          GAsyncResult *result,
4322                          gpointer user_data)
4323 {
4324         GDBusMethodInvocation *context = user_data;
4325         NMConnectivityState state;
4326         GError *error = NULL;
4327
4328         state = nm_connectivity_check_finish (NM_CONNECTIVITY (object), result, &error);
4329         if (error)
4330                 g_dbus_method_invocation_take_error (context, error);
4331         else {
4332                 g_dbus_method_invocation_return_value (context,
4333                                                        g_variant_new ("(u)", state));
4334         }
4335 }
4336
4337
4338 static void
4339 check_connectivity_auth_done_cb (NMAuthChain *chain,
4340                                  GError *auth_error,
4341                                  GDBusMethodInvocation *context,
4342                                  gpointer user_data)
4343 {
4344         NMManager *self = NM_MANAGER (user_data);
4345         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
4346         GError *error = NULL;
4347         NMAuthCallResult result;
4348
4349         priv->auth_chains = g_slist_remove (priv->auth_chains, chain);
4350
4351         result = nm_auth_chain_get_result (chain, NM_AUTH_PERMISSION_NETWORK_CONTROL);
4352
4353         if (auth_error) {
4354                 _LOGD (LOGD_CORE, "CheckConnectivity request failed: %s", auth_error->message);
4355                 error = g_error_new (NM_MANAGER_ERROR,
4356                                      NM_MANAGER_ERROR_PERMISSION_DENIED,
4357                                      "Connectivity check request failed: %s",
4358                                      auth_error->message);
4359         } else if (result != NM_AUTH_CALL_RESULT_YES) {
4360                 error = g_error_new_literal (NM_MANAGER_ERROR,
4361                                              NM_MANAGER_ERROR_PERMISSION_DENIED,
4362                                              "Not authorized to recheck connectivity");
4363         } else {
4364                 /* it's allowed */
4365                 nm_connectivity_check_async (priv->connectivity,
4366                                              connectivity_check_done,
4367                                              context);
4368         }
4369
4370         if (error)
4371                 g_dbus_method_invocation_take_error (context, error);
4372         nm_auth_chain_unref (chain);
4373 }
4374
4375 static void
4376 impl_manager_check_connectivity (NMManager *self,
4377                                  GDBusMethodInvocation *context)
4378 {
4379         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
4380         NMAuthChain *chain;
4381         GError *error = NULL;
4382
4383         /* Validate the request */
4384         chain = nm_auth_chain_new_context (context, check_connectivity_auth_done_cb, self);
4385         if (!chain) {
4386                 error = g_error_new_literal (NM_MANAGER_ERROR,
4387                                              NM_MANAGER_ERROR_PERMISSION_DENIED,
4388                                              "Unable to authenticate request.");
4389                 g_dbus_method_invocation_take_error (context, error);
4390                 return;
4391         }
4392
4393         priv->auth_chains = g_slist_append (priv->auth_chains, chain);
4394         nm_auth_chain_add_call (chain, NM_AUTH_PERMISSION_NETWORK_CONTROL, TRUE);
4395 }
4396
4397 static void
4398 start_factory (NMDeviceFactory *factory, gpointer user_data)
4399 {
4400         nm_device_factory_start (factory);
4401 }
4402
4403 gboolean
4404 nm_manager_start (NMManager *self, GError **error)
4405 {
4406         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
4407         GSList *iter, *connections;
4408         guint i;
4409
4410         if (!nm_settings_start (priv->settings, error))
4411                 return FALSE;
4412
4413         g_signal_connect (NM_PLATFORM_GET,
4414                           NM_PLATFORM_SIGNAL_LINK_CHANGED,
4415                           G_CALLBACK (platform_link_cb),
4416                           self);
4417
4418         /* Set initial radio enabled/disabled state */
4419         for (i = 0; i < RFKILL_TYPE_MAX; i++) {
4420                 RadioState *rstate = &priv->radio_states[i];
4421                 gboolean enabled;
4422
4423                 if (!rstate->desc)
4424                         continue;
4425
4426                 /* recheck kernel rfkill state */
4427                 update_rstate_from_rfkill (priv->rfkill_mgr, rstate);
4428
4429                 if (rstate->desc) {
4430                         _LOGI (LOGD_RFKILL, "%s %s by radio killswitch; %s by state file",
4431                                rstate->desc,
4432                                (rstate->hw_enabled && rstate->sw_enabled) ? "enabled" : "disabled",
4433                                rstate->user_enabled ? "enabled" : "disabled");
4434                 }
4435                 enabled = radio_enabled_for_rstate (rstate, TRUE);
4436                 manager_update_radio_enabled (self, rstate, enabled);
4437         }
4438
4439         /* Log overall networking status - enabled/disabled */
4440         _LOGI (LOGD_CORE, "Networking is %s by state file",
4441                priv->net_enabled ? "enabled" : "disabled");
4442
4443         system_unmanaged_devices_changed_cb (priv->settings, NULL, self);
4444         system_hostname_changed_cb (priv->settings, NULL, self);
4445
4446         /* Start device factories */
4447         nm_device_factory_manager_load_factories (_register_device_factory, self);
4448         nm_device_factory_manager_for_each_factory (start_factory, NULL);
4449
4450         platform_query_devices (self);
4451
4452         /* Load VPN plugins */
4453         priv->vpn_manager = g_object_ref (nm_vpn_manager_get ());
4454
4455         /* Connections added before the manager is started do not emit
4456          * connection-added signals thus devices have to be created manually.
4457          */
4458         _LOGD (LOGD_CORE, "creating virtual devices...");
4459         connections = nm_settings_get_connections (priv->settings);
4460         for (iter = connections; iter; iter = iter->next)
4461                 connection_changed (priv->settings, NM_CONNECTION (iter->data), self);
4462         g_slist_free (connections);
4463
4464         priv->devices_inited = TRUE;
4465
4466         check_if_startup_complete (self);
4467
4468         return TRUE;
4469 }
4470
4471 void
4472 nm_manager_stop (NMManager *self)
4473 {
4474         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
4475
4476         /* Remove all devices */
4477         while (priv->devices)
4478                 remove_device (self, NM_DEVICE (priv->devices->data), TRUE, TRUE);
4479
4480         _active_connection_cleanup (self);
4481 }
4482
4483 static gboolean
4484 handle_firmware_changed (gpointer user_data)
4485 {
4486         NMManager *self = NM_MANAGER (user_data);
4487         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
4488         GSList *iter;
4489
4490         priv->fw_changed_id = 0;
4491
4492         /* Try to re-enable devices with missing firmware */
4493         for (iter = priv->devices; iter; iter = iter->next) {
4494                 NMDevice *candidate = NM_DEVICE (iter->data);
4495                 NMDeviceState state = nm_device_get_state (candidate);
4496
4497                 if (   nm_device_get_firmware_missing (candidate)
4498                     && (state == NM_DEVICE_STATE_UNAVAILABLE)) {
4499                         _LOGI (LOGD_CORE, "(%s): firmware may now be available",
4500                                nm_device_get_iface (candidate));
4501
4502                         /* Re-set unavailable state to try bringing the device up again */
4503                         nm_device_state_changed (candidate,
4504                                                  NM_DEVICE_STATE_UNAVAILABLE,
4505                                                  NM_DEVICE_STATE_REASON_NONE);
4506                 }
4507         }
4508
4509         return FALSE;
4510 }
4511
4512 static void
4513 connectivity_changed (NMConnectivity *connectivity,
4514                       GParamSpec *pspec,
4515                       gpointer user_data)
4516 {
4517         NMManager *self = NM_MANAGER (user_data);
4518
4519         _LOGD (LOGD_CORE, "connectivity checking indicates %s",
4520                nm_connectivity_state_to_string (nm_connectivity_get_state (connectivity)));
4521
4522         nm_manager_update_state (self);
4523         g_object_notify (G_OBJECT (self), NM_MANAGER_CONNECTIVITY);
4524 }
4525
4526 static void
4527 firmware_dir_changed (GFileMonitor *monitor,
4528                       GFile *file,
4529                       GFile *other_file,
4530                       GFileMonitorEvent event_type,
4531                       gpointer user_data)
4532 {
4533         NMManager *self = NM_MANAGER (user_data);
4534         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
4535
4536         switch (event_type) {
4537         case G_FILE_MONITOR_EVENT_CREATED:
4538         case G_FILE_MONITOR_EVENT_CHANGED:
4539         case G_FILE_MONITOR_EVENT_MOVED:
4540         case G_FILE_MONITOR_EVENT_ATTRIBUTE_CHANGED:
4541         case G_FILE_MONITOR_EVENT_CHANGES_DONE_HINT:
4542                 if (!priv->fw_changed_id) {
4543                         priv->fw_changed_id = g_timeout_add_seconds (4, handle_firmware_changed, self);
4544                         _LOGI (LOGD_CORE, "kernel firmware directory '%s' changed",
4545                                KERNEL_FIRMWARE_DIR);
4546                 }
4547                 break;
4548         default:
4549                 break;
4550         }
4551 }
4552
4553 static void
4554 connection_metered_changed (GObject *object,
4555                             NMMetered metered,
4556                             gpointer user_data)
4557 {
4558         nm_manager_update_metered (NM_MANAGER (user_data));
4559 }
4560
4561 static void
4562 policy_default_device_changed (GObject *object, GParamSpec *pspec, gpointer user_data)
4563 {
4564         NMManager *self = NM_MANAGER (user_data);
4565         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
4566         NMDevice *best;
4567         NMActiveConnection *ac;
4568
4569         /* Note: this assumes that it's not possible for the IP4 default
4570          * route to be going over the default-ip6-device. If that changes,
4571          * we need something more complicated here.
4572          */
4573         best = nm_policy_get_default_ip4_device (priv->policy);
4574         if (!best)
4575                 best = nm_policy_get_default_ip6_device (priv->policy);
4576
4577         if (best)
4578                 ac = NM_ACTIVE_CONNECTION (nm_device_get_act_request (best));
4579         else
4580                 ac = NULL;
4581
4582         if (ac != priv->primary_connection) {
4583                 if (priv->primary_connection) {
4584                         g_signal_handlers_disconnect_by_func (priv->primary_connection,
4585                                                               G_CALLBACK (connection_metered_changed),
4586                                                               self);
4587                         g_clear_object (&priv->primary_connection);
4588                 }
4589
4590                 priv->primary_connection = ac ? g_object_ref (ac) : NULL;
4591
4592                 if (priv->primary_connection) {
4593                         g_signal_connect (priv->primary_connection, NM_ACTIVE_CONNECTION_DEVICE_METERED_CHANGED,
4594                                           G_CALLBACK (connection_metered_changed), self);
4595                 }
4596                 _LOGD (LOGD_CORE, "PrimaryConnection now %s", ac ? nm_active_connection_get_settings_connection_id (ac) : "(none)");
4597                 g_object_notify (G_OBJECT (self), NM_MANAGER_PRIMARY_CONNECTION);
4598                 g_object_notify (G_OBJECT (self), NM_MANAGER_PRIMARY_CONNECTION_TYPE);
4599                 nm_manager_update_metered (self);
4600         }
4601 }
4602
4603 static void
4604 policy_activating_device_changed (GObject *object, GParamSpec *pspec, gpointer user_data)
4605 {
4606         NMManager *self = NM_MANAGER (user_data);
4607         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
4608         NMDevice *activating, *best;
4609         NMActiveConnection *ac;
4610
4611         /* We only look at activating-ip6-device if activating-ip4-device
4612          * AND default-ip4-device are NULL; if default-ip4-device is
4613          * non-NULL, then activating-ip6-device is irrelevant, since while
4614          * that device might become the new default-ip6-device, it can't
4615          * become primary-connection while default-ip4-device is set to
4616          * something else.
4617          */
4618         activating = nm_policy_get_activating_ip4_device (priv->policy);
4619         best = nm_policy_get_default_ip4_device (priv->policy);
4620         if (!activating && !best)
4621                 activating = nm_policy_get_activating_ip6_device (priv->policy);
4622
4623         if (activating)
4624                 ac = NM_ACTIVE_CONNECTION (nm_device_get_act_request (activating));
4625         else
4626                 ac = NULL;
4627
4628         if (ac != priv->activating_connection) {
4629                 g_clear_object (&priv->activating_connection);
4630                 priv->activating_connection = ac ? g_object_ref (ac) : NULL;
4631                 _LOGD (LOGD_CORE, "ActivatingConnection now %s", ac ? nm_active_connection_get_settings_connection_id (ac) : "(none)");
4632                 g_object_notify (G_OBJECT (self), NM_MANAGER_ACTIVATING_CONNECTION);
4633         }
4634 }
4635
4636 #define NM_PERM_DENIED_ERROR "org.freedesktop.NetworkManager.PermissionDenied"
4637
4638 typedef struct {
4639         NMManager *self;
4640         GDBusConnection *connection;
4641         GDBusMessage *message;
4642         NMAuthSubject *subject;
4643         const char *permission;
4644         const char *audit_op;
4645         char *audit_prop_value;
4646         GType interface_type;
4647         const char *glib_propname;
4648 } PropertyFilterData;
4649
4650 static void
4651 free_property_filter_data (PropertyFilterData *pfd)
4652 {
4653         g_object_unref (pfd->self);
4654         g_object_unref (pfd->connection);
4655         g_object_unref (pfd->message);
4656         g_clear_object (&pfd->subject);
4657         g_free (pfd->audit_prop_value);
4658         g_slice_free (PropertyFilterData, pfd);
4659 }
4660
4661 static void
4662 prop_set_auth_done_cb (NMAuthChain *chain,
4663                        GError *error,
4664                        GDBusMethodInvocation *context, /* NULL */
4665                        gpointer user_data)
4666 {
4667         PropertyFilterData *pfd = user_data;
4668         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (pfd->self);
4669         NMAuthCallResult result;
4670         GDBusMessage *reply = NULL;
4671         const char *error_message;
4672         gs_unref_object NMExportedObject *object = NULL;
4673         const NMGlobalDnsConfig *global_dns;
4674         gs_unref_variant GVariant *value = NULL;
4675         GVariant *args;
4676
4677         priv->auth_chains = g_slist_remove (priv->auth_chains, chain);
4678         result = nm_auth_chain_get_result (chain, pfd->permission);
4679         if (error || (result != NM_AUTH_CALL_RESULT_YES)) {
4680                 reply = g_dbus_message_new_method_error (pfd->message,
4681                                                          NM_PERM_DENIED_ERROR,
4682                                                          (error_message = "Not authorized to perform this operation"));
4683                 if (error)
4684                         error_message = error->message;
4685                 goto done;
4686         }
4687
4688         object = NM_EXPORTED_OBJECT (nm_bus_manager_get_registered_object (priv->dbus_mgr,
4689                                                                            g_dbus_message_get_path (pfd->message)));
4690         if (!object) {
4691                 reply = g_dbus_message_new_method_error (pfd->message,
4692                                                          "org.freedesktop.DBus.Error.UnknownObject",
4693                                                          (error_message = "Object doesn't exist."));
4694                 goto done;
4695         }
4696
4697         /* do some extra type checking... */
4698         if (!nm_exported_object_get_interface_by_type (object, pfd->interface_type)) {
4699                 reply = g_dbus_message_new_method_error (pfd->message,
4700                                                          "org.freedesktop.DBus.Error.InvalidArgs",
4701                                                          (error_message = "Object is of unexpected type."));
4702                 goto done;
4703         }
4704
4705         args = g_dbus_message_get_body (pfd->message);
4706         g_variant_get (args, "(&s&sv)", NULL, NULL, &value);
4707         g_assert (pfd->glib_propname);
4708
4709         if (!strcmp (pfd->glib_propname, NM_MANAGER_GLOBAL_DNS_CONFIGURATION)) {
4710                 g_assert (g_variant_is_of_type (value, G_VARIANT_TYPE ("a{sv}")));
4711                 global_dns = nm_config_data_get_global_dns_config (nm_config_get_data (priv->config));
4712
4713                 if (global_dns && !nm_global_dns_config_is_internal (global_dns)) {
4714                         reply = g_dbus_message_new_method_error (pfd->message,
4715                                                                  NM_PERM_DENIED_ERROR,
4716                                                                  (error_message = "Global DNS configuration already set via configuration file"));
4717                         goto done;
4718                 }
4719                 /* ... but set the property on the @object itself. It would be correct to set the property
4720                  * on the skeleton interface, but as it is now, the result is the same. */
4721                 g_object_set (object, pfd->glib_propname, value, NULL);
4722         } else {
4723                 g_assert (g_variant_is_of_type (value, G_VARIANT_TYPE_BOOLEAN));
4724                 /* the same here */
4725                 g_object_set (object, pfd->glib_propname, g_variant_get_boolean (value), NULL);
4726         }
4727
4728         reply = g_dbus_message_new_method_reply (pfd->message);
4729         g_dbus_message_set_body (reply, g_variant_new_tuple (NULL, 0));
4730         error_message = NULL;
4731 done:
4732         nm_audit_log_control_op (pfd->audit_op, pfd->audit_prop_value, !error_message, pfd->subject, error_message);
4733
4734         g_dbus_connection_send_message (pfd->connection, reply,
4735                                         G_DBUS_SEND_MESSAGE_FLAGS_NONE,
4736                                         NULL, NULL);
4737         g_object_unref (reply);
4738         nm_auth_chain_unref (chain);
4739
4740         free_property_filter_data (pfd);
4741 }
4742
4743 static gboolean
4744 do_set_property_check (gpointer user_data)
4745 {
4746         PropertyFilterData *pfd = user_data;
4747         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (pfd->self);
4748         GDBusMessage *reply = NULL;
4749         NMAuthChain *chain;
4750         const char *error_message = NULL;
4751
4752         pfd->subject = nm_auth_subject_new_unix_process_from_message (pfd->connection, pfd->message);
4753         if (!pfd->subject) {
4754                 reply = g_dbus_message_new_method_error (pfd->message,
4755                                                          NM_PERM_DENIED_ERROR,
4756                                                          (error_message = "Could not determine request UID."));
4757                 goto out;
4758         }
4759
4760         /* Validate the user request */
4761         chain = nm_auth_chain_new_subject (pfd->subject, NULL, prop_set_auth_done_cb, pfd);
4762         if (!chain) {
4763                 reply = g_dbus_message_new_method_error (pfd->message,
4764                                                          NM_PERM_DENIED_ERROR,
4765                                                          (error_message = "Could not authenticate request."));
4766                 goto out;
4767         }
4768
4769         priv->auth_chains = g_slist_append (priv->auth_chains, chain);
4770         nm_auth_chain_add_call (chain, pfd->permission, TRUE);
4771
4772 out:
4773         if (reply) {
4774                 nm_audit_log_control_op (pfd->audit_op, pfd->audit_prop_value, FALSE, pfd->subject, error_message);
4775                 g_dbus_connection_send_message (pfd->connection, reply,
4776                                                 G_DBUS_SEND_MESSAGE_FLAGS_NONE,
4777                                                 NULL, NULL);
4778                 g_object_unref (reply);
4779                 free_property_filter_data (pfd);
4780         }
4781
4782         return FALSE;
4783 }
4784
4785 static GDBusMessage *
4786 prop_filter (GDBusConnection *connection,
4787              GDBusMessage *message,
4788              gboolean incoming,
4789              gpointer user_data)
4790 {
4791         gs_unref_object NMManager *self = NULL;
4792         GVariant *args;
4793         const char *propiface = NULL;
4794         const char *propname = NULL;
4795         const char *glib_propname = NULL, *permission = NULL;
4796         const char *audit_op = NULL;
4797         GType interface_type = G_TYPE_INVALID;
4798         PropertyFilterData *pfd;
4799         const GVariantType *expected_type = G_VARIANT_TYPE_BOOLEAN;
4800         gs_unref_variant GVariant *value = NULL;
4801
4802         self = g_weak_ref_get (user_data);
4803         if (!self)
4804                 return message;
4805
4806         /* The sole purpose of this function is to validate property accesses on the
4807          * NMManager object since gdbus doesn't give us this functionality.
4808          */
4809
4810         /* Only filter org.freedesktop.DBus.Properties.Set calls */
4811         if (   !incoming
4812             || g_dbus_message_get_message_type (message) != G_DBUS_MESSAGE_TYPE_METHOD_CALL
4813             || g_strcmp0 (g_dbus_message_get_interface (message), DBUS_INTERFACE_PROPERTIES) != 0
4814             || g_strcmp0 (g_dbus_message_get_member (message), "Set") != 0)
4815                 return message;
4816
4817         args = g_dbus_message_get_body (message);
4818         if (!g_variant_is_of_type (args, G_VARIANT_TYPE ("(ssv)")))
4819                 return message;
4820         g_variant_get (args, "(&s&sv)", &propiface, &propname, &value);
4821
4822         /* Only filter calls to filtered properties, on existing objects */
4823         if (!strcmp (propiface, NM_DBUS_INTERFACE)) {
4824                 if (!strcmp (propname, "WirelessEnabled")) {
4825                         glib_propname = NM_MANAGER_WIRELESS_ENABLED;
4826                         permission = NM_AUTH_PERMISSION_ENABLE_DISABLE_WIFI;
4827                         audit_op = NM_AUDIT_OP_RADIO_CONTROL;
4828                 } else if (!strcmp (propname, "WwanEnabled")) {
4829                         glib_propname = NM_MANAGER_WWAN_ENABLED;
4830                         permission = NM_AUTH_PERMISSION_ENABLE_DISABLE_WWAN;
4831                         audit_op = NM_AUDIT_OP_RADIO_CONTROL;
4832                 } else if (!strcmp (propname, "WimaxEnabled")) {
4833                         glib_propname = NM_MANAGER_WIMAX_ENABLED;
4834                         permission = NM_AUTH_PERMISSION_ENABLE_DISABLE_WIMAX;
4835                         audit_op = NM_AUDIT_OP_RADIO_CONTROL;
4836                 } else if (!strcmp (propname, "GlobalDnsConfiguration")) {
4837                         glib_propname = NM_MANAGER_GLOBAL_DNS_CONFIGURATION;
4838                         permission = NM_AUTH_PERMISSION_SETTINGS_MODIFY_GLOBAL_DNS;
4839                         audit_op = NM_AUDIT_OP_NET_CONTROL;
4840                         expected_type = G_VARIANT_TYPE ("a{sv}");
4841                 } else
4842                         return message;
4843                 interface_type = NMDBUS_TYPE_MANAGER_SKELETON;
4844         } else if (!strcmp (propiface, NM_DBUS_INTERFACE_DEVICE)) {
4845                 if (!strcmp (propname, "Autoconnect")) {
4846                         glib_propname = NM_DEVICE_AUTOCONNECT;
4847                         permission = NM_AUTH_PERMISSION_NETWORK_CONTROL;
4848                         audit_op = NM_AUDIT_OP_DEVICE_AUTOCONNECT;
4849                 } else if (!strcmp (propname, "Managed")) {
4850                         glib_propname = NM_DEVICE_MANAGED;
4851                         permission = NM_AUTH_PERMISSION_NETWORK_CONTROL;
4852                         audit_op = NM_AUDIT_OP_DEVICE_MANAGED;
4853                 } else
4854                         return message;
4855                 interface_type = NMDBUS_TYPE_DEVICE_SKELETON;
4856         } else
4857                 return message;
4858
4859         if (!g_variant_is_of_type (value, expected_type))
4860                 return message;
4861
4862         /* This filter function is called from a gdbus worker thread which we can't
4863          * make other D-Bus calls from. In particular, we cannot call
4864          * org.freedesktop.DBus.GetConnectionUnixUser to find the remote UID.
4865          */
4866         pfd = g_slice_new0 (PropertyFilterData);
4867         pfd->self = self;
4868         self = NULL;
4869         pfd->connection = g_object_ref (connection);
4870         pfd->message = message;
4871         pfd->permission = permission;
4872         pfd->interface_type = interface_type;
4873         pfd->glib_propname = glib_propname;
4874         pfd->audit_op = audit_op;
4875         if (g_variant_is_of_type (value, G_VARIANT_TYPE_BOOLEAN)) {
4876                 pfd->audit_prop_value = g_strdup_printf ("%s:%d", pfd->glib_propname,
4877                                                          g_variant_get_boolean (value));
4878         } else
4879                 pfd->audit_prop_value = g_strdup (pfd->glib_propname);
4880
4881         g_idle_add (do_set_property_check, pfd);
4882
4883         return NULL;
4884 }
4885
4886 /******************************************************************************/
4887
4888 static int
4889 _set_prop_filter_free2 (gpointer user_data)
4890 {
4891         g_slice_free (GWeakRef, user_data);
4892         return G_SOURCE_REMOVE;
4893 }
4894
4895 static void
4896 _set_prop_filter_free (gpointer user_data)
4897 {
4898         g_weak_ref_clear (user_data);
4899
4900         /* Delay the final deletion of the user_data. There is a race when
4901          * calling g_dbus_connection_remove_filter() that the callback and user_data
4902          * might have been copied and being executed after the destroy function
4903          * runs (bgo #704568).
4904          * This doesn't really fix the race, but it should work well enough. */
4905         g_timeout_add_seconds (2, _set_prop_filter_free2, user_data);
4906 }
4907
4908 static void
4909 _set_prop_filter (NMManager *self, GDBusConnection *connection)
4910 {
4911         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
4912
4913         nm_assert ((!priv->prop_filter.connection) == (!priv->prop_filter.id));
4914
4915         if (priv->prop_filter.connection == connection)
4916                 return;
4917
4918         if (priv->prop_filter.connection) {
4919                 g_dbus_connection_remove_filter (priv->prop_filter.connection, priv->prop_filter.id);
4920                 priv->prop_filter.id = 0;
4921                 g_clear_object (&priv->prop_filter.connection);
4922         }
4923         if (connection) {
4924                 GWeakRef *wptr;
4925
4926                 wptr = g_slice_new (GWeakRef);
4927                 g_weak_ref_init  (wptr, self);
4928                 priv->prop_filter.id = g_dbus_connection_add_filter (connection, prop_filter, wptr, _set_prop_filter_free);
4929                 priv->prop_filter.connection = g_object_ref (connection);
4930         }
4931 }
4932
4933 /******************************************************************************/
4934
4935 static void
4936 authority_changed_cb (NMAuthManager *auth_manager, gpointer user_data)
4937 {
4938         /* Let clients know they should re-check their authorization */
4939         g_signal_emit (NM_MANAGER (user_data), signals[CHECK_PERMISSIONS], 0);
4940 }
4941
4942 #define KERN_RFKILL_OP_CHANGE_ALL 3
4943 #define KERN_RFKILL_TYPE_WLAN     1
4944 #define KERN_RFKILL_TYPE_WWAN     5
4945 struct rfkill_event {
4946         __u32 idx;
4947         __u8  type;
4948         __u8  op;
4949         __u8  soft, hard;
4950 } __attribute__((packed));
4951
4952 static void
4953 rfkill_change (const char *desc, RfKillType rtype, gboolean enabled)
4954 {
4955         int fd;
4956         struct rfkill_event event;
4957         ssize_t len;
4958
4959         g_return_if_fail (rtype == RFKILL_TYPE_WLAN || rtype == RFKILL_TYPE_WWAN);
4960
4961         errno = 0;
4962         fd = open ("/dev/rfkill", O_RDWR);
4963         if (fd < 0) {
4964                 if (errno == EACCES)
4965                         nm_log_warn (LOGD_RFKILL, "(%s): failed to open killswitch device", desc);
4966                 return;
4967         }
4968
4969         if (fcntl (fd, F_SETFL, O_NONBLOCK) < 0) {
4970                 nm_log_warn (LOGD_RFKILL, "(%s): failed to set killswitch device for "
4971                              "non-blocking operation", desc);
4972                 close (fd);
4973                 return;
4974         }
4975
4976         memset (&event, 0, sizeof (event));
4977         event.op = KERN_RFKILL_OP_CHANGE_ALL;
4978         switch (rtype) {
4979         case RFKILL_TYPE_WLAN:
4980                 event.type = KERN_RFKILL_TYPE_WLAN;
4981                 break;
4982         case RFKILL_TYPE_WWAN:
4983                 event.type = KERN_RFKILL_TYPE_WWAN;
4984                 break;
4985         default:
4986                 g_assert_not_reached ();
4987         }
4988         event.soft = enabled ? 0 : 1;
4989
4990         len = write (fd, &event, sizeof (event));
4991         if (len < 0) {
4992                 nm_log_warn (LOGD_RFKILL, "(%s): failed to change WiFi killswitch state: (%d) %s",
4993                              desc, errno, g_strerror (errno));
4994         } else if (len == sizeof (event)) {
4995                 nm_log_info (LOGD_RFKILL, "%s hardware radio set %s",
4996                              desc, enabled ? "enabled" : "disabled");
4997         } else {
4998                 /* Failed to write full structure */
4999                 nm_log_warn (LOGD_RFKILL, "(%s): failed to change WiFi killswitch state", desc);
5000         }
5001
5002         close (fd);
5003 }
5004
5005 static void
5006 manager_radio_user_toggled (NMManager *self,
5007                             RadioState *rstate,
5008                             gboolean enabled)
5009 {
5010         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
5011         GError *error = NULL;
5012         gboolean old_enabled, new_enabled;
5013
5014         /* Don't touch devices if asleep/networking disabled */
5015         if (manager_sleeping (self))
5016                 return;
5017
5018         if (rstate->desc) {
5019                 _LOGD (LOGD_RFKILL, "(%s): setting radio %s by user",
5020                        rstate->desc,
5021                        enabled ? "enabled" : "disabled");
5022         }
5023
5024         /* Update enabled key in state file */
5025         if (priv->state_file) {
5026                 if (!write_value_to_state_file (priv->state_file,
5027                                                 "main", rstate->key,
5028                                                 G_TYPE_BOOLEAN, (gpointer) &enabled,
5029                                                 &error)) {
5030                         _LOGW (LOGD_CORE, "writing to state file %s failed: %s",
5031                                priv->state_file,
5032                                error->message);
5033                         g_clear_error (&error);
5034                 }
5035         }
5036
5037         /* When the user toggles the radio, their request should override any
5038          * daemon (like ModemManager) enabled state that can be changed.  For WWAN
5039          * for example, we want the WwanEnabled property to reflect the daemon state
5040          * too so that users can toggle the modem powered, but we don't want that
5041          * daemon state to affect whether or not the user *can* turn it on, which is
5042          * what the kernel rfkill state does.  So we ignore daemon enabled state
5043          * when determining what the new state should be since it shouldn't block
5044          * the user's request.
5045          */
5046         old_enabled = radio_enabled_for_rstate (rstate, TRUE);
5047         rstate->user_enabled = enabled;
5048         new_enabled = radio_enabled_for_rstate (rstate, FALSE);
5049         if (new_enabled != old_enabled) {
5050                 /* Try to change the kernel rfkill state */
5051                 if (rstate->rtype == RFKILL_TYPE_WLAN || rstate->rtype == RFKILL_TYPE_WWAN)
5052                         rfkill_change (rstate->desc, rstate->rtype, new_enabled);
5053
5054                 manager_update_radio_enabled (self, rstate, new_enabled);
5055         }
5056 }
5057
5058 static gboolean
5059 periodic_update_active_connection_timestamps (gpointer user_data)
5060 {
5061         NMManager *manager = NM_MANAGER (user_data);
5062         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (manager);
5063         GSList *iter;
5064
5065         for (iter = priv->active_connections; iter; iter = g_slist_next (iter)) {
5066                 NMActiveConnection *ac = iter->data;
5067                 NMSettingsConnection *connection;
5068
5069                 if (nm_active_connection_get_state (ac) == NM_ACTIVE_CONNECTION_STATE_ACTIVATED) {
5070                         connection = nm_active_connection_get_settings_connection (ac);
5071                         nm_settings_connection_update_timestamp (connection, (guint64) time (NULL), FALSE);
5072                 }
5073         }
5074
5075         return TRUE;
5076 }
5077
5078 static void
5079 dbus_connection_changed_cb (NMBusManager *dbus_mgr,
5080                             GDBusConnection *connection,
5081                             gpointer user_data)
5082 {
5083         _set_prop_filter (NM_MANAGER (user_data), connection);
5084 }
5085
5086 /**********************************************************************/
5087
5088 NM_DEFINE_SINGLETON_REGISTER (NMManager);
5089
5090 NMManager *
5091 nm_manager_get (void)
5092 {
5093         g_return_val_if_fail (singleton_instance, NULL);
5094         return singleton_instance;
5095 }
5096
5097 NMConnectionProvider *
5098 nm_connection_provider_get (void)
5099 {
5100         NMConnectionProvider *p;
5101
5102         g_return_val_if_fail (singleton_instance, NULL);
5103
5104         p = NM_CONNECTION_PROVIDER (NM_MANAGER_GET_PRIVATE (singleton_instance)->settings);
5105         g_return_val_if_fail (p, NULL);
5106         return p;
5107 }
5108
5109 NMManager *
5110 nm_manager_setup (const char *state_file,
5111                   gboolean initial_net_enabled,
5112                   gboolean initial_wifi_enabled,
5113                   gboolean initial_wwan_enabled)
5114 {
5115         NMManager *self;
5116
5117         g_return_val_if_fail (!singleton_instance, singleton_instance);
5118
5119         self = g_object_new (NM_TYPE_MANAGER,
5120                              NM_MANAGER_NETWORKING_ENABLED, initial_net_enabled,
5121                              NM_MANAGER_WIRELESS_ENABLED, initial_wifi_enabled,
5122                              NM_MANAGER_WWAN_ENABLED, initial_wwan_enabled,
5123                              NM_MANAGER_STATE_FILE, state_file,
5124                              NULL);
5125         nm_assert (NM_IS_MANAGER (self));
5126         singleton_instance = self;
5127
5128         nm_singleton_instance_register ();
5129         _LOGD (LOGD_CORE, "setup %s singleton (%p)", "NMManager", singleton_instance);
5130
5131         nm_exported_object_export ((NMExportedObject *) self);
5132
5133         return self;
5134 }
5135
5136 static void
5137 constructed (GObject *object)
5138 {
5139         NMManager *self = NM_MANAGER (object);
5140         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
5141         NMConfigData *config_data;
5142
5143         G_OBJECT_CLASS (nm_manager_parent_class)->constructed (object);
5144
5145         _set_prop_filter (self, nm_bus_manager_get_connection (priv->dbus_mgr));
5146
5147         priv->settings = nm_settings_new ();
5148         g_signal_connect (priv->settings, "notify::" NM_SETTINGS_STARTUP_COMPLETE,
5149                           G_CALLBACK (settings_startup_complete_changed), self);
5150         g_signal_connect (priv->settings, "notify::" NM_SETTINGS_UNMANAGED_SPECS,
5151                           G_CALLBACK (system_unmanaged_devices_changed_cb), self);
5152         g_signal_connect (priv->settings, "notify::" NM_SETTINGS_HOSTNAME,
5153                           G_CALLBACK (system_hostname_changed_cb), self);
5154         g_signal_connect (priv->settings, NM_SETTINGS_SIGNAL_CONNECTION_ADDED,
5155                           G_CALLBACK (connection_changed), self);
5156         g_signal_connect (priv->settings, NM_SETTINGS_SIGNAL_CONNECTION_UPDATED_BY_USER,
5157                           G_CALLBACK (connection_changed), self);
5158         g_signal_connect (priv->settings, NM_SETTINGS_SIGNAL_CONNECTION_REMOVED,
5159                           G_CALLBACK (connection_removed), self);
5160
5161         priv->policy = nm_policy_new (self, priv->settings);
5162         g_signal_connect (priv->policy, "notify::" NM_POLICY_DEFAULT_IP4_DEVICE,
5163                           G_CALLBACK (policy_default_device_changed), self);
5164         g_signal_connect (priv->policy, "notify::" NM_POLICY_DEFAULT_IP6_DEVICE,
5165                           G_CALLBACK (policy_default_device_changed), self);
5166         g_signal_connect (priv->policy, "notify::" NM_POLICY_ACTIVATING_IP4_DEVICE,
5167                           G_CALLBACK (policy_activating_device_changed), self);
5168         g_signal_connect (priv->policy, "notify::" NM_POLICY_ACTIVATING_IP6_DEVICE,
5169                           G_CALLBACK (policy_activating_device_changed), self);
5170
5171         priv->config = g_object_ref (nm_config_get ());
5172         g_signal_connect (G_OBJECT (priv->config),
5173                           NM_CONFIG_SIGNAL_CONFIG_CHANGED,
5174                           G_CALLBACK (_config_changed_cb),
5175                           self);
5176
5177         config_data = nm_config_get_data (priv->config);
5178         priv->connectivity = nm_connectivity_new (nm_config_data_get_connectivity_uri (config_data),
5179                                                   nm_config_data_get_connectivity_interval (config_data),
5180                                                   nm_config_data_get_connectivity_response (config_data));
5181         g_signal_connect (priv->connectivity, "notify::" NM_CONNECTIVITY_STATE,
5182                           G_CALLBACK (connectivity_changed), self);
5183
5184         priv->rfkill_mgr = nm_rfkill_manager_new ();
5185         g_signal_connect (priv->rfkill_mgr,
5186                           "rfkill-changed",
5187                           G_CALLBACK (rfkill_manager_rfkill_changed_cb),
5188                           self);
5189
5190         /* Force kernel WiFi/WWAN rfkill state to follow NM saved WiFi/WWAN state
5191          * in case the BIOS doesn't save rfkill state, and to be consistent with user
5192          * changes to the WirelessEnabled/WWANEnabled properties which toggle kernel
5193          * rfkill.
5194          */
5195         rfkill_change (priv->radio_states[RFKILL_TYPE_WLAN].desc, RFKILL_TYPE_WLAN, priv->radio_states[RFKILL_TYPE_WLAN].user_enabled);
5196         rfkill_change (priv->radio_states[RFKILL_TYPE_WWAN].desc, RFKILL_TYPE_WWAN, priv->radio_states[RFKILL_TYPE_WWAN].user_enabled);
5197 }
5198
5199 static void
5200 nm_manager_init (NMManager *self)
5201 {
5202         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
5203         guint i;
5204         GFile *file;
5205
5206         /* Initialize rfkill structures and states */
5207         memset (priv->radio_states, 0, sizeof (priv->radio_states));
5208
5209         priv->radio_states[RFKILL_TYPE_WLAN].user_enabled = TRUE;
5210         priv->radio_states[RFKILL_TYPE_WLAN].key = "WirelessEnabled";
5211         priv->radio_states[RFKILL_TYPE_WLAN].prop = NM_MANAGER_WIRELESS_ENABLED;
5212         priv->radio_states[RFKILL_TYPE_WLAN].hw_prop = NM_MANAGER_WIRELESS_HARDWARE_ENABLED;
5213         priv->radio_states[RFKILL_TYPE_WLAN].desc = "WiFi";
5214         priv->radio_states[RFKILL_TYPE_WLAN].rtype = RFKILL_TYPE_WLAN;
5215
5216         priv->radio_states[RFKILL_TYPE_WWAN].user_enabled = TRUE;
5217         priv->radio_states[RFKILL_TYPE_WWAN].key = "WWANEnabled";
5218         priv->radio_states[RFKILL_TYPE_WWAN].prop = NM_MANAGER_WWAN_ENABLED;
5219         priv->radio_states[RFKILL_TYPE_WWAN].hw_prop = NM_MANAGER_WWAN_HARDWARE_ENABLED;
5220         priv->radio_states[RFKILL_TYPE_WWAN].desc = "WWAN";
5221         priv->radio_states[RFKILL_TYPE_WWAN].rtype = RFKILL_TYPE_WWAN;
5222
5223         for (i = 0; i < RFKILL_TYPE_MAX; i++)
5224                 priv->radio_states[i].hw_enabled = TRUE;
5225
5226         priv->sleeping = FALSE;
5227         priv->state = NM_STATE_DISCONNECTED;
5228         priv->startup = TRUE;
5229
5230         priv->dbus_mgr = g_object_ref (nm_bus_manager_get ());
5231         g_signal_connect (priv->dbus_mgr,
5232                           NM_BUS_MANAGER_DBUS_CONNECTION_CHANGED,
5233                           G_CALLBACK (dbus_connection_changed_cb),
5234                           self);
5235
5236         /* sleep/wake handling */
5237         priv->sleep_monitor = g_object_ref (nm_sleep_monitor_get ());
5238         g_signal_connect (priv->sleep_monitor, NM_SLEEP_MONITOR_SLEEPING,
5239                           G_CALLBACK (sleeping_cb), self);
5240         g_signal_connect (priv->sleep_monitor, NM_SLEEP_MONITOR_RESUMING,
5241                           G_CALLBACK (resuming_cb), self);
5242
5243         /* Listen for authorization changes */
5244         g_signal_connect (nm_auth_manager_get (),
5245                           NM_AUTH_MANAGER_SIGNAL_CHANGED,
5246                           G_CALLBACK (authority_changed_cb),
5247                           self);
5248
5249
5250         /* Monitor the firmware directory */
5251         if (strlen (KERNEL_FIRMWARE_DIR)) {
5252                 file = g_file_new_for_path (KERNEL_FIRMWARE_DIR "/");
5253                 priv->fw_monitor = g_file_monitor_directory (file, G_FILE_MONITOR_NONE, NULL, NULL);
5254                 g_object_unref (file);
5255         }
5256
5257         if (priv->fw_monitor) {
5258                 g_signal_connect (priv->fw_monitor, "changed",
5259                                   G_CALLBACK (firmware_dir_changed),
5260                                   self);
5261                 _LOGI (LOGD_CORE, "monitoring kernel firmware directory '%s'.",
5262                              KERNEL_FIRMWARE_DIR);
5263         } else {
5264                 _LOGW (LOGD_CORE, "failed to monitor kernel firmware directory '%s'.",
5265                        KERNEL_FIRMWARE_DIR);
5266         }
5267
5268         /* Update timestamps in active connections */
5269         priv->timestamp_update_id = g_timeout_add_seconds (300, (GSourceFunc) periodic_update_active_connection_timestamps, self);
5270
5271         priv->metered = NM_METERED_UNKNOWN;
5272 }
5273
5274 static gboolean
5275 device_is_real (GObject *device, gpointer user_data)
5276 {
5277         return nm_device_is_real (NM_DEVICE (device));
5278 }
5279
5280 static void
5281 get_property (GObject *object, guint prop_id,
5282               GValue *value, GParamSpec *pspec)
5283 {
5284         NMManager *self = NM_MANAGER (object);
5285         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
5286         NMConfigData *config_data;
5287         const NMGlobalDnsConfig *dns_config;
5288         const char *type;
5289
5290         switch (prop_id) {
5291         case PROP_VERSION:
5292                 g_value_set_string (value, VERSION);
5293                 break;
5294         case PROP_STATE:
5295                 nm_manager_update_state (self);
5296                 g_value_set_uint (value, priv->state);
5297                 break;
5298         case PROP_STARTUP:
5299                 g_value_set_boolean (value, priv->startup);
5300                 break;
5301         case PROP_NETWORKING_ENABLED:
5302                 g_value_set_boolean (value, priv->net_enabled);
5303                 break;
5304         case PROP_WIRELESS_ENABLED:
5305                 g_value_set_boolean (value, radio_enabled_for_type (self, RFKILL_TYPE_WLAN, TRUE));
5306                 break;
5307         case PROP_WIRELESS_HARDWARE_ENABLED:
5308                 g_value_set_boolean (value, priv->radio_states[RFKILL_TYPE_WLAN].hw_enabled);
5309                 break;
5310         case PROP_WWAN_ENABLED:
5311                 g_value_set_boolean (value, radio_enabled_for_type (self, RFKILL_TYPE_WWAN, TRUE));
5312                 break;
5313         case PROP_WWAN_HARDWARE_ENABLED:
5314                 g_value_set_boolean (value, priv->radio_states[RFKILL_TYPE_WWAN].hw_enabled);
5315                 break;
5316         case PROP_WIMAX_ENABLED:
5317                 g_value_set_boolean (value, FALSE);
5318                 break;
5319         case PROP_WIMAX_HARDWARE_ENABLED:
5320                 g_value_set_boolean (value, FALSE);
5321                 break;
5322         case PROP_ACTIVE_CONNECTIONS:
5323                 nm_utils_g_value_set_object_path_array (value, priv->active_connections, NULL, NULL);
5324                 break;
5325         case PROP_CONNECTIVITY:
5326                 g_value_set_uint (value, nm_connectivity_get_state (priv->connectivity));
5327                 break;
5328         case PROP_PRIMARY_CONNECTION:
5329                 nm_utils_g_value_set_object_path (value, priv->primary_connection);
5330                 break;
5331         case PROP_PRIMARY_CONNECTION_TYPE:
5332                 type = NULL;
5333                 if (priv->primary_connection) {
5334                         NMConnection *con;
5335
5336                         con = nm_active_connection_get_applied_connection (priv->primary_connection);
5337                         if (con)
5338                                 type = nm_connection_get_connection_type (con);
5339                 }
5340                 g_value_set_string (value, type ? type : "");
5341                 break;
5342         case PROP_ACTIVATING_CONNECTION:
5343                 nm_utils_g_value_set_object_path (value, priv->activating_connection);
5344                 break;
5345         case PROP_HOSTNAME:
5346                 g_value_set_string (value, priv->hostname);
5347                 break;
5348         case PROP_SLEEPING:
5349                 g_value_set_boolean (value, priv->sleeping);
5350                 break;
5351         case PROP_DEVICES:
5352                 nm_utils_g_value_set_object_path_array (value, priv->devices, device_is_real, NULL);
5353                 break;
5354         case PROP_METERED:
5355                 g_value_set_uint (value, priv->metered);
5356                 break;
5357         case PROP_GLOBAL_DNS_CONFIGURATION:
5358                 config_data = nm_config_get_data (priv->config);
5359                 dns_config = nm_config_data_get_global_dns_config (config_data);
5360                 nm_global_dns_config_to_dbus (dns_config, value);
5361                 break;
5362         case PROP_ALL_DEVICES:
5363                 nm_utils_g_value_set_object_path_array (value, priv->devices, NULL, NULL);
5364                 break;
5365         default:
5366                 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
5367                 break;
5368         }
5369 }
5370
5371 static void
5372 set_property (GObject *object, guint prop_id,
5373               const GValue *value, GParamSpec *pspec)
5374 {
5375         NMManager *self = NM_MANAGER (object);
5376         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
5377         NMGlobalDnsConfig *dns_config;
5378         GError *error = NULL;
5379
5380         switch (prop_id) {
5381         case PROP_STATE_FILE:
5382                 /* construct-only */
5383                 priv->state_file = g_value_dup_string (value);
5384                 break;
5385         case PROP_NETWORKING_ENABLED:
5386                 /* construct-only */
5387                 priv->net_enabled = g_value_get_boolean (value);
5388                 break;
5389         case PROP_WIRELESS_ENABLED:
5390                 if (!priv->rfkill_mgr) {
5391                         /* called during object construction. */
5392                         priv->radio_states[RFKILL_TYPE_WLAN].user_enabled = g_value_get_boolean (value);
5393                 } else {
5394                         manager_radio_user_toggled (NM_MANAGER (object),
5395                                                     &priv->radio_states[RFKILL_TYPE_WLAN],
5396                                                     g_value_get_boolean (value));
5397                 }
5398                 break;
5399         case PROP_WWAN_ENABLED:
5400                 if (!priv->rfkill_mgr) {
5401                         /* called during object construction. */
5402                         priv->radio_states[RFKILL_TYPE_WWAN].user_enabled = g_value_get_boolean (value);
5403                 } else {
5404                         manager_radio_user_toggled (NM_MANAGER (object),
5405                                                     &priv->radio_states[RFKILL_TYPE_WWAN],
5406                                                     g_value_get_boolean (value));
5407                 }
5408                 break;
5409         case PROP_WIMAX_ENABLED:
5410                 /* WIMAX is depreacted. This does nothing. */
5411                 break;
5412         case PROP_GLOBAL_DNS_CONFIGURATION:
5413                 dns_config = nm_global_dns_config_from_dbus (value, &error);
5414                 if (!error)
5415                         nm_config_set_global_dns (priv->config, dns_config, &error);
5416
5417                 nm_global_dns_config_free (dns_config);
5418
5419                 if (error) {
5420                         _LOGD (LOGD_CORE, "set global DNS failed with error: %s", error->message);
5421                         g_error_free (error);
5422                 }
5423                 break;
5424         default:
5425                 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
5426                 break;
5427         }
5428 }
5429
5430 static void
5431 _deinit_device_factory (NMDeviceFactory *factory, gpointer user_data)
5432 {
5433         g_signal_handlers_disconnect_matched (factory, G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, NM_MANAGER (user_data));
5434 }
5435
5436 static void
5437 dispose (GObject *object)
5438 {
5439         NMManager *manager = NM_MANAGER (object);
5440         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (manager);
5441
5442         g_slist_free_full (priv->auth_chains, (GDestroyNotify) nm_auth_chain_unref);
5443         priv->auth_chains = NULL;
5444
5445         g_signal_handlers_disconnect_by_func (nm_auth_manager_get (),
5446                                               G_CALLBACK (authority_changed_cb),
5447                                               manager);
5448
5449         g_assert (priv->devices == NULL);
5450
5451         nm_clear_g_source (&priv->ac_cleanup_id);
5452
5453         while (priv->active_connections)
5454                 active_connection_remove (manager, NM_ACTIVE_CONNECTION (priv->active_connections->data));
5455         g_clear_pointer (&priv->active_connections, g_slist_free);
5456         g_clear_object (&priv->primary_connection);
5457         g_clear_object (&priv->activating_connection);
5458
5459         if (priv->config) {
5460                 g_signal_handlers_disconnect_by_func (priv->config, _config_changed_cb, manager);
5461                 g_clear_object (&priv->config);
5462         }
5463         if (priv->connectivity) {
5464                 g_signal_handlers_disconnect_by_func (priv->connectivity, connectivity_changed, manager);
5465                 g_clear_object (&priv->connectivity);
5466         }
5467
5468         g_free (priv->hostname);
5469
5470         if (priv->policy) {
5471                 g_signal_handlers_disconnect_by_func (priv->policy, policy_default_device_changed, manager);
5472                 g_signal_handlers_disconnect_by_func (priv->policy, policy_activating_device_changed, manager);
5473                 g_clear_object (&priv->policy);
5474         }
5475
5476         if (priv->settings) {
5477                 g_signal_handlers_disconnect_by_func (priv->settings, settings_startup_complete_changed, manager);
5478                 g_signal_handlers_disconnect_by_func (priv->settings, system_unmanaged_devices_changed_cb, manager);
5479                 g_signal_handlers_disconnect_by_func (priv->settings, system_hostname_changed_cb, manager);
5480                 g_signal_handlers_disconnect_by_func (priv->settings, connection_changed, manager);
5481                 g_signal_handlers_disconnect_by_func (priv->settings, connection_removed, manager);
5482                 g_clear_object (&priv->settings);
5483         }
5484
5485         g_clear_pointer (&priv->state_file, g_free);
5486         g_clear_object (&priv->vpn_manager);
5487
5488         /* Unregister property filter */
5489         if (priv->dbus_mgr) {
5490                 g_signal_handlers_disconnect_by_func (priv->dbus_mgr, dbus_connection_changed_cb, manager);
5491                 g_clear_object (&priv->dbus_mgr);
5492         }
5493         _set_prop_filter (manager, NULL);
5494
5495         if (priv->sleep_monitor) {
5496                 g_signal_handlers_disconnect_by_func (priv->sleep_monitor, sleeping_cb, manager);
5497                 g_signal_handlers_disconnect_by_func (priv->sleep_monitor, resuming_cb, manager);
5498                 g_clear_object (&priv->sleep_monitor);
5499         }
5500
5501         if (priv->fw_monitor) {
5502                 g_signal_handlers_disconnect_by_func (priv->fw_monitor, firmware_dir_changed, manager);
5503
5504                 nm_clear_g_source (&priv->fw_changed_id);
5505
5506                 g_file_monitor_cancel (priv->fw_monitor);
5507                 g_clear_object (&priv->fw_monitor);
5508         }
5509
5510         if (priv->rfkill_mgr) {
5511                 g_signal_handlers_disconnect_by_func (priv->rfkill_mgr, rfkill_manager_rfkill_changed_cb, manager);
5512                 g_clear_object (&priv->rfkill_mgr);
5513         }
5514
5515         nm_device_factory_manager_for_each_factory (_deinit_device_factory, manager);
5516
5517         nm_clear_g_source (&priv->timestamp_update_id);
5518
5519         G_OBJECT_CLASS (nm_manager_parent_class)->dispose (object);
5520 }
5521
5522 static void
5523 nm_manager_class_init (NMManagerClass *manager_class)
5524 {
5525         GObjectClass *object_class = G_OBJECT_CLASS (manager_class);
5526         NMExportedObjectClass *exported_object_class = NM_EXPORTED_OBJECT_CLASS (manager_class);
5527
5528         g_type_class_add_private (manager_class, sizeof (NMManagerPrivate));
5529
5530         exported_object_class->export_path = NM_DBUS_PATH;
5531
5532         /* virtual methods */
5533         object_class->constructed = constructed;
5534         object_class->set_property = set_property;
5535         object_class->get_property = get_property;
5536         object_class->dispose = dispose;
5537
5538         /* properties */
5539         g_object_class_install_property
5540                 (object_class, PROP_VERSION,
5541                  g_param_spec_string (NM_MANAGER_VERSION, "", "",
5542                                       NULL,
5543                                       G_PARAM_READABLE |
5544                                       G_PARAM_STATIC_STRINGS));
5545
5546         g_object_class_install_property (object_class,
5547                                          PROP_STATE_FILE,
5548                                          g_param_spec_string (NM_MANAGER_STATE_FILE, "", "",
5549                                                               NULL,
5550                                                               G_PARAM_WRITABLE |
5551                                                               G_PARAM_CONSTRUCT_ONLY |
5552                                                               G_PARAM_STATIC_STRINGS));
5553
5554         g_object_class_install_property
5555                 (object_class, PROP_STATE,
5556                  g_param_spec_uint (NM_MANAGER_STATE, "", "",
5557                                     0, NM_STATE_DISCONNECTED, 0,
5558                                     G_PARAM_READABLE |
5559                                     G_PARAM_STATIC_STRINGS));
5560
5561         g_object_class_install_property
5562                 (object_class, PROP_STARTUP,
5563                  g_param_spec_boolean (NM_MANAGER_STARTUP, "", "",
5564                                        TRUE,
5565                                        G_PARAM_READABLE |
5566                                        G_PARAM_STATIC_STRINGS));
5567
5568         g_object_class_install_property
5569                 (object_class, PROP_NETWORKING_ENABLED,
5570                  g_param_spec_boolean (NM_MANAGER_NETWORKING_ENABLED, "", "",
5571                                        TRUE,
5572                                        G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY |
5573                                        G_PARAM_STATIC_STRINGS));
5574
5575         g_object_class_install_property
5576                 (object_class, PROP_WIRELESS_ENABLED,
5577                  g_param_spec_boolean (NM_MANAGER_WIRELESS_ENABLED, "", "",
5578                                        TRUE,
5579                                        G_PARAM_READWRITE |
5580                                        G_PARAM_CONSTRUCT |
5581                                        G_PARAM_STATIC_STRINGS));
5582
5583         g_object_class_install_property
5584                 (object_class, PROP_WIRELESS_HARDWARE_ENABLED,
5585                  g_param_spec_boolean (NM_MANAGER_WIRELESS_HARDWARE_ENABLED, "", "",
5586                                        TRUE,
5587                                        G_PARAM_READABLE |
5588                                        G_PARAM_STATIC_STRINGS));
5589
5590         g_object_class_install_property
5591                 (object_class, PROP_WWAN_ENABLED,
5592                  g_param_spec_boolean (NM_MANAGER_WWAN_ENABLED, "", "",
5593                                        TRUE,
5594                                        G_PARAM_READWRITE |
5595                                        G_PARAM_CONSTRUCT |
5596                                        G_PARAM_STATIC_STRINGS));
5597
5598         g_object_class_install_property
5599                 (object_class, PROP_WWAN_HARDWARE_ENABLED,
5600                  g_param_spec_boolean (NM_MANAGER_WWAN_HARDWARE_ENABLED, "", "",
5601                                        TRUE,
5602                                        G_PARAM_READABLE |
5603                                        G_PARAM_STATIC_STRINGS));
5604
5605         g_object_class_install_property
5606                 (object_class, PROP_WIMAX_ENABLED,
5607                  g_param_spec_boolean (NM_MANAGER_WIMAX_ENABLED, "", "",
5608                                        TRUE,
5609                                        G_PARAM_READWRITE |
5610                                        G_PARAM_STATIC_STRINGS));
5611
5612         g_object_class_install_property
5613                 (object_class, PROP_WIMAX_HARDWARE_ENABLED,
5614                  g_param_spec_boolean (NM_MANAGER_WIMAX_HARDWARE_ENABLED, "", "",
5615                                        TRUE,
5616                                        G_PARAM_READABLE |
5617                                        G_PARAM_STATIC_STRINGS));
5618
5619         g_object_class_install_property
5620                 (object_class, PROP_ACTIVE_CONNECTIONS,
5621                  g_param_spec_boxed (NM_MANAGER_ACTIVE_CONNECTIONS, "", "",
5622                                      G_TYPE_STRV,
5623                                      G_PARAM_READABLE |
5624                                      G_PARAM_STATIC_STRINGS));
5625
5626         g_object_class_install_property
5627                 (object_class, PROP_CONNECTIVITY,
5628                  g_param_spec_uint (NM_MANAGER_CONNECTIVITY, "", "",
5629                                     NM_CONNECTIVITY_UNKNOWN, NM_CONNECTIVITY_FULL, NM_CONNECTIVITY_UNKNOWN,
5630                                     G_PARAM_READABLE |
5631                                     G_PARAM_STATIC_STRINGS));
5632
5633         g_object_class_install_property
5634                 (object_class, PROP_PRIMARY_CONNECTION,
5635                  g_param_spec_string (NM_MANAGER_PRIMARY_CONNECTION, "", "",
5636                                       NULL,
5637                                       G_PARAM_READABLE |
5638                                       G_PARAM_STATIC_STRINGS));
5639
5640         g_object_class_install_property
5641                 (object_class, PROP_PRIMARY_CONNECTION_TYPE,
5642                  g_param_spec_string (NM_MANAGER_PRIMARY_CONNECTION_TYPE, "", "",
5643                                       NULL,
5644                                       G_PARAM_READABLE |
5645                                       G_PARAM_STATIC_STRINGS));
5646
5647
5648         g_object_class_install_property
5649                 (object_class, PROP_ACTIVATING_CONNECTION,
5650                  g_param_spec_string (NM_MANAGER_ACTIVATING_CONNECTION, "", "",
5651                                       NULL,
5652                                       G_PARAM_READABLE |
5653                                       G_PARAM_STATIC_STRINGS));
5654
5655         /* Hostname is not exported over D-Bus */
5656         g_object_class_install_property
5657                 (object_class, PROP_HOSTNAME,
5658                  g_param_spec_string (NM_MANAGER_HOSTNAME, "", "",
5659                                       NULL,
5660                                       G_PARAM_READABLE |
5661                                       G_PARAM_STATIC_STRINGS));
5662
5663         /* Sleeping is not exported over D-Bus */
5664         g_object_class_install_property
5665                 (object_class, PROP_SLEEPING,
5666                  g_param_spec_boolean (NM_MANAGER_SLEEPING, "", "",
5667                                        FALSE,
5668                                        G_PARAM_READABLE |
5669                                        G_PARAM_STATIC_STRINGS));
5670
5671         g_object_class_install_property
5672                 (object_class, PROP_DEVICES,
5673                  g_param_spec_boxed (NM_MANAGER_DEVICES, "", "",
5674                                      G_TYPE_STRV,
5675                                      G_PARAM_READABLE |
5676                                      G_PARAM_STATIC_STRINGS));
5677
5678         /**
5679          * NMManager:metered:
5680          *
5681          * Whether the connectivity is metered.
5682          *
5683          * Since: 1.2
5684          **/
5685         g_object_class_install_property
5686                 (object_class, PROP_METERED,
5687                  g_param_spec_uint (NM_MANAGER_METERED, "", "",
5688                                     0, G_MAXUINT32, NM_METERED_UNKNOWN,
5689                                     G_PARAM_READABLE |
5690                                     G_PARAM_STATIC_STRINGS));
5691
5692         /**
5693          * NMManager:global-dns-configuration:
5694          *
5695          * The global DNS configuration.
5696          *
5697          * Since: 1.2
5698          **/
5699         g_object_class_install_property
5700                 (object_class, PROP_GLOBAL_DNS_CONFIGURATION,
5701                  g_param_spec_variant (NM_MANAGER_GLOBAL_DNS_CONFIGURATION, "", "",
5702                                        G_VARIANT_TYPE ("a{sv}"),
5703                                        NULL,
5704                                        G_PARAM_READWRITE |
5705                                        G_PARAM_STATIC_STRINGS));
5706
5707         /**
5708          * NMManager:all-devices:
5709          *
5710          * All devices, including those that are not realized.
5711          *
5712          * Since: 1.2
5713          **/
5714         g_object_class_install_property
5715                 (object_class, PROP_ALL_DEVICES,
5716                  g_param_spec_boxed (NM_MANAGER_ALL_DEVICES, "", "",
5717                                      G_TYPE_STRV,
5718                                      G_PARAM_READABLE |
5719                                      G_PARAM_STATIC_STRINGS));
5720
5721         /* signals */
5722
5723         /* D-Bus exported; emitted only for realized devices */
5724         signals[DEVICE_ADDED] =
5725                 g_signal_new ("device-added",
5726                               G_OBJECT_CLASS_TYPE (object_class),
5727                               G_SIGNAL_RUN_FIRST,
5728                               G_STRUCT_OFFSET (NMManagerClass, device_added),
5729                               NULL, NULL, NULL,
5730                               G_TYPE_NONE, 1, NM_TYPE_DEVICE);
5731
5732         /* Emitted for both realized devices and placeholder devices */
5733         signals[INTERNAL_DEVICE_ADDED] =
5734                 g_signal_new ("internal-device-added",
5735                               G_OBJECT_CLASS_TYPE (object_class),
5736                               G_SIGNAL_RUN_FIRST, 0,
5737                               NULL, NULL, NULL,
5738                               G_TYPE_NONE, 1, G_TYPE_OBJECT);
5739
5740         /* D-Bus exported; emitted only for realized devices */
5741         signals[DEVICE_REMOVED] =
5742                 g_signal_new ("device-removed",
5743                               G_OBJECT_CLASS_TYPE (object_class),
5744                               G_SIGNAL_RUN_FIRST,
5745                               G_STRUCT_OFFSET (NMManagerClass, device_removed),
5746                               NULL, NULL, NULL,
5747                               G_TYPE_NONE, 1, NM_TYPE_DEVICE);
5748
5749         /* Emitted for both realized devices and placeholder devices */
5750         signals[INTERNAL_DEVICE_REMOVED] =
5751                 g_signal_new ("internal-device-removed",
5752                               G_OBJECT_CLASS_TYPE (object_class),
5753                               G_SIGNAL_RUN_FIRST, 0,
5754                               NULL, NULL, NULL,
5755                               G_TYPE_NONE, 1, G_TYPE_OBJECT);
5756
5757         signals[STATE_CHANGED] =
5758                 g_signal_new (NM_MANAGER_STATE_CHANGED,
5759                               G_OBJECT_CLASS_TYPE (object_class),
5760                               G_SIGNAL_RUN_FIRST,
5761                               G_STRUCT_OFFSET (NMManagerClass, state_changed),
5762                               NULL, NULL, NULL,
5763                               G_TYPE_NONE, 1, G_TYPE_UINT);
5764
5765         signals[CHECK_PERMISSIONS] =
5766                 g_signal_new ("check-permissions",
5767                               G_OBJECT_CLASS_TYPE (object_class),
5768                               G_SIGNAL_RUN_FIRST,
5769                               0, NULL, NULL, NULL,
5770                               G_TYPE_NONE, 0);
5771
5772         signals[USER_PERMISSIONS_CHANGED] =
5773                 g_signal_new ("user-permissions-changed",
5774                               G_OBJECT_CLASS_TYPE (object_class),
5775                               G_SIGNAL_RUN_FIRST,
5776                               0, NULL, NULL, NULL,
5777                               G_TYPE_NONE, 0);
5778
5779         signals[ACTIVE_CONNECTION_ADDED] =
5780                 g_signal_new (NM_MANAGER_ACTIVE_CONNECTION_ADDED,
5781                               G_OBJECT_CLASS_TYPE (object_class),
5782                               G_SIGNAL_RUN_FIRST,
5783                               0, NULL, NULL, NULL,
5784                               G_TYPE_NONE, 1, NM_TYPE_ACTIVE_CONNECTION);
5785
5786         signals[ACTIVE_CONNECTION_REMOVED] =
5787                 g_signal_new (NM_MANAGER_ACTIVE_CONNECTION_REMOVED,
5788                               G_OBJECT_CLASS_TYPE (object_class),
5789                               G_SIGNAL_RUN_FIRST,
5790                               0, NULL, NULL, NULL,
5791                               G_TYPE_NONE, 1, NM_TYPE_ACTIVE_CONNECTION);
5792
5793         signals[CONFIGURE_QUIT] =
5794                 g_signal_new (NM_MANAGER_CONFIGURE_QUIT,
5795                               G_OBJECT_CLASS_TYPE (object_class),
5796                               G_SIGNAL_RUN_FIRST,
5797                               0, NULL, NULL, NULL,
5798                               G_TYPE_NONE, 0);
5799
5800         nm_exported_object_class_add_interface (NM_EXPORTED_OBJECT_CLASS (manager_class),
5801                                                 NMDBUS_TYPE_MANAGER_SKELETON,
5802                                                 "GetDevices", impl_manager_get_devices,
5803                                                 "GetAllDevices", impl_manager_get_all_devices,
5804                                                 "GetDeviceByIpIface", impl_manager_get_device_by_ip_iface,
5805                                                 "ActivateConnection", impl_manager_activate_connection,
5806                                                 "AddAndActivateConnection", impl_manager_add_and_activate_connection,
5807                                                 "DeactivateConnection", impl_manager_deactivate_connection,
5808                                                 "Sleep", impl_manager_sleep,
5809                                                 "Enable", impl_manager_enable,
5810                                                 "GetPermissions", impl_manager_get_permissions,
5811                                                 "SetLogging", impl_manager_set_logging,
5812                                                 "GetLogging", impl_manager_get_logging,
5813                                                 "CheckConnectivity", impl_manager_check_connectivity,
5814                                                 "state", impl_manager_get_state,
5815                                                 NULL);
5816 }
5817