diff options
| author | David Bremner <david@tethera.net> | 2019-03-27 07:13:31 -0300 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2019-05-25 06:56:16 -0300 |
| commit | 4b9c03efc6e4cd4b083c18c98416218059d1b8d7 (patch) | |
| tree | 1099bfab1dbae07346a411c45347e9df77e6b5b1 /notmuch-config.c | |
| parent | 7981bd050e79b07d583de3b310b503eb8439219b (diff) | |
cli/config: check syntax of user configured field names
These restrictions are meant to prevent incompatibilities with the
Xapian query parser (which will split at non-word characters) and
clashes with future notmuch builtin fields.
Diffstat (limited to 'notmuch-config.c')
| -rw-r--r-- | notmuch-config.c | 41 |
1 files changed, 40 insertions, 1 deletions
diff --git a/notmuch-config.c b/notmuch-config.c index d26277f6..b7f0784f 100644 --- a/notmuch-config.c +++ b/notmuch-config.c @@ -24,6 +24,8 @@ #include <netdb.h> #include <assert.h> +#include "unicode-util.h" + static const char toplevel_config_comment[] = " .notmuch-config - Configuration file for the notmuch mail system\n" "\n" @@ -790,6 +792,43 @@ _item_split (char *item, char **group, char **key) return 0; } +/* These are more properly called Xapian fields, but the user facing + docs call them prefixes, so make the error message match */ +static bool +validate_field_name (const char *str) +{ + const char *key; + + if (! g_utf8_validate (str, -1, NULL)) { + fprintf (stderr, "Invalid utf8: %s\n", str); + return false; + } + + key = g_utf8_strrchr (str, -1, '.'); + if (! key ) { + INTERNAL_ERROR ("Impossible code path on input: %s\n", str); + } + + key++; + + if (! *key) { + fprintf (stderr, "Empty prefix name: %s\n", str); + return false; + } + + if (! unicode_word_utf8 (key)) { + fprintf (stderr, "Non-word character in prefix name: %s\n", key); + return false; + } + + if (key[0] >= 'a' && key[0] <= 'z') { + fprintf (stderr, "Prefix names starting with lower case letters are reserved: %s\n", key); + return false; + } + + return true; +} + #define BUILT_WITH_PREFIX "built_with." typedef struct config_key { @@ -802,7 +841,7 @@ typedef struct config_key { static struct config_key config_key_table[] = { {"index.decrypt", true, false, NULL}, - {"index.header.", true, true, NULL}, + {"index.header.", true, true, validate_field_name}, {"query.", true, true, NULL}, }; |
