gsasl  2.2.2
external/server.c
Go to the documentation of this file.
1 /* server.c --- EXTERNAL mechanism as defined in RFC 2222, server side.
2  * Copyright (C) 2002-2025 Simon Josefsson
3  *
4  * This file is part of GNU SASL Library.
5  *
6  * GNU SASL Library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public License
8  * as published by the Free Software Foundation; either version 2.1 of
9  * the License, or (at your option) any later version.
10  *
11  * GNU SASL Library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with GNU SASL Library; if not, see
18  * <https://www.gnu.org/licenses/>.
19  *
20  */
21 
22 #include <config.h>
23 
24 /* Get specification. */
25 #include "external.h"
26 
27 /* Get memchr. */
28 #include <string.h>
29 
30 int
32  void *mech_data _GL_UNUSED,
33  const char *input, size_t input_len,
34  char **output, size_t *output_len)
35 {
36  int rc;
37 
38  *output_len = 0;
39  *output = NULL;
40 
41  if (!input)
42  return GSASL_NEEDS_MORE;
43 
44  /* Quoting rfc2222bis-09:
45  * extern-resp = *( UTF8-char-no-nul )
46  * UTF8-char-no-nul = UTF8-1-no-nul / UTF8-2 / UTF8-3 / UTF8-4
47  * UTF8-1-no-nul = %x01-7F */
48  if (memchr (input, '\0', input_len))
50 
51  /* FIXME: Validate that input is UTF-8. */
52 
53  if (input_len > 0)
54  rc = gsasl_property_set_raw (sctx, GSASL_AUTHZID, input, input_len);
55  else
56  rc = gsasl_property_set (sctx, GSASL_AUTHZID, NULL);
57  if (rc != GSASL_OK)
58  return rc;
59 
60  return gsasl_callback (NULL, sctx, GSASL_VALIDATE_EXTERNAL);
61 }
int gsasl_callback(Gsasl *ctx, Gsasl_session *sctx, Gsasl_property prop)
Definition: callback.c:70
int rc
Definition: error.c:36
int _gsasl_external_server_step(Gsasl_session *sctx, void *mech_data _GL_UNUSED, const char *input, size_t input_len, char **output, size_t *output_len)
@ GSASL_OK
Definition: gsasl.h:128
@ GSASL_NEEDS_MORE
Definition: gsasl.h:129
@ GSASL_MECHANISM_PARSE_ERROR
Definition: gsasl.h:136
_GSASL_API int gsasl_property_set_raw(Gsasl_session *sctx, Gsasl_property prop, const char *data, size_t len)
Definition: property.c:217
_GSASL_API int gsasl_property_set(Gsasl_session *sctx, Gsasl_property prop, const char *data)
Definition: property.c:188
@ GSASL_AUTHZID
Definition: gsasl.h:224
@ GSASL_VALIDATE_EXTERNAL
Definition: gsasl.h:253