⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rmmod.c

📁 用于linux2.6内核支持模块的插入和卸载
💻 C
字号:
/* rmmod.c: remove a module from the kernel.    Copyright (C) 2001  Rusty Russell.    Copyright (C) 2002  Rusty Russell, IBM Corporation.    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; 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, write to the Free Software    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA*/#include <stdio.h>#include <stdlib.h>#include <string.h>#include <unistd.h>#include <errno.h>#include <fcntl.h>#include <asm/unistd.h>#include <stdarg.h>#include <getopt.h>#include <syslog.h>#include "backwards_compat.c"extern long delete_module(const char *, unsigned int);#define error(log, fmt, ...) message(log, "ERROR: ", fmt , ## __VA_ARGS__)#define warn(log, fmt, ...) message(log, "WARNING: ", fmt , ## __VA_ARGS__)#define info(log, fmt, ...) \	do { if (verbose) message(log, "", fmt , ## __VA_ARGS__); } while(0)#define fatal(log, fmt, ...) \	do { message(log, "FATAL: ", fmt , ## __VA_ARGS__); exit(1); } while(0)static void message(int log, const char *prefix, const char *fmt, ...)__attribute__ ((format (printf, 3, 4)));static int getlen(const char *fmt, va_list ap){	int ret;	/* glibcs before 2.1 return -1 on "can't fit". */	ret = vsnprintf(NULL, 0, fmt, ap);	if (ret >= 0)		return ret;	return 4096;}static void message(int log, const char *prefix, const char *fmt, ...){	char *buf;	va_list arglist;	int len;	va_start(arglist, fmt);	len = strlen(prefix) + getlen(fmt, arglist) + 1;	buf = malloc(len);	/* Must restart args on some archs */	va_start(arglist, fmt);	strcpy(buf, prefix);	vsnprintf(buf + strlen(buf), len, fmt, arglist);	if (log)		// modutils-2.4 would buffer these up		syslog(LOG_INFO, buf);	else		fprintf(stderr, "%s", buf);}static char *next_field(const char *line){	const char *rest;	rest = line + strcspn(line, " ");	rest += strspn(rest, " ");	return (char *)rest;}/* Report that the module is in use. */static void mod_in_use(int log, const char *modname, char *usedby){	/* New /proc/modules uses a single "-" to mean "nothing".  Old           one just puts nothing there. */	if (usedby[0] == '-' || strcmp(usedby, "") == 0) {		error(log, "Module %s is in use\n", modname);		return;	}	/* New /proc/modules *always* prints commas (even if only one) */	if (strchr(usedby, ','))		/* Blatt over trailing comma for neatness */		usedby[strcspn(usedby, " \n")-1] = '\0';	else {		/* Older /proc/modules just put them as                   space-separated names.  Blatt over trailing \n */		usedby[strlen(usedby)-1] = '\0';	}	error(log, "Module %s is in use by %s\n", modname, usedby);}/* If we can check usage without entering kernel, do so. */static int check_usage(int log, const char *modname){	FILE *module_list;	char line[10240], name[64];	unsigned long size, refs;	int scanned;	module_list = fopen("/proc/modules", "r");	if (!module_list) {		if (errno == ENOENT) /* /proc may not be mounted. */			return 0;		fatal(log, "can't open /proc/modules: %s\n", strerror(errno));	}	while (fgets(line, sizeof(line)-1, module_list) != NULL) {		if (strchr(line, '\n') == NULL) {			fatal(log, "V. v. long line broke rmmod.\n");			exit(1);		}		scanned = sscanf(line, "%s %lu %lu", name, &size, &refs);		if (strcmp(name, modname) != 0)			continue;		if (scanned < 2)			fatal(log, "Unknown format in /proc/modules: %s\n",			      line);		if (scanned == 2)			fatal(log, "Kernel does not have unload support.\n");		/* Hand it fields 3 onwards. */		if (refs != 0)			mod_in_use(log, modname,				   next_field(next_field(next_field(line))));		goto out;	}	error(log, "Module %s does not exist in /proc/modules\n", modname);	refs = 1; out:	fclose(module_list);	return (refs == 0) ? 0 : -EINVAL;}static void filename2modname(char *modname, const char *filename){	const char *afterslash;	unsigned int i;	afterslash = strrchr(filename, '/');	if (!afterslash)		afterslash = filename;	else		afterslash++;	/* Convert to underscores, stop at first . */	for (i = 0; afterslash[i] && afterslash[i] != '.'; i++) {		if (afterslash[i] == '-')			modname[i] = '_';		else			modname[i] = afterslash[i];	}	modname[i] = '\0';}static int rmmod(int log, int verbose, const char *path, int flags){	long ret;	char name[strlen(path) + 1];	filename2modname(name, path);	if ((flags & O_NONBLOCK) && !(flags & O_TRUNC)) {		if (check_usage(log, name) != 0)			return 1;	}	info(log, "rmmod %s, wait=%s%s\n", name,	     (flags & O_NONBLOCK) ? "no" : "yes",	     (flags & O_TRUNC) ? " force" : "");	ret = delete_module(name, flags);	if (ret != 0)		error(log, "Removing '%s': %s\n", name, strerror(errno));	return ret;}static struct option options[] = { { "all", 0, NULL, 'a' },				   { "force", 0, NULL, 'f' },				   { "help", 0, NULL, 'h' },				   { "syslog", 0, NULL, 's' },				   { "verbose", 0, NULL, 'v' },				   { "version", 0, NULL, 'V' },				   { "wait", 0, NULL, 'w' },				   { NULL, 0, NULL, 0 } };static void print_usage(const char *progname){	fprintf(stderr,		"Usage: %s [-fhswvV] modulename ...\n"		// " -a (or --all) to remove all modules (no names needed)\n"		" -f (or --force) forces a module unload, and may crash your\n"		"    machine.  This requires the Forced Module Removal option\n"		"    when the kernel was compiled.\n"		" -h (or --help) prints this help text\n"		" -s (or --syslog) says use syslog, not stderr\n"		" -v (or --verbose) enables more messages\n"		" -V (or --version) prints the version code\n"		" -w (or --wait) begins a module removal even if it is used\n"		"    and will stop new users from accessing the module (so it\n"		"    should eventually fall to zero).\n"		, progname);	exit(1);}int main(int argc, char *argv[]){	/* O_EXCL so kernels can spot old rmmod versions */	unsigned int flags = O_NONBLOCK|O_EXCL;	int i, opt, all = 0, log = 0, verbose = 0;	int ret, err;	try_old_version("rmmod", argv);	while ((opt = getopt_long(argc, argv,			"afh?swvV", options, NULL)) != EOF) {		switch (opt) {		case 'a':	// --all			all = 1;			break;		case 'f':	// --force			flags |= O_TRUNC;			break;		case 's':	// --syslog			openlog("rmmod", LOG_CONS, LOG_DAEMON);			log = 1;			break;		case 'w':	// --wait			flags &= ~O_NONBLOCK;			break;		case 'v':	// --verbose			verbose++;			break;		case 'V':	// --version			puts(PACKAGE " version " VERSION);			return 0;		default:			print_usage(argv[0]);		}	}	if (!argv[optind]) {		if (all) {			/* FIXME implement */			exit(1);		}		fprintf(stderr, "no module names given\n");		print_usage(argv[0]);	}	err = 0;	/* remove each specified module */	for (i = optind; i < argc; i++) {		ret = rmmod(log, verbose, argv[i], flags);		if (ret!=0)			err = ret;	}	if (log)		closelog();	exit(err);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -