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
|
/* GNU Mailutils -- a suite of utilities for electronic mail
Copyright (C) 1999, 2001, 2005-2008, 2010-2012 Free Software
Foundation, Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3, or (at your option)
any later version.
GNU Mailutils 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Mailutils. If not, see <http://www.gnu.org/licenses/>. */
#include "imap4d.h"
struct imap_auth
{
char *name;
imap4d_auth_handler_fp handler;
};
static mu_list_t imap_auth_list;
static int
comp (const void *item, const void *data)
{
const struct imap_auth *p = item;
return strcmp (p->name, (const char*) data);
}
void
auth_add (char *name, imap4d_auth_handler_fp handler)
{
struct imap_auth *p = mu_alloc (sizeof (*p));
p->name = name;
p->handler = handler;
if (!imap_auth_list)
{
mu_list_create (&imap_auth_list);
mu_list_set_comparator (imap_auth_list, comp);
mu_list_set_destroy_item (imap_auth_list, mu_list_free_item);
}
mu_list_append (imap_auth_list, (void*)p);
}
void
auth_remove (char *name)
{
mu_list_remove (imap_auth_list, (void*) name);
}
static int
_auth_capa (void *item, void *usused)
{
struct imap_auth *p = item;
io_sendf (" AUTH=%s", p->name);
return 0;
}
static int
_auth_try (void *item, void *data)
{
struct imap_auth *p = item;
struct imap4d_auth *ap = data;
if (strcmp (p->name, ap->auth_type) == 0)
{
int res = p->handler (ap);
if (res)
return res;
}
return 0;
}
void
imap4d_auth_capability ()
{
mu_list_foreach (imap_auth_list, _auth_capa, NULL);
}
/*
6.2.1. AUTHENTICATE Command
Arguments: authentication mechanism name
*/
int
imap4d_authenticate (struct imap4d_command *command, imap4d_tokbuf_t tok)
{
char *auth_type;
struct imap4d_auth adata;
enum imap4d_auth_result res;
if (imap4d_tokbuf_argc (tok) != 3)
return io_completion_response (command, RESP_BAD, "Invalid arguments");
auth_type = imap4d_tokbuf_getarg (tok, IMAP4_ARG_1);
if (tls_required)
return io_completion_response (command, RESP_NO,
"Command disabled: Use STARTTLS first");
adata.command = command;
adata.auth_type = auth_type;
adata.username = NULL;
res = mu_list_foreach (imap_auth_list, _auth_try, &adata);
switch (res)
{
case imap4d_auth_nosup:
return io_completion_response (command, RESP_NO,
"Authentication mechanism not supported");
case imap4d_auth_ok:
return 0;
case imap4d_auth_resp:
if (adata.response == RESP_OK && adata.username)
{
if (imap4d_session_setup (adata.username))
return io_completion_response (command, RESP_NO,
"User name or passwd rejected");
else
return io_completion_response (command, RESP_OK,
"%s authentication successful",
auth_type);
}
/* fall through */
case imap4d_auth_fail:
adata.response = RESP_NO;
break;
}
return io_completion_response (command, adata.response,
"%s authentication failed", auth_type);
}
|