资源简介
udev(userspace device management)的源代码
代码片段和文件信息
/*
* Copyright (C) 2003-2004 Greg Kroah-Hartman
* Copyright (C) 2004-2006 Kay Sievers
*
* 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.
* 51 Franklin Street Fifth Floor Boston MA 02110-1301 USA.
*
*/
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include “udev.h“
#include “udev_rules.h“
#include “udev_selinux.h“
#ifdef USE_LOG
void log_message(int priority const char *format ...)
{
va_list args;
if (priority > udev_log_priority)
return;
va_start(args format);
vsyslog(priority format args);
va_end(args);
}
#endif
static void asmlinkage sig_handler(int signum)
{
switch (signum) {
case SIGALRM:
exit(1);
case SIGINT:
case SIGTERM:
exit(20 + signum);
}
}
int main(int argc char *argv[] char *envp[])
{
struct sysfs_device *dev;
struct udevice *udev;
const char *maj *min;
struct udev_rules rules;
const char *action;
const char *devpath;
const char *subsystem;
struct sigaction act;
int devnull;
int retval = -EINVAL;
if (argc == 2 && strcmp(argv[1] “-V“) == 0) {
printf(“%s\n“ UDEV_VERSION);
exit(0);
}
/* set std fd‘s to /dev/null /sbin/hotplug forks us we don‘t have them at all */
devnull = open(“/dev/null“ O_RDWR);
if (devnull >= 0) {
if (devnull != STDIN_FILENO)
dup2(devnull STDIN_FILENO);
if (devnull != STDOUT_FILENO)
dup2(devnull STDOUT_FILENO);
if (devnull != STDERR_FILENO)
dup2(devnull STDERR_FILENO);
if (devnull > STDERR_FILENO)
close(devnull);
}
logging_init(“udev“);
if (devnull < 0)
err(“open /dev/null failed: %s“ strerror(errno));
udev_config_init();
selinux_init();
dbg(“version %s“ UDEV_VERSION);
/* set signal handlers */
memset(&act 0x00 sizeof(act));
act.sa_handler = (void (*)(int)) sig_handler;
sigemptyset (&act.sa_mask);
act.sa_flags = 0;
sigaction(SIGALRM &act NULL);
sigaction(SIGINT &act NULL);
sigaction(SIGTERM &act NULL);
/* trigger timeout to prevent hanging processes */
alarm(UDEV_ALARM_TIMEOUT);
action = getenv(“ACTION“);
devpath = getenv(“DEVPATH“);
subsystem = getenv(“SUBSYSTEM“);
/* older kernels passed the SUBSYSTEM only as argument */
if (subsystem == NULL && argc == 2)
subsystem = argv[1];
if (action == NULL || subsystem == NULL || devpath == NULL) {
err(“ac
- 上一篇:libv4l-0.6.2-test.tar.gz
- 下一篇:百度分词词库
相关资源
- uboot到linux logo显示不间断 补丁
- UNIX/LINUX编程实践教程的源码
- Linux任务管理器
- linux应用层的华容道游戏源代码
- ubuntu9.10 可加载内核模块和字符设备驱
- MP3文件ID3v2ID3v2APEv2标签读取
- 操作系统实验——虚存管理实验
- linux下的发包工具sendip
- 尚观培训linux许巍关于c 的笔记和讲义
- 尚观培训linux董亮老师关于数据结构的
- linux 线程池源码 c 版
- linux C 电梯程序练习
- linux下用多进程同步方法解决生产者
- Linux 操作系统实验(全)
- Linux From Scratch 中文手册
- linux 网络实验 ftp程序
- Linux命令大全离线版&在线版
- 操作系统共享内存实验
- dos 下运行Linux 命令--gnu_utils
- linux 0.12内核源代码
- linux简易shell C实现
- linux实验报告及心得体会
- 基于GTK的Linux环境下的简易任务管理器
- linux扫雷游戏代码
- CAN Linux驱动代码
- Linux系统教材
- intel 82579LM 网卡驱动Linux系统版 v1.9.
- SA1110处理器掌上电脑液晶显示器设计
- 基于Linux的串口服务器设计
- Windows下访问LINUX的利器-SSH
评论
共有 条评论