1*19c14409Schristos /* $NetBSD: mech_anonymous.c,v 1.3 2011/02/11 23:44:43 christos Exp $ */
2231558cbSagc
3231558cbSagc /* Copyright (c) 2010 The NetBSD Foundation, Inc.
4231558cbSagc * All rights reserved.
5231558cbSagc *
6231558cbSagc * This code is derived from software contributed to The NetBSD Foundation
7231558cbSagc * by Mateusz Kocielski.
8231558cbSagc *
9231558cbSagc * Redistribution and use in source and binary forms, with or without
10231558cbSagc * modification, are permitted provided that the following conditions
11231558cbSagc * are met:
12231558cbSagc * 1. Redistributions of source code must retain the above copyright
13231558cbSagc * notice, this list of conditions and the following disclaimer.
14231558cbSagc * 2. Redistributions in binary form must reproduce the above copyright
15231558cbSagc * notice, this list of conditions and the following disclaimer in the
16231558cbSagc * documentation and/or other materials provided with the distribution.
17231558cbSagc * 3. All advertising materials mentioning features or use of this software
18231558cbSagc * must display the following acknowledgement:
19231558cbSagc * This product includes software developed by the NetBSD
20231558cbSagc * Foundation, Inc. and its contributors.
21231558cbSagc * 4. Neither the name of The NetBSD Foundation nor the names of its
22231558cbSagc * contributors may be used to endorse or promote products derived
23231558cbSagc * from this software without specific prior written permission.
24231558cbSagc *
25231558cbSagc * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
26231558cbSagc * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
27231558cbSagc * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
28231558cbSagc * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
29231558cbSagc * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30231558cbSagc * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31231558cbSagc * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32231558cbSagc * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33231558cbSagc * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34231558cbSagc * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35231558cbSagc * POSSIBILITY OF SUCH DAMAGE.
36231558cbSagc */
37*19c14409Schristos #include <sys/cdefs.h>
38*19c14409Schristos __RCSID("$NetBSD: mech_anonymous.c,v 1.3 2011/02/11 23:44:43 christos Exp $");
39231558cbSagc
40231558cbSagc #include <saslc.h>
41231558cbSagc #include <stdio.h>
42231558cbSagc #include <string.h>
43231558cbSagc
44*19c14409Schristos #include "error.h"
45*19c14409Schristos #include "mech.h"
46*19c14409Schristos #include "saslc_private.h"
47*19c14409Schristos
48*19c14409Schristos
49*19c14409Schristos /* See RFC 2245. */
50231558cbSagc
51231558cbSagc /* properties */
52*19c14409Schristos #define SASLC_ANONYMOUS_AUTHCID SASLC_PROP_AUTHCID
53231558cbSagc
54231558cbSagc /*
55231558cbSagc * @brief doing one step of the sasl authentication
56231558cbSagc * @param sess sasl session
57231558cbSagc * @param in input data
58231558cbSagc * @param inlen input data length
59231558cbSagc * @param out place to store output data
60231558cbSagc * @param outlen output data length
61231558cbSagc * @return
62231558cbSagc * MECH_OK - success,
63231558cbSagc * MECH_STEP - more steps are needed,
64231558cbSagc * MECH_ERROR - error
65231558cbSagc */
66231558cbSagc /*ARGSUSED*/
67231558cbSagc static int
saslc__mech_anonymous_cont(saslc_sess_t * sess,const void * in,size_t inlen,void ** out,size_t * outlen)68231558cbSagc saslc__mech_anonymous_cont(saslc_sess_t *sess, const void *in, size_t inlen,
69231558cbSagc void **out, size_t *outlen)
70231558cbSagc {
71*19c14409Schristos
72231558cbSagc return saslc__mech_strdup(sess, (char **)out, outlen,
73*19c14409Schristos SASLC_ANONYMOUS_AUTHCID,
74*19c14409Schristos "authcid is required for an authentication");
75231558cbSagc }
76231558cbSagc
77231558cbSagc /* mechanism definition */
78231558cbSagc const saslc__mech_t saslc__mech_anonymous = {
79*19c14409Schristos .name = "ANONYMOUS",
80*19c14409Schristos .flags = FLAG_ANONYMOUS,
81*19c14409Schristos .create = saslc__mech_generic_create,
82*19c14409Schristos .cont = saslc__mech_anonymous_cont,
83*19c14409Schristos .encode = NULL,
84*19c14409Schristos .decode = NULL,
85*19c14409Schristos .destroy = saslc__mech_generic_destroy
86231558cbSagc };
87