cmdline.c 5.09 KB
Newer Older
Linus Torvalds's avatar
Linus Torvalds committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*
 * linux/lib/cmdline.c
 * Helper functions generally used for parsing kernel command line
 * and module options.
 *
 * Code and copyrights come from init/main.c and arch/i386/kernel/setup.c.
 *
 * This source code is licensed under the GNU General Public License,
 * Version 2.  See the file COPYING for more details.
 *
 * GNU Indent formatting options for this file: -kr -i8 -npsl -pcs
 *
 */

15
#include <linux/export.h>
Linus Torvalds's avatar
Linus Torvalds committed
16 17
#include <linux/kernel.h>
#include <linux/string.h>
18
#include <linux/ctype.h>
Linus Torvalds's avatar
Linus Torvalds committed
19

20 21 22 23 24 25
/*
 *	If a hyphen was found in get_option, this will handle the
 *	range of numbers, M-N.  This will expand the range and insert
 *	the values[M, M+1, ..., N] into the ints array in get_options.
 */

26
static int get_range(char **str, int *pint, int n)
27 28 29 30 31 32
{
	int x, inc_counter, upper_range;

	(*str)++;
	upper_range = simple_strtol((*str), NULL, 0);
	inc_counter = upper_range - *pint;
33
	for (x = *pint; n && x < upper_range; x++, n--)
34 35 36
		*pint++ = x;
	return inc_counter;
}
Linus Torvalds's avatar
Linus Torvalds committed
37 38 39 40 41 42 43 44 45 46

/**
 *	get_option - Parse integer from an option string
 *	@str: option string
 *	@pint: (output) integer value parsed from @str
 *
 *	Read an int from an option string; if available accept a subsequent
 *	comma as well.
 *
 *	Return values:
47 48 49 50
 *	0 - no int in string
 *	1 - int found, no subsequent comma
 *	2 - int found including a subsequent comma
 *	3 - hyphen found to denote a range
Linus Torvalds's avatar
Linus Torvalds committed
51 52
 */

53
int get_option(char **str, int *pint)
Linus Torvalds's avatar
Linus Torvalds committed
54 55 56 57 58
{
	char *cur = *str;

	if (!cur || !(*cur))
		return 0;
59
	*pint = simple_strtol(cur, str, 0);
Linus Torvalds's avatar
Linus Torvalds committed
60 61 62 63 64 65
	if (cur == *str)
		return 0;
	if (**str == ',') {
		(*str)++;
		return 2;
	}
66 67
	if (**str == '-')
		return 3;
Linus Torvalds's avatar
Linus Torvalds committed
68 69 70

	return 1;
}
71
EXPORT_SYMBOL(get_option);
Linus Torvalds's avatar
Linus Torvalds committed
72 73 74 75 76 77 78 79

/**
 *	get_options - Parse a string into a list of integers
 *	@str: String to be parsed
 *	@nints: size of integer array
 *	@ints: integer array
 *
 *	This function parses a string containing a comma-separated
80 81
 *	list of integers, a hyphen-separated range of _positive_ integers,
 *	or a combination of both.  The parse halts when the array is
Linus Torvalds's avatar
Linus Torvalds committed
82 83 84 85 86 87 88
 *	full, or when no more numbers can be retrieved from the
 *	string.
 *
 *	Return value is the character in the string which caused
 *	the parse to end (typically a null terminator, if @str is
 *	completely parseable).
 */
89

Linus Torvalds's avatar
Linus Torvalds committed
90 91 92 93 94
char *get_options(const char *str, int nints, int *ints)
{
	int res, i = 1;

	while (i < nints) {
95
		res = get_option((char **)&str, ints + i);
Linus Torvalds's avatar
Linus Torvalds committed
96 97
		if (res == 0)
			break;
98 99
		if (res == 3) {
			int range_nums;
100
			range_nums = get_range((char **)&str, ints + i, nints - i);
101 102 103 104 105 106 107 108 109
			if (range_nums < 0)
				break;
			/*
			 * Decrement the result by one to leave out the
			 * last number in the range.  The next iteration
			 * will handle the upper number in the range
			 */
			i += (range_nums - 1);
		}
Linus Torvalds's avatar
Linus Torvalds committed
110 111 112 113 114 115 116
		i++;
		if (res == 1)
			break;
	}
	ints[0] = i - 1;
	return (char *)str;
}
117
EXPORT_SYMBOL(get_options);
Linus Torvalds's avatar
Linus Torvalds committed
118 119 120 121

/**
 *	memparse - parse a string with mem suffixes into a number
 *	@ptr: Where parse begins
122
 *	@retptr: (output) Optional pointer to next char after parse completes
Linus Torvalds's avatar
Linus Torvalds committed
123 124
 *
 *	Parses a string into a number.  The number stored at @ptr is
125
 *	potentially suffixed with K, M, G, T, P, E.
Linus Torvalds's avatar
Linus Torvalds committed
126 127
 */

128
unsigned long long memparse(const char *ptr, char **retptr)
Linus Torvalds's avatar
Linus Torvalds committed
129
{
130
	char *endptr;	/* local pointer to end of parsed string */
Linus Torvalds's avatar
Linus Torvalds committed
131

132 133 134
	unsigned long long ret = simple_strtoull(ptr, &endptr, 0);

	switch (*endptr) {
135 136 137 138 139 140 141 142 143
	case 'E':
	case 'e':
		ret <<= 10;
	case 'P':
	case 'p':
		ret <<= 10;
	case 'T':
	case 't':
		ret <<= 10;
Linus Torvalds's avatar
Linus Torvalds committed
144 145 146 147 148 149 150 151 152
	case 'G':
	case 'g':
		ret <<= 10;
	case 'M':
	case 'm':
		ret <<= 10;
	case 'K':
	case 'k':
		ret <<= 10;
153
		endptr++;
Linus Torvalds's avatar
Linus Torvalds committed
154 155 156
	default:
		break;
	}
157 158 159 160

	if (retptr)
		*retptr = endptr;

Linus Torvalds's avatar
Linus Torvalds committed
161 162 163
	return ret;
}
EXPORT_SYMBOL(memparse);
164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192

/**
 *	parse_option_str - Parse a string and check an option is set or not
 *	@str: String to be parsed
 *	@option: option name
 *
 *	This function parses a string containing a comma-separated list of
 *	strings like a=b,c.
 *
 *	Return true if there's such option in the string, or return false.
 */
bool parse_option_str(const char *str, const char *option)
{
	while (*str) {
		if (!strncmp(str, option, strlen(option))) {
			str += strlen(option);
			if (!*str || *str == ',')
				return true;
		}

		while (*str && *str != ',')
			str++;

		if (*str == ',')
			str++;
	}

	return false;
}
193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247

/*
 * Parse a string to get a param value pair.
 * You can use " around spaces, but can't escape ".
 * Hyphens and underscores equivalent in parameter names.
 */
char *next_arg(char *args, char **param, char **val)
{
	unsigned int i, equals = 0;
	int in_quote = 0, quoted = 0;
	char *next;

	if (*args == '"') {
		args++;
		in_quote = 1;
		quoted = 1;
	}

	for (i = 0; args[i]; i++) {
		if (isspace(args[i]) && !in_quote)
			break;
		if (equals == 0) {
			if (args[i] == '=')
				equals = i;
		}
		if (args[i] == '"')
			in_quote = !in_quote;
	}

	*param = args;
	if (!equals)
		*val = NULL;
	else {
		args[equals] = '\0';
		*val = args + equals + 1;

		/* Don't include quotes in value. */
		if (**val == '"') {
			(*val)++;
			if (args[i-1] == '"')
				args[i-1] = '\0';
		}
	}
	if (quoted && args[i-1] == '"')
		args[i-1] = '\0';

	if (args[i]) {
		args[i] = '\0';
		next = args + i + 1;
	} else
		next = args + i;

	/* Chew up trailing spaces. */
	return skip_spaces(next);
}