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
|
/* client.c --- SASL mechanism SECURID from RFC 2808, client side.
* Copyright (C) 2002-2025 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, see
* <https://www.gnu.org/licenses/>.
*
*/
#include <config.h>
/* Get specification. */
#include "securid.h"
/* Get malloc, free. */
#include <stdlib.h>
/* Get strdup, strlen. */
#include <string.h>
#define PASSCODE "passcode"
#define PIN "pin"
int
_gsasl_securid_client_start (Gsasl_session *sctx _GL_UNUSED, void **mech_data)
{
int *step;
step = (int *) malloc (sizeof (*step));
if (step == NULL)
return GSASL_MALLOC_ERROR;
*step = 0;
*mech_data = step;
return GSASL_OK;
}
int
_gsasl_securid_client_step (Gsasl_session *sctx,
void *mech_data,
const char *input,
size_t input_len,
char **output, size_t *output_len)
{
int *step = mech_data;
const char *authzid = NULL, *authid = NULL, *passcode = NULL, *pin = NULL;
size_t authzidlen, authidlen, passcodelen, pinlen = 0;
int do_pin = 0;
int res;
switch (*step)
{
case 1:
if (input_len == strlen (PASSCODE) &&
memcmp (input, PASSCODE, strlen (PASSCODE)) == 0)
{
*step = 0;
}
else if (input_len >= strlen (PIN) &&
memcmp (input, PIN, strlen (PIN)) == 0)
{
do_pin = 1;
*step = 0;
}
else
{
*output_len = 0;
res = GSASL_OK;
break;
}
/* fall through */
case 0:
authzid = gsasl_property_get (sctx, GSASL_AUTHZID);
if (authzid)
authzidlen = strlen (authzid);
else
authzidlen = 0;
authid = gsasl_property_get (sctx, GSASL_AUTHID);
if (!authid)
return GSASL_NO_AUTHID;
authidlen = strlen (authid);
passcode = gsasl_property_get (sctx, GSASL_PASSCODE);
if (!passcode)
return GSASL_NO_PASSCODE;
passcodelen = strlen (passcode);
if (do_pin)
{
if (input_len > strlen (PIN))
{
res = gsasl_property_set_raw (sctx, GSASL_SUGGESTED_PIN,
&input[strlen (PIN)],
input_len - strlen (PIN));
if (res != GSASL_OK)
return res;
}
pin = gsasl_property_get (sctx, GSASL_PIN);
if (!pin)
return GSASL_NO_PIN;
pinlen = strlen (pin);
}
*output_len = authzidlen + 1 + authidlen + 1 + passcodelen + 1;
if (do_pin)
*output_len += pinlen + 1;
*output = malloc (*output_len);
if (*output == NULL)
return GSASL_MALLOC_ERROR;
if (authzid)
memcpy (*output, authzid, authzidlen);
(*output)[authzidlen] = '\0';
memcpy (*output + authzidlen + 1, authid, authidlen);
(*output)[authzidlen + 1 + authidlen] = '\0';
memcpy (*output + authzidlen + 1 + authidlen + 1, passcode,
passcodelen);
(*output)[authzidlen + 1 + authidlen + 1 + passcodelen] = '\0';
if (do_pin)
{
memcpy (*output + authzidlen + 1 + authidlen + 1 + passcodelen + 1,
pin, pinlen);
(*output)[authzidlen + 1 + authidlen + 1 + passcodelen + 1 +
pinlen] = '\0';
}
(*step)++;
res = GSASL_OK;
break;
case 2:
*output_len = 0;
*output = NULL;
(*step)++;
res = GSASL_OK;
break;
default:
res = GSASL_MECHANISM_CALLED_TOO_MANY_TIMES;
break;
}
return res;
}
void
_gsasl_securid_client_finish (Gsasl_session *sctx _GL_UNUSED, void *mech_data)
{
int *step = mech_data;
free (step);
}
|