libudev.c revision c8e32461ccc2227da53f98ccd11bcb50d70929bd
/*
* libudev - interface to udev device information
*
* Copyright (C) 2008 Kay Sievers <kay.sievers@vrfy.org>
*
* 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.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdio.h>
#include <stdlib.h>
#include <stddef.h>
#include <stdarg.h>
#include <unistd.h>
#include <errno.h>
#include <string.h>
#include <ctype.h>
#ifdef USE_SELINUX
#endif
#include "libudev.h"
#include "libudev-private.h"
struct udev {
int refcount;
void *userdata;
char *sys_path;
char *dev_path;
char *rules_path;
int log_priority;
#ifdef USE_SELINUX
int selinux_enabled;
#endif
int run;
};
const char *format, ...)
{
return;
}
{
}
{
#ifdef USE_SELINUX
/*
* record the present security context, for file-creation
* restoration creation purposes.
*/
if (udev->selinux_enabled) {
}
}
#endif
}
{
return NULL;
}
{
return;
}
{
#ifdef USE_SELINUX
if (udev->selinux_enabled) {
}
#endif
}
{
#ifdef USE_SELINUX
if (udev->selinux_enabled) {
return;
}
}
#endif
}
{
#ifdef USE_SELINUX
if (udev->selinux_enabled) {
return;
}
if (setfscreatecon(scontext) < 0)
}
#endif
}
{
#ifdef USE_SELINUX
if (udev->selinux_enabled) {
}
#endif
}
/**
* udev_new:
*
* Create udev library context.
*
* The initial refcount is 1, and needs to be decremented to
* release the ressources of the udev library context.
*
* Returns: a new udev library context
**/
{
const char *env;
char *config_file;
FILE *f;
return NULL;
config_file == NULL)
goto err;
/* settings by environment and config file */
}
}
if (config_file == NULL)
goto err;
if (f != NULL) {
char line[UTIL_LINE_SIZE];
int line_nr = 0;
char *key;
char *val;
line_nr++;
/* find key */
key++;
/* comment or empty line */
continue;
continue;
}
val[0] = '\0';
val++;
/* find value */
val++;
/* terminate key */
if (len == 0)
continue;
len--;
/* terminate value */
if (len == 0)
continue;
len--;
if (len == 0)
continue;
/* unquote */
continue;
}
val++;
}
continue;
}
continue;
}
continue;
}
}
fclose(f);
}
}
goto err;
return udev;
err:
return NULL;
}
/**
* udev_ref:
* @udev: udev library context
*
* Take a reference of the udev library context.
*
* Returns: the passed udev library context
**/
{
return NULL;
return udev;
}
/**
* udev_unref:
* @udev: udev library context
*
* Drop a reference of the udev library context. If the refcount
* reaches zero, the ressources of the context will be released.
*
**/
{
return;
return;
}
/**
* udev_set_log_fn:
* @udev: udev library context
* @log_fn: function to be called for logging messages
*
* The built-in logging, which writes to stderr if the
* LIBUDEV_DEBUG environment variable is set, can be
* overridden by a custom function, to plug log messages
* into the users logging functionality.
*
**/
{
}
{
return udev->log_priority;
}
{
}
{
return udev->rules_path;
}
{
}
/**
* udev_get_sys_path:
* @udev: udev library context
*
* Retrieve the sysfs mount point. The default is "/sys". For
* testing purposes, it can be overridden with the environment
* variable SYSFS_PATH.
*
* Returns: the sys mount point
**/
{
return NULL;
}
/**
* udev_get_dev_path:
* @udev: udev library context
*
* Retrieve the device directory path. The default value is "/dev",
* the actual value may be overridden in the udev configuration
* file.
*
* Returns: the device directory path
**/
{
return NULL;
}