Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: zsh history gets destroyed when running out of disk space
- X-seq: zsh-workers 23581
- From: Peter Stephenson <p.w.stephenson@xxxxxxxxxxxx>
- To: zsh-workers@xxxxxxxxxx
- Subject: Re: zsh history gets destroyed when running out of disk space
- Date: Fri, 22 Jun 2007 21:28:25 +0100
- In-reply-to: <20070621080454.GA3303@xxxxxxxxxxxxxxx>
- Mailing-list: contact zsh-workers-help@xxxxxxxxxx; run by ezmlm
- References: <2007-06-11T21-20-52@xxxxxxxxxxxxxxxxxxxxxxxxx> <20070621080454.GA3303@xxxxxxxxxxxxxxx>
On Thu, 21 Jun 2007 10:04:54 +0200
Frank Terbeck <ft@xxxxxxxxxxxxxxxxxxx> wrote:
> Michael Prokop <news@xxxxxxxxxxxxxxxxx>:
> > Problem:
> >
> > Zsh truncates the zsh history file if you are running out of disk
> > space (AKA ENOSPC). If you don't have any space left in your $HOME
> > and exit zsh you'll find an empty $HISTFILE left.
>
> Hey, I experienced just the same a few days back. So, I also think
> this should be addressed.
The following detects errors during writing better. If you're writing a
new file it'll leave it wherever it gets to; if you're replacing an old
file it will leave the old file alone. That's about the best we can do.
I haven't tested this on a failure, but it should be better than what
we've got.
Index: Src/hist.c
===================================================================
RCS file: /cvsroot/zsh/zsh/Src/hist.c,v
retrieving revision 1.66
diff -u -r1.66 hist.c
--- Src/hist.c 1 Nov 2006 12:25:22 -0000 1.66
+++ Src/hist.c 22 Jun 2007 20:19:50 -0000
@@ -2158,6 +2158,7 @@
Histent he;
zlong xcurhist = curhist - !!(histactive & HA_ACTIVE);
int extended_history = isset(EXTENDEDHISTORY);
+ int ret;
if (!interact || savehistsiz <= 0 || !hist_ring
|| (!fn && !(fn = getsparam("HISTFILE"))))
@@ -2242,59 +2243,69 @@
}
t = start = he->node.nam;
if (extended_history) {
- fprintf(out, ": %ld:%ld;", (long)he->stim,
- he->ftim? (long)(he->ftim - he->stim) : 0L);
+ ret = fprintf(out, ": %ld:%ld;", (long)he->stim,
+ he->ftim? (long)(he->ftim - he->stim) : 0L);
} else if (*t == ':')
- fputc('\\', out);
+ ret = fputc('\\', out);
- for (; *t; t++) {
+ for (; ret >= 0 && *t; t++) {
if (*t == '\n')
- fputc('\\', out);
- fputc(*t, out);
+ if ((ret = fputc('\\', out)) < 0)
+ break;
+ if ((ret = fputc(*t, out)) < 0)
+ break;
}
- fputc('\n', out);
+ if (ret < 0 || (ret = fputc('\n', out)) < 0)
+ break;
}
- if (start && writeflags & HFILE_USE_OPTIONS) {
+ if (ret >= 0 && start && writeflags & HFILE_USE_OPTIONS) {
struct stat sb;
- fflush(out);
- if (fstat(fileno(out), &sb) == 0) {
- lasthist.fsiz = sb.st_size;
- lasthist.mtim = sb.st_mtime;
+ if ((ret = fflush(out)) >= 0) {
+ if (fstat(fileno(out), &sb) == 0) {
+ lasthist.fsiz = sb.st_size;
+ lasthist.mtim = sb.st_mtime;
+ }
+ zsfree(lasthist.text);
+ lasthist.text = ztrdup(start);
}
- zsfree(lasthist.text);
- lasthist.text = ztrdup(start);
- }
- fclose(out);
- if (tmpfile) {
- if (rename(tmpfile, unmeta(fn)) < 0)
- zerr("can't rename %s.new to $HISTFILE", fn);
- free(tmpfile);
}
+ if (fclose(out) < 0 && ret >= 0)
+ ret = -1;
+ if (ret >= 0) {
+ if (tmpfile) {
+ if (rename(tmpfile, unmeta(fn)) < 0)
+ zerr("can't rename %s.new to $HISTFILE", fn);
+ free(tmpfile);
+ }
- if (writeflags & HFILE_SKIPOLD
- && !(writeflags & (HFILE_FAST | HFILE_NO_REWRITE))) {
- int remember_histactive = histactive;
-
- /* Zeroing histactive avoids unnecessary munging of curline. */
- histactive = 0;
- /* The NULL leaves HISTFILE alone, preserving fn's value. */
- pushhiststack(NULL, savehistsiz, savehistsiz, -1);
-
- hist_ignore_all_dups |= isset(HISTSAVENODUPS);
- readhistfile(fn, err, 0);
- hist_ignore_all_dups = isset(HISTIGNOREALLDUPS);
- if (histlinect)
- savehistfile(fn, err, 0);
+ if (writeflags & HFILE_SKIPOLD
+ && !(writeflags & (HFILE_FAST | HFILE_NO_REWRITE))) {
+ int remember_histactive = histactive;
+
+ /* Zeroing histactive avoids unnecessary munging of curline. */
+ histactive = 0;
+ /* The NULL leaves HISTFILE alone, preserving fn's value. */
+ pushhiststack(NULL, savehistsiz, savehistsiz, -1);
+
+ hist_ignore_all_dups |= isset(HISTSAVENODUPS);
+ readhistfile(fn, err, 0);
+ hist_ignore_all_dups = isset(HISTIGNOREALLDUPS);
+ if (histlinect)
+ savehistfile(fn, err, 0);
- pophiststack();
- histactive = remember_histactive;
+ pophiststack();
+ histactive = remember_histactive;
+ }
}
- } else if (err) {
+ } else
+ ret = -1;
+
+ if (ret < 0 && err) {
if (tmpfile) {
- zerr("can't write history file %s.new", fn);
+ zerr("can't write history file %s.new: %e", fn);
free(tmpfile);
} else
- zerr("can't write history file %s", fn);
+ zerr("can't write history file %s: %e", fn);
}
unlockhistfile(fn);
--
Peter Stephenson <p.w.stephenson@xxxxxxxxxxxx>
Web page now at http://homepage.ntlworld.com/p.w.stephenson/
Messages sorted by:
Reverse Date,
Date,
Thread,
Author