2008-11-03 04:13:42 +00:00
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
2004-06-24 14:18:37 +00:00
/* NetworkManager -- Network link manager
*
* This program is free software ; you can redistribute it and / or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation ; either version 2 of the License , or
* ( at your option ) any later version .
*
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU General Public License for more details .
*
2008-06-26 18:31:52 +00:00
* You should have received a copy of the GNU General Public License along
* with this program ; if not , write to the Free Software Foundation , Inc . ,
* 51 Franklin Street , Fifth Floor , Boston , MA 02110 - 1301 USA .
2004-06-24 14:18:37 +00:00
*
2011-12-20 23:38:02 +01:00
* Copyright ( C ) 2004 - 2012 Red Hat , Inc .
2008-11-03 04:13:42 +00:00
* Copyright ( C ) 2005 - 2008 Novell , Inc .
2004-06-24 14:18:37 +00:00
*/
2014-11-13 10:07:02 -05:00
# include "config.h"
2004-06-24 14:18:37 +00:00
# include <glib.h>
2004-07-27 16:15:36 +00:00
# include <dbus/dbus.h>
2004-08-02 21:12:40 +00:00
# include <dbus/dbus-glib-lowlevel.h>
2004-06-24 14:18:37 +00:00
# include <dbus/dbus-glib.h>
# include <getopt.h>
2011-12-20 23:38:02 +01:00
# include <locale.h>
2004-06-24 14:18:37 +00:00
# include <errno.h>
# include <stdlib.h>
2004-12-21 06:49:21 +00:00
# include <signal.h>
2012-04-16 13:30:53 +02:00
# include <pthread.h>
2004-06-24 14:18:37 +00:00
# include <unistd.h>
# include <fcntl.h>
# include <sys/stat.h>
2004-10-15 15:59:25 +00:00
# include <sys/types.h>
2006-05-24 15:53:07 +00:00
# include <glib/gi18n.h>
2009-06-11 00:39:12 -04:00
# include <gmodule.h>
2008-03-14 21:11:04 +00:00
# include <string.h>
2014-03-06 22:04:44 +01:00
# include <sys/resource.h>
2004-06-24 14:18:37 +00:00
2014-07-15 19:30:33 +02:00
# include "gsystem-local-alloc.h"
2014-07-05 16:23:30 -04:00
# include "nm-dbus-interface.h"
2004-06-24 14:18:37 +00:00
# include "NetworkManagerUtils.h"
2014-10-29 09:36:47 -05:00
# include "main-utils.h"
2007-02-08 15:34:26 +00:00
# include "nm-manager.h"
2013-03-27 22:23:24 +01:00
# include "nm-linux-platform.h"
2006-10-13 19:41:47 +00:00
# include "nm-dbus-manager.h"
2015-01-06 11:54:27 +01:00
# include "nm-device.h"
2008-10-21 11:07:42 +00:00
# include "nm-dhcp-manager.h"
2006-02-27 04:31:52 +00:00
# include "nm-logging.h"
2011-09-22 10:16:07 -05:00
# include "nm-config.h"
2013-11-05 14:43:31 -05:00
# include "nm-session-monitor.h"
2014-05-14 15:50:33 -05:00
# include "nm-dispatcher.h"
2014-07-17 17:06:44 -04:00
# include "nm-settings.h"
2014-08-14 13:34:57 +02:00
# include "nm-auth-manager.h"
2014-11-14 11:45:51 -05:00
# include "nm-core-internal.h"
2004-06-24 14:18:37 +00:00
2010-04-23 12:12:47 -07:00
# if !defined(NM_DIST_VERSION)
# define NM_DIST_VERSION VERSION
# endif
2012-08-23 11:53:41 +02:00
# define NM_DEFAULT_PID_FILE NMRUNDIR " / NetworkManager.pid"
# define NM_DEFAULT_SYSTEM_STATE_FILE NMSTATEDIR " / NetworkManager.state"
2006-02-27 20:06:24 +00:00
2007-02-19 13:09:32 +00:00
static GMainLoop * main_loop = NULL ;
2015-03-11 08:23:23 -05:00
static gboolean configure_and_quit = FALSE ;
2006-02-27 05:50:28 +00:00
2015-03-13 19:59:32 +01:00
static struct {
gboolean show_version ;
gboolean become_daemon ;
gboolean debug ;
gboolean g_fatal_warnings ;
gboolean run_from_build_dir ;
char * opt_log_level ;
char * opt_log_domains ;
char * pidfile ;
char * state_file ;
} global_opt = {
. become_daemon = TRUE ,
} ;
2009-11-02 17:29:53 -08:00
static gboolean
parse_state_file ( const char * filename ,
gboolean * net_enabled ,
gboolean * wifi_enabled ,
2009-12-22 23:51:08 -08:00
gboolean * wwan_enabled ,
2011-10-03 15:54:25 +02:00
gboolean * wimax_enabled ,
2009-11-02 17:29:53 -08:00
GError * * error )
{
GKeyFile * state_file ;
GError * tmp_error = NULL ;
2009-12-29 11:27:10 +02:00
gboolean wifi , net , wwan , wimax ;
2009-11-02 17:29:53 -08:00
g_return_val_if_fail ( net_enabled ! = NULL , FALSE ) ;
g_return_val_if_fail ( wifi_enabled ! = NULL , FALSE ) ;
2009-12-22 23:51:08 -08:00
g_return_val_if_fail ( wwan_enabled ! = NULL , FALSE ) ;
2009-12-29 11:27:10 +02:00
g_return_val_if_fail ( wimax_enabled ! = NULL , FALSE ) ;
2009-11-02 17:29:53 -08:00
state_file = g_key_file_new ( ) ;
g_key_file_set_list_separator ( state_file , ' , ' ) ;
if ( ! g_key_file_load_from_file ( state_file , filename , G_KEY_FILE_KEEP_COMMENTS , & tmp_error ) ) {
2011-10-01 00:22:09 +02:00
gboolean ret = FALSE ;
2009-11-02 17:29:53 -08:00
/* This is kinda ugly; create the file and directory if it doesn't
* exist yet . We can ' t rely on distros necessarily creating the
* / var / lib / NetworkManager for us since we have to ensure that
* users upgrading NM get this working too .
*/
2011-12-05 12:14:40 -06:00
if ( g_error_matches ( tmp_error , G_FILE_ERROR , G_FILE_ERROR_NOENT ) ) {
2012-08-23 11:53:41 +02:00
char * data ;
2009-11-02 17:29:53 -08:00
gsize len = 0 ;
2011-10-01 00:22:09 +02:00
g_clear_error ( & tmp_error ) ;
2009-11-02 17:29:53 -08:00
/* Write out the initial state to the state file */
g_key_file_set_boolean ( state_file , " main " , " NetworkingEnabled " , * net_enabled ) ;
g_key_file_set_boolean ( state_file , " main " , " WirelessEnabled " , * wifi_enabled ) ;
2009-12-22 23:51:08 -08:00
g_key_file_set_boolean ( state_file , " main " , " WWANEnabled " , * wwan_enabled ) ;
2009-12-29 11:27:10 +02:00
g_key_file_set_boolean ( state_file , " main " , " WimaxEnabled " , * wimax_enabled ) ;
2009-11-02 17:29:53 -08:00
data = g_key_file_to_data ( state_file , & len , NULL ) ;
if ( data )
ret = g_file_set_contents ( filename , data , len , error ) ;
2012-10-18 11:53:05 -04:00
g_free ( data ) ;
2009-11-02 17:29:53 -08:00
} else {
2011-10-01 00:22:09 +02:00
/* the error is not "No such file or directory" - propagate the error */
g_propagate_error ( error , tmp_error ) ;
2009-11-02 17:29:53 -08:00
}
2011-10-01 00:22:09 +02:00
return ret ;
2009-11-02 17:29:53 -08:00
}
/* Reading state bits of NetworkManager; an error leaves the passed-in state
* value unchanged .
*/
net = g_key_file_get_boolean ( state_file , " main " , " NetworkingEnabled " , & tmp_error ) ;
2011-10-01 00:22:09 +02:00
if ( tmp_error = = NULL )
2009-11-02 17:29:53 -08:00
* net_enabled = net ;
g_clear_error ( & tmp_error ) ;
2009-12-25 14:33:02 -06:00
wifi = g_key_file_get_boolean ( state_file , " main " , " WirelessEnabled " , & tmp_error ) ;
2011-10-01 00:22:09 +02:00
if ( tmp_error = = NULL )
2009-11-02 17:29:53 -08:00
* wifi_enabled = wifi ;
g_clear_error ( & tmp_error ) ;
2009-12-25 14:42:44 -06:00
wwan = g_key_file_get_boolean ( state_file , " main " , " WWANEnabled " , & tmp_error ) ;
2011-10-01 00:22:09 +02:00
if ( tmp_error = = NULL )
2009-12-25 14:42:44 -06:00
* wwan_enabled = wwan ;
g_clear_error ( & tmp_error ) ;
2009-12-29 11:27:10 +02:00
wimax = g_key_file_get_boolean ( state_file , " main " , " WimaxEnabled " , & tmp_error ) ;
2011-10-01 00:22:09 +02:00
if ( tmp_error = = NULL )
2009-12-29 11:27:10 +02:00
* wimax_enabled = wimax ;
g_clear_error ( & tmp_error ) ;
2011-10-03 15:54:25 +02:00
2009-11-02 17:29:53 -08:00
g_key_file_free ( state_file ) ;
return TRUE ;
}
2014-03-06 22:04:44 +01:00
static void
_init_nm_debug ( const char * debug )
{
const guint D_RLIMIT_CORE = 1 ;
GDebugKey keys [ ] = {
{ " RLIMIT_CORE " , D_RLIMIT_CORE } ,
} ;
guint flags = 0 ;
const char * env = getenv ( " NM_DEBUG " ) ;
if ( env & & strcasecmp ( env , " help " ) ! = 0 ) {
/* g_parse_debug_string() prints options to stderr if the variable
* is set to " help " . Don ' t allow that . */
flags = g_parse_debug_string ( env , keys , G_N_ELEMENTS ( keys ) ) ;
}
if ( debug & & strcasecmp ( debug , " help " ) ! = 0 )
flags | = g_parse_debug_string ( debug , keys , G_N_ELEMENTS ( keys ) ) ;
if ( flags & D_RLIMIT_CORE ) {
/* only enable this, if explicitly requested, because it might
* expose sensitive data . */
struct rlimit limit = {
. rlim_cur = RLIM_INFINITY ,
. rlim_max = RLIM_INFINITY ,
} ;
setrlimit ( RLIMIT_CORE , & limit ) ;
}
}
2014-07-09 18:36:20 +02:00
void
nm_main_config_reload ( )
{
2014-07-09 18:54:47 +02:00
nm_log_info ( LOGD_CORE , " reload configuration... " ) ;
/* The signal handler thread is only installed after
* creating NMConfig instance , and on shut down we
* no longer run the mainloop ( to reach this point ) .
*
* Hence , a NMConfig singleton instance must always be
* available . */
nm_config_reload ( nm_config_get ( ) ) ;
2014-07-09 18:36:20 +02:00
}
2014-04-02 12:41:04 -05:00
static void
2014-10-29 09:12:18 -05:00
manager_configure_quit ( NMManager * manager , gpointer user_data )
2014-04-02 12:41:04 -05:00
{
2014-10-29 09:12:18 -05:00
nm_log_info ( LOGD_CORE , " quitting now that startup is complete " ) ;
g_main_loop_quit ( main_loop ) ;
2015-03-11 08:23:23 -05:00
configure_and_quit = TRUE ;
2014-04-02 12:41:04 -05:00
}
2015-03-13 20:09:46 +01:00
static void
do_early_setup ( int * argc , char * * argv [ ] , NMConfigCmdLineOptions * config_cli )
2004-06-24 14:18:37 +00:00
{
2006-10-13 19:41:47 +00:00
GOptionEntry options [ ] = {
2015-03-13 19:59:32 +01:00
{ " version " , ' V ' , 0 , G_OPTION_ARG_NONE , & global_opt . show_version , N_ ( " Print NetworkManager version and exit " ) , NULL } ,
{ " no-daemon " , ' n ' , G_OPTION_FLAG_REVERSE , G_OPTION_ARG_NONE , & global_opt . become_daemon , N_ ( " Don't become a daemon " ) , NULL } ,
{ " debug " , ' d ' , 0 , G_OPTION_ARG_NONE , & global_opt . debug , N_ ( " Don't become a daemon, and log to stderr " ) , NULL } ,
{ " log-level " , 0 , 0 , G_OPTION_ARG_STRING , & global_opt . opt_log_level , N_ ( " Log level: one of [%s] " ) , " INFO " } ,
{ " log-domains " , 0 , 0 , G_OPTION_ARG_STRING , & global_opt . opt_log_domains ,
2013-06-14 14:51:04 -04:00
N_ ( " Log domains separated by ',': any combination of [%s] " ) ,
" PLATFORM,RFKILL,WIFI " } ,
2015-03-13 19:59:32 +01:00
{ " g-fatal-warnings " , 0 , 0 , G_OPTION_ARG_NONE , & global_opt . g_fatal_warnings , N_ ( " Make all warnings fatal " ) , NULL } ,
{ " pid-file " , ' p ' , 0 , G_OPTION_ARG_FILENAME , & global_opt . pidfile , N_ ( " Specify the location of a PID file " ) , N_ ( " filename " ) } ,
{ " state-file " , 0 , 0 , G_OPTION_ARG_FILENAME , & global_opt . state_file , N_ ( " State file location " ) , N_ ( " /path/to/state.file " ) } ,
{ " run-from-build-dir " , 0 , 0 , G_OPTION_ARG_NONE , & global_opt . run_from_build_dir , " Run from build directory " , NULL } ,
2006-10-13 19:41:47 +00:00
{ NULL }
} ;
2014-10-29 09:36:47 -05:00
if ( ! nm_main_utils_early_setup ( " NetworkManager " ,
2015-03-13 20:09:46 +01:00
argc ,
argv ,
2014-10-29 09:36:47 -05:00
options ,
2014-07-09 15:17:01 +02:00
( void ( * ) ( gpointer , GOptionContext * ) ) nm_config_cmd_line_options_add_to_entries ,
config_cli ,
2014-10-29 09:36:47 -05:00
_ ( " NetworkManager monitors all network connections and automatically \n chooses the best connection to use. It also allows the user to \n specify wireless access points which wireless cards in the computer \n should associate with. " ) ) )
2007-10-08 18:38:34 +00:00
exit ( 1 ) ;
2004-06-24 14:18:37 +00:00
2015-03-13 20:09:46 +01:00
global_opt . pidfile = global_opt . pidfile ? global_opt . pidfile : g_strdup ( NM_DEFAULT_PID_FILE ) ;
global_opt . state_file = global_opt . state_file ? global_opt . state_file : g_strdup ( NM_DEFAULT_SYSTEM_STATE_FILE ) ;
}
/*
* main
*
*/
int
main ( int argc , char * argv [ ] )
{
gboolean wifi_enabled = TRUE , net_enabled = TRUE , wwan_enabled = TRUE , wimax_enabled = TRUE ;
gboolean success ;
NMManager * manager = NULL ;
gs_unref_object NMSettings * settings = NULL ;
NMConfig * config ;
GError * error = NULL ;
gboolean wrote_pidfile = FALSE ;
char * bad_domains = NULL ;
NMConfigCmdLineOptions * config_cli ;
2015-03-13 19:42:21 +01:00
# if !GLIB_CHECK_VERSION (2, 35, 0)
g_type_init ( ) ;
# endif
2015-03-13 20:09:46 +01:00
_nm_utils_is_manager_process = TRUE ;
main_loop = g_main_loop_new ( NULL , FALSE ) ;
config_cli = nm_config_cmd_line_options_new ( ) ;
do_early_setup ( & argc , & argv , config_cli ) ;
2015-03-13 23:24:05 +01:00
if ( global_opt . g_fatal_warnings ) {
GLogLevelFlags fatal_mask ;
fatal_mask = g_log_set_always_fatal ( G_LOG_FATAL_MASK ) ;
fatal_mask | = G_LOG_LEVEL_WARNING | G_LOG_LEVEL_CRITICAL ;
g_log_set_always_fatal ( fatal_mask ) ;
}
2015-03-13 19:59:32 +01:00
if ( global_opt . show_version ) {
2011-04-28 16:53:12 -05:00
fprintf ( stdout , NM_DIST_VERSION " \n " ) ;
exit ( 0 ) ;
}
2015-03-13 20:57:18 +01:00
nm_main_utils_ensure_root ( ) ;
2015-03-14 17:58:23 +01:00
nm_main_utils_ensure_not_running_pidfile ( global_opt . pidfile ) ;
2015-03-13 19:59:32 +01:00
if ( ! nm_logging_setup ( global_opt . opt_log_level ,
global_opt . opt_log_domains ,
2013-11-26 11:33:42 -05:00
& bad_domains ,
2013-06-14 14:51:04 -04:00
& error ) ) {
fprintf ( stderr ,
_ ( " %s. Please use --help to see a list of valid options. \n " ) ,
error - > message ) ;
exit ( 1 ) ;
2013-11-26 11:33:42 -05:00
} else if ( bad_domains ) {
fprintf ( stderr ,
_ ( " Ignoring unrecognized log domain(s) '%s' passed on command line. \n " ) ,
bad_domains ) ;
g_clear_pointer ( & bad_domains , g_free ) ;
2013-06-14 14:51:04 -04:00
}
2013-05-22 16:12:23 +02:00
/* When running from the build directory, determine our build directory
* base and set helper paths in the build tree */
2015-03-13 19:59:32 +01:00
if ( global_opt . run_from_build_dir ) {
2013-05-22 16:12:23 +02:00
char * path , * slash ;
2013-06-14 14:51:04 -04:00
int g ;
2013-05-22 16:12:23 +02:00
/* exe is <basedir>/src/.libs/lt-NetworkManager, so chop off
* the last three components */
path = realpath ( " /proc/self/exe " , NULL ) ;
g_assert ( path ! = NULL ) ;
2013-06-14 14:51:04 -04:00
for ( g = 0 ; g < 3 ; + + g ) {
2013-05-22 16:12:23 +02:00
slash = strrchr ( path , ' / ' ) ;
g_assert ( slash ! = NULL ) ;
* slash = ' \0 ' ;
}
/* don't free these strings, we need them for the entire
* process lifetime */
nm_dhcp_helper_path = g_strdup_printf ( " %s/src/dhcp-manager/nm-dhcp-helper " , path ) ;
nm_device_autoipd_helper_path = g_strdup_printf ( " %s/callouts/nm-avahi-autoipd.action " , path ) ;
g_free ( path ) ;
}
2012-12-06 16:33:52 +01:00
/* Ensure state directory exists */
if ( g_mkdir_with_parents ( NMSTATEDIR , 0755 ) ! = 0 ) {
nm_log_err ( LOGD_CORE , " Cannot create '%s': %s " , NMSTATEDIR , strerror ( errno ) ) ;
exit ( 1 ) ;
}
2015-03-13 22:55:39 +01:00
nm_main_utils_ensure_rundir ( ) ;
2011-09-22 10:16:07 -05:00
/* Read the config file and CLI overrides */
2014-07-09 15:17:01 +02:00
config = nm_config_setup ( config_cli , & error ) ;
nm_config_cmd_line_options_free ( config_cli ) ;
config_cli = NULL ;
2011-09-22 10:16:07 -05:00
if ( config = = NULL ) {
2011-12-21 14:46:59 +01:00
fprintf ( stderr , _ ( " Failed to read configuration: (%d) %s \n " ) ,
2011-09-22 10:16:07 -05:00
error ? error - > code : - 1 ,
2011-12-21 14:46:59 +01:00
( error & & error - > message ) ? error - > message : _ ( " unknown " ) ) ;
2011-09-22 10:16:07 -05:00
exit ( 1 ) ;
2009-06-11 00:39:12 -04:00
}
2011-09-22 10:16:07 -05:00
2015-03-13 23:19:58 +01:00
_init_nm_debug ( nm_config_get_debug ( config ) ) ;
2013-06-14 14:51:04 -04:00
/* Initialize logging from config file *only* if not explicitly
* specified by commandline .
*/
2015-03-13 19:59:32 +01:00
if ( global_opt . opt_log_level = = NULL & & global_opt . opt_log_domains = = NULL ) {
2013-06-14 14:51:04 -04:00
if ( ! nm_logging_setup ( nm_config_get_log_level ( config ) ,
nm_config_get_log_domains ( config ) ,
2013-11-26 11:33:42 -05:00
& bad_domains ,
2013-06-14 14:51:04 -04:00
& error ) ) {
2013-11-26 11:33:42 -05:00
fprintf ( stderr , _ ( " Error in configuration file: %s. \n " ) ,
2013-06-14 14:51:04 -04:00
error - > message ) ;
exit ( 1 ) ;
2013-11-26 11:33:42 -05:00
} else if ( bad_domains ) {
fprintf ( stderr ,
_ ( " Ignoring unrecognized log domain(s) '%s' from config files. \n " ) ,
bad_domains ) ;
g_clear_pointer ( & bad_domains , g_free ) ;
2013-06-14 14:51:04 -04:00
}
2010-04-06 15:57:24 -07:00
}
2009-11-02 17:29:53 -08:00
/* Parse the state file */
2015-03-13 19:59:32 +01:00
if ( ! parse_state_file ( global_opt . state_file , & net_enabled , & wifi_enabled , & wwan_enabled , & wimax_enabled , & error ) ) {
2011-12-21 14:46:59 +01:00
fprintf ( stderr , _ ( " State file %s parsing failed: (%d) %s \n " ) ,
2015-03-13 19:59:32 +01:00
global_opt . state_file ,
2010-04-06 15:27:35 -07:00
error ? error - > code : - 1 ,
2011-12-21 14:46:59 +01:00
( error & & error - > message ) ? error - > message : _ ( " unknown " ) ) ;
2009-11-02 17:29:53 -08:00
/* Not a hard failure */
}
2010-03-23 14:12:32 -07:00
g_clear_error ( & error ) ;
2009-11-02 17:29:53 -08:00
2015-03-13 19:59:32 +01:00
if ( global_opt . become_daemon & & ! global_opt . debug ) {
2006-10-13 19:41:47 +00:00
if ( daemon ( 0 , 0 ) < 0 ) {
2006-02-27 20:06:24 +00:00
int saved_errno ;
2005-03-14 Ray Strode <rstrode@redhat.com>
Fourth (probably working) cut at porting to
dbus 0.30 api and new hal. This cut adds
some new logging macros to make debugging
easier.
* dispatcher-daemon/NetworkManagerDispatcher.c:
* info-daemon/NetworkmanagerInfo.c:
* info-daemon/NetworkManagerInfoPassphraseDialog.c:
* info-daemon/NetworkManagerInfoVPN.c:
* src/NetworkManager.c:
* src/NetworkManagerAP.c:
* src/NetworkManagerAPList.c:
* src/NetworkManagerDHCP.c:
* src/NetworkManagerDbus.c:
* src/NetworkManagerDevice.c:
* src/NetworkManagerPolicy.c:
* src/NetworkManagerSystem.c:
* src/NetworkManagerUtils.c:
* src/NetworkManagerWireless.c:
* src/autoip.c:
* src/nm-dbus-nm.c:
* src/backends/NetworkManagerDebian.c:
* src/backends/NetworkManagerGentoo.c:
* src/backends/NetworkManagerRedHat.c:
* src/backends/NetworkManagerSlackware.c:
use new logging macros.
* dispatcher-daemon/NetworkManagerDispatcher.c:
(nmd_dbus_filter): s/dbus_free/g_free/
* info-daemon/Makefile.am: link in utils library.
* info-daemon/NetworkmanagerInfo.c: use new logging
macros.
(nmi_dbus_get_network): don't assume enumerations
are 32-bit.
(nmi_dbus_nmi_message_handler): don't free what
doesn't belong to us.
* libnm_glib/libnm_glib.c:
(libnm_glib_get_nm_status):
(libnm_glib_init): don't free what doesn't
belong to us.
(libnm_glib_dbus): strdup result, so it doesn't get
lost when message is unref'd.
* panel-applet/NMWirelessAppletDbus.c:
(nmwa_dbus_update_devices): s/dbus_free/g_free/
* src/NetworkManager.c:
(nm_monitor_wired_link_state): request initial status
dump of all cards when we start up, instead of relying
on /sys/.../carrier.
(nm_info_handler), (nm_set_up_log_handlers):
log handlers to specify what syslog priorites
the logging macros default to.
* src/NetworkManagerAPList.c:
(nm_ap_list_populate_from_nmi):
s/dbus_free_string_array/g_strfreev/
* src/NetworkManagerDbus.c:
(nm_dbus_get_network_object):
validate d-bus message argument types.
Advance message iterator after reading argument,
prepend instead of append to GSList.
* src/NetworkManagerDevice.c:
(nm_device_probe_wired_link_status):
remove redundant /sys in /sys path. remove wrong
contents == NULL means has carrier assumption.
* src/nm-netlink-monitor.c
(nm_netlink_monitor_request_status): implement
function to ask kernel to dump interface link
status over netlink socket.
* test/*.c: s/dbus_free/g_free/
* utils/nm-utils.h:
(nm_print_backtrace): new macro to print backtrace.
(nm_get_timestamp): new macro to get sub-second precise
unix timestamp.
(nm_info), (nm_debug), (nm_warning), (nm_error):
new logging functions. nm_info just prints,
nm_debug includes timestamp and function,
nm_warning includes function, nm_error includes
backtrace and sigtrap.
git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@497 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
2005-03-15 05:30:15 +00:00
2006-02-27 20:06:24 +00:00
saved_errno = errno ;
2011-12-21 14:46:59 +01:00
fprintf ( stderr , _ ( " Could not daemonize: %s [error %u] \n " ) ,
2010-04-06 15:27:35 -07:00
g_strerror ( saved_errno ) ,
saved_errno ) ;
2007-10-08 18:38:34 +00:00
exit ( 1 ) ;
2006-02-27 20:06:24 +00:00
}
2015-03-13 19:59:32 +01:00
wrote_pidfile = nm_main_utils_write_pidfile ( global_opt . pidfile ) ;
2005-01-22 04:26:48 +00:00
}
2012-09-13 05:32:53 -04:00
/* Set up unix signal handling - before creating threads, but after daemonizing! */
2015-01-12 11:31:10 -05:00
nm_main_utils_setup_signals ( main_loop ) ;
2012-09-13 05:32:53 -04:00
2015-03-13 19:59:32 +01:00
nm_logging_syslog_openlog ( global_opt . debug ) ;
2013-06-14 14:51:04 -04:00
2011-10-31 11:50:28 +01:00
dbus_threads_init_default ( ) ;
2007-02-19 13:09:32 +00:00
2010-08-11 15:40:25 -05:00
/* Ensure that non-exported properties don't leak out, and that the
* introspection ' access ' permissions are respected .
*/
dbus_glib_global_set_disable_legacy_property_access ( ) ;
2010-04-23 12:12:47 -07:00
nm_log_info ( LOGD_CORE , " NetworkManager (version " NM_DIST_VERSION " ) is starting... " ) ;
2009-02-15 10:14:34 -05:00
success = FALSE ;
2004-08-23 19:20:49 +00:00
2015-01-06 20:16:10 +01:00
nm_log_info ( LOGD_CORE , " Read config: %s " , nm_config_data_get_config_description ( nm_config_get_data ( config ) ) ) ;
2012-04-26 13:38:41 -05:00
nm_log_info ( LOGD_CORE , " WEXT support is %s " ,
# if HAVE_WEXT
" enabled "
# else
" disabled "
# endif
) ;
2010-07-21 16:47:31 -07:00
2013-03-27 22:23:24 +01:00
/* Set up platform interaction layer */
nm_linux_platform_setup ( ) ;
2014-08-14 13:34:57 +02:00
nm_auth_manager_setup ( nm_config_get_auth_polkit ( config ) ) ;
2014-05-14 15:50:33 -05:00
nm_dispatcher_init ( ) ;
2013-03-12 11:11:54 -04:00
settings = nm_settings_new ( & error ) ;
2010-10-27 15:47:10 -05:00
if ( ! settings ) {
2011-02-14 17:18:13 +01:00
nm_log_err ( LOGD_CORE , " failed to initialize settings storage: %s " ,
error & & error - > message ? error - > message : " (unknown) " ) ;
2010-10-27 15:47:10 -05:00
goto done ;
}
2011-09-26 11:30:24 -05:00
manager = nm_manager_new ( settings ,
2015-03-13 19:59:32 +01:00
global_opt . state_file ,
2009-12-22 23:51:08 -08:00
net_enabled ,
wifi_enabled ,
wwan_enabled ,
2011-02-14 17:18:13 +01:00
wimax_enabled ,
2009-12-22 23:51:08 -08:00
& error ) ;
2007-08-28 15:54:55 +00:00
if ( manager = = NULL ) {
2010-04-06 15:48:31 -07:00
nm_log_err ( LOGD_CORE , " failed to initialize the network manager: %s " ,
2011-02-14 17:18:13 +01:00
error & & error - > message ? error - > message : " (unknown) " ) ;
2007-08-28 15:54:55 +00:00
goto done ;
}
2015-01-06 13:15:43 +01:00
if ( ! nm_dbus_manager_get_connection ( nm_dbus_manager_get ( ) ) ) {
2012-10-04 22:26:18 -05:00
# if HAVE_DBUS_GLIB_100
nm_log_warn ( LOGD_CORE , " Failed to connect to D-Bus; only private bus is available " ) ;
# else
nm_log_err ( LOGD_CORE , " Failed to connect to D-Bus, exiting... " ) ;
2006-10-13 19:41:47 +00:00
goto done ;
2012-10-04 22:26:18 -05:00
# endif
} else {
/* Start our DBus service */
2015-01-06 13:15:43 +01:00
if ( ! nm_dbus_manager_start_service ( nm_dbus_manager_get ( ) ) ) {
2012-10-04 22:26:18 -05:00
nm_log_err ( LOGD_CORE , " failed to start the dbus service. " ) ;
goto done ;
}
2006-10-13 19:41:47 +00:00
}
2004-12-05 21:28:42 +00:00
2014-10-29 09:12:18 -05:00
g_signal_connect ( manager , NM_MANAGER_CONFIGURE_QUIT , G_CALLBACK ( manager_configure_quit ) , config ) ;
2014-04-02 12:41:04 -05:00
2009-06-11 00:39:12 -04:00
nm_manager_start ( manager ) ;
2012-08-01 21:10:15 +02:00
/* Make sure the loopback interface is up. If interface is down, we bring
* it up and kernel will assign it link - local IPv4 and IPv6 addresses . If
* it was already up , we assume is in clean state .
*
* TODO : it might be desirable to check the list of addresses and compare
* it with a list of expected addresses ( one of the protocol families
* could be disabled ) . The ' lo ' interface is sometimes used for assigning
* global addresses so their availability doesn ' t depend on the state of
* physical interfaces .
*/
nm_log_dbg ( LOGD_CORE , " setting up local loopback " ) ;
2013-01-21 15:12:24 +01:00
nm_platform_link_set_up ( nm_platform_link_get_ifindex ( " lo " ) ) ;
2004-08-16 19:46:43 +00:00
2009-02-15 10:14:34 -05:00
success = TRUE ;
2015-03-11 08:23:23 -05:00
if ( configure_and_quit = = FALSE )
g_main_loop_run ( main_loop ) ;
2007-09-25 08:23:07 +00:00
2014-10-29 09:12:18 -05:00
nm_manager_stop ( manager ) ;
2004-08-23 19:20:49 +00:00
2006-10-13 19:41:47 +00:00
done :
2013-04-26 16:42:54 -04:00
g_clear_object ( & manager ) ;
2012-10-18 11:53:05 -04:00
2013-06-14 14:51:04 -04:00
nm_logging_syslog_closelog ( ) ;
2004-06-24 14:18:37 +00:00
2015-03-13 19:59:32 +01:00
if ( global_opt . pidfile & & wrote_pidfile )
unlink ( global_opt . pidfile ) ;
2006-02-27 05:50:28 +00:00
2010-04-06 15:48:31 -07:00
nm_log_info ( LOGD_CORE , " exiting (%s) " , success ? " success " : " error " ) ;
2009-02-15 10:14:34 -05:00
exit ( success ? 0 : 1 ) ;
2004-06-24 14:18:37 +00:00
}