NeoMutt  2025-09-05-55-g97fc89
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
auth_cram.c
Go to the documentation of this file.
1
24
30
31#include "config.h"
32#include <string.h>
33#include "private.h"
34#include "mutt/lib.h"
35#include "conn/lib.h"
36#include "adata.h"
37#include "auth.h"
38
39#define MD5_BLOCK_LEN 64
40#define MD5_DIGEST_LEN 16
41
48static void hmac_md5(const char *password, const char *challenge, unsigned char *response)
49{
50 struct Md5Ctx md5ctx = { 0 };
51 unsigned char ipad[MD5_BLOCK_LEN] = { 0 };
52 unsigned char opad[MD5_BLOCK_LEN] = { 0 };
53 unsigned char secret[MD5_BLOCK_LEN + 1] = { 0 };
54
55 size_t secret_len = strlen(password);
56
57 /* passwords longer than MD5_BLOCK_LEN bytes are substituted with their MD5
58 * digests */
59 if (secret_len > MD5_BLOCK_LEN)
60 {
61 unsigned char hash_passwd[MD5_DIGEST_LEN];
62 mutt_md5_bytes(password, secret_len, hash_passwd);
63 mutt_str_copy((char *) secret, (char *) hash_passwd, MD5_DIGEST_LEN);
64 secret_len = MD5_DIGEST_LEN;
65 }
66 else
67 {
68 mutt_str_copy((char *) secret, password, sizeof(secret));
69 }
70
71 memcpy(ipad, secret, secret_len);
72 memcpy(opad, secret, secret_len);
73
74 for (int i = 0; i < MD5_BLOCK_LEN; i++)
75 {
76 ipad[i] ^= 0x36;
77 opad[i] ^= 0x5c;
78 }
79
80 /* inner hash: challenge and ipadded secret */
81 mutt_md5_init_ctx(&md5ctx);
83 mutt_md5_process(challenge, &md5ctx);
84 mutt_md5_finish_ctx(&md5ctx, response);
85
86 /* outer hash: inner hash and opadded secret */
87 mutt_md5_init_ctx(&md5ctx);
89 mutt_md5_process_bytes(response, MD5_DIGEST_LEN, &md5ctx);
90 mutt_md5_finish_ctx(&md5ctx, response);
91}
92
96enum ImapAuthRes imap_auth_cram_md5(struct ImapAccountData *adata, const char *method)
97{
99 return IMAP_AUTH_UNAVAIL;
100
101 // L10N: (%s) is the method name, e.g. Anonymous, CRAM-MD5, GSSAPI, SASL
102 mutt_message(_("Authenticating (%s)..."), "CRAM-MD5");
103
104 /* get auth info */
105 if (mutt_account_getlogin(&adata->conn->account) < 0)
106 return IMAP_AUTH_FAILURE;
107 if (mutt_account_getpass(&adata->conn->account) < 0)
108 return IMAP_AUTH_FAILURE;
109
110 imap_cmd_start(adata, "AUTHENTICATE CRAM-MD5");
111
112 struct Buffer *ibuf = buf_pool_get();
113 struct Buffer *obuf = buf_pool_get();
114 unsigned char hmac_response[MD5_DIGEST_LEN];
115 int rc_step;
117
118 /* From RFC2195:
119 * The data encoded in the first ready response contains a presumptively
120 * arbitrary string of random digits, a timestamp, and the fully-qualified
121 * primary host name of the server. The syntax of the unencoded form must
122 * correspond to that of an RFC822 'msg-id' [RFC822] as described in [POP3]. */
123 do
124 {
125 rc_step = imap_cmd_step(adata);
126 } while (rc_step == IMAP_RES_CONTINUE);
127
128 if (rc_step != IMAP_RES_RESPOND)
129 {
130 mutt_debug(LL_DEBUG1, "Invalid response from server\n");
131 goto bail;
132 }
133
134 if (mutt_b64_decode(adata->buf + 2, obuf->data, obuf->dsize) == -1)
135 {
136 mutt_debug(LL_DEBUG1, "Error decoding base64 response\n");
137 goto bail;
138 }
139
140 mutt_debug(LL_DEBUG2, "CRAM challenge: %s\n", buf_string(obuf));
141
142 /* The client makes note of the data and then responds with a string
143 * consisting of the user name, a space, and a 'digest'. The latter is
144 * computed by applying the keyed MD5 algorithm from [KEYED-MD5] where the
145 * key is a shared secret and the digested text is the timestamp (including
146 * angle-brackets).
147 *
148 * Note: The user name shouldn't be quoted. Since the digest can't contain
149 * spaces, there is no ambiguity. Some servers get this wrong, we'll work
150 * around them when the bug report comes in. Until then, we'll remain
151 * blissfully RFC-compliant. */
152 hmac_md5(adata->conn->account.pass, buf_string(obuf), hmac_response);
153 /* dubious optimisation I saw elsewhere: make the whole string in one call */
154 int off = buf_printf(obuf, "%s ", adata->conn->account.user);
155 mutt_md5_toascii(hmac_response, obuf->data + off);
156 mutt_debug(LL_DEBUG2, "CRAM response: %s\n", buf_string(obuf));
157
158 /* ibuf must be long enough to store the base64 encoding of obuf,
159 * plus the additional debris */
160 mutt_b64_encode(obuf->data, obuf->dsize, ibuf->data, ibuf->dsize - 2);
161 buf_addstr(ibuf, "\r\n");
162 mutt_socket_send(adata->conn, buf_string(ibuf));
163
164 do
165 {
166 rc_step = imap_cmd_step(adata);
167 } while (rc_step == IMAP_RES_CONTINUE);
168
169 if (rc_step != IMAP_RES_OK)
170 {
171 mutt_debug(LL_DEBUG1, "Error receiving server response\n");
172 goto bail;
173 }
174
175 if (imap_code(adata->buf))
177
178bail:
179 if (rc != IMAP_AUTH_SUCCESS)
180 {
181 // L10N: %s is the method name, e.g. Anonymous, CRAM-MD5, GSSAPI, SASL
182 mutt_error(_("%s authentication failed"), "CRAM-MD5");
183 }
184
185 buf_pool_release(&ibuf);
186 buf_pool_release(&obuf);
187 return rc;
188}
IMAP authenticator multiplexor.
ImapAuthRes
Results of IMAP Authentication.
Definition auth.h:39
@ IMAP_AUTH_FAILURE
Authentication failed.
Definition auth.h:41
@ IMAP_AUTH_SUCCESS
Authentication successful.
Definition auth.h:40
@ IMAP_AUTH_UNAVAIL
Authentication method not permitted.
Definition auth.h:42
#define MD5_BLOCK_LEN
Definition auth_cram.c:39
static void hmac_md5(const char *password, const char *challenge, unsigned char *response)
Produce CRAM-MD5 challenge response.
Definition auth_cram.c:48
#define MD5_DIGEST_LEN
Definition auth_cram.c:40
size_t mutt_b64_encode(const char *in, size_t inlen, char *out, size_t outlen)
Convert raw bytes to NUL-terminated base64 string.
Definition base64.c:87
int mutt_b64_decode(const char *in, char *out, size_t olen)
Convert NUL-terminated base64 string to raw bytes.
Definition base64.c:135
int buf_printf(struct Buffer *buf, const char *fmt,...)
Format a string overwriting a Buffer.
Definition buffer.c:161
size_t buf_addstr(struct Buffer *buf, const char *s)
Add a string to a Buffer.
Definition buffer.c:226
static const char * buf_string(const struct Buffer *buf)
Convert a buffer to a const char * "string".
Definition buffer.h:96
Connection Library.
int mutt_account_getpass(struct ConnAccount *cac)
Fetch password into ConnAccount, if necessary.
int mutt_account_getlogin(struct ConnAccount *cac)
Retrieve login info into ConnAccount, if necessary.
enum ImapAuthRes imap_auth_cram_md5(struct ImapAccountData *adata, const char *method)
Authenticate using CRAM-MD5 - Implements ImapAuth::authenticate() -.
Definition auth_cram.c:96
#define mutt_error(...)
Definition logging2.h:93
#define mutt_message(...)
Definition logging2.h:92
#define mutt_debug(LEVEL,...)
Definition logging2.h:90
Imap-specific Account data.
int imap_cmd_start(struct ImapAccountData *adata, const char *cmdstr)
Given an IMAP command, send it to the server.
Definition command.c:1113
int imap_cmd_step(struct ImapAccountData *adata)
Reads server responses from an IMAP command.
Definition command.c:1127
bool imap_code(const char *s)
Was the command successful.
Definition command.c:1254
Shared constants/structs that are private to IMAP.
#define IMAP_CAP_AUTH_CRAM_MD5
RFC2195: CRAM-MD5 authentication.
Definition private.h:126
#define IMAP_RES_RESPOND
+
Definition private.h:57
#define IMAP_RES_OK
<tag> OK ...
Definition private.h:55
#define IMAP_RES_CONTINUE
* ...
Definition private.h:56
@ LL_DEBUG2
Log at debug level 2.
Definition logging2.h:45
@ LL_DEBUG1
Log at debug level 1.
Definition logging2.h:44
void mutt_md5_process_bytes(const void *buf, size_t buflen, struct Md5Ctx *md5ctx)
Process a block of data.
Definition md5.c:373
void * mutt_md5_bytes(const void *buffer, size_t len, void *resbuf)
Calculate the MD5 hash of a buffer.
Definition md5.c:336
void mutt_md5_process(const char *str, struct Md5Ctx *md5ctx)
Process a NUL-terminated string.
Definition md5.c:355
void mutt_md5_init_ctx(struct Md5Ctx *md5ctx)
Initialise the MD5 computation.
Definition md5.c:261
void * mutt_md5_finish_ctx(struct Md5Ctx *md5ctx, void *resbuf)
Process the remaining bytes in the buffer.
Definition md5.c:285
void mutt_md5_toascii(const void *digest, char *resbuf)
Convert a binary MD5 digest into ASCII Hexadecimal.
Definition md5.c:456
Convenience wrapper for the library headers.
#define _(a)
Definition message.h:28
size_t mutt_str_copy(char *dest, const char *src, size_t dsize)
Copy a string into a buffer (guaranteeing NUL-termination)
Definition string.c:581
struct Buffer * buf_pool_get(void)
Get a Buffer from the pool.
Definition pool.c:82
void buf_pool_release(struct Buffer **ptr)
Return a Buffer to the pool.
Definition pool.c:96
#define mutt_socket_send(conn, buf)
Definition socket.h:57
String manipulation buffer.
Definition buffer.h:36
size_t dsize
Length of data.
Definition buffer.h:39
char * data
Pointer to data.
Definition buffer.h:37
char user[128]
Username.
Definition connaccount.h:56
char pass[256]
Password.
Definition connaccount.h:57
struct ConnAccount account
Account details: username, password, etc.
Definition connection.h:49
IMAP-specific Account data -.
Definition adata.h:40
ImapCapFlags capabilities
Capability flags.
Definition adata.h:55
char * buf
Definition adata.h:59
struct Connection * conn
Connection to IMAP server.
Definition adata.h:41
Cursor for the MD5 hashing.
Definition md5.h:37