}
globbuf.gl_offs = 0;
- len = strlen (ctx->hs_dir) + 1 + sizeof ("*.hs");
+ len = strlen (ctx->hs_dir) + 1 + sizeof ("*.hs.new") + 2;
pattern = g_malloc (len);
rspamd_snprintf (pattern, len, "%s%c%s", ctx->hs_dir, G_DIR_SEPARATOR, "*.hs");
- if ((rc = glob (pattern, GLOB_DOOFFS, NULL, &globbuf)) == 0) {
+ if ((rc = glob (pattern, 0, NULL, &globbuf)) == 0) {
for (i = 0; i < globbuf.gl_pathc; i++) {
if (forced ||
!rspamd_re_cache_is_valid_hyperscan_file (ctx->cfg->re_cache,
ret = FALSE;
}
+ globfree (&globbuf);
+
+ memset (&globbuf, 0, sizeof (globbuf));
+ rspamd_snprintf (pattern, len, "%s%c%s", ctx->hs_dir, G_DIR_SEPARATOR, "*.hs.new");
+ if ((rc = glob (pattern, 0, NULL, &globbuf)) == 0) {
+ for (i = 0; i < globbuf.gl_pathc; i++) {
+ if (unlink (globbuf.gl_pathv[i]) == -1) {
+ msg_err ("cannot unlink %s: %s", globbuf.gl_pathv[i],
+ strerror (errno));
+ ret = FALSE;
+ }
+ }
+ }
+ else if (rc != GLOB_NOMATCH) {
+ msg_err ("glob %s failed: %s", pattern, strerror (errno));
+ ret = FALSE;
+ }
+
globfree (&globbuf);
g_free (pattern);
GHashTableIter it, cit;
gpointer k, v;
struct rspamd_re_class *re_class;
- gchar path[PATH_MAX];
+ gchar path[PATH_MAX], npath[PATH_MAX];
hs_database_t *test_db;
gint fd, i, n, *hs_ids = NULL, pcre_flags, re_flags;
guint64 crc;
continue;
}
+ rspamd_snprintf (path, sizeof (path), "%s%c%s.hs.new", cache_dir,
+ G_DIR_SEPARATOR, re_class->hash);
fd = open (path, O_CREAT|O_TRUNC|O_EXCL|O_WRONLY, 00600);
if (fd == -1) {
g_free (hs_ids);
g_free (hs_pats);
close (fd);
+ unlink (path);
hs_free_compile_error (hs_errors);
return -1;
re_class->hash);
close (fd);
+ unlink (path);
g_free (hs_ids);
g_free (hs_flags);
hs_free_database (test_db);
else {
iov[0].iov_base = (void *) rspamd_hs_magic;
}
+
iov[0].iov_len = RSPAMD_HS_MAGIC_LEN;
iov[1].iov_base = &cache->plt;
iov[1].iov_len = sizeof (cache->plt);
"cannot serialize tree of regexp to %s: %s",
path, strerror (errno));
close (fd);
+ unlink (path);
g_free (hs_ids);
g_free (hs_flags);
g_free (hs_serialized);
g_free (hs_flags);
}
+ fsync (fd);
close (fd);
+
+ /* Now rename temporary file to the new .hs file */
}
return total;