2003-10-17 15:40:02 +07:00
|
|
|
/*
|
2004-03-23 13:22:20 +07:00
|
|
|
* udevdb.c - udev database library
|
2003-10-17 15:40:02 +07:00
|
|
|
*
|
|
|
|
* Userspace devfs
|
|
|
|
*
|
|
|
|
* Copyright (C) 2003 Greg Kroah-Hartman <greg@kroah.com>
|
|
|
|
* Copyright (C) 2003 IBM Corp.
|
|
|
|
*
|
|
|
|
* 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 version 2 of the License.
|
|
|
|
*
|
|
|
|
* 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, write to the Free Software Foundation, Inc.,
|
|
|
|
* 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2003-08-06 13:57:23 +07:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
2004-03-02 14:47:59 +07:00
|
|
|
#include <string.h>
|
2004-03-23 13:22:20 +07:00
|
|
|
#include <stddef.h>
|
2003-08-06 13:57:23 +07:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <errno.h>
|
2003-08-06 14:03:30 +07:00
|
|
|
#include <signal.h>
|
2003-08-06 13:57:23 +07:00
|
|
|
|
2004-02-24 10:07:25 +07:00
|
|
|
#include "libsysfs/sysfs/libsysfs.h"
|
2003-10-16 13:50:13 +07:00
|
|
|
#include "udev.h"
|
2004-03-23 13:22:20 +07:00
|
|
|
#include "udev_lib.h"
|
|
|
|
#include "udev_version.h"
|
[PATCH] add udev logging to info log
On Thu, Jan 15, 2004 at 05:14:16AM +0100, Kay Sievers wrote:
> On Wed, Jan 14, 2004 at 01:10:43PM -0800, Greg KH wrote:
> > On Wed, Jan 14, 2004 at 02:34:26PM -0600, Clay Haapala wrote:
> > > On Wed, 14 Jan 2004, Chris Friesen spake thusly:
> > > >
> > > > Maybe for ones with a matching rule, you could print something like:
> > > >
> > > >
> > > Is the act of printing/syslogging a rule in an of itself?
> >
> > No, as currently the only way stuff ends up in the syslog is if
> > DEBUG=true is used on the build line.
> >
> > But it's sounding like we might want to change that... :)
>
> How about this in the syslog after connect/disconnect?
>
> Jan 15 05:07:45 pim udev[28007]: configured rule in '/etc/udev/udev.rules' at line 17 applied, 'video*' becomes 'video/webcam%n'
> Jan 15 05:07:45 pim udev[28007]: creating device node '/udev/video/webcam0'
> Jan 15 05:07:47 pim udev[28015]: removing device node '/udev/video/webcam0'
Here is a slightly better version. I've created a logging.h file and
moved the debug macros from udev.h in there.
If you type:
'make' - you will get a binary that prints one or two lines to syslog
if a device node is created or deleted
'make LOG=false' - you get a binary that prints asolutely nothing
'make DEBUG=true' - the same as today, it will print all debug lines
2004-01-16 12:53:20 +07:00
|
|
|
#include "logging.h"
|
2003-10-16 13:50:13 +07:00
|
|
|
#include "namedev.h"
|
2003-08-06 13:57:23 +07:00
|
|
|
#include "udevdb.h"
|
2003-08-06 14:03:30 +07:00
|
|
|
#include "tdb/tdb.h"
|
2003-08-06 13:57:23 +07:00
|
|
|
|
2003-10-15 13:20:53 +07:00
|
|
|
static TDB_CONTEXT *udevdb;
|
2004-10-14 13:13:26 +07:00
|
|
|
sig_atomic_t gotalarm;
|
2003-10-18 13:32:17 +07:00
|
|
|
|
2004-10-19 09:11:51 +07:00
|
|
|
int udevdb_add_dev(struct udevice *udev)
|
2003-10-18 13:32:17 +07:00
|
|
|
{
|
|
|
|
TDB_DATA key, data;
|
2003-10-21 12:48:44 +07:00
|
|
|
char keystr[SYSFS_PATH_MAX];
|
2003-10-18 13:32:17 +07:00
|
|
|
|
2004-10-19 09:28:39 +07:00
|
|
|
if (udev->test_run)
|
|
|
|
return 0;
|
|
|
|
|
2004-10-14 13:13:26 +07:00
|
|
|
if (udevdb == NULL)
|
|
|
|
return -1;
|
|
|
|
|
2004-10-19 09:11:51 +07:00
|
|
|
memset(keystr, 0x00, SYSFS_PATH_MAX);
|
|
|
|
strfieldcpy(keystr, udev->devpath);
|
2003-10-21 12:48:44 +07:00
|
|
|
key.dptr = keystr;
|
2003-10-18 13:32:17 +07:00
|
|
|
key.dsize = strlen(keystr) + 1;
|
2003-11-25 13:27:17 +07:00
|
|
|
|
2004-10-19 09:11:51 +07:00
|
|
|
data.dptr = (void *) udev;
|
|
|
|
data.dsize = UDEVICE_DB_LEN;
|
|
|
|
dbg("store key '%s' for device '%s'", keystr, udev->name);
|
2004-02-13 13:51:44 +07:00
|
|
|
|
2003-10-21 12:48:44 +07:00
|
|
|
return tdb_store(udevdb, key, data, TDB_REPLACE);
|
2003-10-18 13:32:17 +07:00
|
|
|
}
|
|
|
|
|
2004-10-19 09:11:51 +07:00
|
|
|
int udevdb_get_dev(const char *path, struct udevice *udev)
|
2003-08-06 13:57:23 +07:00
|
|
|
{
|
|
|
|
TDB_DATA key, data;
|
|
|
|
|
2004-10-14 13:13:26 +07:00
|
|
|
if (udevdb == NULL)
|
|
|
|
return -1;
|
|
|
|
|
2003-10-21 12:48:44 +07:00
|
|
|
if (path == NULL)
|
2003-12-20 09:29:01 +07:00
|
|
|
return -ENODEV;
|
2003-08-06 13:57:23 +07:00
|
|
|
|
2003-10-21 12:48:44 +07:00
|
|
|
key.dptr = (void *)path;
|
|
|
|
key.dsize = strlen(path) + 1;
|
2003-08-06 13:57:23 +07:00
|
|
|
|
2003-10-15 13:20:53 +07:00
|
|
|
data = tdb_fetch(udevdb, key);
|
2003-08-06 13:57:23 +07:00
|
|
|
if (data.dptr == NULL || data.dsize == 0)
|
2003-12-20 09:29:01 +07:00
|
|
|
return -ENODEV;
|
2003-11-25 13:27:17 +07:00
|
|
|
|
2004-10-19 09:11:51 +07:00
|
|
|
memset(udev, 0x00, sizeof(struct udevice));
|
|
|
|
memcpy(udev, data.dptr, UDEVICE_DB_LEN);
|
|
|
|
|
2003-12-20 09:29:01 +07:00
|
|
|
return 0;
|
2003-08-06 13:57:23 +07:00
|
|
|
}
|
|
|
|
|
2003-10-21 12:48:44 +07:00
|
|
|
int udevdb_delete_dev(const char *path)
|
2003-08-06 13:57:23 +07:00
|
|
|
{
|
|
|
|
TDB_DATA key;
|
2003-10-21 12:48:44 +07:00
|
|
|
char keystr[SYSFS_PATH_MAX];
|
2003-08-06 13:57:23 +07:00
|
|
|
|
2004-10-14 13:13:26 +07:00
|
|
|
if (udevdb == NULL)
|
|
|
|
return -1;
|
|
|
|
|
2003-10-21 12:48:44 +07:00
|
|
|
if (path == NULL)
|
|
|
|
return -EINVAL;
|
2003-10-21 10:28:42 +07:00
|
|
|
|
|
|
|
memset(keystr, 0, sizeof(keystr));
|
2004-02-27 10:37:47 +07:00
|
|
|
strfieldcpy(keystr, path);
|
2003-10-21 10:28:42 +07:00
|
|
|
|
|
|
|
key.dptr = keystr;
|
|
|
|
key.dsize = strlen(keystr) + 1;
|
2003-11-25 13:27:17 +07:00
|
|
|
|
2003-10-21 10:28:42 +07:00
|
|
|
return tdb_delete(udevdb, key);
|
|
|
|
}
|
|
|
|
|
2003-10-15 13:20:53 +07:00
|
|
|
/**
|
|
|
|
* udevdb_exit: closes database
|
|
|
|
*/
|
|
|
|
void udevdb_exit(void)
|
|
|
|
{
|
2003-10-21 12:48:44 +07:00
|
|
|
if (udevdb != NULL) {
|
|
|
|
tdb_close(udevdb);
|
|
|
|
udevdb = NULL;
|
|
|
|
}
|
2003-10-15 13:20:53 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* udevdb_init: initializes database
|
2003-11-25 13:27:17 +07:00
|
|
|
* @init_flag: UDEVDB_INTERNAL - database stays in memory
|
|
|
|
* UDEVDB_DEFAULT - database is written to a file
|
2003-10-15 13:20:53 +07:00
|
|
|
*/
|
|
|
|
int udevdb_init(int init_flag)
|
|
|
|
{
|
|
|
|
if (init_flag != UDEVDB_DEFAULT && init_flag != UDEVDB_INTERNAL)
|
2003-10-21 12:48:44 +07:00
|
|
|
return -EINVAL;
|
2003-10-15 13:20:53 +07:00
|
|
|
|
2004-10-14 13:13:26 +07:00
|
|
|
tdb_set_lock_alarm(&gotalarm);
|
|
|
|
|
2003-10-22 10:19:09 +07:00
|
|
|
udevdb = tdb_open(udev_db_filename, 0, init_flag, O_RDWR | O_CREAT, 0644);
|
2003-10-21 12:48:44 +07:00
|
|
|
if (udevdb == NULL) {
|
|
|
|
if (init_flag == UDEVDB_INTERNAL)
|
2003-11-25 13:27:17 +07:00
|
|
|
dbg("unable to initialize in-memory database");
|
2003-10-21 12:48:44 +07:00
|
|
|
else
|
2003-11-25 13:27:17 +07:00
|
|
|
dbg("unable to initialize database at '%s'", udev_db_filename);
|
2004-01-13 16:01:19 +07:00
|
|
|
return -EACCES;
|
2003-10-21 12:48:44 +07:00
|
|
|
}
|
|
|
|
return 0;
|
2003-10-15 13:20:53 +07:00
|
|
|
}
|
2003-12-31 13:31:37 +07:00
|
|
|
|
|
|
|
/**
|
2003-12-31 15:34:51 +07:00
|
|
|
* udevdb_open_ro: open database for reading
|
2003-12-31 13:31:37 +07:00
|
|
|
*/
|
|
|
|
int udevdb_open_ro(void)
|
|
|
|
{
|
|
|
|
udevdb = tdb_open(udev_db_filename, 0, 0, O_RDONLY, 0);
|
|
|
|
if (udevdb == NULL) {
|
|
|
|
dbg("unable to open database at '%s'", udev_db_filename);
|
2004-01-13 16:01:19 +07:00
|
|
|
return -EACCES;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-10-19 09:11:51 +07:00
|
|
|
static int (*user_record_callback) (const char *path, struct udevice *dev);
|
2004-01-13 16:01:19 +07:00
|
|
|
|
|
|
|
static int traverse_callback(TDB_CONTEXT *tdb, TDB_DATA key, TDB_DATA dbuf, void *state)
|
|
|
|
{
|
2004-01-20 10:40:32 +07:00
|
|
|
return user_record_callback((char*) key.dptr, (struct udevice*) dbuf.dptr);
|
2004-01-13 16:01:19 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2004-01-20 10:40:32 +07:00
|
|
|
* udevdb_call_foreach: dumps whole database by passing record data to user function
|
2004-01-13 16:01:19 +07:00
|
|
|
* @user_record_handler: user function called for every record in the database
|
|
|
|
*/
|
2004-10-19 09:11:51 +07:00
|
|
|
int udevdb_call_foreach(int (*user_record_handler) (const char *path, struct udevice *dev))
|
2004-01-13 16:01:19 +07:00
|
|
|
{
|
2004-01-20 10:40:32 +07:00
|
|
|
int retval = 0;
|
|
|
|
|
2004-10-14 13:13:26 +07:00
|
|
|
if (udevdb == NULL)
|
|
|
|
return -1;
|
|
|
|
|
2004-01-13 16:01:19 +07:00
|
|
|
if (user_record_handler == NULL) {
|
|
|
|
dbg("invalid user record handling function");
|
2003-12-31 13:31:37 +07:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
2004-01-13 16:01:19 +07:00
|
|
|
user_record_callback = user_record_handler;
|
2004-01-20 10:40:32 +07:00
|
|
|
retval = tdb_traverse(udevdb, traverse_callback, NULL);
|
|
|
|
if (retval < 0)
|
|
|
|
return -ENODEV;
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct udevice *find_dev;
|
|
|
|
static char *find_path;
|
|
|
|
static const char *find_name;
|
|
|
|
static int find_found;
|
|
|
|
|
2004-10-19 09:11:51 +07:00
|
|
|
static int find_device_by_name(const char *path, struct udevice *udev)
|
2004-01-20 10:40:32 +07:00
|
|
|
{
|
[PATCH] better fix for NAME="foo-%c{N}" gets a truncated name
On Wed, Mar 03, 2004 at 04:56:34PM -0800, Greg KH wrote:
> On Wed, Mar 03, 2004 at 03:57:04PM -0800, Patrick Mansfield wrote:
> >
> > Here is a patch for some new tests.
>
> Applied, thanks.
Here is a small improvement, which looks much better.
Hey Pat, thanks a lot for finding the recent bug, hope this one will
not break it again :)
2004-03-05 09:55:34 +07:00
|
|
|
char *pos;
|
|
|
|
int len;
|
2004-03-04 09:16:35 +07:00
|
|
|
|
2004-10-19 09:11:51 +07:00
|
|
|
if (strncmp(udev->name, find_name, sizeof(udev->name)) == 0) {
|
|
|
|
memcpy(find_dev, udev, sizeof(struct udevice));
|
2004-03-10 10:50:15 +07:00
|
|
|
strfieldcpymax(find_path, path, NAME_SIZE);
|
2004-01-20 10:40:32 +07:00
|
|
|
find_found = 1;
|
|
|
|
/* stop search */
|
|
|
|
return 1;
|
|
|
|
}
|
2004-03-02 14:47:59 +07:00
|
|
|
/* look for matching symlink*/
|
2004-10-19 09:11:51 +07:00
|
|
|
foreach_strpart(udev->symlink, " ", pos, len) {
|
[PATCH] better fix for NAME="foo-%c{N}" gets a truncated name
On Wed, Mar 03, 2004 at 04:56:34PM -0800, Greg KH wrote:
> On Wed, Mar 03, 2004 at 03:57:04PM -0800, Patrick Mansfield wrote:
> >
> > Here is a patch for some new tests.
>
> Applied, thanks.
Here is a small improvement, which looks much better.
Hey Pat, thanks a lot for finding the recent bug, hope this one will
not break it again :)
2004-03-05 09:55:34 +07:00
|
|
|
if (strncmp(pos, find_name, len) != 0)
|
2004-03-04 09:16:35 +07:00
|
|
|
continue;
|
|
|
|
|
|
|
|
if (len != strlen(find_name))
|
|
|
|
continue;
|
|
|
|
|
2004-10-19 09:11:51 +07:00
|
|
|
memcpy(find_dev, udev, sizeof(struct udevice));
|
2004-03-10 10:50:15 +07:00
|
|
|
strfieldcpymax(find_path, path, NAME_SIZE);
|
2004-03-04 09:16:35 +07:00
|
|
|
find_found = 1;
|
|
|
|
return 1;
|
|
|
|
}
|
2003-12-31 13:31:37 +07:00
|
|
|
return 0;
|
|
|
|
}
|
2004-01-20 10:40:32 +07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* udevdb_get_dev_byname: search device with given name by traversing the whole database
|
|
|
|
*/
|
|
|
|
int udevdb_get_dev_byname(const char *name, char *path, struct udevice *dev)
|
|
|
|
{
|
|
|
|
find_found = 0;
|
|
|
|
find_path = path;
|
|
|
|
find_dev = dev;
|
|
|
|
find_name = name;
|
|
|
|
udevdb_call_foreach(find_device_by_name);
|
|
|
|
if (find_found == 1)
|
|
|
|
return 0;
|
|
|
|
else
|
|
|
|
return -1;
|
|
|
|
}
|