From: Vsevolod Stakhov Date: Sat, 4 Mar 2023 12:34:41 +0000 (+0000) Subject: [Minor] Use mkstemp for temporary hyperscan cache file X-Git-Tag: 3.5~17 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=f6dce922295bf141608c2509502615a36df6c960;p=rspamd.git [Minor] Use mkstemp for temporary hyperscan cache file --- diff --git a/src/libutil/multipattern.c b/src/libutil/multipattern.c index e39374d42..f8df8a186 100644 --- a/src/libutil/multipattern.c +++ b/src/libutil/multipattern.c @@ -426,10 +426,10 @@ rspamd_multipattern_try_save_hs (struct rspamd_multipattern *mp, return; } - rspamd_snprintf (fp, sizeof (fp), "%s/%*xs.hsmp.tmp", hs_cache_dir, - (gint)rspamd_cryptobox_HASHBYTES / 2, hash); + rspamd_snprintf (fp, sizeof (fp), "%s%shsmp-XXXXXXXXXXXXX", G_DIR_SEPARATOR_S, + hs_cache_dir); - if ((fd = rspamd_file_xopen (fp, O_WRONLY | O_CREAT | O_EXCL, 00644, 1)) != -1) { + if ((fd = g_mkstemp_full(fp, O_CREAT|O_EXCL|O_WRONLY, 00644)) != -1) { int ret; if ((ret = hs_serialize_database (rspamd_hyperscan_get_database(mp->hs_db), &bytes, &len)) == HS_SUCCESS) { if (write (fd, bytes, len) == -1) {