1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 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 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 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308
|
/*
Copyright (c) 2014-2021. The YARA Authors. All Rights Reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation and/or
other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its contributors
may be used to endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <assert.h>
#include <stdlib.h>
#include <string.h>
#include <yara.h>
#include "args.h"
#include "common.h"
#include "unicode.h"
#define args_is_long_arg(arg) (arg[0] == '-' && arg[1] == '-' && arg[2] != '\0')
#define args_is_short_arg(arg) \
(arg[0] == '-' && arg[1] != '-' && arg[1] != '\0')
args_option_t* args_get_short_option(args_option_t* options, const char_t opt)
{
while (options->type != ARGS_OPT_END)
{
if (opt == options->short_name)
return options;
options++;
}
return NULL;
}
args_option_t* args_get_long_option(args_option_t* options, const char_t* arg)
{
arg += 2; // skip starting --
while (options->type != ARGS_OPT_END)
{
if (options->long_name != NULL)
{
size_t l = _tcslen(options->long_name);
if ((arg[l] == '\0' || arg[l] == '=') &&
_tcsstr(arg, options->long_name) == arg)
{
return options;
}
}
options++;
}
return NULL;
}
args_error_type_t args_parse_option(
args_option_t* opt,
const char_t* opt_arg,
int* opt_arg_was_used)
{
char_t* endptr = NULL;
if (opt_arg_was_used != NULL)
*opt_arg_was_used = 0;
if (opt->count == opt->max_count)
return ARGS_ERROR_TOO_MANY;
switch (opt->type)
{
case ARGS_OPT_BOOLEAN:
*(bool*) opt->value = !(*(bool*) opt->value);
break;
case ARGS_OPT_LONG:
if (opt_arg == NULL)
return ARGS_ERROR_REQUIRED_INTEGER_ARG;
*(long*) opt->value = _tcstol(opt_arg, &endptr, 0);
if (*endptr != '\0')
return ARGS_ERROR_REQUIRED_INTEGER_ARG;
if (opt_arg_was_used != NULL)
*opt_arg_was_used = 1;
break;
case ARGS_OPT_LONG_LONG:
if (opt_arg == NULL)
return ARGS_ERROR_REQUIRED_INTEGER_ARG;
*(long long*) opt->value = _tcstoll(opt_arg, &endptr, 0);
if (*endptr != '\0')
return ARGS_ERROR_REQUIRED_INTEGER_ARG;
if (opt_arg_was_used != NULL)
*opt_arg_was_used = 1;
break;
case ARGS_OPT_STRING:
if (opt_arg == NULL)
return ARGS_ERROR_REQUIRED_STRING_ARG;
#ifdef _UNICODE
if (opt->max_count > 1)
((const char**) opt->value)[opt->count] = unicode_to_ansi(opt_arg);
else
*(const char**) opt->value = unicode_to_ansi(opt_arg);
#else
if (opt->max_count > 1)
((const char**) opt->value)[opt->count] = opt_arg;
else
*(const char**) opt->value = opt_arg;
#endif
if (opt_arg_was_used != NULL)
*opt_arg_was_used = 1;
break;
default:
assert(0);
}
opt->count++;
return ARGS_ERROR_OK;
}
void args_print_error(args_error_type_t error, const char_t* option)
{
switch (error)
{
case ARGS_ERROR_UNKNOWN_OPT:
_ftprintf(stderr, _T("unknown option `%s`\n"), option);
break;
case ARGS_ERROR_TOO_MANY:
_ftprintf(stderr, _T("too many `%s` options\n"), option);
break;
case ARGS_ERROR_REQUIRED_INTEGER_ARG:
_ftprintf(stderr, _T("option `%s` requires an integer argument\n"), option);
break;
case ARGS_ERROR_REQUIRED_STRING_ARG:
_ftprintf(stderr, _T("option `%s` requires a string argument\n"), option);
break;
case ARGS_ERROR_UNEXPECTED_ARG:
_ftprintf(stderr, _T("option `%s` doesn't expect an argument\n"), option);
break;
default:
return;
}
}
int args_parse(args_option_t* options, int argc, const char_t** argv)
{
args_error_type_t error = ARGS_ERROR_OK;
int i = 1; // start with i = 1, argv[0] is the program name
int o = 0;
while (i < argc)
{
const char_t* arg = argv[i];
if (args_is_long_arg(arg))
{
args_option_t* opt = args_get_long_option(options, arg);
if (opt != NULL)
{
const char_t* equal = _tcschr(arg, '=');
if (equal)
error = args_parse_option(opt, equal + 1, NULL);
else
error = args_parse_option(opt, NULL, NULL);
}
else
{
error = ARGS_ERROR_UNKNOWN_OPT;
}
}
else if (args_is_short_arg(arg))
{
for (int j = 1; arg[j] != '\0'; j++)
{
args_option_t* opt = args_get_short_option(options, arg[j]);
if (opt != NULL)
{
if (arg[j + 1] == '\0')
{
int arg_used;
// short option followed by a space, argv[i + 1] could be
// an argument for the option (i.e: -a <arg>)
error = args_parse_option(opt, argv[i + 1], &arg_used);
// argv[i + 1] was actually an argument to the option, skip it.
if (arg_used)
i++;
}
else
{
// short option followed by another option (i.e: -ab), no
// argument for this option
error = args_parse_option(opt, NULL, NULL);
}
}
else
{
error = ARGS_ERROR_UNKNOWN_OPT;
}
if (error != ARGS_ERROR_OK)
break;
}
}
else
{
argv[o++] = arg;
}
if (error != ARGS_ERROR_OK)
{
args_print_error(error, arg);
exit(1);
}
i++;
}
// Initialize to NULL the value pointers for all options.
for (; options->type != ARGS_OPT_END; options++) options->value = NULL;
return o;
}
void args_print_usage(args_option_t* options, int help_alignment)
{
char_t buffer[128];
for (; options->type != ARGS_OPT_END; options++)
{
int len = _stprintf(buffer, _T(" "));
if (options->short_name != '\0')
len += _stprintf(buffer + len, _T("-%c"), options->short_name);
else
len += _stprintf(buffer + len, _T(" "));
if (options->short_name != '\0' && options->long_name != NULL)
len += _stprintf(buffer + len, _T( ", "));
if (options->long_name != NULL)
len += _stprintf(buffer + len, _T("--%s"), options->long_name);
if (options->type == ARGS_OPT_STRING || options->type == ARGS_OPT_LONG ||
options->type == ARGS_OPT_LONG_LONG)
{
len += _stprintf(
buffer + len,
_T("%s%s"),
(options->long_name != NULL) ? _T("=") : _T(" "),
options->type_help);
}
_tprintf(_T("%-*s%s\n"), help_alignment, buffer, options->help);
}
}
void args_free(args_option_t* options)
{
for (; options->type != ARGS_OPT_END; options++)
{
if (options->type == ARGS_OPT_STRING && options->value != NULL)
{
free(options->value);
}
}
}
|