2010-08-14 21:59:25 +04:00
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2010-05-22 02:29:53 +04:00
/***
This file is part of systemd .
Copyright 2010 Lennart Poettering
systemd is free software ; you can redistribute it and / or modify it
2012-04-12 02:20:58 +04:00
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation ; either version 2.1 of the License , or
2010-05-22 02:29:53 +04:00
( at your option ) any later version .
systemd 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
2012-04-12 02:20:58 +04:00
Lesser General Public License for more details .
2010-05-22 02:29:53 +04:00
2012-04-12 02:20:58 +04:00
You should have received a copy of the GNU Lesser General Public License
2010-05-22 02:29:53 +04:00
along with systemd ; If not , see < http : //www.gnu.org/licenses/>.
* * */
# include <sys/wait.h>
# include <unistd.h>
# include <string.h>
# include <errno.h>
2012-02-09 00:52:18 +04:00
# include <libkmod.h>
2010-05-22 02:29:53 +04:00
# include "macro.h"
# include "execute.h"
# include "kmod-setup.h"
2012-11-04 19:54:19 +04:00
typedef struct Kmodule {
const char * name ;
const char * directory ;
bool ( * condition_fn ) ( void ) ;
} KModule ;
static const KModule kmod_table [ ] = {
{ " autofs4 " , " /sys/class/misc/autofs " , NULL } ,
{ " ipv6 " , " /sys/module/ipv6 " , NULL } ,
{ " unix " , " /proc/net/unix " , NULL } ,
2010-05-22 02:29:53 +04:00
} ;
2012-02-09 04:24:40 +04:00
# pragma GCC diagnostic push
# pragma GCC diagnostic ignored "-Wformat-nonliteral"
2012-02-09 00:52:18 +04:00
static void systemd_kmod_log ( void * data , int priority , const char * file , int line ,
const char * fn , const char * format , va_list args )
{
2012-11-04 19:54:19 +04:00
/* library logging is enabled at debug only */
log_metav ( LOG_DEBUG , file , line , fn , format , args ) ;
2012-02-09 00:52:18 +04:00
}
2012-02-09 04:24:40 +04:00
# pragma GCC diagnostic pop
2012-02-09 00:52:18 +04:00
2010-05-22 02:29:53 +04:00
int kmod_setup ( void ) {
2012-02-09 00:52:18 +04:00
unsigned i ;
struct kmod_ctx * ctx = NULL ;
struct kmod_module * mod ;
int err ;
2010-05-22 02:29:53 +04:00
for ( i = 0 ; i < ELEMENTSOF ( kmod_table ) ; i + = 2 ) {
2012-11-04 19:54:19 +04:00
if ( kmod_table [ i ] . condition_fn & & ! kmod_table [ i ] . condition_fn ( ) )
continue ;
2010-05-22 02:29:53 +04:00
2012-11-04 19:54:19 +04:00
if ( access ( kmod_table [ i ] . directory , F_OK ) > = 0 )
2010-05-22 02:29:53 +04:00
continue ;
2010-08-19 05:30:36 +04:00
log_debug ( " Your kernel apparently lacks built-in %s support. Might be a good idea to compile it in. "
2012-02-09 00:52:18 +04:00
" We'll now try to work around this by loading the module... " ,
2012-11-04 19:54:19 +04:00
kmod_table [ i ] . name ) ;
2010-05-22 02:29:53 +04:00
2012-02-09 00:52:18 +04:00
if ( ! ctx ) {
ctx = kmod_new ( NULL , NULL ) ;
if ( ! ctx ) {
log_error ( " Failed to allocate memory for kmod " ) ;
return - ENOMEM ;
}
2010-05-22 02:29:53 +04:00
2012-02-09 00:52:18 +04:00
kmod_set_log_fn ( ctx , systemd_kmod_log , NULL ) ;
kmod_load_resources ( ctx ) ;
}
2010-05-22 02:29:53 +04:00
2012-11-04 19:54:19 +04:00
err = kmod_module_new_from_name ( ctx , kmod_table [ i ] . name , & mod ) ;
2012-02-09 00:52:18 +04:00
if ( err < 0 ) {
2012-11-04 19:54:19 +04:00
log_error ( " Failed to lookup module '%s' " , kmod_table [ i ] . name ) ;
2012-02-09 00:52:18 +04:00
continue ;
}
2010-05-22 02:29:53 +04:00
2012-02-09 00:52:18 +04:00
err = kmod_module_probe_insert_module ( mod , KMOD_PROBE_APPLY_BLACKLIST , NULL , NULL , NULL , NULL ) ;
if ( err = = 0 )
log_info ( " Inserted module '%s' " , kmod_module_get_name ( mod ) ) ;
else if ( err = = KMOD_PROBE_APPLY_BLACKLIST )
log_info ( " Module '%s' is blacklisted " , kmod_module_get_name ( mod ) ) ;
else
2012-11-04 19:54:19 +04:00
log_error ( " Failed to insert module '%s' " , kmod_module_get_name ( mod ) ) ;
2010-05-22 02:29:53 +04:00
2012-02-09 00:52:18 +04:00
kmod_module_unref ( mod ) ;
2010-05-22 02:29:53 +04:00
}
2012-02-09 00:52:18 +04:00
if ( ctx )
2012-03-15 23:49:25 +04:00
kmod_unref ( ctx ) ;
2012-02-09 00:52:18 +04:00
return 0 ;
2010-05-22 02:29:53 +04:00
}