44a77916fa44209f798c462d0600dd2844516c03
[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_object_unref (active);
3518         g_clear_error (&local);
3519 }
3520
3521 static void
3522 _add_and_activate_auth_done (NMActiveConnection *active,
3523                              gboolean success,
3524                              const char *error_desc,
3525                              gpointer user_data1,
3526                              gpointer user_data2)
3527 {
3528         NMManager *self = user_data1;
3529         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
3530         GDBusMethodInvocation *context = user_data2;
3531         AddAndActivateInfo *info;
3532         GError *error = NULL;
3533
3534         if (success) {
3535                 NMConnection *connection;
3536
3537                 connection = g_object_steal_data (G_OBJECT (active),
3538                                                   TAG_ACTIVE_CONNETION_ADD_AND_ACTIVATE);
3539
3540                 info = g_slice_new (AddAndActivateInfo);
3541                 info->manager = self;
3542                 info->active = g_object_ref (active);
3543
3544                 /* Basic sender auth checks performed; try to add the connection */
3545                 nm_settings_add_connection_dbus (priv->settings,
3546                                                  connection,
3547                                                  FALSE,
3548                                                  context,
3549                                                  activation_add_done,
3550                                                  info);
3551                 g_object_unref (connection);
3552         } else {
3553                 g_assert (error_desc);
3554                 error = g_error_new_literal (NM_MANAGER_ERROR,
3555                                              NM_MANAGER_ERROR_PERMISSION_DENIED,
3556                                              error_desc);
3557                 nm_audit_log_connection_op (NM_AUDIT_OP_CONN_ADD_ACTIVATE,
3558                                             NULL,
3559                                             FALSE,
3560                                             nm_active_connection_get_subject (active),
3561                                             error->message);
3562                 g_dbus_method_invocation_take_error (context, error);
3563         }
3564
3565         g_object_unref (active);
3566 }
3567
3568 static void
3569 impl_manager_add_and_activate_connection (NMManager *self,
3570                                           GDBusMethodInvocation *context,
3571                                           GVariant *settings,
3572                                           const char *device_path,
3573                                           const char *specific_object_path)
3574 {
3575         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
3576         NMConnection *connection = NULL;
3577         GSList *all_connections = NULL;
3578         NMActiveConnection *active = NULL;
3579         NMAuthSubject *subject = NULL;
3580         GError *error = NULL;
3581         NMDevice *device = NULL;
3582         gboolean vpn = FALSE;
3583
3584         /* Normalize object paths */
3585         if (g_strcmp0 (specific_object_path, "/") == 0)
3586                 specific_object_path = NULL;
3587         if (g_strcmp0 (device_path, "/") == 0)
3588                 device_path = NULL;
3589
3590         /* Try to create a new connection with the given settings.
3591          * We allow empty settings for AddAndActivateConnection(). In that case,
3592          * the connection will be completed in nm_utils_complete_generic() or
3593          * nm_device_complete_connection() below. Just make sure we don't expect
3594          * specific data being in the connection till then (especially in
3595          * validate_activation_request()).
3596          */
3597         connection = nm_simple_connection_new ();
3598         if (settings && g_variant_n_children (settings))
3599                 _nm_connection_replace_settings (connection, settings, NM_SETTING_PARSE_FLAGS_STRICT, NULL);
3600
3601         subject = validate_activation_request (self,
3602                                                context,
3603                                                connection,
3604                                                device_path,
3605                                                &device,
3606                                                &vpn,
3607                                                &error);
3608         if (!subject)
3609                 goto error;
3610
3611         all_connections = nm_settings_get_connections (priv->settings);
3612         if (vpn) {
3613                 /* Try to fill the VPN's connection setting and name at least */
3614                 if (!nm_connection_get_setting_vpn (connection)) {
3615                         error = g_error_new_literal (NM_CONNECTION_ERROR,
3616                                                      NM_CONNECTION_ERROR_MISSING_SETTING,
3617                                                      "VPN connections require a 'vpn' setting");
3618                         g_prefix_error (&error, "%s: ", NM_SETTING_VPN_SETTING_NAME);
3619                         goto error;
3620                 }
3621
3622                 nm_utils_complete_generic (NM_PLATFORM_GET,
3623                                            connection,
3624                                            NM_SETTING_VPN_SETTING_NAME,
3625                                            all_connections,
3626                                            NULL,
3627                                            _("VPN connection"),
3628                                            NULL,
3629                                            FALSE); /* No IPv6 by default for now */
3630         } else {
3631                 /* Let each device subclass complete the connection */
3632                 if (!nm_device_complete_connection (device,
3633                                                     connection,
3634                                                     specific_object_path,
3635                                                     all_connections,
3636                                                     &error))
3637                         goto error;
3638         }
3639         g_slist_free (all_connections);
3640         all_connections = NULL;
3641
3642         active = _new_active_connection (self,
3643                                          connection,
3644                                          specific_object_path,
3645                                          device,
3646                                          subject,
3647                                          &error);
3648         if (!active)
3649                 goto error;
3650
3651         g_object_set_data_full (G_OBJECT (active),
3652                                 TAG_ACTIVE_CONNETION_ADD_AND_ACTIVATE,
3653                                 connection,
3654                                 g_object_unref);
3655
3656         nm_active_connection_authorize (active, connection, _add_and_activate_auth_done, self, context);
3657         g_object_unref (subject);
3658         return;
3659
3660 error:
3661         nm_audit_log_connection_op (NM_AUDIT_OP_CONN_ADD_ACTIVATE, NULL, FALSE, subject, error->message);
3662         g_clear_object (&connection);
3663         g_slist_free (all_connections);
3664         g_clear_object (&subject);
3665         g_clear_object (&active);
3666
3667         g_assert (error);
3668         g_dbus_method_invocation_take_error (context, error);
3669 }
3670
3671 /***********************************************************************/
3672
3673 gboolean
3674 nm_manager_deactivate_connection (NMManager *manager,
3675                                   const char *connection_path,
3676                                   NMDeviceStateReason reason,
3677                                   GError **error)
3678 {
3679         NMActiveConnection *active;
3680         gboolean success = FALSE;
3681
3682         active = active_connection_get_by_path (manager, connection_path);
3683         if (!active) {
3684                 g_set_error_literal (error, NM_MANAGER_ERROR, NM_MANAGER_ERROR_CONNECTION_NOT_ACTIVE,
3685                                      "The connection was not active.");
3686                 return FALSE;
3687         }
3688
3689         if (NM_IS_VPN_CONNECTION (active)) {
3690                 NMVpnConnectionStateReason vpn_reason = NM_VPN_CONNECTION_STATE_REASON_USER_DISCONNECTED;
3691
3692                 if (reason == NM_DEVICE_STATE_REASON_CONNECTION_REMOVED)
3693                         vpn_reason = NM_VPN_CONNECTION_STATE_REASON_CONNECTION_REMOVED;
3694                 if (nm_vpn_connection_deactivate (NM_VPN_CONNECTION (active), vpn_reason, FALSE))
3695                         success = TRUE;
3696                 else
3697                         g_set_error_literal (error, NM_MANAGER_ERROR, NM_MANAGER_ERROR_CONNECTION_NOT_ACTIVE,
3698                                              "The VPN connection was not active.");
3699         } else {
3700                 g_assert (NM_IS_ACT_REQUEST (active));
3701                 nm_device_state_changed (nm_active_connection_get_device (active),
3702                                          NM_DEVICE_STATE_DEACTIVATING,
3703                                          reason);
3704                 success = TRUE;
3705         }
3706
3707         if (success)
3708                 g_object_notify (G_OBJECT (manager), NM_MANAGER_ACTIVE_CONNECTIONS);
3709
3710         return success;
3711 }
3712
3713 static void
3714 deactivate_net_auth_done_cb (NMAuthChain *chain,
3715                              GError *auth_error,
3716                              GDBusMethodInvocation *context,
3717                              gpointer user_data)
3718 {
3719         NMManager *self = NM_MANAGER (user_data);
3720         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
3721         GError *error = NULL;
3722         NMAuthCallResult result;
3723         NMActiveConnection *active;
3724         char *path;
3725
3726         g_assert (context);
3727
3728         priv->auth_chains = g_slist_remove (priv->auth_chains, chain);
3729
3730         path = nm_auth_chain_get_data (chain, "path");
3731         result = nm_auth_chain_get_result (chain, NM_AUTH_PERMISSION_NETWORK_CONTROL);
3732
3733         if (auth_error) {
3734                 _LOGD (LOGD_CORE, "Disconnect request failed: %s", auth_error->message);
3735                 error = g_error_new (NM_MANAGER_ERROR,
3736                                      NM_MANAGER_ERROR_PERMISSION_DENIED,
3737                                      "Deactivate request failed: %s",
3738                                      auth_error->message);
3739         } else if (result != NM_AUTH_CALL_RESULT_YES) {
3740                 error = g_error_new_literal (NM_MANAGER_ERROR,
3741                                              NM_MANAGER_ERROR_PERMISSION_DENIED,
3742                                              "Not authorized to deactivate connections");
3743         } else {
3744                 /* success; deactivation allowed */
3745                 if (!nm_manager_deactivate_connection (self,
3746                                                        path,
3747                                                        NM_DEVICE_STATE_REASON_USER_REQUESTED,
3748                                                        &error))
3749                         nm_assert (error);
3750         }
3751
3752         active = active_connection_get_by_path (self, path);
3753         if (active) {
3754                 nm_audit_log_connection_op (NM_AUDIT_OP_CONN_DEACTIVATE,
3755                                             nm_active_connection_get_settings_connection (active),
3756                                             !error,
3757                                             nm_auth_chain_get_subject (chain),
3758                                             error ? error->message : NULL);
3759         }
3760
3761         if (error)
3762                 g_dbus_method_invocation_take_error (context, error);
3763         else
3764                 g_dbus_method_invocation_return_value (context, NULL);
3765
3766         nm_auth_chain_unref (chain);
3767 }
3768
3769 static void
3770 impl_manager_deactivate_connection (NMManager *self,
3771                                     GDBusMethodInvocation *context,
3772                                     const char *active_path)
3773 {
3774         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
3775         NMActiveConnection *ac;
3776         NMSettingsConnection *connection = NULL;
3777         GError *error = NULL;
3778         NMAuthSubject *subject = NULL;
3779         NMAuthChain *chain;
3780         char *error_desc = NULL;
3781
3782         /* Find the connection by its object path */
3783         ac = active_connection_get_by_path (self, active_path);
3784         if (ac)
3785                 connection = nm_active_connection_get_settings_connection (ac);
3786
3787         if (!connection) {
3788                 error = g_error_new_literal (NM_MANAGER_ERROR,
3789                                              NM_MANAGER_ERROR_CONNECTION_NOT_ACTIVE,
3790                                              "The connection was not active.");
3791                 goto done;
3792         }
3793
3794         /* Validate the caller */
3795         subject = nm_auth_subject_new_unix_process_from_context (context);
3796         if (!subject) {
3797                 error = g_error_new_literal (NM_MANAGER_ERROR,
3798                                              NM_MANAGER_ERROR_PERMISSION_DENIED,
3799                                              "Failed to get request UID.");
3800                 goto done;
3801         }
3802
3803         /* Ensure the subject has permissions for this connection */
3804         if (!nm_auth_is_subject_in_acl (NM_CONNECTION (connection),
3805                                         subject,
3806                                         &error_desc)) {
3807                 error = g_error_new_literal (NM_MANAGER_ERROR,
3808                                              NM_MANAGER_ERROR_PERMISSION_DENIED,
3809                                              error_desc);
3810                 g_free (error_desc);
3811                 goto done;
3812         }
3813
3814         /* Validate the user request */
3815         chain = nm_auth_chain_new_subject (subject, context, deactivate_net_auth_done_cb, self);
3816         if (!chain) {
3817                 error = g_error_new_literal (NM_MANAGER_ERROR,
3818                                              NM_MANAGER_ERROR_PERMISSION_DENIED,
3819                                              "Unable to authenticate request.");
3820                 goto done;
3821         }
3822
3823         priv->auth_chains = g_slist_append (priv->auth_chains, chain);
3824         nm_auth_chain_set_data (chain, "path", g_strdup (active_path), g_free);
3825         nm_auth_chain_add_call (chain, NM_AUTH_PERMISSION_NETWORK_CONTROL, TRUE);
3826
3827 done:
3828         if (error) {
3829                 if (connection) {
3830                         nm_audit_log_connection_op (NM_AUDIT_OP_CONN_DEACTIVATE, connection, FALSE,
3831                                                     subject, error->message);
3832                 }
3833                 g_dbus_method_invocation_take_error (context, error);
3834         }
3835         g_clear_object (&subject);
3836 }
3837
3838 static gboolean
3839 device_is_wake_on_lan (NMDevice *device)
3840 {
3841         return nm_platform_link_get_wake_on_lan (NM_PLATFORM_GET, nm_device_get_ip_ifindex (device));
3842 }
3843
3844 static void
3845 do_sleep_wake (NMManager *self, gboolean sleeping_changed)
3846 {
3847         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
3848         gboolean suspending, waking_from_suspend;
3849         GSList *iter;
3850
3851         suspending = sleeping_changed && priv->sleeping;
3852         waking_from_suspend = sleeping_changed && !priv->sleeping;
3853
3854         if (manager_sleeping (self)) {
3855                 _LOGI (LOGD_SUSPEND, "%s...", suspending ? "sleeping" : "disabling");
3856
3857                 /* FIXME: are there still hardware devices that need to be disabled around
3858                  * suspend/resume?
3859                  */
3860                 for (iter = priv->devices; iter; iter = iter->next) {
3861                         NMDevice *device = iter->data;
3862
3863                         /* FIXME: shouldn't we be unmanaging software devices if !suspending? */
3864                         if (nm_device_is_software (device))
3865                                 continue;
3866                         /* Wake-on-LAN devices will be taken down post-suspend rather than pre- */
3867                         if (suspending && device_is_wake_on_lan (device))
3868                                 continue;
3869
3870                         nm_device_set_unmanaged_by_flags (device, NM_UNMANAGED_SLEEPING, TRUE, NM_DEVICE_STATE_REASON_SLEEPING);
3871                 }
3872         } else {
3873                 _LOGI (LOGD_SUSPEND, "%s...", waking_from_suspend ? "waking up" : "re-enabling");
3874
3875                 if (waking_from_suspend) {
3876                         /* Belatedly take down Wake-on-LAN devices; ideally we wouldn't have to do this
3877                          * but for now it's the only way to make sure we re-check their connectivity.
3878                          */
3879                         for (iter = priv->devices; iter; iter = iter->next) {
3880                                 NMDevice *device = iter->data;
3881
3882                                 if (nm_device_is_software (device))
3883                                         continue;
3884                                 if (device_is_wake_on_lan (device))
3885                                         nm_device_set_unmanaged_by_flags (device, NM_UNMANAGED_SLEEPING, TRUE, NM_DEVICE_STATE_REASON_SLEEPING);
3886                         }
3887                 }
3888
3889                 /* Ensure rfkill state is up-to-date since we don't respond to state
3890                  * changes during sleep.
3891                  */
3892                 nm_manager_rfkill_update (self, RFKILL_TYPE_UNKNOWN);
3893
3894                 /* Re-manage managed devices */
3895                 for (iter = priv->devices; iter; iter = iter->next) {
3896                         NMDevice *device = NM_DEVICE (iter->data);
3897                         guint i;
3898
3899                         if (nm_device_is_software (device))
3900                                 continue;
3901
3902                         /* enable/disable wireless devices since that we don't respond
3903                          * to killswitch changes during sleep.
3904                          */
3905                         for (i = 0; i < RFKILL_TYPE_MAX; i++) {
3906                                 RadioState *rstate = &priv->radio_states[i];
3907                                 gboolean enabled = radio_enabled_for_rstate (rstate, TRUE);
3908
3909                                 if (rstate->desc) {
3910                                         _LOGD (LOGD_RFKILL, "%s %s devices (hw_enabled %d, sw_enabled %d, user_enabled %d)",
3911                                                enabled ? "enabling" : "disabling",
3912                                                rstate->desc, rstate->hw_enabled, rstate->sw_enabled, rstate->user_enabled);
3913                                 }
3914
3915                                 if (nm_device_get_rfkill_type (device) == rstate->rtype)
3916                                         nm_device_set_enabled (device, enabled);
3917                         }
3918
3919                         nm_device_set_autoconnect (device, TRUE);
3920
3921                         nm_device_set_unmanaged_by_flags (device, NM_UNMANAGED_SLEEPING, FALSE, NM_DEVICE_STATE_REASON_NOW_MANAGED);
3922                 }
3923         }
3924
3925         nm_manager_update_state (self);
3926 }
3927
3928 static void
3929 _internal_sleep (NMManager *self, gboolean do_sleep)
3930 {
3931         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
3932
3933         if (priv->sleeping == do_sleep)
3934                 return;
3935
3936         _LOGI (LOGD_SUSPEND, "%s requested (sleeping: %s  enabled: %s)",
3937                do_sleep ? "sleep" : "wake",
3938                priv->sleeping ? "yes" : "no",
3939                priv->net_enabled ? "yes" : "no");
3940
3941         priv->sleeping = do_sleep;
3942
3943         do_sleep_wake (self, TRUE);
3944
3945         g_object_notify (G_OBJECT (self), NM_MANAGER_SLEEPING);
3946 }
3947
3948 #if 0
3949 static void
3950 sleep_auth_done_cb (NMAuthChain *chain,
3951                     GError *error,
3952                     GDBusMethodInvocation *context,
3953                     gpointer user_data)
3954 {
3955         NMManager *self = NM_MANAGER (user_data);
3956         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
3957         GError *ret_error;
3958         NMAuthCallResult result;
3959         gboolean do_sleep;
3960
3961         priv->auth_chains = g_slist_remove (priv->auth_chains, chain);
3962
3963         result = nm_auth_chain_get_result (chain, NM_AUTH_PERMISSION_SLEEP_WAKE);
3964         if (error) {
3965                 _LOGD (LOGD_SUSPEND, "Sleep/wake request failed: %s", error->message);
3966                 ret_error = g_error_new (NM_MANAGER_ERROR,
3967                                          NM_MANAGER_ERROR_PERMISSION_DENIED,
3968                                          "Sleep/wake request failed: %s",
3969                                          error->message);
3970                 g_dbus_method_invocation_take_error (context, ret_error);
3971         } else if (result != NM_AUTH_CALL_RESULT_YES) {
3972                 ret_error = g_error_new_literal (NM_MANAGER_ERROR,
3973                                                  NM_MANAGER_ERROR_PERMISSION_DENIED,
3974                                                  "Not authorized to sleep/wake");
3975                 g_dbus_method_invocation_take_error (context, ret_error);
3976         } else {
3977                 /* Auth success */
3978                 do_sleep = GPOINTER_TO_UINT (nm_auth_chain_get_data (chain, "sleep"));
3979                 _internal_sleep (self, do_sleep);
3980                 g_dbus_method_invocation_return_value (context, NULL);
3981         }
3982
3983         nm_auth_chain_unref (chain);
3984 }
3985 #endif
3986
3987 static void
3988 impl_manager_sleep (NMManager *self,
3989                     GDBusMethodInvocation *context,
3990                     gboolean do_sleep)
3991 {
3992         NMManagerPrivate *priv;
3993         GError *error = NULL;
3994         gs_unref_object NMAuthSubject *subject = NULL;
3995 #if 0
3996         NMAuthChain *chain;
3997         const char *error_desc = NULL;
3998 #endif
3999
4000         g_return_if_fail (NM_IS_MANAGER (self));
4001
4002         priv = NM_MANAGER_GET_PRIVATE (self);
4003         subject = nm_auth_subject_new_unix_process_from_context (context);
4004
4005         if (priv->sleeping == do_sleep) {
4006                 error = g_error_new (NM_MANAGER_ERROR,
4007                                      NM_MANAGER_ERROR_ALREADY_ASLEEP_OR_AWAKE,
4008                                      "Already %s", do_sleep ? "asleep" : "awake");
4009                 nm_audit_log_control_op (NM_AUDIT_OP_SLEEP_CONTROL, do_sleep ? "on" : "off", FALSE, subject,
4010                                          error->message);
4011                 g_dbus_method_invocation_take_error (context, error);
4012                 return;
4013         }
4014
4015         /* Unconditionally allow the request.  Previously it was polkit protected
4016          * but unfortunately that doesn't work for short-lived processes like
4017          * pm-utils.  It uses dbus-send without --print-reply, which quits
4018          * immediately after sending the request, and NM is unable to obtain the
4019          * sender's UID as dbus-send has already dropped off the bus.  Thus NM
4020          * fails the request.  Instead, don't validate the request, but rely on
4021          * D-Bus permissions to restrict the call to root.
4022          */
4023         _internal_sleep (self, do_sleep);
4024         nm_audit_log_control_op (NM_AUDIT_OP_SLEEP_CONTROL, do_sleep ? "on" : "off", TRUE, subject, NULL);
4025         g_dbus_method_invocation_return_value (context, NULL);
4026         return;
4027
4028 #if 0
4029         chain = nm_auth_chain_new (context, sleep_auth_done_cb, self, &error_desc);
4030         if (chain) {
4031                 priv->auth_chains = g_slist_append (priv->auth_chains, chain);
4032                 nm_auth_chain_set_data (chain, "sleep", GUINT_TO_POINTER (do_sleep), NULL);
4033                 nm_auth_chain_add_call (chain, NM_AUTH_PERMISSION_SLEEP_WAKE, TRUE);
4034         } else {
4035                 error = g_error_new_literal (NM_MANAGER_ERROR,
4036                                              NM_MANAGER_ERROR_PERMISSION_DENIED,
4037                                              error_desc);
4038                 g_dbus_method_invocation_take_error (context, error);
4039         }
4040 #endif
4041 }
4042
4043 static void
4044 sleeping_cb (NMSleepMonitor *monitor, gpointer user_data)
4045 {
4046         nm_log_dbg (LOGD_SUSPEND, "Received sleeping signal");
4047         _internal_sleep (NM_MANAGER (user_data), TRUE);
4048 }
4049
4050 static void
4051 resuming_cb (NMSleepMonitor *monitor, gpointer user_data)
4052 {
4053         nm_log_dbg (LOGD_SUSPEND, "Received resuming signal");
4054         _internal_sleep (NM_MANAGER (user_data), FALSE);
4055 }
4056
4057 static void
4058 _internal_enable (NMManager *self, gboolean enable)
4059 {
4060         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
4061         GError *err = NULL;
4062
4063         /* Update "NetworkingEnabled" key in state file */
4064         if (priv->state_file) {
4065                 if (!write_value_to_state_file (priv->state_file,
4066                                                 "main", "NetworkingEnabled",
4067                                                 G_TYPE_BOOLEAN, (gpointer) &enable,
4068                                                 &err)) {
4069                         /* Not a hard error */
4070                         _LOGW (LOGD_SUSPEND, "writing to state file %s failed: %s",
4071                                priv->state_file,
4072                                err->message);
4073                 }
4074         }
4075
4076         _LOGI (LOGD_SUSPEND, "%s requested (sleeping: %s  enabled: %s)",
4077                enable ? "enable" : "disable",
4078                priv->sleeping ? "yes" : "no",
4079                priv->net_enabled ? "yes" : "no");
4080
4081         priv->net_enabled = enable;
4082
4083         do_sleep_wake (self, FALSE);
4084
4085         g_object_notify (G_OBJECT (self), NM_MANAGER_NETWORKING_ENABLED);
4086 }
4087
4088 static void
4089 enable_net_done_cb (NMAuthChain *chain,
4090                     GError *error,
4091                     GDBusMethodInvocation *context,
4092                     gpointer user_data)
4093 {
4094         NMManager *self = NM_MANAGER (user_data);
4095         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
4096         GError *ret_error = NULL;
4097         NMAuthCallResult result;
4098         gboolean enable;
4099         NMAuthSubject *subject;
4100
4101         g_assert (context);
4102
4103         priv->auth_chains = g_slist_remove (priv->auth_chains, chain);
4104         enable = GPOINTER_TO_UINT (nm_auth_chain_get_data (chain, "enable"));
4105         subject = nm_auth_chain_get_subject (chain);
4106
4107         result = nm_auth_chain_get_result (chain, NM_AUTH_PERMISSION_ENABLE_DISABLE_NETWORK);
4108         if (error) {
4109                 _LOGD (LOGD_CORE, "Enable request failed: %s", error->message);
4110                 ret_error = g_error_new (NM_MANAGER_ERROR,
4111                                          NM_MANAGER_ERROR_PERMISSION_DENIED,
4112                                          "Enable request failed: %s",
4113                                          error->message);
4114         } else if (result != NM_AUTH_CALL_RESULT_YES) {
4115                 ret_error = g_error_new_literal (NM_MANAGER_ERROR,
4116                                                  NM_MANAGER_ERROR_PERMISSION_DENIED,
4117                                                  "Not authorized to enable/disable networking");
4118         } else {
4119                 /* Auth success */
4120                 _internal_enable (self, enable);
4121                 g_dbus_method_invocation_return_value (context, NULL);
4122                 nm_audit_log_control_op (NM_AUDIT_OP_NET_CONTROL, enable ? "on" : "off", TRUE,
4123                                          subject, NULL);
4124         }
4125
4126         if (ret_error) {
4127                 nm_audit_log_control_op (NM_AUDIT_OP_NET_CONTROL, enable ? "on" : "off", FALSE,
4128                                          subject, ret_error->message);
4129                 g_dbus_method_invocation_take_error (context, ret_error);
4130         }
4131
4132         nm_auth_chain_unref (chain);
4133 }
4134
4135 static void
4136 impl_manager_enable (NMManager *self,
4137                      GDBusMethodInvocation *context,
4138                      gboolean enable)
4139 {
4140         NMManagerPrivate *priv;
4141         NMAuthChain *chain;
4142         GError *error = NULL;
4143
4144         g_return_if_fail (NM_IS_MANAGER (self));
4145
4146         priv = NM_MANAGER_GET_PRIVATE (self);
4147
4148         if (priv->net_enabled == enable) {
4149                 error = g_error_new (NM_MANAGER_ERROR,
4150                                      NM_MANAGER_ERROR_ALREADY_ENABLED_OR_DISABLED,
4151                                      "Already %s", enable ? "enabled" : "disabled");
4152                 goto done;
4153         }
4154
4155         chain = nm_auth_chain_new_context (context, enable_net_done_cb, self);
4156         if (!chain) {
4157                 error = g_error_new_literal (NM_MANAGER_ERROR,
4158                                              NM_MANAGER_ERROR_PERMISSION_DENIED,
4159                                              "Unable to authenticate request.");
4160                 goto done;
4161         }
4162
4163         priv->auth_chains = g_slist_append (priv->auth_chains, chain);
4164         nm_auth_chain_set_data (chain, "enable", GUINT_TO_POINTER (enable), NULL);
4165         nm_auth_chain_add_call (chain, NM_AUTH_PERMISSION_ENABLE_DISABLE_NETWORK, TRUE);
4166
4167 done:
4168         if (error)
4169                 g_dbus_method_invocation_take_error (context, error);
4170 }
4171
4172 /* Permissions */
4173
4174 static void
4175 get_perm_add_result (NMAuthChain *chain, GVariantBuilder *results, const char *permission)
4176 {
4177         NMAuthCallResult result;
4178
4179         result = nm_auth_chain_get_result (chain, permission);
4180         if (result == NM_AUTH_CALL_RESULT_YES)
4181                 g_variant_builder_add (results, "{ss}", permission, "yes");
4182         else if (result == NM_AUTH_CALL_RESULT_NO)
4183                 g_variant_builder_add (results, "{ss}", permission, "no");
4184         else if (result == NM_AUTH_CALL_RESULT_AUTH)
4185                 g_variant_builder_add (results, "{ss}", permission, "auth");
4186         else {
4187                 nm_log_dbg (LOGD_CORE, "unknown auth chain result %d", result);
4188         }
4189 }
4190
4191 static void
4192 get_permissions_done_cb (NMAuthChain *chain,
4193                          GError *error,
4194                          GDBusMethodInvocation *context,
4195                          gpointer user_data)
4196 {
4197         NMManager *self = NM_MANAGER (user_data);
4198         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
4199         GError *ret_error;
4200         GVariantBuilder results;
4201
4202         g_assert (context);
4203
4204         priv->auth_chains = g_slist_remove (priv->auth_chains, chain);
4205         if (error) {
4206                 _LOGD (LOGD_CORE, "Permissions request failed: %s", error->message);
4207                 ret_error = g_error_new (NM_MANAGER_ERROR,
4208                                          NM_MANAGER_ERROR_PERMISSION_DENIED,
4209                                          "Permissions request failed: %s",
4210                                          error->message);
4211                 g_dbus_method_invocation_take_error (context, ret_error);
4212         } else {
4213                 g_variant_builder_init (&results, G_VARIANT_TYPE ("a{ss}"));
4214
4215                 get_perm_add_result (chain, &results, NM_AUTH_PERMISSION_ENABLE_DISABLE_NETWORK);
4216                 get_perm_add_result (chain, &results, NM_AUTH_PERMISSION_SLEEP_WAKE);
4217                 get_perm_add_result (chain, &results, NM_AUTH_PERMISSION_ENABLE_DISABLE_WIFI);
4218                 get_perm_add_result (chain, &results, NM_AUTH_PERMISSION_ENABLE_DISABLE_WWAN);
4219                 get_perm_add_result (chain, &results, NM_AUTH_PERMISSION_ENABLE_DISABLE_WIMAX);
4220                 get_perm_add_result (chain, &results, NM_AUTH_PERMISSION_NETWORK_CONTROL);
4221                 get_perm_add_result (chain, &results, NM_AUTH_PERMISSION_WIFI_SHARE_PROTECTED);
4222                 get_perm_add_result (chain, &results, NM_AUTH_PERMISSION_WIFI_SHARE_OPEN);
4223                 get_perm_add_result (chain, &results, NM_AUTH_PERMISSION_SETTINGS_MODIFY_SYSTEM);
4224                 get_perm_add_result (chain, &results, NM_AUTH_PERMISSION_SETTINGS_MODIFY_OWN);
4225                 get_perm_add_result (chain, &results, NM_AUTH_PERMISSION_SETTINGS_MODIFY_HOSTNAME);
4226
4227                 g_dbus_method_invocation_return_value (context,
4228                                                        g_variant_new ("(a{ss})", &results));
4229         }
4230
4231         nm_auth_chain_unref (chain);
4232 }
4233
4234 static void
4235 impl_manager_get_permissions (NMManager *self,
4236                               GDBusMethodInvocation *context)
4237 {
4238         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
4239         NMAuthChain *chain;
4240         GError *error = NULL;
4241
4242         chain = nm_auth_chain_new_context (context, get_permissions_done_cb, self);
4243         if (!chain) {
4244                 error = g_error_new_literal (NM_MANAGER_ERROR,
4245                                              NM_MANAGER_ERROR_PERMISSION_DENIED,
4246                                              "Unable to authenticate request.");
4247                 g_dbus_method_invocation_take_error (context, error);
4248                 return;
4249         }
4250
4251         priv->auth_chains = g_slist_append (priv->auth_chains, chain);
4252         nm_auth_chain_add_call (chain, NM_AUTH_PERMISSION_ENABLE_DISABLE_NETWORK, FALSE);
4253         nm_auth_chain_add_call (chain, NM_AUTH_PERMISSION_SLEEP_WAKE, FALSE);
4254         nm_auth_chain_add_call (chain, NM_AUTH_PERMISSION_ENABLE_DISABLE_WIFI, FALSE);
4255         nm_auth_chain_add_call (chain, NM_AUTH_PERMISSION_ENABLE_DISABLE_WWAN, FALSE);
4256         nm_auth_chain_add_call (chain, NM_AUTH_PERMISSION_ENABLE_DISABLE_WIMAX, FALSE);
4257         nm_auth_chain_add_call (chain, NM_AUTH_PERMISSION_NETWORK_CONTROL, FALSE);
4258         nm_auth_chain_add_call (chain, NM_AUTH_PERMISSION_WIFI_SHARE_PROTECTED, FALSE);
4259         nm_auth_chain_add_call (chain, NM_AUTH_PERMISSION_WIFI_SHARE_OPEN, FALSE);
4260         nm_auth_chain_add_call (chain, NM_AUTH_PERMISSION_SETTINGS_MODIFY_SYSTEM, FALSE);
4261         nm_auth_chain_add_call (chain, NM_AUTH_PERMISSION_SETTINGS_MODIFY_OWN, FALSE);
4262         nm_auth_chain_add_call (chain, NM_AUTH_PERMISSION_SETTINGS_MODIFY_HOSTNAME, FALSE);
4263 }
4264
4265 static void
4266 impl_manager_get_state (NMManager *self,
4267                         GDBusMethodInvocation *context)
4268 {
4269         nm_manager_update_state (self);
4270         g_dbus_method_invocation_return_value (context,
4271                                                g_variant_new ("(u)", NM_MANAGER_GET_PRIVATE (self)->state));
4272 }
4273
4274 static void
4275 impl_manager_set_logging (NMManager *self,
4276                           GDBusMethodInvocation *context,
4277                           const char *level,
4278                           const char *domains)
4279 {
4280         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
4281         GError *error = NULL;
4282         gulong caller_uid = G_MAXULONG;
4283
4284         if (!nm_bus_manager_get_caller_info (priv->dbus_mgr, context, NULL, &caller_uid, NULL)) {
4285                 error = g_error_new_literal (NM_MANAGER_ERROR,
4286                                              NM_MANAGER_ERROR_PERMISSION_DENIED,
4287                                              "Failed to get request UID.");
4288                 goto done;
4289         }
4290
4291         if (0 != caller_uid) {
4292                 error = g_error_new_literal (NM_MANAGER_ERROR,
4293                                              NM_MANAGER_ERROR_PERMISSION_DENIED,
4294                                              "Permission denied");
4295                 goto done;
4296         }
4297
4298         if (nm_logging_setup (level, domains, NULL, &error)) {
4299                 _LOGI (LOGD_CORE, "logging: level '%s' domains '%s'",
4300                        nm_logging_level_to_string (), nm_logging_domains_to_string ());
4301         }
4302
4303 done:
4304         if (error)
4305                 g_dbus_method_invocation_take_error (context, error);
4306         else
4307                 g_dbus_method_invocation_return_value (context, NULL);
4308 }
4309
4310 static void
4311 impl_manager_get_logging (NMManager *manager,
4312                           GDBusMethodInvocation *context)
4313 {
4314         g_dbus_method_invocation_return_value (context,
4315                                                g_variant_new ("(ss)",
4316                                                               nm_logging_level_to_string (),
4317                                                               nm_logging_domains_to_string ()));
4318 }
4319
4320 static void
4321 connectivity_check_done (GObject *object,
4322                          GAsyncResult *result,
4323                          gpointer user_data)
4324 {
4325         GDBusMethodInvocation *context = user_data;
4326         NMConnectivityState state;
4327         GError *error = NULL;
4328
4329         state = nm_connectivity_check_finish (NM_CONNECTIVITY (object), result, &error);
4330         if (error)
4331                 g_dbus_method_invocation_take_error (context, error);
4332         else {
4333                 g_dbus_method_invocation_return_value (context,
4334                                                        g_variant_new ("(u)", state));
4335         }
4336 }
4337
4338
4339 static void
4340 check_connectivity_auth_done_cb (NMAuthChain *chain,
4341                                  GError *auth_error,
4342                                  GDBusMethodInvocation *context,
4343                                  gpointer user_data)
4344 {
4345         NMManager *self = NM_MANAGER (user_data);
4346         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
4347         GError *error = NULL;
4348         NMAuthCallResult result;
4349
4350         priv->auth_chains = g_slist_remove (priv->auth_chains, chain);
4351
4352         result = nm_auth_chain_get_result (chain, NM_AUTH_PERMISSION_NETWORK_CONTROL);
4353
4354         if (auth_error) {
4355                 _LOGD (LOGD_CORE, "CheckConnectivity request failed: %s", auth_error->message);
4356                 error = g_error_new (NM_MANAGER_ERROR,
4357                                      NM_MANAGER_ERROR_PERMISSION_DENIED,
4358                                      "Connectivity check request failed: %s",
4359                                      auth_error->message);
4360         } else if (result != NM_AUTH_CALL_RESULT_YES) {
4361                 error = g_error_new_literal (NM_MANAGER_ERROR,
4362                                              NM_MANAGER_ERROR_PERMISSION_DENIED,
4363                                              "Not authorized to recheck connectivity");
4364         } else {
4365                 /* it's allowed */
4366                 nm_connectivity_check_async (priv->connectivity,
4367                                              connectivity_check_done,
4368                                              context);
4369         }
4370
4371         if (error)
4372                 g_dbus_method_invocation_take_error (context, error);
4373         nm_auth_chain_unref (chain);
4374 }
4375
4376 static void
4377 impl_manager_check_connectivity (NMManager *self,
4378                                  GDBusMethodInvocation *context)
4379 {
4380         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
4381         NMAuthChain *chain;
4382         GError *error = NULL;
4383
4384         /* Validate the request */
4385         chain = nm_auth_chain_new_context (context, check_connectivity_auth_done_cb, self);
4386         if (!chain) {
4387                 error = g_error_new_literal (NM_MANAGER_ERROR,
4388                                              NM_MANAGER_ERROR_PERMISSION_DENIED,
4389                                              "Unable to authenticate request.");
4390                 g_dbus_method_invocation_take_error (context, error);
4391                 return;
4392         }
4393
4394         priv->auth_chains = g_slist_append (priv->auth_chains, chain);
4395         nm_auth_chain_add_call (chain, NM_AUTH_PERMISSION_NETWORK_CONTROL, TRUE);
4396 }
4397
4398 static void
4399 start_factory (NMDeviceFactory *factory, gpointer user_data)
4400 {
4401         nm_device_factory_start (factory);
4402 }
4403
4404 gboolean
4405 nm_manager_start (NMManager *self, GError **error)
4406 {
4407         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
4408         GSList *iter, *connections;
4409         guint i;
4410
4411         if (!nm_settings_start (priv->settings, error))
4412                 return FALSE;
4413
4414         g_signal_connect (NM_PLATFORM_GET,
4415                           NM_PLATFORM_SIGNAL_LINK_CHANGED,
4416                           G_CALLBACK (platform_link_cb),
4417                           self);
4418
4419         /* Set initial radio enabled/disabled state */
4420         for (i = 0; i < RFKILL_TYPE_MAX; i++) {
4421                 RadioState *rstate = &priv->radio_states[i];
4422                 gboolean enabled;
4423
4424                 if (!rstate->desc)
4425                         continue;
4426
4427                 /* recheck kernel rfkill state */
4428                 update_rstate_from_rfkill (priv->rfkill_mgr, rstate);
4429
4430                 if (rstate->desc) {
4431                         _LOGI (LOGD_RFKILL, "%s %s by radio killswitch; %s by state file",
4432                                rstate->desc,
4433                                (rstate->hw_enabled && rstate->sw_enabled) ? "enabled" : "disabled",
4434                                rstate->user_enabled ? "enabled" : "disabled");
4435                 }
4436                 enabled = radio_enabled_for_rstate (rstate, TRUE);
4437                 manager_update_radio_enabled (self, rstate, enabled);
4438         }
4439
4440         /* Log overall networking status - enabled/disabled */
4441         _LOGI (LOGD_CORE, "Networking is %s by state file",
4442                priv->net_enabled ? "enabled" : "disabled");
4443
4444         system_unmanaged_devices_changed_cb (priv->settings, NULL, self);
4445         system_hostname_changed_cb (priv->settings, NULL, self);
4446
4447         /* Start device factories */
4448         nm_device_factory_manager_load_factories (_register_device_factory, self);
4449         nm_device_factory_manager_for_each_factory (start_factory, NULL);
4450
4451         platform_query_devices (self);
4452
4453         /* Load VPN plugins */
4454         priv->vpn_manager = g_object_ref (nm_vpn_manager_get ());
4455
4456         /* Connections added before the manager is started do not emit
4457          * connection-added signals thus devices have to be created manually.
4458          */
4459         _LOGD (LOGD_CORE, "creating virtual devices...");
4460         connections = nm_settings_get_connections (priv->settings);
4461         for (iter = connections; iter; iter = iter->next)
4462                 connection_changed (priv->settings, NM_CONNECTION (iter->data), self);
4463         g_slist_free (connections);
4464
4465         priv->devices_inited = TRUE;
4466
4467         check_if_startup_complete (self);
4468
4469         return TRUE;
4470 }
4471
4472 void
4473 nm_manager_stop (NMManager *self)
4474 {
4475         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
4476
4477         /* Remove all devices */
4478         while (priv->devices)
4479                 remove_device (self, NM_DEVICE (priv->devices->data), TRUE, TRUE);
4480
4481         _active_connection_cleanup (self);
4482 }
4483
4484 static gboolean
4485 handle_firmware_changed (gpointer user_data)
4486 {
4487         NMManager *self = NM_MANAGER (user_data);
4488         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
4489         GSList *iter;
4490
4491         priv->fw_changed_id = 0;
4492
4493         /* Try to re-enable devices with missing firmware */
4494         for (iter = priv->devices; iter; iter = iter->next) {
4495                 NMDevice *candidate = NM_DEVICE (iter->data);
4496                 NMDeviceState state = nm_device_get_state (candidate);
4497
4498                 if (   nm_device_get_firmware_missing (candidate)
4499                     && (state == NM_DEVICE_STATE_UNAVAILABLE)) {
4500                         _LOGI (LOGD_CORE, "(%s): firmware may now be available",
4501                                nm_device_get_iface (candidate));
4502
4503                         /* Re-set unavailable state to try bringing the device up again */
4504                         nm_device_state_changed (candidate,
4505                                                  NM_DEVICE_STATE_UNAVAILABLE,
4506                                                  NM_DEVICE_STATE_REASON_NONE);
4507                 }
4508         }
4509
4510         return FALSE;
4511 }
4512
4513 static void
4514 connectivity_changed (NMConnectivity *connectivity,
4515                       GParamSpec *pspec,
4516                       gpointer user_data)
4517 {
4518         NMManager *self = NM_MANAGER (user_data);
4519
4520         _LOGD (LOGD_CORE, "connectivity checking indicates %s",
4521                nm_connectivity_state_to_string (nm_connectivity_get_state (connectivity)));
4522
4523         nm_manager_update_state (self);
4524         g_object_notify (G_OBJECT (self), NM_MANAGER_CONNECTIVITY);
4525 }
4526
4527 static void
4528 firmware_dir_changed (GFileMonitor *monitor,
4529                       GFile *file,
4530                       GFile *other_file,
4531                       GFileMonitorEvent event_type,
4532                       gpointer user_data)
4533 {
4534         NMManager *self = NM_MANAGER (user_data);
4535         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
4536
4537         switch (event_type) {
4538         case G_FILE_MONITOR_EVENT_CREATED:
4539         case G_FILE_MONITOR_EVENT_CHANGED:
4540         case G_FILE_MONITOR_EVENT_MOVED:
4541         case G_FILE_MONITOR_EVENT_ATTRIBUTE_CHANGED:
4542         case G_FILE_MONITOR_EVENT_CHANGES_DONE_HINT:
4543                 if (!priv->fw_changed_id) {
4544                         priv->fw_changed_id = g_timeout_add_seconds (4, handle_firmware_changed, self);
4545                         _LOGI (LOGD_CORE, "kernel firmware directory '%s' changed",
4546                                KERNEL_FIRMWARE_DIR);
4547                 }
4548                 break;
4549         default:
4550                 break;
4551         }
4552 }
4553
4554 static void
4555 connection_metered_changed (GObject *object,
4556                             NMMetered metered,
4557                             gpointer user_data)
4558 {
4559         nm_manager_update_metered (NM_MANAGER (user_data));
4560 }
4561
4562 static void
4563 policy_default_device_changed (GObject *object, GParamSpec *pspec, gpointer user_data)
4564 {
4565         NMManager *self = NM_MANAGER (user_data);
4566         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
4567         NMDevice *best;
4568         NMActiveConnection *ac;
4569
4570         /* Note: this assumes that it's not possible for the IP4 default
4571          * route to be going over the default-ip6-device. If that changes,
4572          * we need something more complicated here.
4573          */
4574         best = nm_policy_get_default_ip4_device (priv->policy);
4575         if (!best)
4576                 best = nm_policy_get_default_ip6_device (priv->policy);
4577
4578         if (best)
4579                 ac = NM_ACTIVE_CONNECTION (nm_device_get_act_request (best));
4580         else
4581                 ac = NULL;
4582
4583         if (ac != priv->primary_connection) {
4584                 if (priv->primary_connection) {
4585                         g_signal_handlers_disconnect_by_func (priv->primary_connection,
4586                                                               G_CALLBACK (connection_metered_changed),
4587                                                               self);
4588                         g_clear_object (&priv->primary_connection);
4589                 }
4590
4591                 priv->primary_connection = ac ? g_object_ref (ac) : NULL;
4592
4593                 if (priv->primary_connection) {
4594                         g_signal_connect (priv->primary_connection, NM_ACTIVE_CONNECTION_DEVICE_METERED_CHANGED,
4595                                           G_CALLBACK (connection_metered_changed), self);
4596                 }
4597                 _LOGD (LOGD_CORE, "PrimaryConnection now %s", ac ? nm_active_connection_get_settings_connection_id (ac) : "(none)");
4598                 g_object_notify (G_OBJECT (self), NM_MANAGER_PRIMARY_CONNECTION);
4599                 g_object_notify (G_OBJECT (self), NM_MANAGER_PRIMARY_CONNECTION_TYPE);
4600                 nm_manager_update_metered (self);
4601         }
4602 }
4603
4604 static void
4605 policy_activating_device_changed (GObject *object, GParamSpec *pspec, gpointer user_data)
4606 {
4607         NMManager *self = NM_MANAGER (user_data);
4608         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
4609         NMDevice *activating, *best;
4610         NMActiveConnection *ac;
4611
4612         /* We only look at activating-ip6-device if activating-ip4-device
4613          * AND default-ip4-device are NULL; if default-ip4-device is
4614          * non-NULL, then activating-ip6-device is irrelevant, since while
4615          * that device might become the new default-ip6-device, it can't
4616          * become primary-connection while default-ip4-device is set to
4617          * something else.
4618          */
4619         activating = nm_policy_get_activating_ip4_device (priv->policy);
4620         best = nm_policy_get_default_ip4_device (priv->policy);
4621         if (!activating && !best)
4622                 activating = nm_policy_get_activating_ip6_device (priv->policy);
4623
4624         if (activating)
4625                 ac = NM_ACTIVE_CONNECTION (nm_device_get_act_request (activating));
4626         else
4627                 ac = NULL;
4628
4629         if (ac != priv->activating_connection) {
4630                 g_clear_object (&priv->activating_connection);
4631                 priv->activating_connection = ac ? g_object_ref (ac) : NULL;
4632                 _LOGD (LOGD_CORE, "ActivatingConnection now %s", ac ? nm_active_connection_get_settings_connection_id (ac) : "(none)");
4633                 g_object_notify (G_OBJECT (self), NM_MANAGER_ACTIVATING_CONNECTION);
4634         }
4635 }
4636
4637 #define NM_PERM_DENIED_ERROR "org.freedesktop.NetworkManager.PermissionDenied"
4638
4639 typedef struct {
4640         NMManager *self;
4641         GDBusConnection *connection;
4642         GDBusMessage *message;
4643         NMAuthSubject *subject;
4644         const char *permission;
4645         const char *audit_op;
4646         char *audit_prop_value;
4647         GType interface_type;
4648         const char *glib_propname;
4649 } PropertyFilterData;
4650
4651 static void
4652 free_property_filter_data (PropertyFilterData *pfd)
4653 {
4654         g_object_unref (pfd->self);
4655         g_object_unref (pfd->connection);
4656         g_object_unref (pfd->message);
4657         g_clear_object (&pfd->subject);
4658         g_free (pfd->audit_prop_value);
4659         g_slice_free (PropertyFilterData, pfd);
4660 }
4661
4662 static void
4663 prop_set_auth_done_cb (NMAuthChain *chain,
4664                        GError *error,
4665                        GDBusMethodInvocation *context, /* NULL */
4666                        gpointer user_data)
4667 {
4668         PropertyFilterData *pfd = user_data;
4669         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (pfd->self);
4670         NMAuthCallResult result;
4671         GDBusMessage *reply = NULL;
4672         const char *error_message;
4673         gs_unref_object NMExportedObject *object = NULL;
4674         const NMGlobalDnsConfig *global_dns;
4675         gs_unref_variant GVariant *value = NULL;
4676         GVariant *args;
4677
4678         priv->auth_chains = g_slist_remove (priv->auth_chains, chain);
4679         result = nm_auth_chain_get_result (chain, pfd->permission);
4680         if (error || (result != NM_AUTH_CALL_RESULT_YES)) {
4681                 reply = g_dbus_message_new_method_error (pfd->message,
4682                                                          NM_PERM_DENIED_ERROR,
4683                                                          (error_message = "Not authorized to perform this operation"));
4684                 if (error)
4685                         error_message = error->message;
4686                 goto done;
4687         }
4688
4689         object = NM_EXPORTED_OBJECT (nm_bus_manager_get_registered_object (priv->dbus_mgr,
4690                                                                            g_dbus_message_get_path (pfd->message)));
4691         if (!object) {
4692                 reply = g_dbus_message_new_method_error (pfd->message,
4693                                                          "org.freedesktop.DBus.Error.UnknownObject",
4694                                                          (error_message = "Object doesn't exist."));
4695                 goto done;
4696         }
4697
4698         /* do some extra type checking... */
4699         if (!nm_exported_object_get_interface_by_type (object, pfd->interface_type)) {
4700                 reply = g_dbus_message_new_method_error (pfd->message,
4701                                                          "org.freedesktop.DBus.Error.InvalidArgs",
4702                                                          (error_message = "Object is of unexpected type."));
4703                 goto done;
4704         }
4705
4706         args = g_dbus_message_get_body (pfd->message);
4707         g_variant_get (args, "(&s&sv)", NULL, NULL, &value);
4708         g_assert (pfd->glib_propname);
4709
4710         if (!strcmp (pfd->glib_propname, NM_MANAGER_GLOBAL_DNS_CONFIGURATION)) {
4711                 g_assert (g_variant_is_of_type (value, G_VARIANT_TYPE ("a{sv}")));
4712                 global_dns = nm_config_data_get_global_dns_config (nm_config_get_data (priv->config));
4713
4714                 if (global_dns && !nm_global_dns_config_is_internal (global_dns)) {
4715                         reply = g_dbus_message_new_method_error (pfd->message,
4716                                                                  NM_PERM_DENIED_ERROR,
4717                                                                  (error_message = "Global DNS configuration already set via configuration file"));
4718                         goto done;
4719                 }
4720                 /* ... but set the property on the @object itself. It would be correct to set the property
4721                  * on the skeleton interface, but as it is now, the result is the same. */
4722                 g_object_set (object, pfd->glib_propname, value, NULL);
4723         } else {
4724                 g_assert (g_variant_is_of_type (value, G_VARIANT_TYPE_BOOLEAN));
4725                 /* the same here */
4726                 g_object_set (object, pfd->glib_propname, g_variant_get_boolean (value), NULL);
4727         }
4728
4729         reply = g_dbus_message_new_method_reply (pfd->message);
4730         g_dbus_message_set_body (reply, g_variant_new_tuple (NULL, 0));
4731         error_message = NULL;
4732 done:
4733         nm_audit_log_control_op (pfd->audit_op, pfd->audit_prop_value, !error_message, pfd->subject, error_message);
4734
4735         g_dbus_connection_send_message (pfd->connection, reply,
4736                                         G_DBUS_SEND_MESSAGE_FLAGS_NONE,
4737                                         NULL, NULL);
4738         g_object_unref (reply);
4739         nm_auth_chain_unref (chain);
4740
4741         free_property_filter_data (pfd);
4742 }
4743
4744 static gboolean
4745 do_set_property_check (gpointer user_data)
4746 {
4747         PropertyFilterData *pfd = user_data;
4748         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (pfd->self);
4749         GDBusMessage *reply = NULL;
4750         NMAuthChain *chain;
4751         const char *error_message = NULL;
4752
4753         pfd->subject = nm_auth_subject_new_unix_process_from_message (pfd->connection, pfd->message);
4754         if (!pfd->subject) {
4755                 reply = g_dbus_message_new_method_error (pfd->message,
4756                                                          NM_PERM_DENIED_ERROR,
4757                                                          (error_message = "Could not determine request UID."));
4758                 goto out;
4759         }
4760
4761         /* Validate the user request */
4762         chain = nm_auth_chain_new_subject (pfd->subject, NULL, prop_set_auth_done_cb, pfd);
4763         if (!chain) {
4764                 reply = g_dbus_message_new_method_error (pfd->message,
4765                                                          NM_PERM_DENIED_ERROR,
4766                                                          (error_message = "Could not authenticate request."));
4767                 goto out;
4768         }
4769
4770         priv->auth_chains = g_slist_append (priv->auth_chains, chain);
4771         nm_auth_chain_add_call (chain, pfd->permission, TRUE);
4772
4773 out:
4774         if (reply) {
4775                 nm_audit_log_control_op (pfd->audit_op, pfd->audit_prop_value, FALSE, pfd->subject, error_message);
4776                 g_dbus_connection_send_message (pfd->connection, reply,
4777                                                 G_DBUS_SEND_MESSAGE_FLAGS_NONE,
4778                                                 NULL, NULL);
4779                 g_object_unref (reply);
4780                 free_property_filter_data (pfd);
4781         }
4782
4783         return FALSE;
4784 }
4785
4786 static GDBusMessage *
4787 prop_filter (GDBusConnection *connection,
4788              GDBusMessage *message,
4789              gboolean incoming,
4790              gpointer user_data)
4791 {
4792         gs_unref_object NMManager *self = NULL;
4793         GVariant *args;
4794         const char *propiface = NULL;
4795         const char *propname = NULL;
4796         const char *glib_propname = NULL, *permission = NULL;
4797         const char *audit_op = NULL;
4798         GType interface_type = G_TYPE_INVALID;
4799         PropertyFilterData *pfd;
4800         const GVariantType *expected_type = G_VARIANT_TYPE_BOOLEAN;
4801         gs_unref_variant GVariant *value = NULL;
4802
4803         self = g_weak_ref_get (user_data);
4804         if (!self)
4805                 return message;
4806
4807         /* The sole purpose of this function is to validate property accesses on the
4808          * NMManager object since gdbus doesn't give us this functionality.
4809          */
4810
4811         /* Only filter org.freedesktop.DBus.Properties.Set calls */
4812         if (   !incoming
4813             || g_dbus_message_get_message_type (message) != G_DBUS_MESSAGE_TYPE_METHOD_CALL
4814             || g_strcmp0 (g_dbus_message_get_interface (message), DBUS_INTERFACE_PROPERTIES) != 0
4815             || g_strcmp0 (g_dbus_message_get_member (message), "Set") != 0)
4816                 return message;
4817
4818         args = g_dbus_message_get_body (message);
4819         if (!g_variant_is_of_type (args, G_VARIANT_TYPE ("(ssv)")))
4820                 return message;
4821         g_variant_get (args, "(&s&sv)", &propiface, &propname, &value);
4822
4823         /* Only filter calls to filtered properties, on existing objects */
4824         if (!strcmp (propiface, NM_DBUS_INTERFACE)) {
4825                 if (!strcmp (propname, "WirelessEnabled")) {
4826                         glib_propname = NM_MANAGER_WIRELESS_ENABLED;
4827                         permission = NM_AUTH_PERMISSION_ENABLE_DISABLE_WIFI;
4828                         audit_op = NM_AUDIT_OP_RADIO_CONTROL;
4829                 } else if (!strcmp (propname, "WwanEnabled")) {
4830                         glib_propname = NM_MANAGER_WWAN_ENABLED;
4831                         permission = NM_AUTH_PERMISSION_ENABLE_DISABLE_WWAN;
4832                         audit_op = NM_AUDIT_OP_RADIO_CONTROL;
4833                 } else if (!strcmp (propname, "WimaxEnabled")) {
4834                         glib_propname = NM_MANAGER_WIMAX_ENABLED;
4835                         permission = NM_AUTH_PERMISSION_ENABLE_DISABLE_WIMAX;
4836                         audit_op = NM_AUDIT_OP_RADIO_CONTROL;
4837                 } else if (!strcmp (propname, "GlobalDnsConfiguration")) {
4838                         glib_propname = NM_MANAGER_GLOBAL_DNS_CONFIGURATION;
4839                         permission = NM_AUTH_PERMISSION_SETTINGS_MODIFY_GLOBAL_DNS;
4840                         audit_op = NM_AUDIT_OP_NET_CONTROL;
4841                         expected_type = G_VARIANT_TYPE ("a{sv}");
4842                 } else
4843                         return message;
4844                 interface_type = NMDBUS_TYPE_MANAGER_SKELETON;
4845         } else if (!strcmp (propiface, NM_DBUS_INTERFACE_DEVICE)) {
4846                 if (!strcmp (propname, "Autoconnect")) {
4847                         glib_propname = NM_DEVICE_AUTOCONNECT;
4848                         permission = NM_AUTH_PERMISSION_NETWORK_CONTROL;
4849                         audit_op = NM_AUDIT_OP_DEVICE_AUTOCONNECT;
4850                 } else if (!strcmp (propname, "Managed")) {
4851                         glib_propname = NM_DEVICE_MANAGED;
4852                         permission = NM_AUTH_PERMISSION_NETWORK_CONTROL;
4853                         audit_op = NM_AUDIT_OP_DEVICE_MANAGED;
4854                 } else
4855                         return message;
4856                 interface_type = NMDBUS_TYPE_DEVICE_SKELETON;
4857         } else
4858                 return message;
4859
4860         if (!g_variant_is_of_type (value, expected_type))
4861                 return message;
4862
4863         /* This filter function is called from a gdbus worker thread which we can't
4864          * make other D-Bus calls from. In particular, we cannot call
4865          * org.freedesktop.DBus.GetConnectionUnixUser to find the remote UID.
4866          */
4867         pfd = g_slice_new0 (PropertyFilterData);
4868         pfd->self = self;
4869         self = NULL;
4870         pfd->connection = g_object_ref (connection);
4871         pfd->message = message;
4872         pfd->permission = permission;
4873         pfd->interface_type = interface_type;
4874         pfd->glib_propname = glib_propname;
4875         pfd->audit_op = audit_op;
4876         if (g_variant_is_of_type (value, G_VARIANT_TYPE_BOOLEAN)) {
4877                 pfd->audit_prop_value = g_strdup_printf ("%s:%d", pfd->glib_propname,
4878                                                          g_variant_get_boolean (value));
4879         } else
4880                 pfd->audit_prop_value = g_strdup (pfd->glib_propname);
4881
4882         g_idle_add (do_set_property_check, pfd);
4883
4884         return NULL;
4885 }
4886
4887 /******************************************************************************/
4888
4889 static int
4890 _set_prop_filter_free2 (gpointer user_data)
4891 {
4892         g_slice_free (GWeakRef, user_data);
4893         return G_SOURCE_REMOVE;
4894 }
4895
4896 static void
4897 _set_prop_filter_free (gpointer user_data)
4898 {
4899         g_weak_ref_clear (user_data);
4900
4901         /* Delay the final deletion of the user_data. There is a race when
4902          * calling g_dbus_connection_remove_filter() that the callback and user_data
4903          * might have been copied and being executed after the destroy function
4904          * runs (bgo #704568).
4905          * This doesn't really fix the race, but it should work well enough. */
4906         g_timeout_add_seconds (2, _set_prop_filter_free2, user_data);
4907 }
4908
4909 static void
4910 _set_prop_filter (NMManager *self, GDBusConnection *connection)
4911 {
4912         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
4913
4914         nm_assert ((!priv->prop_filter.connection) == (!priv->prop_filter.id));
4915
4916         if (priv->prop_filter.connection == connection)
4917                 return;
4918
4919         if (priv->prop_filter.connection) {
4920                 g_dbus_connection_remove_filter (priv->prop_filter.connection, priv->prop_filter.id);
4921                 priv->prop_filter.id = 0;
4922                 g_clear_object (&priv->prop_filter.connection);
4923         }
4924         if (connection) {
4925                 GWeakRef *wptr;
4926
4927                 wptr = g_slice_new (GWeakRef);
4928                 g_weak_ref_init  (wptr, self);
4929                 priv->prop_filter.id = g_dbus_connection_add_filter (connection, prop_filter, wptr, _set_prop_filter_free);
4930                 priv->prop_filter.connection = g_object_ref (connection);
4931         }
4932 }
4933
4934 /******************************************************************************/
4935
4936 static void
4937 authority_changed_cb (NMAuthManager *auth_manager, gpointer user_data)
4938 {
4939         /* Let clients know they should re-check their authorization */
4940         g_signal_emit (NM_MANAGER (user_data), signals[CHECK_PERMISSIONS], 0);
4941 }
4942
4943 #define KERN_RFKILL_OP_CHANGE_ALL 3
4944 #define KERN_RFKILL_TYPE_WLAN     1
4945 #define KERN_RFKILL_TYPE_WWAN     5
4946 struct rfkill_event {
4947         __u32 idx;
4948         __u8  type;
4949         __u8  op;
4950         __u8  soft, hard;
4951 } __attribute__((packed));
4952
4953 static void
4954 rfkill_change (const char *desc, RfKillType rtype, gboolean enabled)
4955 {
4956         int fd;
4957         struct rfkill_event event;
4958         ssize_t len;
4959
4960         g_return_if_fail (rtype == RFKILL_TYPE_WLAN || rtype == RFKILL_TYPE_WWAN);
4961
4962         errno = 0;
4963         fd = open ("/dev/rfkill", O_RDWR);
4964         if (fd < 0) {
4965                 if (errno == EACCES)
4966                         nm_log_warn (LOGD_RFKILL, "(%s): failed to open killswitch device", desc);
4967                 return;
4968         }
4969
4970         if (fcntl (fd, F_SETFL, O_NONBLOCK) < 0) {
4971                 nm_log_warn (LOGD_RFKILL, "(%s): failed to set killswitch device for "
4972                              "non-blocking operation", desc);
4973                 close (fd);
4974                 return;
4975         }
4976
4977         memset (&event, 0, sizeof (event));
4978         event.op = KERN_RFKILL_OP_CHANGE_ALL;
4979         switch (rtype) {
4980         case RFKILL_TYPE_WLAN:
4981                 event.type = KERN_RFKILL_TYPE_WLAN;
4982                 break;
4983         case RFKILL_TYPE_WWAN:
4984                 event.type = KERN_RFKILL_TYPE_WWAN;
4985                 break;
4986         default:
4987                 g_assert_not_reached ();
4988         }
4989         event.soft = enabled ? 0 : 1;
4990
4991         len = write (fd, &event, sizeof (event));
4992         if (len < 0) {
4993                 nm_log_warn (LOGD_RFKILL, "(%s): failed to change WiFi killswitch state: (%d) %s",
4994                              desc, errno, g_strerror (errno));
4995         } else if (len == sizeof (event)) {
4996                 nm_log_info (LOGD_RFKILL, "%s hardware radio set %s",
4997                              desc, enabled ? "enabled" : "disabled");
4998         } else {
4999                 /* Failed to write full structure */
5000                 nm_log_warn (LOGD_RFKILL, "(%s): failed to change WiFi killswitch state", desc);
5001         }
5002
5003         close (fd);
5004 }
5005
5006 static void
5007 manager_radio_user_toggled (NMManager *self,
5008                             RadioState *rstate,
5009                             gboolean enabled)
5010 {
5011         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
5012         GError *error = NULL;
5013         gboolean old_enabled, new_enabled;
5014
5015         /* Don't touch devices if asleep/networking disabled */
5016         if (manager_sleeping (self))
5017                 return;
5018
5019         if (rstate->desc) {
5020                 _LOGD (LOGD_RFKILL, "(%s): setting radio %s by user",
5021                        rstate->desc,
5022                        enabled ? "enabled" : "disabled");
5023         }
5024
5025         /* Update enabled key in state file */
5026         if (priv->state_file) {
5027                 if (!write_value_to_state_file (priv->state_file,
5028                                                 "main", rstate->key,
5029                                                 G_TYPE_BOOLEAN, (gpointer) &enabled,
5030                                                 &error)) {
5031                         _LOGW (LOGD_CORE, "writing to state file %s failed: %s",
5032                                priv->state_file,
5033                                error->message);
5034                         g_clear_error (&error);
5035                 }
5036         }
5037
5038         /* When the user toggles the radio, their request should override any
5039          * daemon (like ModemManager) enabled state that can be changed.  For WWAN
5040          * for example, we want the WwanEnabled property to reflect the daemon state
5041          * too so that users can toggle the modem powered, but we don't want that
5042          * daemon state to affect whether or not the user *can* turn it on, which is
5043          * what the kernel rfkill state does.  So we ignore daemon enabled state
5044          * when determining what the new state should be since it shouldn't block
5045          * the user's request.
5046          */
5047         old_enabled = radio_enabled_for_rstate (rstate, TRUE);
5048         rstate->user_enabled = enabled;
5049         new_enabled = radio_enabled_for_rstate (rstate, FALSE);
5050         if (new_enabled != old_enabled) {
5051                 /* Try to change the kernel rfkill state */
5052                 if (rstate->rtype == RFKILL_TYPE_WLAN || rstate->rtype == RFKILL_TYPE_WWAN)
5053                         rfkill_change (rstate->desc, rstate->rtype, new_enabled);
5054
5055                 manager_update_radio_enabled (self, rstate, new_enabled);
5056         }
5057 }
5058
5059 static gboolean
5060 periodic_update_active_connection_timestamps (gpointer user_data)
5061 {
5062         NMManager *manager = NM_MANAGER (user_data);
5063         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (manager);
5064         GSList *iter;
5065
5066         for (iter = priv->active_connections; iter; iter = g_slist_next (iter)) {
5067                 NMActiveConnection *ac = iter->data;
5068                 NMSettingsConnection *connection;
5069
5070                 if (nm_active_connection_get_state (ac) == NM_ACTIVE_CONNECTION_STATE_ACTIVATED) {
5071                         connection = nm_active_connection_get_settings_connection (ac);
5072                         nm_settings_connection_update_timestamp (connection, (guint64) time (NULL), FALSE);
5073                 }
5074         }
5075
5076         return TRUE;
5077 }
5078
5079 static void
5080 dbus_connection_changed_cb (NMBusManager *dbus_mgr,
5081                             GDBusConnection *connection,
5082                             gpointer user_data)
5083 {
5084         _set_prop_filter (NM_MANAGER (user_data), connection);
5085 }
5086
5087 /**********************************************************************/
5088
5089 NM_DEFINE_SINGLETON_REGISTER (NMManager);
5090
5091 NMManager *
5092 nm_manager_get (void)
5093 {
5094         g_return_val_if_fail (singleton_instance, NULL);
5095         return singleton_instance;
5096 }
5097
5098 NMConnectionProvider *
5099 nm_connection_provider_get (void)
5100 {
5101         NMConnectionProvider *p;
5102
5103         g_return_val_if_fail (singleton_instance, NULL);
5104
5105         p = NM_CONNECTION_PROVIDER (NM_MANAGER_GET_PRIVATE (singleton_instance)->settings);
5106         g_return_val_if_fail (p, NULL);
5107         return p;
5108 }
5109
5110 NMManager *
5111 nm_manager_setup (const char *state_file,
5112                   gboolean initial_net_enabled,
5113                   gboolean initial_wifi_enabled,
5114                   gboolean initial_wwan_enabled)
5115 {
5116         NMManager *self;
5117
5118         g_return_val_if_fail (!singleton_instance, singleton_instance);
5119
5120         self = g_object_new (NM_TYPE_MANAGER,
5121                              NM_MANAGER_NETWORKING_ENABLED, initial_net_enabled,
5122                              NM_MANAGER_WIRELESS_ENABLED, initial_wifi_enabled,
5123                              NM_MANAGER_WWAN_ENABLED, initial_wwan_enabled,
5124                              NM_MANAGER_STATE_FILE, state_file,
5125                              NULL);
5126         nm_assert (NM_IS_MANAGER (self));
5127         singleton_instance = self;
5128
5129         nm_singleton_instance_register ();
5130         _LOGD (LOGD_CORE, "setup %s singleton (%p)", "NMManager", singleton_instance);
5131
5132         nm_exported_object_export ((NMExportedObject *) self);
5133
5134         return self;
5135 }
5136
5137 static void
5138 constructed (GObject *object)
5139 {
5140         NMManager *self = NM_MANAGER (object);
5141         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
5142         NMConfigData *config_data;
5143
5144         G_OBJECT_CLASS (nm_manager_parent_class)->constructed (object);
5145
5146         _set_prop_filter (self, nm_bus_manager_get_connection (priv->dbus_mgr));
5147
5148         priv->settings = nm_settings_new ();
5149         g_signal_connect (priv->settings, "notify::" NM_SETTINGS_STARTUP_COMPLETE,
5150                           G_CALLBACK (settings_startup_complete_changed), self);
5151         g_signal_connect (priv->settings, "notify::" NM_SETTINGS_UNMANAGED_SPECS,
5152                           G_CALLBACK (system_unmanaged_devices_changed_cb), self);
5153         g_signal_connect (priv->settings, "notify::" NM_SETTINGS_HOSTNAME,
5154                           G_CALLBACK (system_hostname_changed_cb), self);
5155         g_signal_connect (priv->settings, NM_SETTINGS_SIGNAL_CONNECTION_ADDED,
5156                           G_CALLBACK (connection_changed), self);
5157         g_signal_connect (priv->settings, NM_SETTINGS_SIGNAL_CONNECTION_UPDATED_BY_USER,
5158                           G_CALLBACK (connection_changed), self);
5159         g_signal_connect (priv->settings, NM_SETTINGS_SIGNAL_CONNECTION_REMOVED,
5160                           G_CALLBACK (connection_removed), self);
5161
5162         priv->policy = nm_policy_new (self, priv->settings);
5163         g_signal_connect (priv->policy, "notify::" NM_POLICY_DEFAULT_IP4_DEVICE,
5164                           G_CALLBACK (policy_default_device_changed), self);
5165         g_signal_connect (priv->policy, "notify::" NM_POLICY_DEFAULT_IP6_DEVICE,
5166                           G_CALLBACK (policy_default_device_changed), self);
5167         g_signal_connect (priv->policy, "notify::" NM_POLICY_ACTIVATING_IP4_DEVICE,
5168                           G_CALLBACK (policy_activating_device_changed), self);
5169         g_signal_connect (priv->policy, "notify::" NM_POLICY_ACTIVATING_IP6_DEVICE,
5170                           G_CALLBACK (policy_activating_device_changed), self);
5171
5172         priv->config = g_object_ref (nm_config_get ());
5173         g_signal_connect (G_OBJECT (priv->config),
5174                           NM_CONFIG_SIGNAL_CONFIG_CHANGED,
5175                           G_CALLBACK (_config_changed_cb),
5176                           self);
5177
5178         config_data = nm_config_get_data (priv->config);
5179         priv->connectivity = nm_connectivity_new (nm_config_data_get_connectivity_uri (config_data),
5180                                                   nm_config_data_get_connectivity_interval (config_data),
5181                                                   nm_config_data_get_connectivity_response (config_data));
5182         g_signal_connect (priv->connectivity, "notify::" NM_CONNECTIVITY_STATE,
5183                           G_CALLBACK (connectivity_changed), self);
5184
5185         priv->rfkill_mgr = nm_rfkill_manager_new ();
5186         g_signal_connect (priv->rfkill_mgr,
5187                           "rfkill-changed",
5188                           G_CALLBACK (rfkill_manager_rfkill_changed_cb),
5189                           self);
5190
5191         /* Force kernel WiFi/WWAN rfkill state to follow NM saved WiFi/WWAN state
5192          * in case the BIOS doesn't save rfkill state, and to be consistent with user
5193          * changes to the WirelessEnabled/WWANEnabled properties which toggle kernel
5194          * rfkill.
5195          */
5196         rfkill_change (priv->radio_states[RFKILL_TYPE_WLAN].desc, RFKILL_TYPE_WLAN, priv->radio_states[RFKILL_TYPE_WLAN].user_enabled);
5197         rfkill_change (priv->radio_states[RFKILL_TYPE_WWAN].desc, RFKILL_TYPE_WWAN, priv->radio_states[RFKILL_TYPE_WWAN].user_enabled);
5198 }
5199
5200 static void
5201 nm_manager_init (NMManager *self)
5202 {
5203         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
5204         guint i;
5205         GFile *file;
5206
5207         /* Initialize rfkill structures and states */
5208         memset (priv->radio_states, 0, sizeof (priv->radio_states));
5209
5210         priv->radio_states[RFKILL_TYPE_WLAN].user_enabled = TRUE;
5211         priv->radio_states[RFKILL_TYPE_WLAN].key = "WirelessEnabled";
5212         priv->radio_states[RFKILL_TYPE_WLAN].prop = NM_MANAGER_WIRELESS_ENABLED;
5213         priv->radio_states[RFKILL_TYPE_WLAN].hw_prop = NM_MANAGER_WIRELESS_HARDWARE_ENABLED;
5214         priv->radio_states[RFKILL_TYPE_WLAN].desc = "WiFi";
5215         priv->radio_states[RFKILL_TYPE_WLAN].rtype = RFKILL_TYPE_WLAN;
5216
5217         priv->radio_states[RFKILL_TYPE_WWAN].user_enabled = TRUE;
5218         priv->radio_states[RFKILL_TYPE_WWAN].key = "WWANEnabled";
5219         priv->radio_states[RFKILL_TYPE_WWAN].prop = NM_MANAGER_WWAN_ENABLED;
5220         priv->radio_states[RFKILL_TYPE_WWAN].hw_prop = NM_MANAGER_WWAN_HARDWARE_ENABLED;
5221         priv->radio_states[RFKILL_TYPE_WWAN].desc = "WWAN";
5222         priv->radio_states[RFKILL_TYPE_WWAN].rtype = RFKILL_TYPE_WWAN;
5223
5224         for (i = 0; i < RFKILL_TYPE_MAX; i++)
5225                 priv->radio_states[i].hw_enabled = TRUE;
5226
5227         priv->sleeping = FALSE;
5228         priv->state = NM_STATE_DISCONNECTED;
5229         priv->startup = TRUE;
5230
5231         priv->dbus_mgr = g_object_ref (nm_bus_manager_get ());
5232         g_signal_connect (priv->dbus_mgr,
5233                           NM_BUS_MANAGER_DBUS_CONNECTION_CHANGED,
5234                           G_CALLBACK (dbus_connection_changed_cb),
5235                           self);
5236
5237         /* sleep/wake handling */
5238         priv->sleep_monitor = g_object_ref (nm_sleep_monitor_get ());
5239         g_signal_connect (priv->sleep_monitor, NM_SLEEP_MONITOR_SLEEPING,
5240                           G_CALLBACK (sleeping_cb), self);
5241         g_signal_connect (priv->sleep_monitor, NM_SLEEP_MONITOR_RESUMING,
5242                           G_CALLBACK (resuming_cb), self);
5243
5244         /* Listen for authorization changes */
5245         g_signal_connect (nm_auth_manager_get (),
5246                           NM_AUTH_MANAGER_SIGNAL_CHANGED,
5247                           G_CALLBACK (authority_changed_cb),
5248                           self);
5249
5250
5251         /* Monitor the firmware directory */
5252         if (strlen (KERNEL_FIRMWARE_DIR)) {
5253                 file = g_file_new_for_path (KERNEL_FIRMWARE_DIR "/");
5254                 priv->fw_monitor = g_file_monitor_directory (file, G_FILE_MONITOR_NONE, NULL, NULL);
5255                 g_object_unref (file);
5256         }
5257
5258         if (priv->fw_monitor) {
5259                 g_signal_connect (priv->fw_monitor, "changed",
5260                                   G_CALLBACK (firmware_dir_changed),
5261                                   self);
5262                 _LOGI (LOGD_CORE, "monitoring kernel firmware directory '%s'.",
5263                              KERNEL_FIRMWARE_DIR);
5264         } else {
5265                 _LOGW (LOGD_CORE, "failed to monitor kernel firmware directory '%s'.",
5266                        KERNEL_FIRMWARE_DIR);
5267         }
5268
5269         /* Update timestamps in active connections */
5270         priv->timestamp_update_id = g_timeout_add_seconds (300, (GSourceFunc) periodic_update_active_connection_timestamps, self);
5271
5272         priv->metered = NM_METERED_UNKNOWN;
5273 }
5274
5275 static gboolean
5276 device_is_real (GObject *device, gpointer user_data)
5277 {
5278         return nm_device_is_real (NM_DEVICE (device));
5279 }
5280
5281 static void
5282 get_property (GObject *object, guint prop_id,
5283               GValue *value, GParamSpec *pspec)
5284 {
5285         NMManager *self = NM_MANAGER (object);
5286         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
5287         NMConfigData *config_data;
5288         const NMGlobalDnsConfig *dns_config;
5289         const char *type;
5290
5291         switch (prop_id) {
5292         case PROP_VERSION:
5293                 g_value_set_string (value, VERSION);
5294                 break;
5295         case PROP_STATE:
5296                 nm_manager_update_state (self);
5297                 g_value_set_uint (value, priv->state);
5298                 break;
5299         case PROP_STARTUP:
5300                 g_value_set_boolean (value, priv->startup);
5301                 break;
5302         case PROP_NETWORKING_ENABLED:
5303                 g_value_set_boolean (value, priv->net_enabled);
5304                 break;
5305         case PROP_WIRELESS_ENABLED:
5306                 g_value_set_boolean (value, radio_enabled_for_type (self, RFKILL_TYPE_WLAN, TRUE));
5307                 break;
5308         case PROP_WIRELESS_HARDWARE_ENABLED:
5309                 g_value_set_boolean (value, priv->radio_states[RFKILL_TYPE_WLAN].hw_enabled);
5310                 break;
5311         case PROP_WWAN_ENABLED:
5312                 g_value_set_boolean (value, radio_enabled_for_type (self, RFKILL_TYPE_WWAN, TRUE));
5313                 break;
5314         case PROP_WWAN_HARDWARE_ENABLED:
5315                 g_value_set_boolean (value, priv->radio_states[RFKILL_TYPE_WWAN].hw_enabled);
5316                 break;
5317         case PROP_WIMAX_ENABLED:
5318                 g_value_set_boolean (value, FALSE);
5319                 break;
5320         case PROP_WIMAX_HARDWARE_ENABLED:
5321                 g_value_set_boolean (value, FALSE);
5322                 break;
5323         case PROP_ACTIVE_CONNECTIONS:
5324                 nm_utils_g_value_set_object_path_array (value, priv->active_connections, NULL, NULL);
5325                 break;
5326         case PROP_CONNECTIVITY:
5327                 g_value_set_uint (value, nm_connectivity_get_state (priv->connectivity));
5328                 break;
5329         case PROP_PRIMARY_CONNECTION:
5330                 nm_utils_g_value_set_object_path (value, priv->primary_connection);
5331                 break;
5332         case PROP_PRIMARY_CONNECTION_TYPE:
5333                 type = NULL;
5334                 if (priv->primary_connection) {
5335                         NMConnection *con;
5336
5337                         con = nm_active_connection_get_applied_connection (priv->primary_connection);
5338                         if (con)
5339                                 type = nm_connection_get_connection_type (con);
5340                 }
5341                 g_value_set_string (value, type ? type : "");
5342                 break;
5343         case PROP_ACTIVATING_CONNECTION:
5344                 nm_utils_g_value_set_object_path (value, priv->activating_connection);
5345                 break;
5346         case PROP_HOSTNAME:
5347                 g_value_set_string (value, priv->hostname);
5348                 break;
5349         case PROP_SLEEPING:
5350                 g_value_set_boolean (value, priv->sleeping);
5351                 break;
5352         case PROP_DEVICES:
5353                 nm_utils_g_value_set_object_path_array (value, priv->devices, device_is_real, NULL);
5354                 break;
5355         case PROP_METERED:
5356                 g_value_set_uint (value, priv->metered);
5357                 break;
5358         case PROP_GLOBAL_DNS_CONFIGURATION:
5359                 config_data = nm_config_get_data (priv->config);
5360                 dns_config = nm_config_data_get_global_dns_config (config_data);
5361                 nm_global_dns_config_to_dbus (dns_config, value);
5362                 break;
5363         case PROP_ALL_DEVICES:
5364                 nm_utils_g_value_set_object_path_array (value, priv->devices, NULL, NULL);
5365                 break;
5366         default:
5367                 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
5368                 break;
5369         }
5370 }
5371
5372 static void
5373 set_property (GObject *object, guint prop_id,
5374               const GValue *value, GParamSpec *pspec)
5375 {
5376         NMManager *self = NM_MANAGER (object);
5377         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (self);
5378         NMGlobalDnsConfig *dns_config;
5379         GError *error = NULL;
5380
5381         switch (prop_id) {
5382         case PROP_STATE_FILE:
5383                 /* construct-only */
5384                 priv->state_file = g_value_dup_string (value);
5385                 break;
5386         case PROP_NETWORKING_ENABLED:
5387                 /* construct-only */
5388                 priv->net_enabled = g_value_get_boolean (value);
5389                 break;
5390         case PROP_WIRELESS_ENABLED:
5391                 if (!priv->rfkill_mgr) {
5392                         /* called during object construction. */
5393                         priv->radio_states[RFKILL_TYPE_WLAN].user_enabled = g_value_get_boolean (value);
5394                 } else {
5395                         manager_radio_user_toggled (NM_MANAGER (object),
5396                                                     &priv->radio_states[RFKILL_TYPE_WLAN],
5397                                                     g_value_get_boolean (value));
5398                 }
5399                 break;
5400         case PROP_WWAN_ENABLED:
5401                 if (!priv->rfkill_mgr) {
5402                         /* called during object construction. */
5403                         priv->radio_states[RFKILL_TYPE_WWAN].user_enabled = g_value_get_boolean (value);
5404                 } else {
5405                         manager_radio_user_toggled (NM_MANAGER (object),
5406                                                     &priv->radio_states[RFKILL_TYPE_WWAN],
5407                                                     g_value_get_boolean (value));
5408                 }
5409                 break;
5410         case PROP_WIMAX_ENABLED:
5411                 /* WIMAX is depreacted. This does nothing. */
5412                 break;
5413         case PROP_GLOBAL_DNS_CONFIGURATION:
5414                 dns_config = nm_global_dns_config_from_dbus (value, &error);
5415                 if (!error)
5416                         nm_config_set_global_dns (priv->config, dns_config, &error);
5417
5418                 nm_global_dns_config_free (dns_config);
5419
5420                 if (error) {
5421                         _LOGD (LOGD_CORE, "set global DNS failed with error: %s", error->message);
5422                         g_error_free (error);
5423                 }
5424                 break;
5425         default:
5426                 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
5427                 break;
5428         }
5429 }
5430
5431 static void
5432 _deinit_device_factory (NMDeviceFactory *factory, gpointer user_data)
5433 {
5434         g_signal_handlers_disconnect_matched (factory, G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, NM_MANAGER (user_data));
5435 }
5436
5437 static void
5438 dispose (GObject *object)
5439 {
5440         NMManager *manager = NM_MANAGER (object);
5441         NMManagerPrivate *priv = NM_MANAGER_GET_PRIVATE (manager);
5442
5443         g_slist_free_full (priv->auth_chains, (GDestroyNotify) nm_auth_chain_unref);
5444         priv->auth_chains = NULL;
5445
5446         g_signal_handlers_disconnect_by_func (nm_auth_manager_get (),
5447                                               G_CALLBACK (authority_changed_cb),
5448                                               manager);
5449
5450         g_assert (priv->devices == NULL);
5451
5452         nm_clear_g_source (&priv->ac_cleanup_id);
5453
5454         while (priv->active_connections)
5455                 active_connection_remove (manager, NM_ACTIVE_CONNECTION (priv->active_connections->data));
5456         g_clear_pointer (&priv->active_connections, g_slist_free);
5457         g_clear_object (&priv->primary_connection);
5458         g_clear_object (&priv->activating_connection);
5459
5460         if (priv->config) {
5461                 g_signal_handlers_disconnect_by_func (priv->config, _config_changed_cb, manager);
5462                 g_clear_object (&priv->config);
5463         }
5464         if (priv->connectivity) {
5465                 g_signal_handlers_disconnect_by_func (priv->connectivity, connectivity_changed, manager);
5466                 g_clear_object (&priv->connectivity);
5467         }
5468
5469         g_free (priv->hostname);
5470
5471         if (priv->policy) {
5472                 g_signal_handlers_disconnect_by_func (priv->policy, policy_default_device_changed, manager);
5473                 g_signal_handlers_disconnect_by_func (priv->policy, policy_activating_device_changed, manager);
5474                 g_clear_object (&priv->policy);
5475         }
5476
5477         if (priv->settings) {
5478                 g_signal_handlers_disconnect_by_func (priv->settings, settings_startup_complete_changed, manager);
5479                 g_signal_handlers_disconnect_by_func (priv->settings, system_unmanaged_devices_changed_cb, manager);
5480                 g_signal_handlers_disconnect_by_func (priv->settings, system_hostname_changed_cb, manager);
5481                 g_signal_handlers_disconnect_by_func (priv->settings, connection_changed, manager);
5482                 g_signal_handlers_disconnect_by_func (priv->settings, connection_removed, manager);
5483                 g_clear_object (&priv->settings);
5484         }
5485
5486         g_clear_pointer (&priv->state_file, g_free);
5487         g_clear_object (&priv->vpn_manager);
5488
5489         /* Unregister property filter */
5490         if (priv->dbus_mgr) {
5491                 g_signal_handlers_disconnect_by_func (priv->dbus_mgr, dbus_connection_changed_cb, manager);
5492                 g_clear_object (&priv->dbus_mgr);
5493         }
5494         _set_prop_filter (manager, NULL);
5495
5496         if (priv->sleep_monitor) {
5497                 g_signal_handlers_disconnect_by_func (priv->sleep_monitor, sleeping_cb, manager);
5498                 g_signal_handlers_disconnect_by_func (priv->sleep_monitor, resuming_cb, manager);
5499                 g_clear_object (&priv->sleep_monitor);
5500         }
5501
5502         if (priv->fw_monitor) {
5503                 g_signal_handlers_disconnect_by_func (priv->fw_monitor, firmware_dir_changed, manager);
5504
5505                 nm_clear_g_source (&priv->fw_changed_id);
5506
5507                 g_file_monitor_cancel (priv->fw_monitor);
5508                 g_clear_object (&priv->fw_monitor);
5509         }
5510
5511         if (priv->rfkill_mgr) {
5512                 g_signal_handlers_disconnect_by_func (priv->rfkill_mgr, rfkill_manager_rfkill_changed_cb, manager);
5513                 g_clear_object (&priv->rfkill_mgr);
5514         }
5515
5516         nm_device_factory_manager_for_each_factory (_deinit_device_factory, manager);
5517
5518         nm_clear_g_source (&priv->timestamp_update_id);
5519
5520         G_OBJECT_CLASS (nm_manager_parent_class)->dispose (object);
5521 }
5522
5523 static void
5524 nm_manager_class_init (NMManagerClass *manager_class)
5525 {
5526         GObjectClass *object_class = G_OBJECT_CLASS (manager_class);
5527         NMExportedObjectClass *exported_object_class = NM_EXPORTED_OBJECT_CLASS (manager_class);
5528
5529         g_type_class_add_private (manager_class, sizeof (NMManagerPrivate));
5530
5531         exported_object_class->export_path = NM_DBUS_PATH;
5532
5533         /* virtual methods */
5534         object_class->constructed = constructed;
5535         object_class->set_property = set_property;
5536         object_class->get_property = get_property;
5537         object_class->dispose = dispose;
5538
5539         /* properties */
5540         g_object_class_install_property
5541                 (object_class, PROP_VERSION,
5542                  g_param_spec_string (NM_MANAGER_VERSION, "", "",
5543                                       NULL,
5544                                       G_PARAM_READABLE |
5545                                       G_PARAM_STATIC_STRINGS));
5546
5547         g_object_class_install_property (object_class,
5548                                          PROP_STATE_FILE,
5549                                          g_param_spec_string (NM_MANAGER_STATE_FILE, "", "",
5550                                                               NULL,
5551                                                               G_PARAM_WRITABLE |
5552                                                               G_PARAM_CONSTRUCT_ONLY |
5553                                                               G_PARAM_STATIC_STRINGS));
5554
5555         g_object_class_install_property
5556                 (object_class, PROP_STATE,
5557                  g_param_spec_uint (NM_MANAGER_STATE, "", "",
5558                                     0, NM_STATE_DISCONNECTED, 0,
5559                                     G_PARAM_READABLE |
5560                                     G_PARAM_STATIC_STRINGS));
5561
5562         g_object_class_install_property
5563                 (object_class, PROP_STARTUP,
5564                  g_param_spec_boolean (NM_MANAGER_STARTUP, "", "",
5565                                        TRUE,
5566                                        G_PARAM_READABLE |
5567                                        G_PARAM_STATIC_STRINGS));
5568
5569         g_object_class_install_property
5570                 (object_class, PROP_NETWORKING_ENABLED,
5571                  g_param_spec_boolean (NM_MANAGER_NETWORKING_ENABLED, "", "",
5572                                        TRUE,
5573                                        G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY |
5574                                        G_PARAM_STATIC_STRINGS));
5575
5576         g_object_class_install_property
5577                 (object_class, PROP_WIRELESS_ENABLED,
5578                  g_param_spec_boolean (NM_MANAGER_WIRELESS_ENABLED, "", "",
5579                                        TRUE,
5580                                        G_PARAM_READWRITE |
5581                                        G_PARAM_CONSTRUCT |
5582                                        G_PARAM_STATIC_STRINGS));
5583
5584         g_object_class_install_property
5585                 (object_class, PROP_WIRELESS_HARDWARE_ENABLED,
5586                  g_param_spec_boolean (NM_MANAGER_WIRELESS_HARDWARE_ENABLED, "", "",
5587                                        TRUE,
5588                                        G_PARAM_READABLE |
5589                                        G_PARAM_STATIC_STRINGS));
5590
5591         g_object_class_install_property
5592                 (object_class, PROP_WWAN_ENABLED,
5593                  g_param_spec_boolean (NM_MANAGER_WWAN_ENABLED, "", "",
5594                                        TRUE,
5595                                        G_PARAM_READWRITE |
5596                                        G_PARAM_CONSTRUCT |
5597                                        G_PARAM_STATIC_STRINGS));
5598
5599         g_object_class_install_property
5600                 (object_class, PROP_WWAN_HARDWARE_ENABLED,
5601                  g_param_spec_boolean (NM_MANAGER_WWAN_HARDWARE_ENABLED, "", "",
5602                                        TRUE,
5603                                        G_PARAM_READABLE |
5604                                        G_PARAM_STATIC_STRINGS));
5605
5606         g_object_class_install_property
5607                 (object_class, PROP_WIMAX_ENABLED,
5608                  g_param_spec_boolean (NM_MANAGER_WIMAX_ENABLED, "", "",
5609                                        TRUE,
5610                                        G_PARAM_READWRITE |
5611                                        G_PARAM_STATIC_STRINGS));
5612
5613         g_object_class_install_property
5614                 (object_class, PROP_WIMAX_HARDWARE_ENABLED,
5615                  g_param_spec_boolean (NM_MANAGER_WIMAX_HARDWARE_ENABLED, "", "",
5616                                        TRUE,
5617                                        G_PARAM_READABLE |
5618                                        G_PARAM_STATIC_STRINGS));
5619
5620         g_object_class_install_property
5621                 (object_class, PROP_ACTIVE_CONNECTIONS,
5622                  g_param_spec_boxed (NM_MANAGER_ACTIVE_CONNECTIONS, "", "",
5623                                      G_TYPE_STRV,
5624                                      G_PARAM_READABLE |
5625                                      G_PARAM_STATIC_STRINGS));
5626
5627         g_object_class_install_property
5628                 (object_class, PROP_CONNECTIVITY,
5629                  g_param_spec_uint (NM_MANAGER_CONNECTIVITY, "", "",
5630                                     NM_CONNECTIVITY_UNKNOWN, NM_CONNECTIVITY_FULL, NM_CONNECTIVITY_UNKNOWN,
5631                                     G_PARAM_READABLE |
5632                                     G_PARAM_STATIC_STRINGS));
5633
5634         g_object_class_install_property
5635                 (object_class, PROP_PRIMARY_CONNECTION,
5636                  g_param_spec_string (NM_MANAGER_PRIMARY_CONNECTION, "", "",
5637                                       NULL,
5638                                       G_PARAM_READABLE |
5639                                       G_PARAM_STATIC_STRINGS));
5640
5641         g_object_class_install_property
5642                 (object_class, PROP_PRIMARY_CONNECTION_TYPE,
5643                  g_param_spec_string (NM_MANAGER_PRIMARY_CONNECTION_TYPE, "", "",
5644                                       NULL,
5645                                       G_PARAM_READABLE |
5646                                       G_PARAM_STATIC_STRINGS));
5647
5648
5649         g_object_class_install_property
5650                 (object_class, PROP_ACTIVATING_CONNECTION,
5651                  g_param_spec_string (NM_MANAGER_ACTIVATING_CONNECTION, "", "",
5652                                       NULL,
5653                                       G_PARAM_READABLE |
5654                                       G_PARAM_STATIC_STRINGS));
5655
5656         /* Hostname is not exported over D-Bus */
5657         g_object_class_install_property
5658                 (object_class, PROP_HOSTNAME,
5659                  g_param_spec_string (NM_MANAGER_HOSTNAME, "", "",
5660                                       NULL,
5661                                       G_PARAM_READABLE |
5662                                       G_PARAM_STATIC_STRINGS));
5663
5664         /* Sleeping is not exported over D-Bus */
5665         g_object_class_install_property
5666                 (object_class, PROP_SLEEPING,
5667                  g_param_spec_boolean (NM_MANAGER_SLEEPING, "", "",
5668                                        FALSE,
5669                                        G_PARAM_READABLE |
5670                                        G_PARAM_STATIC_STRINGS));
5671
5672         g_object_class_install_property
5673                 (object_class, PROP_DEVICES,
5674                  g_param_spec_boxed (NM_MANAGER_DEVICES, "", "",
5675                                      G_TYPE_STRV,
5676                                      G_PARAM_READABLE |
5677                                      G_PARAM_STATIC_STRINGS));
5678
5679         /**
5680          * NMManager:metered:
5681          *
5682          * Whether the connectivity is metered.
5683          *
5684          * Since: 1.2
5685          **/
5686         g_object_class_install_property
5687                 (object_class, PROP_METERED,
5688                  g_param_spec_uint (NM_MANAGER_METERED, "", "",
5689                                     0, G_MAXUINT32, NM_METERED_UNKNOWN,
5690                                     G_PARAM_READABLE |
5691                                     G_PARAM_STATIC_STRINGS));
5692
5693         /**
5694          * NMManager:global-dns-configuration:
5695          *
5696          * The global DNS configuration.
5697          *
5698          * Since: 1.2
5699          **/
5700         g_object_class_install_property
5701                 (object_class, PROP_GLOBAL_DNS_CONFIGURATION,
5702                  g_param_spec_variant (NM_MANAGER_GLOBAL_DNS_CONFIGURATION, "", "",
5703                                        G_VARIANT_TYPE ("a{sv}"),
5704                                        NULL,
5705                                        G_PARAM_READWRITE |
5706                                        G_PARAM_STATIC_STRINGS));
5707
5708         /**
5709          * NMManager:all-devices:
5710          *
5711          * All devices, including those that are not realized.
5712          *
5713          * Since: 1.2
5714          **/
5715         g_object_class_install_property
5716                 (object_class, PROP_ALL_DEVICES,
5717                  g_param_spec_boxed (NM_MANAGER_ALL_DEVICES, "", "",
5718                                      G_TYPE_STRV,
5719                                      G_PARAM_READABLE |
5720                                      G_PARAM_STATIC_STRINGS));
5721
5722         /* signals */
5723
5724         /* D-Bus exported; emitted only for realized devices */
5725         signals[DEVICE_ADDED] =
5726                 g_signal_new ("device-added",
5727                               G_OBJECT_CLASS_TYPE (object_class),
5728                               G_SIGNAL_RUN_FIRST,
5729                               G_STRUCT_OFFSET (NMManagerClass, device_added),
5730                               NULL, NULL, NULL,
5731                               G_TYPE_NONE, 1, NM_TYPE_DEVICE);
5732
5733         /* Emitted for both realized devices and placeholder devices */
5734         signals[INTERNAL_DEVICE_ADDED] =
5735                 g_signal_new ("internal-device-added",
5736                               G_OBJECT_CLASS_TYPE (object_class),
5737                               G_SIGNAL_RUN_FIRST, 0,
5738                               NULL, NULL, NULL,
5739                               G_TYPE_NONE, 1, G_TYPE_OBJECT);
5740
5741         /* D-Bus exported; emitted only for realized devices */
5742         signals[DEVICE_REMOVED] =
5743                 g_signal_new ("device-removed",
5744                               G_OBJECT_CLASS_TYPE (object_class),
5745                               G_SIGNAL_RUN_FIRST,
5746                               G_STRUCT_OFFSET (NMManagerClass, device_removed),
5747                               NULL, NULL, NULL,
5748                               G_TYPE_NONE, 1, NM_TYPE_DEVICE);
5749
5750         /* Emitted for both realized devices and placeholder devices */
5751         signals[INTERNAL_DEVICE_REMOVED] =
5752                 g_signal_new ("internal-device-removed",
5753                               G_OBJECT_CLASS_TYPE (object_class),
5754                               G_SIGNAL_RUN_FIRST, 0,
5755                               NULL, NULL, NULL,
5756                               G_TYPE_NONE, 1, G_TYPE_OBJECT);
5757
5758         signals[STATE_CHANGED] =
5759                 g_signal_new (NM_MANAGER_STATE_CHANGED,
5760                               G_OBJECT_CLASS_TYPE (object_class),
5761                               G_SIGNAL_RUN_FIRST,
5762                               G_STRUCT_OFFSET (NMManagerClass, state_changed),
5763                               NULL, NULL, NULL,
5764                               G_TYPE_NONE, 1, G_TYPE_UINT);
5765
5766         signals[CHECK_PERMISSIONS] =
5767                 g_signal_new ("check-permissions",
5768                               G_OBJECT_CLASS_TYPE (object_class),
5769                               G_SIGNAL_RUN_FIRST,
5770                               0, NULL, NULL, NULL,
5771                               G_TYPE_NONE, 0);
5772
5773         signals[USER_PERMISSIONS_CHANGED] =
5774                 g_signal_new ("user-permissions-changed",
5775                               G_OBJECT_CLASS_TYPE (object_class),
5776                               G_SIGNAL_RUN_FIRST,
5777                               0, NULL, NULL, NULL,
5778                               G_TYPE_NONE, 0);
5779
5780         signals[ACTIVE_CONNECTION_ADDED] =
5781                 g_signal_new (NM_MANAGER_ACTIVE_CONNECTION_ADDED,
5782                               G_OBJECT_CLASS_TYPE (object_class),
5783                               G_SIGNAL_RUN_FIRST,
5784                               0, NULL, NULL, NULL,
5785                               G_TYPE_NONE, 1, NM_TYPE_ACTIVE_CONNECTION);
5786
5787         signals[ACTIVE_CONNECTION_REMOVED] =
5788                 g_signal_new (NM_MANAGER_ACTIVE_CONNECTION_REMOVED,
5789                               G_OBJECT_CLASS_TYPE (object_class),
5790                               G_SIGNAL_RUN_FIRST,
5791                               0, NULL, NULL, NULL,
5792                               G_TYPE_NONE, 1, NM_TYPE_ACTIVE_CONNECTION);
5793
5794         signals[CONFIGURE_QUIT] =
5795                 g_signal_new (NM_MANAGER_CONFIGURE_QUIT,
5796                               G_OBJECT_CLASS_TYPE (object_class),
5797                               G_SIGNAL_RUN_FIRST,
5798                               0, NULL, NULL, NULL,
5799                               G_TYPE_NONE, 0);
5800
5801         nm_exported_object_class_add_interface (NM_EXPORTED_OBJECT_CLASS (manager_class),
5802                                                 NMDBUS_TYPE_MANAGER_SKELETON,
5803                                                 "GetDevices", impl_manager_get_devices,
5804                                                 "GetAllDevices", impl_manager_get_all_devices,
5805                                                 "GetDeviceByIpIface", impl_manager_get_device_by_ip_iface,
5806                                                 "ActivateConnection", impl_manager_activate_connection,
5807                                                 "AddAndActivateConnection", impl_manager_add_and_activate_connection,
5808                                                 "DeactivateConnection", impl_manager_deactivate_connection,
5809                                                 "Sleep", impl_manager_sleep,
5810                                                 "Enable", impl_manager_enable,
5811                                                 "GetPermissions", impl_manager_get_permissions,
5812                                                 "SetLogging", impl_manager_set_logging,
5813                                                 "GetLogging", impl_manager_get_logging,
5814                                                 "CheckConnectivity", impl_manager_check_connectivity,
5815                                                 "state", impl_manager_get_state,
5816                                                 NULL);
5817 }
5818