| 
									
										
										
										
											2011-03-30 16:30:11 +02:00
										 |  |  | /*  cpufreq-bench CPUFreq microbenchmark
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  Copyright (C) 2008 Christian Kornacker <ckornacker@suse.de> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  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 <stdarg.h>
 | 
					
						
							|  |  |  | #include <string.h>
 | 
					
						
							|  |  |  | #include <time.h>
 | 
					
						
							|  |  |  | #include <dirent.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <sys/utsname.h>
 | 
					
						
							|  |  |  | #include <sys/types.h>
 | 
					
						
							|  |  |  | #include <sys/stat.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "parse.h"
 | 
					
						
							|  |  |  | #include "config.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * converts priority string to priority | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @param str string that represents a scheduler priority | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @retval priority | 
					
						
							|  |  |  |  * @retval SCHED_ERR when the priority doesn't exit | 
					
						
							|  |  |  |  **/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | enum sched_prio string_to_prio(const char *str) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (strncasecmp("high", str, strlen(str)) == 0) | 
					
						
							|  |  |  | 		return  SCHED_HIGH; | 
					
						
							|  |  |  | 	else if (strncasecmp("default", str, strlen(str)) == 0) | 
					
						
							|  |  |  | 		return SCHED_DEFAULT; | 
					
						
							|  |  |  | 	else if (strncasecmp("low", str, strlen(str)) == 0) | 
					
						
							|  |  |  | 		return SCHED_LOW; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		return SCHED_ERR; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * create and open logfile | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @param dir directory in which the logfile should be created | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @retval logfile on success | 
					
						
							|  |  |  |  * @retval NULL when the file can't be created | 
					
						
							|  |  |  |  **/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | FILE *prepare_output(const char *dirname) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	FILE *output = NULL; | 
					
						
							|  |  |  | 	int len; | 
					
						
							|  |  |  | 	char *filename; | 
					
						
							|  |  |  | 	struct utsname sysdata; | 
					
						
							|  |  |  | 	DIR *dir; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	dir = opendir(dirname); | 
					
						
							|  |  |  | 	if (dir == NULL) { | 
					
						
							|  |  |  | 		if (mkdir(dirname, 0755)) { | 
					
						
							|  |  |  | 			perror("mkdir"); | 
					
						
							|  |  |  | 			fprintf(stderr, "error: Cannot create dir %s\n", | 
					
						
							|  |  |  | 				dirname); | 
					
						
							|  |  |  | 			return NULL; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	len = strlen(dirname) + 30; | 
					
						
							|  |  |  | 	filename = malloc(sizeof(char) * len); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (uname(&sysdata) == 0) { | 
					
						
							|  |  |  | 		len += strlen(sysdata.nodename) + strlen(sysdata.release); | 
					
						
							|  |  |  | 		filename = realloc(filename, sizeof(char) * len); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-19 19:20:12 +02:00
										 |  |  | 		if (filename == NULL) { | 
					
						
							| 
									
										
										
										
											2011-03-30 16:30:11 +02:00
										 |  |  | 			perror("realloc"); | 
					
						
							|  |  |  | 			return NULL; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-19 19:20:12 +02:00
										 |  |  | 		snprintf(filename, len - 1, "%s/benchmark_%s_%s_%li.log", | 
					
						
							| 
									
										
										
										
											2011-03-30 16:30:11 +02:00
										 |  |  | 			dirname, sysdata.nodename, sysdata.release, time(NULL)); | 
					
						
							|  |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2011-04-19 19:20:12 +02:00
										 |  |  | 		snprintf(filename, len - 1, "%s/benchmark_%li.log", | 
					
						
							|  |  |  | 			dirname, time(NULL)); | 
					
						
							| 
									
										
										
										
											2011-03-30 16:30:11 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	dprintf("logilename: %s\n", filename); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-19 19:20:12 +02:00
										 |  |  | 	output = fopen(filename, "w+"); | 
					
						
							|  |  |  | 	if (output == NULL) { | 
					
						
							| 
									
										
										
										
											2011-03-30 16:30:11 +02:00
										 |  |  | 		perror("fopen"); | 
					
						
							|  |  |  | 		fprintf(stderr, "error: unable to open logfile\n"); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	fprintf(stdout, "Logfile: %s\n", filename); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	free(filename); | 
					
						
							|  |  |  | 	fprintf(output, "#round load sleep performance powersave percentage\n"); | 
					
						
							|  |  |  | 	return output; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * returns the default config | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @retval default config on success | 
					
						
							|  |  |  |  * @retval NULL when the output file can't be created | 
					
						
							|  |  |  |  **/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct config *prepare_default_config() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct config *config = malloc(sizeof(struct config)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	dprintf("loading defaults\n"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	config->sleep = 500000; | 
					
						
							|  |  |  | 	config->load = 500000; | 
					
						
							|  |  |  | 	config->sleep_step = 500000; | 
					
						
							|  |  |  | 	config->load_step = 500000; | 
					
						
							|  |  |  | 	config->cycles = 5; | 
					
						
							|  |  |  | 	config->rounds = 50; | 
					
						
							| 
									
										
										
										
											2011-04-19 19:20:12 +02:00
										 |  |  | 	config->cpu = 0; | 
					
						
							| 
									
										
										
										
											2011-03-30 16:30:11 +02:00
										 |  |  | 	config->prio = SCHED_HIGH; | 
					
						
							|  |  |  | 	config->verbose = 0; | 
					
						
							|  |  |  | 	strncpy(config->governor, "ondemand", 8); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	config->output = stdout; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef DEFAULT_CONFIG_FILE
 | 
					
						
							|  |  |  | 	if (prepare_config(DEFAULT_CONFIG_FILE, config)) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 	return config; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * parses config file and returns the config to the caller | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @param path config file name | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @retval 1 on error | 
					
						
							|  |  |  |  * @retval 0 on success | 
					
						
							|  |  |  |  **/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int prepare_config(const char *path, struct config *config) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	size_t len = 0; | 
					
						
							|  |  |  | 	char *opt, *val, *line = NULL; | 
					
						
							|  |  |  | 	FILE *configfile = fopen(path, "r"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (config == NULL) { | 
					
						
							|  |  |  | 		fprintf(stderr, "error: config is NULL\n"); | 
					
						
							|  |  |  | 		return 1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (configfile == NULL) { | 
					
						
							|  |  |  | 		perror("fopen"); | 
					
						
							| 
									
										
										
										
											2011-04-19 19:20:12 +02:00
										 |  |  | 		fprintf(stderr, "error: unable to read configfile\n"); | 
					
						
							| 
									
										
										
										
											2011-03-30 16:30:11 +02:00
										 |  |  | 		free(config); | 
					
						
							|  |  |  | 		return 1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-19 19:20:12 +02:00
										 |  |  | 	while (getline(&line, &len, configfile) != -1) { | 
					
						
							| 
									
										
										
										
											2011-03-30 16:30:11 +02:00
										 |  |  | 		if (line[0] == '#' || line[0] == ' ') | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		sscanf(line, "%as = %as", &opt, &val); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		dprintf("parsing: %s -> %s\n", opt, val); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (strncmp("sleep", opt, strlen(opt)) == 0) | 
					
						
							|  |  |  | 			sscanf(val, "%li", &config->sleep); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-19 19:20:12 +02:00
										 |  |  | 		else if (strncmp("load", opt, strlen(opt)) == 0) | 
					
						
							| 
									
										
										
										
											2011-03-30 16:30:11 +02:00
										 |  |  | 			sscanf(val, "%li", &config->load); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-19 19:20:12 +02:00
										 |  |  | 		else if (strncmp("load_step", opt, strlen(opt)) == 0) | 
					
						
							| 
									
										
										
										
											2011-03-30 16:30:11 +02:00
										 |  |  | 			sscanf(val, "%li", &config->load_step); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-19 19:20:12 +02:00
										 |  |  | 		else if (strncmp("sleep_step", opt, strlen(opt)) == 0) | 
					
						
							| 
									
										
										
										
											2011-03-30 16:30:11 +02:00
										 |  |  | 			sscanf(val, "%li", &config->sleep_step); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-19 19:20:12 +02:00
										 |  |  | 		else if (strncmp("cycles", opt, strlen(opt)) == 0) | 
					
						
							| 
									
										
										
										
											2011-03-30 16:30:11 +02:00
										 |  |  | 			sscanf(val, "%u", &config->cycles); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-19 19:20:12 +02:00
										 |  |  | 		else if (strncmp("rounds", opt, strlen(opt)) == 0) | 
					
						
							| 
									
										
										
										
											2011-03-30 16:30:11 +02:00
										 |  |  | 			sscanf(val, "%u", &config->rounds); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-19 19:20:12 +02:00
										 |  |  | 		else if (strncmp("verbose", opt, strlen(opt)) == 0) | 
					
						
							| 
									
										
										
										
											2011-03-30 16:30:11 +02:00
										 |  |  | 			sscanf(val, "%u", &config->verbose); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-19 19:20:12 +02:00
										 |  |  | 		else if (strncmp("output", opt, strlen(opt)) == 0) | 
					
						
							| 
									
										
										
										
											2011-03-30 16:30:11 +02:00
										 |  |  | 			config->output = prepare_output(val);  | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-19 19:20:12 +02:00
										 |  |  | 		else if (strncmp("cpu", opt, strlen(opt)) == 0) | 
					
						
							| 
									
										
										
										
											2011-03-30 16:30:11 +02:00
										 |  |  | 			sscanf(val, "%u", &config->cpu); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-19 19:20:12 +02:00
										 |  |  | 		else if (strncmp("governor", opt, 14) == 0) | 
					
						
							| 
									
										
										
										
											2011-03-30 16:30:11 +02:00
										 |  |  | 			strncpy(config->governor, val, 14); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		else if (strncmp("priority", opt, strlen(opt)) == 0) { | 
					
						
							| 
									
										
										
										
											2011-04-19 19:20:12 +02:00
										 |  |  | 			if (string_to_prio(val) != SCHED_ERR) | 
					
						
							| 
									
										
										
										
											2011-03-30 16:30:11 +02:00
										 |  |  | 				config->prio = string_to_prio(val); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	free(line); | 
					
						
							|  |  |  | 	free(opt); | 
					
						
							|  |  |  | 	free(val); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } |