mirror of
https://github.com/systemd/systemd.git
synced 2024-11-06 16:59:03 +03:00
4a539daf1e
On Thu, Mar 25, 2004 at 02:52:13AM +0100, Kay Sievers wrote: > Please have look if it still works for you, I only did a very quick > test. Here is a unified version, with all the functions moved to udev_lib.c. We have a generic function now, to call a given fnct(char *) for every file ending with a specific suffix, sorted in lexical order. We use it to execute the dev.d/ files and read our rules.d/ files. The binary should be a bit smaller now. I've also changed it, to not do the dev.d/ exec for net devices.
85 lines
1.8 KiB
C
85 lines
1.8 KiB
C
/*
|
|
* dev_d.c - dev.d/ multiplexer
|
|
*
|
|
* Copyright (C) 2004 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 essentially emulates the following shell script logic in C:
|
|
* DIR="/etc/dev.d"
|
|
* export DEVNODE="whatever_dev_name_udev_just_gave"
|
|
* for I in "${DIR}/$DEVNODE/"*.dev "${DIR}/$1/"*.dev "${DIR}/default/"*.dev ; do
|
|
* if [ -f $I ]; then $I $1 ; fi
|
|
* done
|
|
* exit 1;
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <sys/types.h>
|
|
#include <sys/wait.h>
|
|
#include <unistd.h>
|
|
#include "udev.h"
|
|
#include "udev_lib.h"
|
|
#include "logging.h"
|
|
|
|
#define DEVD_DIR "/etc/dev.d/"
|
|
#define DEVD_SUFFIX ".dev"
|
|
|
|
static int run_program(char *name)
|
|
{
|
|
pid_t pid;
|
|
|
|
dbg("running %s", name);
|
|
|
|
pid = fork();
|
|
switch (pid) {
|
|
case 0:
|
|
/* child */
|
|
execv(name, main_argv);
|
|
dbg("exec of child failed");
|
|
exit(1);
|
|
case -1:
|
|
dbg("fork of child failed");
|
|
break;
|
|
return -1;
|
|
default:
|
|
wait(NULL);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
* runs files in these directories in order:
|
|
* <node name given by udev>/
|
|
* subsystem/
|
|
* default/
|
|
*/
|
|
void dev_d_send(struct udevice *dev, char *subsystem)
|
|
{
|
|
char dirname[256];
|
|
char devnode[NAME_SIZE];
|
|
|
|
strfieldcpy(devnode, udev_root);
|
|
strfieldcat(devnode, dev->name);
|
|
setenv("DEVNODE", devnode, 1);
|
|
|
|
strcpy(dirname, DEVD_DIR);
|
|
strfieldcat(dirname, dev->name);
|
|
call_foreach_file(run_program, dirname, DEVD_SUFFIX);
|
|
|
|
strcpy(dirname, DEVD_DIR);
|
|
strfieldcat(dirname, subsystem);
|
|
call_foreach_file(run_program, dirname, DEVD_SUFFIX);
|
|
|
|
strcpy(dirname, DEVD_DIR "default");
|
|
call_foreach_file(run_program, dirname, DEVD_SUFFIX);
|
|
}
|
|
|