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
|
/* printer.h --- Convert SCRAM token structures into strings.
* 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 "printer.h"
/* Get free. */
#include <stdlib.h>
/* Get asprintf. */
#include <stdio.h>
/* Get strdup. */
#include <string.h>
/* Get token validator. */
#include "validate.h"
static char *
scram_escape (const char *str)
{
char *out = malloc (strlen (str) * 3 + 1);
char *p = out;
if (!out)
return NULL;
while (*str)
{
if (*str == ',')
{
memcpy (p, "=2C", 3);
p += 3;
}
else if (*str == '=')
{
memcpy (p, "=3D", 3);
p += 3;
}
else
{
*p = *str;
p++;
}
str++;
}
*p = '\0';
return out;
}
/* Print SCRAM client-first token into newly allocated output string
OUT. Returns 0 on success, -1 on invalid token, and -2 on memory
allocation errors. */
int
scram_print_client_first (struct scram_client_first *cf, char **out)
{
char *username = NULL;
char *authzid = NULL;
int n;
/* Below we assume fields are sensible, so first verify that to
avoid crashes. */
if (!scram_valid_client_first (cf))
return -1;
/* Escape username and authzid. */
username = scram_escape (cf->username);
if (!username)
return -2;
if (cf->authzid)
{
authzid = scram_escape (cf->authzid);
if (!authzid)
return -2;
}
n = asprintf (out, "%c%s%s,%s%s,n=%s,r=%s",
cf->cbflag,
cf->cbflag == 'p' ? "=" : "",
cf->cbflag == 'p' ? cf->cbname : "",
authzid ? "a=" : "",
authzid ? authzid : "", username, cf->client_nonce);
free (username);
free (authzid);
if (n <= 0 || *out == NULL)
return -1;
return 0;
}
/* Print SCRAM server-first token into newly allocated output string
OUT. Returns 0 on success, -1 on invalid token, and -2 on memory
allocation errors. */
int
scram_print_server_first (struct scram_server_first *sf, char **out)
{
int n;
/* Below we assume fields are sensible, so first verify that to
avoid crashes. */
if (!scram_valid_server_first (sf))
return -1;
n = asprintf (out, "r=%s,s=%s,i=%lu",
sf->nonce, sf->salt, (unsigned long) sf->iter);
if (n <= 0 || *out == NULL)
return -1;
return 0;
}
/* Print SCRAM client-final token into newly allocated output string
OUT. Returns 0 on success, -1 on invalid token, and -2 on memory
allocation errors. */
int
scram_print_client_final (struct scram_client_final *cl, char **out)
{
int n;
/* Below we assume fields are sensible, so first verify that to
avoid crashes. */
if (!scram_valid_client_final (cl))
return -1;
n = asprintf (out, "c=%s,r=%s,p=%s", cl->cbind, cl->nonce, cl->proof);
if (n <= 0 || *out == NULL)
return -1;
return 0;
}
/* Print SCRAM server-final token into newly allocated output string
OUT. Returns 0 on success, -1 on invalid token, and -2 on memory
allocation errors. */
int
scram_print_server_final (struct scram_server_final *sl, char **out)
{
int n;
/* Below we assume fields are sensible, so first verify that to
avoid crashes. */
if (!scram_valid_server_final (sl))
return -1;
n = asprintf (out, "v=%s", sl->verifier);
if (n <= 0 || *out == NULL)
return -1;
return 0;
}
|