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
|
/* validate.c --- Validate consistency of SCRAM tokens.
* Copyright (C) 2009-2022 Simon Josefsson
*
* This file is part of GNU SASL Library.
*
* GNU SASL Library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* GNU SASL Library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with GNU SASL Library; if not, write to the Free
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
/* Get prototypes. */
#include "validate.h"
/* Get strcmp, strlen. */
#include <string.h>
bool
scram_valid_client_first (struct scram_client_first *cf)
{
/* Check that cbflag is one of permitted values. */
switch (cf->cbflag)
{
case 'p':
case 'n':
case 'y':
break;
default:
return false;
}
/* Check that cbname is only set when cbflag is p. */
if (cf->cbflag == 'p' && cf->cbname == NULL)
return false;
else if (cf->cbflag != 'p' && cf->cbname != NULL)
return false;
if (cf->cbname)
{
const char *p = cf->cbname;
while (*p && strchr ("ABCDEFGHIJKLMNOPQRSTUVWXYZ"
"abcdefghijklmnopqrstuvwxyz" "0123456789.-", *p))
p++;
if (*p)
return false;
}
/* We require a non-zero username string. */
if (cf->username == NULL || *cf->username == '\0')
return false;
/* We require a non-zero client nonce. */
if (cf->client_nonce == NULL || *cf->client_nonce == '\0')
return false;
/* Nonce cannot contain ','. */
if (strchr (cf->client_nonce, ','))
return false;
return true;
}
bool
scram_valid_server_first (struct scram_server_first *sf)
{
/* We require a non-zero nonce. */
if (sf->nonce == NULL || *sf->nonce == '\0')
return false;
/* Nonce cannot contain ','. */
if (strchr (sf->nonce, ','))
return false;
/* We require a non-zero salt. */
if (sf->salt == NULL || *sf->salt == '\0')
return false;
/* FIXME check that salt is valid base64. */
if (strchr (sf->salt, ','))
return false;
if (sf->iter == 0)
return false;
return true;
}
bool
scram_valid_client_final (struct scram_client_final *cl)
{
/* We require a non-zero cbind. */
if (cl->cbind == NULL || *cl->cbind == '\0')
return false;
/* FIXME check that cbind is valid base64. */
if (strchr (cl->cbind, ','))
return false;
/* We require a non-zero nonce. */
if (cl->nonce == NULL || *cl->nonce == '\0')
return false;
/* Nonce cannot contain ','. */
if (strchr (cl->nonce, ','))
return false;
/* We require a non-zero proof. */
if (cl->proof == NULL || *cl->proof == '\0')
return false;
/* FIXME check that proof is valid base64. */
if (strchr (cl->proof, ','))
return false;
return true;
}
bool
scram_valid_server_final (struct scram_server_final *sl)
{
/* We require a non-zero verifier. */
if (sl->verifier == NULL || *sl->verifier == '\0')
return false;
/* FIXME check that verifier is valid base64. */
if (strchr (sl->verifier, ','))
return false;
return true;
}
|