NeoMutt  2025-12-11-911-gd8d604
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
url.c
Go to the documentation of this file.
1
24
30
31#include "config.h"
32#include <stdbool.h>
33#include <string.h>
34#include "mutt/lib.h"
35#include "url.h"
36#include "mime.h"
37
41static const struct Mapping UrlMap[] = {
42 { "file", U_FILE }, { "imap", U_IMAP }, { "imaps", U_IMAPS },
43 { "pop", U_POP }, { "pops", U_POPS }, { "news", U_NNTP },
44 { "nntp", U_NNTP }, { "snews", U_NNTPS }, { "nntps", U_NNTPS },
45 { "mailto", U_MAILTO }, { "notmuch", U_NOTMUCH }, { "smtp", U_SMTP },
46 { "smtps", U_SMTPS }, { NULL, U_UNKNOWN },
47};
48
56static bool parse_query_string(struct UrlQueryList *list, char *src)
57{
58 if (!src || (*src == '\0'))
59 return false;
60
61 bool again = true;
62 while (again)
63 {
64 regmatch_t *match = mutt_prex_capture(PREX_URL_QUERY_KEY_VAL, src);
65 if (!match)
66 return false;
67
68 regmatch_t *mkey = &match[PREX_URL_QUERY_KEY_VAL_MATCH_KEY];
69 regmatch_t *mval = &match[PREX_URL_QUERY_KEY_VAL_MATCH_VAL];
70
71 again = src[mutt_regmatch_end(mval)] != '\0';
72
73 char *key = src + mutt_regmatch_start(mkey);
74 char *val = src + mutt_regmatch_start(mval);
75 src[mutt_regmatch_end(mkey)] = '\0';
76 src[mutt_regmatch_end(mval)] = '\0';
77 if ((url_pct_decode(key) < 0) || (url_pct_decode(val) < 0))
78 return false;
79
80 struct UrlQuery *qs = MUTT_MEM_CALLOC(1, struct UrlQuery);
81 qs->name = key;
82 qs->value = val;
83 STAILQ_INSERT_TAIL(list, qs, entries);
84
85 src += mutt_regmatch_end(mval) + again;
86 }
87
88 return true;
89}
90
97static enum UrlScheme get_scheme(const char *src, const regmatch_t *match)
98{
99 enum UrlScheme rc = U_UNKNOWN;
100 if (src && match)
101 {
103 if (rc == -1)
104 rc = U_UNKNOWN;
105 }
106 return rc;
107}
108
113static struct Url *url_new(void)
114{
115 struct Url *url = MUTT_MEM_CALLOC(1, struct Url);
117 return url;
118}
119
124void url_free(struct Url **ptr)
125{
126 if (!ptr || !*ptr)
127 return;
128
129 struct Url *url = *ptr;
130
131 struct UrlQueryList *l = &url->query_strings;
132 while (!STAILQ_EMPTY(l))
133 {
134 struct UrlQuery *np = STAILQ_FIRST(l);
135 STAILQ_REMOVE_HEAD(l, entries);
136 // Don't free 'name', 'value': they are pointers into the 'src' string
137 FREE(&np);
138 }
139
140 FREE(&url->src);
141 FREE(ptr);
142}
143
152void url_pct_encode(char *buf, size_t buflen, const char *src)
153{
154 static const char *hex = "0123456789ABCDEF";
155
156 if (!buf)
157 return;
158
159 *buf = '\0';
160 buflen--;
161 while (src && *src && (buflen != 0))
162 {
163 if (strchr(" /:&%=", *src))
164 {
165 if (buflen < 3)
166 break;
167
168 *buf++ = '%';
169 *buf++ = hex[(*src >> 4) & 0xf];
170 *buf++ = hex[*src & 0xf];
171 src++;
172 buflen -= 3;
173 continue;
174 }
175 *buf++ = *src++;
176 buflen--;
177 }
178 *buf = '\0';
179}
180
190int url_pct_decode(char *s)
191{
192 if (!s)
193 return -1;
194
195 char *d = NULL;
196
197 for (d = s; *s; s++)
198 {
199 if (*s == '%')
200 {
201 if ((s[1] != '\0') && (s[2] != '\0') && mutt_isxdigit(s[1]) &&
202 mutt_isxdigit(s[2]) && (hexval(s[1]) >= 0) && (hexval(s[2]) >= 0))
203 {
204 unsigned char c = (hexval(s[1]) << 4) | (hexval(s[2]));
205 if (c == '\0')
206 return -1;
207 *d++ = c;
208 s += 2;
209 }
210 else
211 {
212 return -1;
213 }
214 }
215 else
216 {
217 *d++ = *s;
218 }
219 }
220 *d = '\0';
221 return 0;
222}
223
229enum UrlScheme url_check_scheme(const char *str)
230{
231 return get_scheme(str, mutt_prex_capture(PREX_URL, str));
232}
233
242struct Url *url_parse(const char *src)
243{
244 const regmatch_t *match = mutt_prex_capture(PREX_URL, src);
245 if (!match)
246 return NULL;
247
248 enum UrlScheme scheme = get_scheme(src, match);
249 if (scheme == U_UNKNOWN)
250 return NULL;
251
252 const regmatch_t *userinfo = &match[PREX_URL_MATCH_USERINFO];
253 const regmatch_t *user = &match[PREX_URL_MATCH_USER];
254 const regmatch_t *pass = &match[PREX_URL_MATCH_PASS];
255 const regmatch_t *host = &match[PREX_URL_MATCH_HOSTNAME];
256 const regmatch_t *ipvx = &match[PREX_URL_MATCH_HOSTIPVX];
257 const regmatch_t *port = &match[PREX_URL_MATCH_PORT];
258 const regmatch_t *path = &match[PREX_URL_MATCH_PATH];
259 const regmatch_t *query = &match[PREX_URL_MATCH_QUERY];
260 const regmatch_t *pathonly = &match[PREX_URL_MATCH_PATH_ONLY];
261
262 struct Url *url = url_new();
263 url->scheme = scheme;
264 url->src = mutt_str_dup(src);
265
266 /* If the scheme is not followed by two forward slashes, then it's a simple
267 * path (see https://tools.ietf.org/html/rfc3986#section-3). */
268 if (mutt_regmatch_start(pathonly) != -1)
269 {
270 url->src[mutt_regmatch_end(pathonly)] = '\0';
271 url->path = url->src + mutt_regmatch_start(pathonly);
272 if (url_pct_decode(url->path) < 0)
273 goto err;
274 }
275
276 /* separate userinfo part */
277 if (mutt_regmatch_end(userinfo) != -1)
278 {
279 url->src[mutt_regmatch_end(userinfo) - 1] = '\0';
280 }
281
282 /* user */
283 if (mutt_regmatch_end(user) != -1)
284 {
285 url->src[mutt_regmatch_end(user)] = '\0';
286 url->user = url->src + mutt_regmatch_start(user);
287 if (url_pct_decode(url->user) < 0)
288 goto err;
289 }
290
291 /* pass */
292 if (mutt_regmatch_end(pass) != -1)
293 {
294 url->pass = url->src + mutt_regmatch_start(pass);
295 if (url_pct_decode(url->pass) < 0)
296 goto err;
297 }
298
299 /* host */
300 if (mutt_regmatch_len(host) != 0)
301 {
302 url->host = url->src + mutt_regmatch_start(host);
303 url->src[mutt_regmatch_end(host)] = '\0';
304 }
305 else if (mutt_regmatch_end(ipvx) != -1)
306 {
307 url->host = url->src + mutt_regmatch_start(ipvx) + 1; /* skip opening '[' */
308 url->src[mutt_regmatch_end(ipvx) - 1] = '\0'; /* skip closing ']' */
309 }
310
311 /* port */
312 if (mutt_regmatch_end(port) != -1)
313 {
314 url->src[mutt_regmatch_end(port)] = '\0';
315 const char *ports = url->src + mutt_regmatch_start(port);
316 unsigned short num;
317 if (!mutt_str_atous_full(ports, &num))
318 {
319 goto err;
320 }
321 url->port = num;
322 }
323
324 /* path */
325 if (mutt_regmatch_end(path) != -1)
326 {
327 url->src[mutt_regmatch_end(path)] = '\0';
328 url->path = url->src + mutt_regmatch_start(path);
329 if (!url->host)
330 {
331 /* If host is not provided, restore the '/': this is an absolute path */
332 *(--url->path) = '/';
333 }
334 if (url_pct_decode(url->path) < 0)
335 goto err;
336 }
337
338 /* query */
339 if (mutt_regmatch_end(query) != -1)
340 {
341 char *squery = url->src + mutt_regmatch_start(query);
342 if (!parse_query_string(&url->query_strings, squery))
343 goto err;
344 }
345
346 return url;
347
348err:
349 url_free(&url);
350 return NULL;
351}
352
361int url_tobuffer(const struct Url *url, struct Buffer *buf, uint8_t flags)
362{
363 if (!url || !buf)
364 return -1;
365 if (url->scheme == U_UNKNOWN)
366 return -1;
367
368 buf_printf(buf, "%s:", mutt_map_get_name(url->scheme, UrlMap));
369
370 if (url->host)
371 {
372 if (!(flags & U_PATH))
373 buf_addstr(buf, "//");
374
375 if (url->user && (url->user[0] || !(flags & U_PATH)))
376 {
377 char str[256] = { 0 };
378 url_pct_encode(str, sizeof(str), url->user);
379 buf_add_printf(buf, "%s@", str);
380 }
381
382 if (strchr(url->host, ':'))
383 buf_add_printf(buf, "[%s]", url->host);
384 else
385 buf_addstr(buf, url->host);
386
387 if (url->port)
388 buf_add_printf(buf, ":%hu/", url->port);
389 else
390 buf_addstr(buf, "/");
391 }
392
393 if (url->path)
394 buf_addstr(buf, url->path);
395
396 if (STAILQ_FIRST(&url->query_strings))
397 {
398 buf_addstr(buf, "?");
399
400 char str[256] = { 0 };
401 struct UrlQuery *np = NULL;
402 STAILQ_FOREACH(np, &url->query_strings, entries)
403 {
404 url_pct_encode(str, sizeof(str), np->name);
405 buf_addstr(buf, str);
406 buf_addstr(buf, "=");
407 url_pct_encode(str, sizeof(str), np->value);
408 buf_addstr(buf, str);
409 if (STAILQ_NEXT(np, entries))
410 buf_addstr(buf, "&");
411 }
412 }
413
414 return 0;
415}
416
426int url_tostring(const struct Url *url, char *dest, size_t len, uint8_t flags)
427{
428 if (!url || !dest)
429 return -1;
430
431 struct Buffer *dest_buf = buf_pool_get();
432
433 int rc = url_tobuffer(url, dest_buf, flags);
434 if (rc == 0)
435 mutt_str_copy(dest, buf_string(dest_buf), len);
436
437 buf_pool_release(&dest_buf);
438
439 return rc;
440}
int buf_printf(struct Buffer *buf, const char *fmt,...)
Format a string overwriting a Buffer.
Definition buffer.c:161
int buf_add_printf(struct Buffer *buf, const char *fmt,...)
Format a string appending a Buffer.
Definition buffer.c:204
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
bool mutt_isxdigit(int arg)
Wrapper for isxdigit(3)
Definition ctype.c:111
int mutt_map_get_value_n(const char *name, size_t len, const struct Mapping *map)
Lookup the constant for a string.
Definition mapping.c:62
const char * mutt_map_get_name(int val, const struct Mapping *map)
Lookup a string for a constant.
Definition mapping.c:42
#define FREE(x)
Free memory and set the pointer to NULL.
Definition memory.h:68
#define MUTT_MEM_CALLOC(n, type)
Definition memory.h:52
Constants and macros for managing MIME encoding.
#define hexval(ch)
Convert hexadecimal character to its integer value.
Definition mime.h:82
Convenience wrapper for the library headers.
char * mutt_str_dup(const char *str)
Copy a string, safely.
Definition string.c:257
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:586
struct Buffer * buf_pool_get(void)
Get a Buffer from the pool.
Definition pool.c:91
void buf_pool_release(struct Buffer **ptr)
Return a Buffer to the pool.
Definition pool.c:111
regmatch_t * mutt_prex_capture(enum Prex which, const char *str)
Match a precompiled regex against a string.
Definition prex.c:301
@ PREX_URL_QUERY_KEY_VAL_MATCH_VAL
key=[val]
Definition prex.h:85
@ PREX_URL_QUERY_KEY_VAL_MATCH_KEY
[key]=val
Definition prex.h:84
@ PREX_URL
[imaps://user:pass@example.com/INBOX?foo=bar]
Definition prex.h:34
@ PREX_URL_QUERY_KEY_VAL
https://example.com/?[q=foo]
Definition prex.h:35
@ PREX_URL_MATCH_USER
...//[user]:pass@...
Definition prex.h:60
@ PREX_URL_MATCH_QUERY
...Inbox?[foo=bar&baz=value]
Definition prex.h:72
@ PREX_URL_MATCH_HOSTNAME
imaps://...[host.com]...
Definition prex.h:64
@ PREX_URL_MATCH_PORT
imaps://host.com:[993]/...
Definition prex.h:67
@ PREX_URL_MATCH_PATH_ONLY
mailto:[me@example.com]?foo=bar
Definition prex.h:70
@ PREX_URL_MATCH_SCHEME
[imaps]://...
Definition prex.h:55
@ PREX_URL_MATCH_USERINFO
...//[user:pass@]...
Definition prex.h:59
@ PREX_URL_MATCH_PATH
...:993/[Inbox]
Definition prex.h:69
@ PREX_URL_MATCH_HOSTIPVX
imaps://...[127.0.0.1]...
Definition prex.h:65
@ PREX_URL_MATCH_PASS
...//user:[pass]@...
Definition prex.h:62
#define STAILQ_REMOVE_HEAD(head, field)
Definition queue.h:461
#define STAILQ_INIT(head)
Definition queue.h:410
#define STAILQ_FIRST(head)
Definition queue.h:388
#define STAILQ_FOREACH(var, head, field)
Definition queue.h:390
#define STAILQ_INSERT_TAIL(head, elm, field)
Definition queue.h:427
#define STAILQ_EMPTY(head)
Definition queue.h:382
#define STAILQ_NEXT(elm, field)
Definition queue.h:439
static size_t mutt_regmatch_len(const regmatch_t *match)
Return the length of a match.
Definition regex3.h:76
static regoff_t mutt_regmatch_end(const regmatch_t *match)
Return the end of a match.
Definition regex3.h:66
static regoff_t mutt_regmatch_start(const regmatch_t *match)
Return the start of a match.
Definition regex3.h:56
String manipulation buffer.
Definition buffer.h:36
Mapping between user-readable string and a constant.
Definition mapping.h:33
Parsed Query String.
Definition url.h:58
char * name
Query name.
Definition url.h:59
char * value
Query value.
Definition url.h:60
A parsed URL proto://user:password@host:port/path?a=1&b=2
Definition url.h:69
char * user
Username.
Definition url.h:71
unsigned short port
Port.
Definition url.h:74
struct UrlQueryList query_strings
List of query strings.
Definition url.h:76
char * host
Host.
Definition url.h:73
char * src
Raw URL string.
Definition url.h:77
char * pass
Password.
Definition url.h:72
char * path
Path.
Definition url.h:75
enum UrlScheme scheme
Scheme, e.g. U_SMTPS.
Definition url.h:70
int url_pct_decode(char *s)
Decode a percent-encoded string.
Definition url.c:190
struct Url * url_parse(const char *src)
Fill in Url.
Definition url.c:242
static bool parse_query_string(struct UrlQueryList *list, char *src)
Parse a URL query string.
Definition url.c:56
void url_free(struct Url **ptr)
Free the contents of a URL.
Definition url.c:124
enum UrlScheme url_check_scheme(const char *str)
Check the protocol of a URL.
Definition url.c:229
static const struct Mapping UrlMap[]
Constants for URL protocols.
Definition url.c:41
int url_tostring(const struct Url *url, char *dest, size_t len, uint8_t flags)
Output the URL string for a given Url object.
Definition url.c:426
int url_tobuffer(const struct Url *url, struct Buffer *buf, uint8_t flags)
Output the URL string for a given Url object.
Definition url.c:361
void url_pct_encode(char *buf, size_t buflen, const char *src)
Percent-encode a string.
Definition url.c:152
static enum UrlScheme get_scheme(const char *src, const regmatch_t *match)
Extract the scheme part from a matched URL.
Definition url.c:97
static struct Url * url_new(void)
Create a Url.
Definition url.c:113
Parse and identify different URL schemes.
UrlScheme
All recognised Url types.
Definition url.h:34
@ U_NOTMUCH
Url is notmuch://.
Definition url.h:46
@ U_UNKNOWN
Url wasn't recognised.
Definition url.h:35
@ U_FILE
Url is file://.
Definition url.h:36
@ U_NNTPS
Url is nntps://.
Definition url.h:42
@ U_MAILTO
Url is mailto://.
Definition url.h:45
@ U_SMTPS
Url is smtps://.
Definition url.h:44
@ U_SMTP
Url is smtp://.
Definition url.h:43
@ U_NNTP
Url is nntp://.
Definition url.h:41
@ U_IMAP
Url is imap://.
Definition url.h:39
@ U_POPS
Url is pops://.
Definition url.h:38
@ U_IMAPS
Url is imaps://.
Definition url.h:40
@ U_POP
Url is pop://.
Definition url.h:37
#define U_PATH
Path is included in URL.
Definition url.h:50