wdenk | 05706fd | 2002-09-28 17:48:27 +0000 | [diff] [blame] | 1 | /* |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 2 | * (C) Copyright 2000-2010 |
wdenk | 05706fd | 2002-09-28 17:48:27 +0000 | [diff] [blame] | 3 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | * |
| 5 | * (C) Copyright 2001 Sysgo Real-Time Solutions, GmbH <www.elinos.com> |
| 6 | * Andreas Heppel <aheppel@sysgo.de> |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 7 | * |
Wolfgang Denk | 3765b3e | 2013-10-07 13:07:26 +0200 | [diff] [blame] | 8 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | 05706fd | 2002-09-28 17:48:27 +0000 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | #include <common.h> |
| 12 | #include <command.h> |
| 13 | #include <environment.h> |
wdenk | 05706fd | 2002-09-28 17:48:27 +0000 | [diff] [blame] | 14 | #include <linux/stddef.h> |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 15 | #include <search.h> |
| 16 | #include <errno.h> |
wdenk | 05706fd | 2002-09-28 17:48:27 +0000 | [diff] [blame] | 17 | #include <malloc.h> |
| 18 | |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 19 | DECLARE_GLOBAL_DATA_PTR; |
| 20 | |
wdenk | 05706fd | 2002-09-28 17:48:27 +0000 | [diff] [blame] | 21 | /************************************************************************ |
| 22 | * Default settings to be used when no valid environment is found |
| 23 | */ |
Joe Hershberger | ddd8418 | 2012-10-12 08:48:51 +0000 | [diff] [blame] | 24 | #include <env_default.h> |
wdenk | 05706fd | 2002-09-28 17:48:27 +0000 | [diff] [blame] | 25 | |
Gerlando Falauto | c598359 | 2012-08-24 00:11:39 +0000 | [diff] [blame] | 26 | struct hsearch_data env_htab = { |
Joe Hershberger | 2598090 | 2012-12-11 22:16:31 -0600 | [diff] [blame] | 27 | .change_ok = env_flags_validate, |
Gerlando Falauto | c598359 | 2012-08-24 00:11:39 +0000 | [diff] [blame] | 28 | }; |
Mike Frysinger | 2eb1573 | 2010-12-08 06:26:04 -0500 | [diff] [blame] | 29 | |
Joe Hershberger | ec8a252 | 2012-12-11 22:16:22 -0600 | [diff] [blame] | 30 | /* |
| 31 | * Read an environment variable as a boolean |
| 32 | * Return -1 if variable does not exist (default to true) |
| 33 | */ |
Simon Glass | bfebc8c | 2017-08-03 12:22:13 -0600 | [diff] [blame] | 34 | int env_get_yesno(const char *var) |
Joe Hershberger | ec8a252 | 2012-12-11 22:16:22 -0600 | [diff] [blame] | 35 | { |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 36 | char *s = env_get(var); |
Joe Hershberger | ec8a252 | 2012-12-11 22:16:22 -0600 | [diff] [blame] | 37 | |
| 38 | if (s == NULL) |
| 39 | return -1; |
| 40 | return (*s == '1' || *s == 'y' || *s == 'Y' || *s == 't' || *s == 'T') ? |
| 41 | 1 : 0; |
| 42 | } |
| 43 | |
Joe Hershberger | 267541f | 2012-12-11 22:16:34 -0600 | [diff] [blame] | 44 | /* |
| 45 | * Look up the variable from the default environment |
| 46 | */ |
Simon Glass | 723806c | 2017-08-03 12:22:15 -0600 | [diff] [blame] | 47 | char *env_get_default(const char *name) |
Joe Hershberger | 267541f | 2012-12-11 22:16:34 -0600 | [diff] [blame] | 48 | { |
| 49 | char *ret_val; |
| 50 | unsigned long really_valid = gd->env_valid; |
| 51 | unsigned long real_gd_flags = gd->flags; |
| 52 | |
| 53 | /* Pretend that the image is bad. */ |
| 54 | gd->flags &= ~GD_FLG_ENV_READY; |
Simon Glass | 2d7cb5b | 2017-08-20 04:45:15 -0600 | [diff] [blame] | 55 | gd->env_valid = ENV_INVALID; |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 56 | ret_val = env_get(name); |
Joe Hershberger | 267541f | 2012-12-11 22:16:34 -0600 | [diff] [blame] | 57 | gd->env_valid = really_valid; |
| 58 | gd->flags = real_gd_flags; |
| 59 | return ret_val; |
| 60 | } |
| 61 | |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 62 | void set_default_env(const char *s) |
Harald Welte | 5bb12db | 2008-07-07 15:40:39 +0800 | [diff] [blame] | 63 | { |
Joe Hershberger | c4e0057 | 2012-12-11 22:16:19 -0600 | [diff] [blame] | 64 | int flags = 0; |
| 65 | |
Harald Welte | 5bb12db | 2008-07-07 15:40:39 +0800 | [diff] [blame] | 66 | if (sizeof(default_environment) > ENV_SIZE) { |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 67 | puts("*** Error - default environment is too large\n\n"); |
Harald Welte | 5bb12db | 2008-07-07 15:40:39 +0800 | [diff] [blame] | 68 | return; |
| 69 | } |
| 70 | |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 71 | if (s) { |
| 72 | if (*s == '!') { |
| 73 | printf("*** Warning - %s, " |
| 74 | "using default environment\n\n", |
Igor Grinberg | 27aafe9 | 2011-11-07 01:14:11 +0000 | [diff] [blame] | 75 | s + 1); |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 76 | } else { |
Joe Hershberger | c4e0057 | 2012-12-11 22:16:19 -0600 | [diff] [blame] | 77 | flags = H_INTERACTIVE; |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 78 | puts(s); |
| 79 | } |
| 80 | } else { |
| 81 | puts("Using default environment\n\n"); |
| 82 | } |
| 83 | |
Mike Frysinger | 2eb1573 | 2010-12-08 06:26:04 -0500 | [diff] [blame] | 84 | if (himport_r(&env_htab, (char *)default_environment, |
Alexander Holler | ecd1446 | 2014-07-14 17:49:55 +0200 | [diff] [blame] | 85 | sizeof(default_environment), '\0', flags, 0, |
Joe Hershberger | c4e0057 | 2012-12-11 22:16:19 -0600 | [diff] [blame] | 86 | 0, NULL) == 0) |
Masahiro Yamada | 9b643e3 | 2017-09-16 14:10:41 +0900 | [diff] [blame] | 87 | pr_err("Environment import failed: errno = %d\n", errno); |
Igor Grinberg | 27aafe9 | 2011-11-07 01:14:11 +0000 | [diff] [blame] | 88 | |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 89 | gd->flags |= GD_FLG_ENV_READY; |
Michal Simek | 340b0e3 | 2016-05-30 16:06:54 +0200 | [diff] [blame] | 90 | gd->flags |= GD_FLG_ENV_DEFAULT; |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 91 | } |
| 92 | |
Gerlando Falauto | b64b7c3 | 2012-08-24 00:11:41 +0000 | [diff] [blame] | 93 | |
| 94 | /* [re]set individual variables to their value in the default environment */ |
| 95 | int set_default_vars(int nvars, char * const vars[]) |
| 96 | { |
| 97 | /* |
| 98 | * Special use-case: import from default environment |
| 99 | * (and use \0 as a separator) |
| 100 | */ |
| 101 | return himport_r(&env_htab, (const char *)default_environment, |
Joe Hershberger | c4e0057 | 2012-12-11 22:16:19 -0600 | [diff] [blame] | 102 | sizeof(default_environment), '\0', |
Alexander Holler | ecd1446 | 2014-07-14 17:49:55 +0200 | [diff] [blame] | 103 | H_NOCLEAR | H_INTERACTIVE, 0, nvars, vars); |
Gerlando Falauto | b64b7c3 | 2012-08-24 00:11:41 +0000 | [diff] [blame] | 104 | } |
| 105 | |
Marek Vasut | a4223b7 | 2014-03-05 19:59:51 +0100 | [diff] [blame] | 106 | #ifdef CONFIG_ENV_AES |
Stefano Babic | b80c0b9 | 2017-04-05 18:08:00 +0200 | [diff] [blame] | 107 | #include <uboot_aes.h> |
Marek Vasut | a4223b7 | 2014-03-05 19:59:51 +0100 | [diff] [blame] | 108 | /** |
| 109 | * env_aes_cbc_get_key() - Get AES-128-CBC key for the environment |
| 110 | * |
| 111 | * This function shall return 16-byte array containing AES-128 key used |
Robert P. J. Day | 62a3b7d | 2016-07-15 13:44:45 -0400 | [diff] [blame] | 112 | * to encrypt and decrypt the environment. This function must be overridden |
Marek Vasut | a4223b7 | 2014-03-05 19:59:51 +0100 | [diff] [blame] | 113 | * by the implementer as otherwise the environment encryption will not |
| 114 | * work. |
| 115 | */ |
| 116 | __weak uint8_t *env_aes_cbc_get_key(void) |
| 117 | { |
| 118 | return NULL; |
| 119 | } |
| 120 | |
| 121 | static int env_aes_cbc_crypt(env_t *env, const int enc) |
| 122 | { |
| 123 | unsigned char *data = env->data; |
| 124 | uint8_t *key; |
| 125 | uint8_t key_exp[AES_EXPAND_KEY_LENGTH]; |
| 126 | uint32_t aes_blocks; |
| 127 | |
| 128 | key = env_aes_cbc_get_key(); |
| 129 | if (!key) |
| 130 | return -EINVAL; |
| 131 | |
| 132 | /* First we expand the key. */ |
| 133 | aes_expand_key(key, key_exp); |
| 134 | |
| 135 | /* Calculate the number of AES blocks to encrypt. */ |
| 136 | aes_blocks = ENV_SIZE / AES_KEY_LENGTH; |
| 137 | |
| 138 | if (enc) |
| 139 | aes_cbc_encrypt_blocks(key_exp, data, data, aes_blocks); |
| 140 | else |
| 141 | aes_cbc_decrypt_blocks(key_exp, data, data, aes_blocks); |
| 142 | |
| 143 | return 0; |
| 144 | } |
| 145 | #else |
| 146 | static inline int env_aes_cbc_crypt(env_t *env, const int enc) |
| 147 | { |
| 148 | return 0; |
| 149 | } |
| 150 | #endif |
| 151 | |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 152 | /* |
| 153 | * Check if CRC is valid and (if yes) import the environment. |
| 154 | * Note that "buf" may or may not be aligned. |
| 155 | */ |
| 156 | int env_import(const char *buf, int check) |
| 157 | { |
| 158 | env_t *ep = (env_t *)buf; |
Marek Vasut | a4223b7 | 2014-03-05 19:59:51 +0100 | [diff] [blame] | 159 | int ret; |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 160 | |
| 161 | if (check) { |
| 162 | uint32_t crc; |
| 163 | |
| 164 | memcpy(&crc, &ep->crc, sizeof(crc)); |
| 165 | |
| 166 | if (crc32(0, ep->data, ENV_SIZE) != crc) { |
| 167 | set_default_env("!bad CRC"); |
| 168 | return 0; |
| 169 | } |
| 170 | } |
| 171 | |
Marek Vasut | a4223b7 | 2014-03-05 19:59:51 +0100 | [diff] [blame] | 172 | /* Decrypt the env if desired. */ |
| 173 | ret = env_aes_cbc_crypt(ep, 0); |
| 174 | if (ret) { |
Masahiro Yamada | 9b643e3 | 2017-09-16 14:10:41 +0900 | [diff] [blame] | 175 | pr_err("Failed to decrypt env!\n"); |
Marek Vasut | a4223b7 | 2014-03-05 19:59:51 +0100 | [diff] [blame] | 176 | set_default_env("!import failed"); |
| 177 | return ret; |
| 178 | } |
| 179 | |
Alexander Holler | ecd1446 | 2014-07-14 17:49:55 +0200 | [diff] [blame] | 180 | if (himport_r(&env_htab, (char *)ep->data, ENV_SIZE, '\0', 0, 0, |
Joe Hershberger | c4e0057 | 2012-12-11 22:16:19 -0600 | [diff] [blame] | 181 | 0, NULL)) { |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 182 | gd->flags |= GD_FLG_ENV_READY; |
| 183 | return 1; |
| 184 | } |
| 185 | |
Masahiro Yamada | 9b643e3 | 2017-09-16 14:10:41 +0900 | [diff] [blame] | 186 | pr_err("Cannot import environment: errno = %d\n", errno); |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 187 | |
| 188 | set_default_env("!import failed"); |
| 189 | |
| 190 | return 0; |
Harald Welte | 5bb12db | 2008-07-07 15:40:39 +0800 | [diff] [blame] | 191 | } |
| 192 | |
Fiach Antaw | 76768f5 | 2017-01-25 18:53:11 +1000 | [diff] [blame] | 193 | #ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT |
| 194 | static unsigned char env_flags; |
| 195 | |
| 196 | int env_import_redund(const char *buf1, const char *buf2) |
| 197 | { |
| 198 | int crc1_ok, crc2_ok; |
| 199 | env_t *ep, *tmp_env1, *tmp_env2; |
| 200 | |
| 201 | tmp_env1 = (env_t *)buf1; |
| 202 | tmp_env2 = (env_t *)buf2; |
| 203 | |
| 204 | crc1_ok = crc32(0, tmp_env1->data, ENV_SIZE) == |
| 205 | tmp_env1->crc; |
| 206 | crc2_ok = crc32(0, tmp_env2->data, ENV_SIZE) == |
| 207 | tmp_env2->crc; |
| 208 | |
| 209 | if (!crc1_ok && !crc2_ok) { |
| 210 | set_default_env("!bad CRC"); |
| 211 | return 0; |
| 212 | } else if (crc1_ok && !crc2_ok) { |
Simon Glass | 2d7cb5b | 2017-08-20 04:45:15 -0600 | [diff] [blame] | 213 | gd->env_valid = ENV_VALID; |
Fiach Antaw | 76768f5 | 2017-01-25 18:53:11 +1000 | [diff] [blame] | 214 | } else if (!crc1_ok && crc2_ok) { |
Simon Glass | 2d7cb5b | 2017-08-20 04:45:15 -0600 | [diff] [blame] | 215 | gd->env_valid = ENV_REDUND; |
Fiach Antaw | 76768f5 | 2017-01-25 18:53:11 +1000 | [diff] [blame] | 216 | } else { |
| 217 | /* both ok - check serial */ |
| 218 | if (tmp_env1->flags == 255 && tmp_env2->flags == 0) |
Simon Glass | 2d7cb5b | 2017-08-20 04:45:15 -0600 | [diff] [blame] | 219 | gd->env_valid = ENV_REDUND; |
Fiach Antaw | 76768f5 | 2017-01-25 18:53:11 +1000 | [diff] [blame] | 220 | else if (tmp_env2->flags == 255 && tmp_env1->flags == 0) |
Simon Glass | 2d7cb5b | 2017-08-20 04:45:15 -0600 | [diff] [blame] | 221 | gd->env_valid = ENV_VALID; |
Fiach Antaw | 76768f5 | 2017-01-25 18:53:11 +1000 | [diff] [blame] | 222 | else if (tmp_env1->flags > tmp_env2->flags) |
Simon Glass | 2d7cb5b | 2017-08-20 04:45:15 -0600 | [diff] [blame] | 223 | gd->env_valid = ENV_VALID; |
Fiach Antaw | 76768f5 | 2017-01-25 18:53:11 +1000 | [diff] [blame] | 224 | else if (tmp_env2->flags > tmp_env1->flags) |
Simon Glass | 2d7cb5b | 2017-08-20 04:45:15 -0600 | [diff] [blame] | 225 | gd->env_valid = ENV_REDUND; |
Fiach Antaw | 76768f5 | 2017-01-25 18:53:11 +1000 | [diff] [blame] | 226 | else /* flags are equal - almost impossible */ |
Simon Glass | 2d7cb5b | 2017-08-20 04:45:15 -0600 | [diff] [blame] | 227 | gd->env_valid = ENV_VALID; |
Fiach Antaw | 76768f5 | 2017-01-25 18:53:11 +1000 | [diff] [blame] | 228 | } |
| 229 | |
Simon Glass | 2d7cb5b | 2017-08-20 04:45:15 -0600 | [diff] [blame] | 230 | if (gd->env_valid == ENV_VALID) |
Fiach Antaw | 76768f5 | 2017-01-25 18:53:11 +1000 | [diff] [blame] | 231 | ep = tmp_env1; |
| 232 | else |
| 233 | ep = tmp_env2; |
| 234 | |
| 235 | env_flags = ep->flags; |
| 236 | return env_import((char *)ep, 0); |
| 237 | } |
| 238 | #endif /* CONFIG_SYS_REDUNDAND_ENVIRONMENT */ |
| 239 | |
Robert P. J. Day | fc0b594 | 2016-09-07 14:27:59 -0400 | [diff] [blame] | 240 | /* Export the environment and generate CRC for it. */ |
Marek Vasut | 7ce1526 | 2014-03-05 19:59:50 +0100 | [diff] [blame] | 241 | int env_export(env_t *env_out) |
| 242 | { |
| 243 | char *res; |
| 244 | ssize_t len; |
Marek Vasut | a4223b7 | 2014-03-05 19:59:51 +0100 | [diff] [blame] | 245 | int ret; |
Marek Vasut | 7ce1526 | 2014-03-05 19:59:50 +0100 | [diff] [blame] | 246 | |
| 247 | res = (char *)env_out->data; |
| 248 | len = hexport_r(&env_htab, '\0', 0, &res, ENV_SIZE, 0, NULL); |
| 249 | if (len < 0) { |
Masahiro Yamada | 9b643e3 | 2017-09-16 14:10:41 +0900 | [diff] [blame] | 250 | pr_err("Cannot export environment: errno = %d\n", errno); |
Marek Vasut | 7ce1526 | 2014-03-05 19:59:50 +0100 | [diff] [blame] | 251 | return 1; |
| 252 | } |
Marek Vasut | a4223b7 | 2014-03-05 19:59:51 +0100 | [diff] [blame] | 253 | |
| 254 | /* Encrypt the env if desired. */ |
| 255 | ret = env_aes_cbc_crypt(env_out, 1); |
| 256 | if (ret) |
| 257 | return ret; |
| 258 | |
Marek Vasut | 7ce1526 | 2014-03-05 19:59:50 +0100 | [diff] [blame] | 259 | env_out->crc = crc32(0, env_out->data, ENV_SIZE); |
| 260 | |
Fiach Antaw | 76768f5 | 2017-01-25 18:53:11 +1000 | [diff] [blame] | 261 | #ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT |
| 262 | env_out->flags = ++env_flags; /* increase the serial */ |
| 263 | #endif |
| 264 | |
Marek Vasut | 7ce1526 | 2014-03-05 19:59:50 +0100 | [diff] [blame] | 265 | return 0; |
| 266 | } |
| 267 | |
Igor Grinberg | 27aafe9 | 2011-11-07 01:14:11 +0000 | [diff] [blame] | 268 | void env_relocate(void) |
wdenk | 05706fd | 2002-09-28 17:48:27 +0000 | [diff] [blame] | 269 | { |
Wolfgang Denk | 2e5167c | 2010-10-28 20:00:11 +0200 | [diff] [blame] | 270 | #if defined(CONFIG_NEEDS_MANUAL_RELOC) |
Heiko Schocher | 60f7da1 | 2010-10-05 14:17:00 +0200 | [diff] [blame] | 271 | env_reloc(); |
Joe Hershberger | 7afcf3a | 2012-12-11 22:16:21 -0600 | [diff] [blame] | 272 | env_htab.change_ok += gd->reloc_off; |
Heiko Schocher | 60f7da1 | 2010-10-05 14:17:00 +0200 | [diff] [blame] | 273 | #endif |
Simon Glass | 2d7cb5b | 2017-08-20 04:45:15 -0600 | [diff] [blame] | 274 | if (gd->env_valid == ENV_INVALID) { |
Ilya Yanok | 7ac2fe2 | 2012-09-18 00:22:50 +0000 | [diff] [blame] | 275 | #if defined(CONFIG_ENV_IS_NOWHERE) || defined(CONFIG_SPL_BUILD) |
| 276 | /* Environment not changable */ |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 277 | set_default_env(NULL); |
wdenk | 05706fd | 2002-09-28 17:48:27 +0000 | [diff] [blame] | 278 | #else |
Simon Glass | 770605e | 2012-02-13 13:51:18 +0000 | [diff] [blame] | 279 | bootstage_error(BOOTSTAGE_ID_NET_CHECKSUM); |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 280 | set_default_env("!bad CRC"); |
Lei Wen | d259079 | 2010-10-10 12:36:40 +0800 | [diff] [blame] | 281 | #endif |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 282 | } else { |
Simon Glass | 310fb14 | 2017-08-03 12:22:07 -0600 | [diff] [blame] | 283 | env_load(); |
wdenk | 05706fd | 2002-09-28 17:48:27 +0000 | [diff] [blame] | 284 | } |
wdenk | 05706fd | 2002-09-28 17:48:27 +0000 | [diff] [blame] | 285 | } |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 286 | |
Ilya Yanok | 7ac2fe2 | 2012-09-18 00:22:50 +0000 | [diff] [blame] | 287 | #if defined(CONFIG_AUTO_COMPLETE) && !defined(CONFIG_SPL_BUILD) |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 288 | int env_complete(char *var, int maxv, char *cmdv[], int bufsz, char *buf) |
| 289 | { |
Mike Frysinger | 560d424 | 2010-12-17 16:51:59 -0500 | [diff] [blame] | 290 | ENTRY *match; |
| 291 | int found, idx; |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 292 | |
Mike Frysinger | 560d424 | 2010-12-17 16:51:59 -0500 | [diff] [blame] | 293 | idx = 0; |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 294 | found = 0; |
| 295 | cmdv[0] = NULL; |
| 296 | |
Mike Frysinger | 560d424 | 2010-12-17 16:51:59 -0500 | [diff] [blame] | 297 | while ((idx = hmatch_r(var, idx, &match, &env_htab))) { |
| 298 | int vallen = strlen(match->key) + 1; |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 299 | |
Mike Frysinger | 560d424 | 2010-12-17 16:51:59 -0500 | [diff] [blame] | 300 | if (found >= maxv - 2 || bufsz < vallen) |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 301 | break; |
Mike Frysinger | 560d424 | 2010-12-17 16:51:59 -0500 | [diff] [blame] | 302 | |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 303 | cmdv[found++] = buf; |
Mike Frysinger | 560d424 | 2010-12-17 16:51:59 -0500 | [diff] [blame] | 304 | memcpy(buf, match->key, vallen); |
| 305 | buf += vallen; |
| 306 | bufsz -= vallen; |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 307 | } |
| 308 | |
Mike Frysinger | 560d424 | 2010-12-17 16:51:59 -0500 | [diff] [blame] | 309 | qsort(cmdv, found, sizeof(cmdv[0]), strcmp_compar); |
| 310 | |
| 311 | if (idx) |
| 312 | cmdv[found++] = "..."; |
Igor Grinberg | 27aafe9 | 2011-11-07 01:14:11 +0000 | [diff] [blame] | 313 | |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 314 | cmdv[found] = NULL; |
| 315 | return found; |
| 316 | } |
| 317 | #endif |