2003-12-03 09:38:30 +07:00
|
|
|
/*
|
|
|
|
* namedev_parse.c
|
|
|
|
*
|
|
|
|
* Userspace devfs
|
|
|
|
*
|
|
|
|
* Copyright (C) 2003 Greg Kroah-Hartman <greg@kroah.com>
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* define this to enable parsing debugging */
|
|
|
|
/* #define DEBUG_PARSER */
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
#include "udev.h"
|
|
|
|
#include "namedev.h"
|
|
|
|
|
2003-12-03 16:08:46 +07:00
|
|
|
int get_pair(char **orig_string, char **left, char **right)
|
2003-12-03 09:38:30 +07:00
|
|
|
{
|
|
|
|
char *temp;
|
|
|
|
char *string = *orig_string;
|
|
|
|
|
|
|
|
if (!string)
|
|
|
|
return -ENODEV;
|
|
|
|
|
|
|
|
/* eat any whitespace */
|
2003-12-17 14:36:19 +07:00
|
|
|
while (isspace(*string) || *string == ',')
|
2003-12-03 09:38:30 +07:00
|
|
|
++string;
|
|
|
|
|
|
|
|
/* split based on '=' */
|
|
|
|
temp = strsep(&string, "=");
|
|
|
|
*left = temp;
|
|
|
|
if (!string)
|
|
|
|
return -ENODEV;
|
|
|
|
|
|
|
|
/* take the right side and strip off the '"' */
|
|
|
|
while (isspace(*string))
|
|
|
|
++string;
|
|
|
|
if (*string == '"')
|
|
|
|
++string;
|
|
|
|
else
|
|
|
|
return -ENODEV;
|
|
|
|
|
|
|
|
temp = strsep(&string, "\"");
|
|
|
|
if (!string || *temp == '\0')
|
|
|
|
return -ENODEV;
|
|
|
|
*right = temp;
|
|
|
|
*orig_string = string;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void dump_config_dev(struct config_device *dev)
|
|
|
|
{
|
|
|
|
switch (dev->type) {
|
|
|
|
case KERNEL_NAME:
|
2003-12-04 09:33:58 +07:00
|
|
|
dbg_parse("KERNEL name='%s'", dev->name);
|
2003-12-03 09:38:30 +07:00
|
|
|
break;
|
|
|
|
case LABEL:
|
2003-12-04 09:33:58 +07:00
|
|
|
dbg_parse("LABEL name='%s', bus='%s', sysfs_file='%s', sysfs_value='%s'",
|
|
|
|
dev->name, dev->bus, dev->sysfs_file, dev->sysfs_value);
|
2003-12-03 09:38:30 +07:00
|
|
|
break;
|
|
|
|
case NUMBER:
|
2003-12-04 09:33:58 +07:00
|
|
|
dbg_parse("NUMBER name='%s', bus='%s', id='%s'",
|
|
|
|
dev->name, dev->bus, dev->id);
|
2003-12-03 09:38:30 +07:00
|
|
|
break;
|
|
|
|
case TOPOLOGY:
|
2003-12-04 09:33:58 +07:00
|
|
|
dbg_parse("TOPOLOGY name='%s', bus='%s', place='%s'",
|
|
|
|
dev->name, dev->bus, dev->place);
|
2003-12-03 09:38:30 +07:00
|
|
|
break;
|
|
|
|
case REPLACE:
|
2003-12-04 09:33:58 +07:00
|
|
|
dbg_parse("REPLACE name=%s, kernel_name=%s",
|
|
|
|
dev->name, dev->kernel_name);
|
2003-12-03 09:38:30 +07:00
|
|
|
break;
|
|
|
|
case CALLOUT:
|
2003-12-04 09:33:58 +07:00
|
|
|
dbg_parse("CALLOUT name='%s', bus='%s', program='%s', id='%s'",
|
|
|
|
dev->name, dev->bus, dev->exec_program, dev->id);
|
2003-12-03 09:38:30 +07:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
dbg_parse("unknown type of method");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void dump_config_dev_list(void)
|
|
|
|
{
|
|
|
|
struct list_head *tmp;
|
|
|
|
|
|
|
|
list_for_each(tmp, &config_device_list) {
|
|
|
|
struct config_device *dev = list_entry(tmp, struct config_device, node);
|
|
|
|
dump_config_dev(dev);
|
|
|
|
}
|
|
|
|
}
|
2003-12-04 09:33:58 +07:00
|
|
|
|
|
|
|
void dump_perm_dev(struct perm_device *dev)
|
|
|
|
{
|
|
|
|
dbg_parse("name='%s', owner='%s', group='%s', mode=%#o",
|
|
|
|
dev->name, dev->owner, dev->group, dev->mode);
|
|
|
|
}
|
|
|
|
|
|
|
|
void dump_perm_dev_list(void)
|
|
|
|
{
|
|
|
|
struct list_head *tmp;
|
|
|
|
|
|
|
|
list_for_each(tmp, &perm_device_list) {
|
|
|
|
struct perm_device *dev = list_entry(tmp, struct perm_device, node);
|
|
|
|
dump_perm_dev(dev);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-12-03 16:08:46 +07:00
|
|
|
int namedev_init_rules(void)
|
2003-12-03 09:38:30 +07:00
|
|
|
{
|
|
|
|
char line[255];
|
|
|
|
int lineno;
|
|
|
|
char *temp;
|
|
|
|
char *temp2;
|
|
|
|
char *temp3;
|
|
|
|
FILE *fd;
|
|
|
|
int retval = 0;
|
|
|
|
struct config_device dev;
|
|
|
|
|
2003-12-03 16:08:46 +07:00
|
|
|
fd = fopen(udev_rules_filename, "r");
|
|
|
|
if (fd != NULL) {
|
|
|
|
dbg("reading '%s' as rules file", udev_rules_filename);
|
|
|
|
} else {
|
|
|
|
dbg("can't open '%s' as a rules file", udev_rules_filename);
|
2003-12-03 09:38:30 +07:00
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* loop through the whole file */
|
|
|
|
lineno = 0;
|
|
|
|
while (1) {
|
|
|
|
/* get a line */
|
|
|
|
temp = fgets(line, sizeof(line), fd);
|
|
|
|
if (temp == NULL)
|
|
|
|
goto exit;
|
|
|
|
lineno++;
|
|
|
|
dbg_parse("read '%s'", temp);
|
|
|
|
|
2003-12-18 09:24:05 +07:00
|
|
|
/* eat the whitespace */
|
|
|
|
while (isspace(*temp))
|
|
|
|
++temp;
|
|
|
|
|
2003-12-03 09:38:30 +07:00
|
|
|
/* empty line? */
|
|
|
|
if (*temp == 0x00)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* see if this is a comment */
|
|
|
|
if (*temp == COMMENT_CHARACTER)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
memset(&dev, 0x00, sizeof(struct config_device));
|
|
|
|
|
2003-12-17 14:36:19 +07:00
|
|
|
/* get the method */
|
2003-12-03 09:38:30 +07:00
|
|
|
temp2 = strsep(&temp, ",");
|
2003-12-17 14:36:19 +07:00
|
|
|
|
2003-12-03 09:38:30 +07:00
|
|
|
if (strcasecmp(temp2, TYPE_LABEL) == 0) {
|
|
|
|
dev.type = LABEL;
|
2003-12-17 14:36:19 +07:00
|
|
|
goto keys;
|
2003-12-03 09:38:30 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (strcasecmp(temp2, TYPE_NUMBER) == 0) {
|
|
|
|
dev.type = NUMBER;
|
2003-12-17 14:36:19 +07:00
|
|
|
goto keys;
|
2003-12-03 09:38:30 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (strcasecmp(temp2, TYPE_TOPOLOGY) == 0) {
|
|
|
|
dev.type = TOPOLOGY;
|
2003-12-17 14:36:19 +07:00
|
|
|
goto keys;
|
2003-12-03 09:38:30 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (strcasecmp(temp2, TYPE_REPLACE) == 0) {
|
|
|
|
dev.type = REPLACE;
|
2003-12-17 14:36:19 +07:00
|
|
|
goto keys;
|
2003-12-03 09:38:30 +07:00
|
|
|
}
|
2003-12-08 00:12:07 +07:00
|
|
|
|
2003-12-03 09:38:30 +07:00
|
|
|
if (strcasecmp(temp2, TYPE_CALLOUT) == 0) {
|
|
|
|
dev.type = CALLOUT;
|
2003-12-17 14:36:19 +07:00
|
|
|
goto keys;
|
|
|
|
}
|
2003-12-03 09:38:30 +07:00
|
|
|
|
2003-12-17 14:36:19 +07:00
|
|
|
dbg_parse("unknown type of method '%s'", temp2);
|
|
|
|
goto error;
|
|
|
|
keys:
|
|
|
|
/* get all known keys */
|
|
|
|
while (1) {
|
|
|
|
retval = get_pair(&temp, &temp2, &temp3);
|
2003-12-03 09:38:30 +07:00
|
|
|
if (retval)
|
|
|
|
break;
|
2003-12-08 00:12:07 +07:00
|
|
|
|
2003-12-17 14:36:19 +07:00
|
|
|
if (strcasecmp(temp2, FIELD_BUS) == 0) {
|
|
|
|
strfieldcpy(dev.bus, temp3);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcasecmp(temp2, FIELD_ID) == 0) {
|
|
|
|
strfieldcpy(dev.id, temp3);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcasecmp(temp2, FIELD_PLACE) == 0) {
|
|
|
|
strfieldcpy(dev.place, temp3);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strncasecmp(temp2, FIELD_SYSFS, sizeof(FIELD_SYSFS)-1) == 0) {
|
|
|
|
/* remove prepended 'SYSFS_' */
|
|
|
|
strfieldcpy(dev.sysfs_file, temp2 + sizeof(FIELD_SYSFS)-1);
|
|
|
|
strfieldcpy(dev.sysfs_value, temp3);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcasecmp(temp2, FIELD_KERNEL) == 0) {
|
|
|
|
strfieldcpy(dev.kernel_name, temp3);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcasecmp(temp2, FIELD_PROGRAM) == 0) {
|
|
|
|
strfieldcpy(dev.exec_program, temp3);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcasecmp(temp2, FIELD_NAME) == 0) {
|
|
|
|
strfieldcpy(dev.name, temp3);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcasecmp(temp2, FIELD_SYMLINK) == 0) {
|
2003-12-08 00:12:07 +07:00
|
|
|
strfieldcpy(dev.symlink, temp3);
|
2003-12-17 14:36:19 +07:00
|
|
|
continue;
|
|
|
|
}
|
2003-12-08 00:12:07 +07:00
|
|
|
|
2003-12-17 14:36:19 +07:00
|
|
|
dbg_parse("unknown type of field '%s'", temp2);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* check presence of keys according to method type */
|
|
|
|
switch (dev.type) {
|
|
|
|
case LABEL:
|
2003-12-17 15:58:01 +07:00
|
|
|
dbg_parse(TYPE_LABEL " name='%s', bus='%s', "
|
2003-12-17 14:36:19 +07:00
|
|
|
"sysfs_file='%s', sysfs_value='%s', symlink='%s'",
|
|
|
|
dev.name, dev.bus, dev.sysfs_file,
|
|
|
|
dev.sysfs_value, dev.symlink);
|
|
|
|
if ((*dev.name == '\0') ||
|
|
|
|
(*dev.bus == '\0') ||
|
|
|
|
(*dev.sysfs_file == '\0') ||
|
|
|
|
(*dev.sysfs_value == '\0'))
|
|
|
|
goto error;
|
|
|
|
break;
|
|
|
|
case NUMBER:
|
2003-12-17 15:58:01 +07:00
|
|
|
dbg_parse(TYPE_NUMBER "name='%s', bus='%s', id='%s', symlink='%s'",
|
2003-12-17 14:36:19 +07:00
|
|
|
dev.name, dev.bus, dev.id, dev.symlink);
|
|
|
|
if ((*dev.name == '\0') ||
|
|
|
|
(*dev.bus == '\0') ||
|
|
|
|
(*dev.id == '\0'))
|
|
|
|
goto error;
|
|
|
|
break;
|
|
|
|
case TOPOLOGY:
|
2003-12-17 15:58:01 +07:00
|
|
|
dbg_parse(TYPE_TOPOLOGY "name='%s', bus='%s', "
|
2003-12-17 14:36:19 +07:00
|
|
|
"place='%s', symlink='%s'",
|
|
|
|
dev.name, dev.bus, dev.place, dev.symlink);
|
|
|
|
if ((*dev.name == '\0') ||
|
|
|
|
(*dev.bus == '\0') ||
|
|
|
|
(*dev.place == '\0'))
|
|
|
|
goto error;
|
|
|
|
break;
|
|
|
|
case REPLACE:
|
2003-12-17 15:58:01 +07:00
|
|
|
dbg_parse(TYPE_REPLACE "name='%s', kernel_name='%s', symlink='%s'",
|
2003-12-17 14:36:19 +07:00
|
|
|
dev.name, dev.kernel_name, dev.symlink);
|
|
|
|
if ((*dev.name == '\0') ||
|
|
|
|
(*dev.kernel_name == '\0'))
|
|
|
|
goto error;
|
|
|
|
break;
|
|
|
|
case CALLOUT:
|
2003-12-17 15:58:01 +07:00
|
|
|
dbg_parse(TYPE_CALLOUT "name='%s', bus='%s', program='%s', "
|
2003-12-08 00:12:07 +07:00
|
|
|
"id='%s', symlink='%s'",
|
|
|
|
dev.name, dev.bus, dev.exec_program,
|
|
|
|
dev.id, dev.symlink);
|
2003-12-17 14:36:19 +07:00
|
|
|
if ((*dev.name == '\0') ||
|
|
|
|
(*dev.bus == '\0') ||
|
|
|
|
(*dev.id == '\0') ||
|
|
|
|
(*dev.exec_program == '\0'))
|
|
|
|
goto error;
|
|
|
|
break;
|
|
|
|
default:
|
2003-12-17 15:58:01 +07:00
|
|
|
dbg_parse("unknown type of method");
|
2003-12-17 14:36:19 +07:00
|
|
|
goto error;
|
2003-12-03 09:38:30 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
retval = add_config_dev(&dev);
|
|
|
|
if (retval) {
|
|
|
|
dbg("add_config_dev returned with error %d", retval);
|
2003-12-17 14:36:19 +07:00
|
|
|
continue;
|
2003-12-03 09:38:30 +07:00
|
|
|
}
|
|
|
|
}
|
2003-12-17 14:36:19 +07:00
|
|
|
error:
|
|
|
|
dbg_parse("%s:%d:%Zd: field missing or parse error", udev_rules_filename,
|
|
|
|
lineno, temp - line);
|
2003-12-03 09:38:30 +07:00
|
|
|
exit:
|
|
|
|
fclose(fd);
|
|
|
|
return retval;
|
2003-12-17 14:36:19 +07:00
|
|
|
}
|
2003-12-03 09:38:30 +07:00
|
|
|
|
|
|
|
int namedev_init_permissions(void)
|
|
|
|
{
|
|
|
|
char line[255];
|
|
|
|
char *temp;
|
|
|
|
char *temp2;
|
|
|
|
FILE *fd;
|
|
|
|
int retval = 0;
|
2003-12-04 09:33:58 +07:00
|
|
|
struct perm_device dev;
|
2003-12-03 09:38:30 +07:00
|
|
|
|
2003-12-03 23:13:11 +07:00
|
|
|
fd = fopen(udev_permissions_filename, "r");
|
2003-12-03 16:08:46 +07:00
|
|
|
if (fd != NULL) {
|
2003-12-03 23:13:11 +07:00
|
|
|
dbg("reading '%s' as permissions file", udev_permissions_filename);
|
2003-12-03 16:08:46 +07:00
|
|
|
} else {
|
2003-12-03 23:13:11 +07:00
|
|
|
dbg("can't open '%s' as permissions file", udev_permissions_filename);
|
2003-12-03 09:38:30 +07:00
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* loop through the whole file */
|
|
|
|
while (1) {
|
|
|
|
temp = fgets(line, sizeof(line), fd);
|
|
|
|
if (temp == NULL)
|
|
|
|
break;
|
|
|
|
|
|
|
|
dbg_parse("read '%s'", temp);
|
|
|
|
|
|
|
|
/* eat the whitespace at the beginning of the line */
|
|
|
|
while (isspace(*temp))
|
|
|
|
++temp;
|
|
|
|
|
|
|
|
/* empty line? */
|
|
|
|
if (*temp == 0x00)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* see if this is a comment */
|
|
|
|
if (*temp == COMMENT_CHARACTER)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
memset(&dev, 0x00, sizeof(dev));
|
|
|
|
|
|
|
|
/* parse the line */
|
|
|
|
temp2 = strsep(&temp, ":");
|
|
|
|
if (!temp2) {
|
|
|
|
dbg("cannot parse line '%s'", line);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
strncpy(dev.name, temp2, sizeof(dev.name));
|
|
|
|
|
|
|
|
temp2 = strsep(&temp, ":");
|
|
|
|
if (!temp2) {
|
|
|
|
dbg("cannot parse line '%s'", line);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
strncpy(dev.owner, temp2, sizeof(dev.owner));
|
|
|
|
|
|
|
|
temp2 = strsep(&temp, ":");
|
|
|
|
if (!temp2) {
|
|
|
|
dbg("cannot parse line '%s'", line);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
strncpy(dev.group, temp2, sizeof(dev.owner));
|
|
|
|
|
|
|
|
if (!temp) {
|
|
|
|
dbg("cannot parse line: %s", line);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
dev.mode = strtol(temp, NULL, 8);
|
|
|
|
|
|
|
|
dbg_parse("name='%s', owner='%s', group='%s', mode=%#o",
|
|
|
|
dev.name, dev.owner, dev.group,
|
|
|
|
dev.mode);
|
2003-12-04 09:33:58 +07:00
|
|
|
retval = add_perm_dev(&dev);
|
2003-12-03 09:38:30 +07:00
|
|
|
if (retval) {
|
2003-12-08 00:12:07 +07:00
|
|
|
dbg("add_perm_dev returned with error %d", retval);
|
2003-12-03 09:38:30 +07:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
exit:
|
|
|
|
fclose(fd);
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
|