Use strpfx() helper where appropriate
This commit is contained in:
@@ -782,7 +782,7 @@ static status_t process_peer_success(private_eap_mschapv2_t *this,
|
||||
enumerator = enumerator_create_token(message, " ", " ");
|
||||
while (enumerator->enumerate(enumerator, &token))
|
||||
{
|
||||
if (strneq(token, "S=", 2))
|
||||
if (strpfx(token, "S="))
|
||||
{
|
||||
chunk_t hex;
|
||||
token += 2;
|
||||
@@ -795,7 +795,7 @@ static status_t process_peer_success(private_eap_mschapv2_t *this,
|
||||
hex = chunk_create(token, AUTH_RESPONSE_LEN - 2);
|
||||
auth_string = chunk_from_hex(hex, NULL);
|
||||
}
|
||||
else if (strneq(token, "M=", 2))
|
||||
else if (strpfx(token, "M="))
|
||||
{
|
||||
token += 2;
|
||||
msg = strdup(token);
|
||||
@@ -864,16 +864,16 @@ static status_t process_peer_failure(private_eap_mschapv2_t *this,
|
||||
enumerator = enumerator_create_token(message, " ", " ");
|
||||
while (enumerator->enumerate(enumerator, &token))
|
||||
{
|
||||
if (strneq(token, "E=", 2))
|
||||
if (strpfx(token, "E="))
|
||||
{
|
||||
token += 2;
|
||||
error = atoi(token);
|
||||
}
|
||||
else if (strneq(token, "R=", 2))
|
||||
else if (strpfx(token, "R="))
|
||||
{
|
||||
/* ignore retriable */
|
||||
}
|
||||
else if (strneq(token, "C=", 2))
|
||||
else if (strpfx(token, "C="))
|
||||
{
|
||||
chunk_t hex;
|
||||
token += 2;
|
||||
@@ -886,11 +886,11 @@ static status_t process_peer_failure(private_eap_mschapv2_t *this,
|
||||
hex = chunk_create(token, 2 * CHALLENGE_LEN);
|
||||
challenge = chunk_from_hex(hex, NULL);
|
||||
}
|
||||
else if (strneq(token, "V=", 2))
|
||||
else if (strpfx(token, "V="))
|
||||
{
|
||||
/* ignore version */
|
||||
}
|
||||
else if (strneq(token, "M=", 2))
|
||||
else if (strpfx(token, "M="))
|
||||
{
|
||||
token += 2;
|
||||
msg = strdup(token);
|
||||
|
||||
@@ -355,7 +355,7 @@ static void generate_auth_cfg(private_load_tester_config_t *this, char *str,
|
||||
}
|
||||
}
|
||||
}
|
||||
else if (strneq(str, "eap", strlen("eap")))
|
||||
else if (strpfx(str, "eap"))
|
||||
{ /* EAP authentication, use a NAI */
|
||||
class = AUTH_CLASS_EAP;
|
||||
if (*(str + strlen("eap")) == '-')
|
||||
|
||||
@@ -559,9 +559,9 @@ static auth_cfg_t *build_auth_cfg(private_stroke_config_t *this,
|
||||
}
|
||||
|
||||
/* authentication metod (class, actually) */
|
||||
if (strneq(auth, "pubkey", strlen("pubkey")) ||
|
||||
strneq(auth, "rsa", strlen("rsa")) ||
|
||||
strneq(auth, "ecdsa", strlen("ecdsa")))
|
||||
if (strpfx(auth, "pubkey") ||
|
||||
strpfx(auth, "rsa") ||
|
||||
strpfx(auth, "ecdsa"))
|
||||
{
|
||||
cfg->add(cfg, AUTH_RULE_AUTH_CLASS, AUTH_CLASS_PUBKEY);
|
||||
build_crl_policy(cfg, local, msg->add_conn.crl_policy);
|
||||
@@ -572,7 +572,7 @@ static auth_cfg_t *build_auth_cfg(private_stroke_config_t *this,
|
||||
{
|
||||
cfg->add(cfg, AUTH_RULE_AUTH_CLASS, AUTH_CLASS_PSK);
|
||||
}
|
||||
else if (strneq(auth, "xauth", 5))
|
||||
else if (strpfx(auth, "xauth"))
|
||||
{
|
||||
char *pos;
|
||||
|
||||
@@ -588,7 +588,7 @@ static auth_cfg_t *build_auth_cfg(private_stroke_config_t *this,
|
||||
identification_create_from_string(msg->add_conn.xauth_identity));
|
||||
}
|
||||
}
|
||||
else if (strneq(auth, "eap", 3))
|
||||
else if (strpfx(auth, "eap"))
|
||||
{
|
||||
eap_vendor_type_t *type;
|
||||
|
||||
|
||||
@@ -175,7 +175,7 @@ METHOD(stroke_cred_t, load_ca, certificate_t*,
|
||||
certificate_t *cert = NULL;
|
||||
char path[PATH_MAX];
|
||||
|
||||
if (strneq(filename, "%smartcard", strlen("%smartcard")))
|
||||
if (strpfx(filename, "%smartcard"))
|
||||
{
|
||||
smartcard_format_t format;
|
||||
char module[SC_PART_LEN], keyid[SC_PART_LEN];
|
||||
@@ -239,7 +239,7 @@ METHOD(stroke_cred_t, load_peer, certificate_t*,
|
||||
certificate_t *cert = NULL;
|
||||
char path[PATH_MAX];
|
||||
|
||||
if (strneq(filename, "%smartcard", strlen("%smartcard")))
|
||||
if (strpfx(filename, "%smartcard"))
|
||||
{
|
||||
smartcard_format_t format;
|
||||
char module[SC_PART_LEN], keyid[SC_PART_LEN];
|
||||
@@ -787,7 +787,7 @@ static bool load_pin(mem_cred_t *secrets, chunk_t line, int line_nr,
|
||||
}
|
||||
|
||||
chunk = chunk_from_hex(chunk_create(keyid, strlen(keyid)), NULL);
|
||||
if (secret.len == 7 && strneq(secret.ptr, "%prompt", 7))
|
||||
if (secret.len == 7 && strpfx(secret.ptr, "%prompt"))
|
||||
{
|
||||
free(secret.ptr);
|
||||
if (!prompt)
|
||||
@@ -880,7 +880,7 @@ static bool load_from_file(chunk_t line, int line_nr, FILE *prompt,
|
||||
return FALSE;
|
||||
}
|
||||
}
|
||||
if (secret.len == 7 && strneq(secret.ptr, "%prompt", 7))
|
||||
if (secret.len == 7 && strpfx(secret.ptr, "%prompt"))
|
||||
{
|
||||
callback_cred_t *cb;
|
||||
passphrase_cb_data_t pp_data = {
|
||||
@@ -1142,8 +1142,7 @@ static void load_secrets(private_stroke_cred_t *this, mem_cred_t *secrets,
|
||||
{
|
||||
continue;
|
||||
}
|
||||
if (line.len > strlen("include ") &&
|
||||
strneq(line.ptr, "include ", strlen("include ")))
|
||||
if (line.len > strlen("include ") && strpfx(line.ptr, "include "))
|
||||
{
|
||||
char **expanded, *dir, pattern[PATH_MAX];
|
||||
u_char *pos;
|
||||
@@ -1211,7 +1210,7 @@ static void load_secrets(private_stroke_cred_t *this, mem_cred_t *secrets,
|
||||
continue;
|
||||
}
|
||||
|
||||
if (line.len > 2 && strneq(": ", line.ptr, 2))
|
||||
if (line.len > 2 && strpfx(line.ptr, ": "))
|
||||
{
|
||||
/* no ids, skip the ':' */
|
||||
ids = chunk_empty;
|
||||
|
||||
@@ -78,7 +78,7 @@
|
||||
/** this is the default number of ipsec devices */
|
||||
#define DEFAULT_IPSEC_DEV_COUNT 4
|
||||
/** TRUE if the given name matches an ipsec device */
|
||||
#define IS_IPSEC_DEV(name) (strneq((name), IPSEC_DEV_PREFIX, sizeof(IPSEC_DEV_PREFIX) - 1))
|
||||
#define IS_IPSEC_DEV(name) (strpfx((name), IPSEC_DEV_PREFIX))
|
||||
|
||||
/** the following stuff is from ipsec_tunnel.h */
|
||||
struct ipsectunnelconf
|
||||
@@ -2332,7 +2332,7 @@ METHOD(kernel_ipsec_t, query_policy, status_t,
|
||||
|
||||
while (fgets(line, sizeof(line), file))
|
||||
{
|
||||
if (strneq(line, said, strlen(said)))
|
||||
if (strpfx(line, said))
|
||||
{
|
||||
/* fine we found the correct line, now find the idle time */
|
||||
u_int32_t idle_time;
|
||||
|
||||
@@ -126,7 +126,7 @@ static void remove_nameserver(private_resolve_handler_t *this,
|
||||
/* copy all, but matching line */
|
||||
while (fgets(line, sizeof(line), in))
|
||||
{
|
||||
if (strneq(line, matcher, strlen(matcher)))
|
||||
if (strpfx(line, matcher))
|
||||
{
|
||||
DBG1(DBG_IKE, "removing DNS server %H from %s",
|
||||
addr, this->file);
|
||||
|
||||
@@ -182,8 +182,8 @@ METHOD(os_info_t, get_setting, chunk_t,
|
||||
size_t i = 0;
|
||||
chunk_t value;
|
||||
|
||||
if (!strneq(name, "/etc/", 5) && !strneq(name, "/proc/", 6) &&
|
||||
!strneq(name, "/sys/", 5) && !strneq(name, "/var/", 5))
|
||||
if (!strpfx(name, "/etc/") && !strpfx(name, "/proc/") &&
|
||||
!strpfx(name, "/sys/") && !strpfx(name, "/var/"))
|
||||
{
|
||||
/**
|
||||
* In order to guarantee privacy, only settings from the
|
||||
|
||||
@@ -112,7 +112,7 @@ METHOD(fetcher_t, fetch, status_t,
|
||||
status_t status = FAILED;
|
||||
chunk_t *result = userdata;
|
||||
|
||||
if (!strneq(url, "ldap", 4))
|
||||
if (!strpfx(url, "ldap"))
|
||||
{
|
||||
return NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
@@ -666,7 +666,7 @@ mysql_database_t *mysql_database_create(char *uri)
|
||||
conn_t *conn;
|
||||
private_mysql_database_t *this;
|
||||
|
||||
if (!strneq(uri, "mysql://", 8))
|
||||
if (!strpfx(uri, "mysql://"))
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
|
||||
@@ -319,7 +319,7 @@ sqlite_database_t *sqlite_database_create(char *uri)
|
||||
/**
|
||||
* parse sqlite:///path/to/file.db uri
|
||||
*/
|
||||
if (!strneq(uri, "sqlite://", 9))
|
||||
if (!strpfx(uri, "sqlite://"))
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
|
||||
@@ -85,7 +85,7 @@ static sshkey_public_key_t *parse_public_key(chunk_t blob)
|
||||
BUILD_RSA_MODULUS, n, BUILD_RSA_PUB_EXP, e, BUILD_END);
|
||||
}
|
||||
else if (format.len > strlen(ECDSA_PREFIX) &&
|
||||
strneq(format.ptr, ECDSA_PREFIX, strlen(ECDSA_PREFIX)))
|
||||
strpfx(format.ptr, ECDSA_PREFIX))
|
||||
{
|
||||
chunk_t ec_blob, identifier, q, oid, encoded;
|
||||
sshkey_public_key_t *key;
|
||||
|
||||
Reference in New Issue
Block a user