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

📄 err_inject.txt

📁 linux 内核源代码
💻 TXT
📖 第 1 页 / 共 2 页
字号:
IPF Machine Check (MC) error inject tool========================================IPF Machine Check (MC) error inject tool is used to inject MCerrors from Linux. The tool is a test bed for IPF MC work flow includinghardware correctable error handling, OS recoverable error handling, MCevent logging, etc.The tool includes two parts: a kernel driver and a user applicationsample. The driver provides interface to PAL to inject errorand query error injection capabilities. The driver code is inarch/ia64/kernel/err_inject.c. The application sample (shown below)provides a combination of various errors and calls the driver's interface(sysfs interface) to inject errors or query error injection capabilities.The tool can be used to test Intel IPF machine MC handling capabilities.It's especially useful for people who can not access hardware MC injectiontool to inject error. It's also very useful to integrate with othersoftware test suits to do stressful testing on IPF.Below is a sample application as part of the whole tool. The samplecan be used as a working test tool. Or it can be expanded to includemore features. It also can be a integrated into a library or other userapplication to have more thorough test.The sample application takes err.conf as error configuration input. GCCcompiles the code. After you install err_inject driver, you can runthis sample application to inject errors.Errata: Itanium 2 Processors Specification Update lists some errata againstthe pal_mc_error_inject PAL procedure. The following err.conf has been testedon latest Montecito PAL.err.conf:#This is configuration file for err_inject_tool.#The format of the each line is:#cpu, loop, interval, err_type_info, err_struct_info, err_data_buffer#where#	cpu: logical cpu number the error will be inject in.#	loop: times the error will be injected.#	interval: In second. every so often one error is injected.#	err_type_info, err_struct_info: PAL parameters.##Note: All values are hex w/o or w/ 0x prefix.#On cpu2, inject only total 0x10 errors, interval 5 seconds#corrected, data cache, hier-2, physical addr(assigned by tool code).#working on Montecito latest PAL.2, 10, 5, 4101, 95#On cpu4, inject and consume total 0x10 errors, interval 5 seconds#corrected, data cache, hier-2, physical addr(assigned by tool code).#working on Montecito latest PAL.4, 10, 5, 4109, 95#On cpu15, inject and consume total 0x10 errors, interval 5 seconds#recoverable, DTR0, hier-2.#working on Montecito latest PAL.0xf, 0x10, 5, 4249, 15The sample application source code:err_injection_tool.c:/* * 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, GOOD TITLE or * NON INFRINGEMENT.  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. * * Copyright (C) 2006 Intel Co *	Fenghua Yu <fenghua.yu@intel.com> * */#include <sys/types.h>#include <sys/stat.h>#include <fcntl.h>#include <stdio.h>#include <sched.h>#include <unistd.h>#include <stdlib.h>#include <stdarg.h>#include <string.h>#include <errno.h>#include <time.h>#include <sys/ipc.h>#include <sys/sem.h>#include <sys/wait.h>#include <sys/mman.h>#include <sys/shm.h>#define MAX_FN_SIZE 		256#define MAX_BUF_SIZE 		256#define DATA_BUF_SIZE 		256#define NR_CPUS 		512#define MAX_TASK_NUM		2048#define MIN_INTERVAL		5	// seconds#define	ERR_DATA_BUFFER_SIZE 	3	// Three 8-byte.#define PARA_FIELD_NUM		5#define MASK_SIZE		(NR_CPUS/64)#define PATH_FORMAT "/sys/devices/system/cpu/cpu%d/err_inject/"int sched_setaffinity(pid_t pid, unsigned int len, unsigned long *mask);int verbose;#define vbprintf if (verbose) printfint log_info(int cpu, const char *fmt, ...){	FILE *log;	char fn[MAX_FN_SIZE];	char buf[MAX_BUF_SIZE];	va_list args;	sprintf(fn, "%d.log", cpu);	log=fopen(fn, "a+");	if (log==NULL) {		perror("Error open:");		return -1;	}	va_start(args, fmt);	vprintf(fmt, args);	memset(buf, 0, MAX_BUF_SIZE);	vsprintf(buf, fmt, args);	va_end(args);	fwrite(buf, sizeof(buf), 1, log);	fclose(log);	return 0;}typedef unsigned long u64;typedef unsigned int  u32;typedef union err_type_info_u {	struct {		u64	mode		: 3,	/* 0-2 */			err_inj		: 3,	/* 3-5 */			err_sev		: 2,	/* 6-7 */			err_struct	: 5,	/* 8-12 */			struct_hier	: 3,	/* 13-15 */			reserved	: 48;	/* 16-63 */	} err_type_info_u;	u64	err_type_info;} err_type_info_t;typedef union err_struct_info_u {	struct {		u64	siv		: 1,	/* 0	 */			c_t		: 2,	/* 1-2	 */			cl_p		: 3,	/* 3-5	 */			cl_id		: 3,	/* 6-8	 */			cl_dp		: 1,	/* 9	 */			reserved1	: 22,	/* 10-31 */			tiv		: 1,	/* 32	 */			trigger		: 4,	/* 33-36 */			trigger_pl 	: 3,	/* 37-39 */			reserved2 	: 24;	/* 40-63 */	} err_struct_info_cache;	struct {		u64	siv		: 1,	/* 0	 */			tt		: 2,	/* 1-2	 */			tc_tr		: 2,	/* 3-4	 */			tr_slot		: 8,	/* 5-12	 */			reserved1	: 19,	/* 13-31 */			tiv		: 1,	/* 32	 */			trigger		: 4,	/* 33-36 */			trigger_pl 	: 3,	/* 37-39 */			reserved2 	: 24;	/* 40-63 */	} err_struct_info_tlb;	struct {		u64	siv		: 1,	/* 0	 */			regfile_id	: 4,	/* 1-4	 */			reg_num		: 7,	/* 5-11	 */			reserved1	: 20,	/* 12-31 */			tiv		: 1,	/* 32	 */			trigger		: 4,	/* 33-36 */			trigger_pl 	: 3,	/* 37-39 */			reserved2 	: 24;	/* 40-63 */	} err_struct_info_register;	struct {		u64	reserved;	} err_struct_info_bus_processor_interconnect;	u64	err_struct_info;} err_struct_info_t;typedef union err_data_buffer_u {	struct {		u64	trigger_addr;		/* 0-63		*/		u64	inj_addr;		/* 64-127 	*/		u64	way		: 5,	/* 128-132	*/			index		: 20,	/* 133-152	*/					: 39;	/* 153-191	*/	} err_data_buffer_cache;	struct {		u64	trigger_addr;		/* 0-63		*/		u64	inj_addr;		/* 64-127 	*/		u64	way		: 5,	/* 128-132	*/			index		: 20,	/* 133-152	*/			reserved	: 39;	/* 153-191	*/	} err_data_buffer_tlb;	struct {		u64	trigger_addr;		/* 0-63		*/	} err_data_buffer_register;	struct {		u64	reserved;		/* 0-63		*/	} err_data_buffer_bus_processor_interconnect;	u64 err_data_buffer[ERR_DATA_BUFFER_SIZE];} err_data_buffer_t;typedef union capabilities_u {	struct {		u64	i		: 1,			d		: 1,			rv		: 1,			tag		: 1,			data		: 1,			mesi		: 1,			dp		: 1,			reserved1	: 3,			pa		: 1,			va		: 1,			wi		: 1,			reserved2	: 20,			trigger		: 1,			trigger_pl	: 1,			reserved3	: 30;	} capabilities_cache;	struct {		u64	d		: 1,			i		: 1,			rv		: 1,			tc		: 1,			tr		: 1,			reserved1	: 27,			trigger		: 1,			trigger_pl	: 1,			reserved2	: 30;	} capabilities_tlb;	struct {		u64	gr_b0		: 1,			gr_b1		: 1,			fr		: 1,			br		: 1,			pr		: 1,			ar		: 1,			cr		: 1,			rr		: 1,			pkr		: 1,			dbr		: 1,			ibr		: 1,			pmc		: 1,			pmd		: 1,			reserved1	: 3,			regnum		: 1,			reserved2	: 15,			trigger		: 1,			trigger_pl	: 1,			reserved3	: 30;	} capabilities_register;	struct {		u64	reserved;	} capabilities_bus_processor_interconnect;} capabilities_t;typedef struct resources_s {	u64	ibr0		: 1,		ibr2		: 1,		ibr4		: 1,		ibr6		: 1,		dbr0		: 1,		dbr2		: 1,		dbr4		: 1,		dbr6		: 1,		reserved	: 48;} resources_t;long get_page_size(void){	long page_size=sysconf(_SC_PAGESIZE);	return page_size;}#define PAGE_SIZE (get_page_size()==-1?0x4000:get_page_size())#define SHM_SIZE (2*PAGE_SIZE*NR_CPUS)#define SHM_VA 0x2000000100000000int shmid;void *shmaddr;int create_shm(void){	key_t key;	char fn[MAX_FN_SIZE];	/* cpu0 is always existing */	sprintf(fn, PATH_FORMAT, 0);	if ((key = ftok(fn, 's')) == -1) {		perror("ftok");		return -1;	}	shmid = shmget(key, SHM_SIZE, 0644 | IPC_CREAT);	if (shmid == -1) {		if (errno==EEXIST) {			shmid = shmget(key, SHM_SIZE, 0);			if (shmid == -1) {				perror("shmget");				return -1;			}		}		else {			perror("shmget");			return -1;		}	}	vbprintf("shmid=%d", shmid);	/* connect to the segment: */	shmaddr = shmat(shmid, (void *)SHM_VA, 0);	if (shmaddr == (void*)-1) {		perror("shmat");		return -1;	}	memset(shmaddr, 0, SHM_SIZE);	mlock(shmaddr, SHM_SIZE);	return 0;}int free_shm(){	munlock(shmaddr, SHM_SIZE);        shmdt(shmaddr);	semctl(shmid, 0, IPC_RMID);	return 0;}#ifdef _SEM_SEMUN_UNDEFINEDunion semun{	int val;	struct semid_ds *buf;	unsigned short int *array;	struct seminfo *__buf;};#endifu32 mode=1; /* 1: physical mode; 2: virtual mode. */int one_lock=1;key_t key[NR_CPUS];int semid[NR_CPUS];int create_sem(int cpu){	union semun arg;	char fn[MAX_FN_SIZE];	int sid;	sprintf(fn, PATH_FORMAT, cpu);	sprintf(fn, "%s/%s", fn, "err_type_info");	if ((key[cpu] = ftok(fn, 'e')) == -1) {		perror("ftok");		return -1;	}	if (semid[cpu]!=0)		return 0;	/* clear old semaphore */	if ((sid = semget(key[cpu], 1, 0)) != -1)		semctl(sid, 0, IPC_RMID);	/* get one semaphore */	if ((semid[cpu] = semget(key[cpu], 1, IPC_CREAT | IPC_EXCL)) == -1) {		perror("semget");		printf("Please remove semaphore with key=0x%lx, then run the tool.\n",			(u64)key[cpu]);		return -1;	}	vbprintf("semid[%d]=0x%lx, key[%d]=%lx\n",cpu,(u64)semid[cpu],cpu,		(u64)key[cpu]);	/* initialize the semaphore to 1: */	arg.val = 1;	if (semctl(semid[cpu], 0, SETVAL, arg) == -1) {		perror("semctl");		return -1;	}	return 0;}static int lock(int cpu){	struct sembuf lock;	lock.sem_num = cpu;	lock.sem_op = 1;	semop(semid[cpu], &lock, 1);        return 0;}static int unlock(int cpu){	struct sembuf unlock;	unlock.sem_num = cpu;	unlock.sem_op = -1;	semop(semid[cpu], &unlock, 1);        return 0;}void free_sem(int cpu){	semctl(semid[cpu], 0, IPC_RMID);}int wr_multi(char *fn, unsigned long *data, int size){	int fd;	char buf[MAX_BUF_SIZE];	int ret;	if (size==1)		sprintf(buf, "%lx", *data);	else if (size==3)		sprintf(buf, "%lx,%lx,%lx", data[0], data[1], data[2]);	else {		fprintf(stderr,"write to file with wrong size!\n");		return -1;	}	fd=open(fn, O_RDWR);	if (!fd) {		perror("Error:");		return -1;	}	ret=write(fd, buf, sizeof(buf));	close(fd);	return ret;}int wr(char *fn, unsigned long data){	return wr_multi(fn, &data, 1);}int rd(char *fn, unsigned long *data){	int fd;	char buf[MAX_BUF_SIZE];	fd=open(fn, O_RDONLY);	if (fd<0) {		perror("Error:");		return -1;	}	read(fd, buf, MAX_BUF_SIZE);	*data=strtoul(buf, NULL, 16);	close(fd);	return 0;}int rd_status(char *path, int *status){	char fn[MAX_FN_SIZE];	sprintf(fn, "%s/status", path);	if (rd(fn, (u64*)status)<0) {		perror("status reading error.\n");		return -1;	}	return 0;}int rd_capabilities(char *path, u64 *capabilities){	char fn[MAX_FN_SIZE];	sprintf(fn, "%s/capabilities", path);	if (rd(fn, capabilities)<0) {		perror("capabilities reading error.\n");		return -1;	}	return 0;}int rd_all(char *path){	unsigned long err_type_info, err_struct_info, err_data_buffer;	int status;	unsigned long capabilities, resources;	char fn[MAX_FN_SIZE];	sprintf(fn, "%s/err_type_info", path);	if (rd(fn, &err_type_info)<0) {		perror("err_type_info reading error.\n");		return -1;	}	printf("err_type_info=%lx\n", err_type_info);	sprintf(fn, "%s/err_struct_info", path);	if (rd(fn, &err_struct_info)<0) {		perror("err_struct_info reading error.\n");		return -1;	}	printf("err_struct_info=%lx\n", err_struct_info);	sprintf(fn, "%s/err_data_buffer", path);	if (rd(fn, &err_data_buffer)<0) {		perror("err_data_buffer reading error.\n");		return -1;	}	printf("err_data_buffer=%lx\n", err_data_buffer);

⌨️ 快捷键说明

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