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

📄 main.c

📁 xen虚拟机源代码安装包
💻 C
字号:
/*\ *  Copyright (C) International Business Machines  Corp., 2005 *  Author(s): Anthony Liguori <aliguori@us.ibm.com> * *  Xen Console Daemon * *  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; under 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA\*/#include <getopt.h>#include <stdlib.h>#include <stdio.h>#include <errno.h>#include <unistd.h>#include <string.h>#include <signal.h>#include <sys/types.h>#include "xenctrl.h"#include "utils.h"#include "io.h"int log_reload = 0;int log_guest = 0;int log_hv = 0;int log_time_hv = 0;int log_time_guest = 0;char *log_dir = NULL;int discard_overflowed_data = 1;static void handle_hup(int sig){        log_reload = 1;}static void usage(char *name){	printf("Usage: %s [-h] [-V] [-v] [-i] [--log=none|guest|hv|all] [--log-dir=DIR] [--pid-file=PATH] [-t, --timestamp=none|guest|hv|all] [-o, --overflow-data=discard|keep]\n", name);}static void version(char *name){	printf("Xen Console Daemon 3.0\n");}int main(int argc, char **argv){	const char *sopts = "hVvit:o:";	struct option lopts[] = {		{ "help", 0, 0, 'h' },		{ "version", 0, 0, 'V' },		{ "verbose", 0, 0, 'v' },		{ "interactive", 0, 0, 'i' },		{ "log", 1, 0, 'l' },		{ "log-dir", 1, 0, 'r' },		{ "pid-file", 1, 0, 'p' },		{ "timestamp", 1, 0, 't' },		{ "overflow-data", 1, 0, 'o'},		{ 0 },	};	bool is_interactive = false;	int ch;	int syslog_option = LOG_CONS;	int syslog_mask = LOG_WARNING;	int opt_ind = 0;	char *pidfile = NULL;	while ((ch = getopt_long(argc, argv, sopts, lopts, &opt_ind)) != -1) {		switch (ch) {		case 'h':			usage(argv[0]);			exit(0);		case 'V':			version(argv[0]);			exit(0);		case 'v':			syslog_option |= LOG_PERROR;			syslog_mask = LOG_DEBUG;			break;		case 'i':			is_interactive = true;			break;		case 'l':		        if (!strcmp(optarg, "all")) {			      log_hv = 1;			      log_guest = 1;			} else if (!strcmp(optarg, "hv")) {			      log_hv = 1;			} else if (!strcmp(optarg, "guest")) {			      log_guest = 1;			}			break;		case 'r':		        log_dir = strdup(optarg);			break;		case 'p':		        pidfile = strdup(optarg);			break;		case 't':			if (!strcmp(optarg, "all")) {				log_time_hv = 1;				log_time_guest = 1;			} else if (!strcmp(optarg, "hv")) {				log_time_hv = 1;			} else if (!strcmp(optarg, "guest")) {				log_time_guest = 1;			} else if (!strcmp(optarg, "none")) {				log_time_guest = 0;				log_time_hv = 0;			}			break;		case 'o':			if (!strcmp(optarg, "keep")) {				discard_overflowed_data = 0;			} else if (!strcmp(optarg, "discard")) {				discard_overflowed_data = 1;			}			break;		case '?':			fprintf(stderr,				"Try `%s --help' for more information\n",				argv[0]);			exit(EINVAL);		}	}	if (!log_dir) {		log_dir = strdup("/var/log/xen/console");	}	if (geteuid() != 0) {		fprintf(stderr, "%s requires root to run.\n", argv[0]);		exit(EPERM);	}	signal(SIGHUP, handle_hup);	openlog("xenconsoled", syslog_option, LOG_DAEMON);	setlogmask(syslog_mask);	if (!is_interactive) {		daemonize(pidfile ? pidfile : "/var/run/xenconsoled.pid");	}	if (!xen_setup())		exit(1);	enum_domains();	handle_io();	closelog();	free(log_dir);	free(pidfile);	return 0;}/* * Local variables: *  c-file-style: "linux" *  indent-tabs-mode: t *  c-indent-level: 8 *  c-basic-offset: 8 *  tab-width: 8 * End: */

⌨️ 快捷键说明

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