1 /* Copyright (c) 2003, Roger Dingledine
2 * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
3 * Copyright (c) 2007-2021, The Tor Project, Inc. */
4 /* See LICENSE for licensing information */
9 * \brief Handle data encoded as a key=value pair.
13 #include "lib/encoding/keyval.h"
14 #include "lib/log/escape.h"
15 #include "lib/log/log.h"
16 #include "lib/log/util_bug.h"
21 /** Return true if <b>string</b> is a valid 'key=[value]' string.
22 * "value" is optional, to indicate the empty string. Log at logging
23 * <b>severity</b> if something ugly happens. */
25 string_is_key_value(int severity
, const char *string
)
27 /* position of equal sign in string */
28 const char *equal_sign_pos
= NULL
;
32 if (strlen(string
) < 2) { /* "x=" is shortest args string */
33 tor_log(severity
, LD_GENERAL
, "'%s' is too short to be a k=v value.",
38 equal_sign_pos
= strchr(string
, '=');
39 if (!equal_sign_pos
) {
40 tor_log(severity
, LD_GENERAL
, "'%s' is not a k=v value.", escaped(string
));
44 /* validate that the '=' is not in the beginning of the string. */
45 if (equal_sign_pos
== string
) {
46 tor_log(severity
, LD_GENERAL
, "'%s' is not a valid k=v value.",