NeoMutt  2023-05-17-33-gce4425
Teaching an old dog new tricks
DOXYGEN
auth.c
Go to the documentation of this file.
1
31#include "config.h"
32#include <string.h>
33#include "private.h"
34#include "mutt/lib.h"
35#include "config/lib.h"
36#include "core/lib.h"
37#include "auth.h"
38
43{
50 enum ImapAuthRes (*authenticate)(struct ImapAccountData *adata, const char *method);
51
52 const char *method;
54};
55
59static const struct ImapAuth ImapAuthenticators[] = {
60 // clang-format off
61 { imap_auth_oauth, "oauthbearer" },
62 { imap_auth_xoauth2, "xoauth2" },
63 { imap_auth_plain, "plain" },
64#if defined(USE_SASL_CYRUS)
65 { imap_auth_sasl, NULL },
66#elif defined(USE_SASL_GNU)
67 { imap_auth_gsasl, NULL },
68#else
69 { imap_auth_anon, "anonymous" },
70#endif
71#ifdef USE_GSS
72 { imap_auth_gss, "gssapi" },
73#endif
74/* SASL includes CRAM-MD5 (and GSSAPI, but that's not enabled by default) */
75#ifndef HAVE_SASL
76 { imap_auth_cram_md5, "cram-md5" },
77#endif
78 { imap_auth_login, "login" },
79 // clang-format on
80};
81
90bool imap_auth_is_valid(const char *authenticator)
91{
92 for (size_t i = 0; i < mutt_array_size(ImapAuthenticators); i++)
93 {
94 const struct ImapAuth *auth = &ImapAuthenticators[i];
95 if (auth->method && mutt_istr_equal(auth->method, authenticator))
96 return true;
97 }
98
99 return false;
100}
101
111{
112 int rc = IMAP_AUTH_FAILURE;
113
114 const struct Slist *c_imap_authenticators = cs_subset_slist(NeoMutt->sub, "imap_authenticators");
115 if (c_imap_authenticators && (c_imap_authenticators->count > 0))
116 {
117 mutt_debug(LL_DEBUG2, "Trying user-defined imap_authenticators\n");
118
119 /* Try user-specified list of authentication methods */
120 struct ListNode *np = NULL;
121 STAILQ_FOREACH(np, &c_imap_authenticators->head, entries)
122 {
123 mutt_debug(LL_DEBUG2, "Trying method %s\n", np->data);
124
125 for (size_t i = 0; i < mutt_array_size(ImapAuthenticators); i++)
126 {
127 const struct ImapAuth *auth = &ImapAuthenticators[i];
128 if (!auth->method || mutt_istr_equal(auth->method, np->data))
129 {
130 rc = auth->authenticate(adata, np->data);
131 if (rc == IMAP_AUTH_SUCCESS)
132 {
133 return rc;
134 }
135 }
136 }
137 }
138 }
139 else
140 {
141 /* Fall back to default: any authenticator */
142 mutt_debug(LL_DEBUG2, "Trying pre-defined imap_authenticators\n");
143
144 for (size_t i = 0; i < mutt_array_size(ImapAuthenticators); i++)
145 {
146 rc = ImapAuthenticators[i].authenticate(adata, NULL);
147 if (rc == IMAP_AUTH_SUCCESS)
148 return rc;
149 }
150 }
151
152 mutt_error(_("No authenticators available or wrong credentials"));
153 return rc;
154}
IMAP authenticator multiplexor.
enum ImapAuthRes imap_auth_gss(struct ImapAccountData *adata, const char *method)
GSS Authentication support - Implements ImapAuth::authenticate()
Definition: auth_gss.c:104
enum ImapAuthRes imap_auth_login(struct ImapAccountData *adata, const char *method)
Plain LOGIN support - Implements ImapAuth::authenticate()
Definition: auth_login.c:44
enum ImapAuthRes imap_auth_cram_md5(struct ImapAccountData *adata, const char *method)
Authenticate using CRAM-MD5 - Implements ImapAuth::authenticate()
Definition: auth_cram.c:96
enum ImapAuthRes imap_auth_xoauth2(struct ImapAccountData *adata, const char *method)
Authenticate an IMAP connection using XOAUTH2 - Implements ImapAuth::authenticate()
Definition: auth_oauth.c:120
enum ImapAuthRes imap_auth_plain(struct ImapAccountData *adata, const char *method)
SASL PLAIN support - Implements ImapAuth::authenticate()
Definition: auth_plain.c:41
ImapAuthRes
Results of IMAP Authentication.
Definition: auth.h:38
@ IMAP_AUTH_FAILURE
Authentication failed.
Definition: auth.h:40
@ IMAP_AUTH_SUCCESS
Authentication successful.
Definition: auth.h:39
enum ImapAuthRes imap_auth_anon(struct ImapAccountData *adata, const char *method)
Authenticate anonymously - Implements ImapAuth::authenticate()
Definition: auth_anon.c:41
enum ImapAuthRes imap_auth_oauth(struct ImapAccountData *adata, const char *method)
Authenticate an IMAP connection using OAUTHBEARER - Implements ImapAuth::authenticate()
Definition: auth_oauth.c:112
enum ImapAuthRes imap_auth_gsasl(struct ImapAccountData *adata, const char *method)
GNU SASL authenticator - Implements ImapAuth::authenticate()
Definition: auth_gsasl.c:41
enum ImapAuthRes imap_auth_sasl(struct ImapAccountData *adata, const char *method)
SASL authenticator - Implements ImapAuth::authenticate()
Definition: auth_sasl.c:45
const struct Slist * cs_subset_slist(const struct ConfigSubset *sub, const char *name)
Get a string-list config item by name.
Definition: helpers.c:268
Convenience wrapper for the config headers.
Convenience wrapper for the core headers.
#define mutt_error(...)
Definition: logging2.h:87
#define mutt_debug(LEVEL,...)
Definition: logging2.h:84
static const struct ImapAuth ImapAuthenticators[]
Accepted authentication methods.
Definition: auth.c:59
int imap_authenticate(struct ImapAccountData *adata)
Authenticate to an IMAP server.
Definition: auth.c:110
bool imap_auth_is_valid(const char *authenticator)
Check if string is a valid imap authentication method.
Definition: auth.c:90
@ LL_DEBUG2
Log at debug level 2.
Definition: logging2.h:41
#define mutt_array_size(x)
Definition: memory.h:36
Convenience wrapper for the library headers.
#define _(a)
Definition: message.h:28
bool mutt_istr_equal(const char *a, const char *b)
Compare two strings, ignoring case.
Definition: string.c:810
#define STAILQ_FOREACH(var, head, field)
Definition: queue.h:352
GUI display the mailboxes in a side panel.
void * adata
Private data (for Mailbox backends)
Definition: account.h:43
IMAP-specific Account data -.
Definition: adata.h:40
IMAP authentication multiplexor.
Definition: auth.c:43
enum ImapAuthRes(* authenticate)(struct ImapAccountData *adata, const char *method)
Authenticate an IMAP connection.
Definition: auth.c:50
const char * method
Name of authentication method supported, NULL means variable.
Definition: auth.c:52
A List node for strings.
Definition: list.h:35
char * data
String.
Definition: list.h:36
Container for Accounts, Notifications.
Definition: neomutt.h:37
struct ConfigSubset * sub
Inherited config items.
Definition: neomutt.h:39
String list.
Definition: slist.h:47
struct ListHead head
List containing values.
Definition: slist.h:48
size_t count
Number of values in list.
Definition: slist.h:49