Re: PATCH: pg_basebackup (missing exit on error)

Lists: pgsql-hackers
From: Thomas Ogrisegg <tom-nic(at)patches(dot)fnord(dot)at>
To: pgsql-hackers(at)postgresql(dot)org
Subject: PATCH: pg_basebackup (missing exit on error)
Date: 2012-01-24 09:39:19
Message-ID: 20120124093919.GA31031@eristoteles.iwoars.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers

While testing a backup script, I noticed that pg_basebackup exits with
0, even if it had errors while writing the backup to disk when the
backup file is to be sent to stdout. The attached patch should fix this
problem (and some special cases when the last write fails).

Regards,

Thomas

Attachment Content-Type Size
pgbasebackup.patch text/x-diff 1.3 KB

From: Robert Haas <robertmhaas(at)gmail(dot)com>
To: Thomas Ogrisegg <tom-nic(at)patches(dot)fnord(dot)at>
Cc: pgsql-hackers(at)postgresql(dot)org
Subject: Re: PATCH: pg_basebackup (missing exit on error)
Date: 2012-01-26 14:48:08
Message-ID: CA+TgmoaycwtMwyRSMUHm=_LzELDVV2z-as910fRufj9fbvicZg@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers

On Tue, Jan 24, 2012 at 4:39 AM, Thomas Ogrisegg
<tom-nic(at)patches(dot)fnord(dot)at> wrote:
> While testing a backup script, I noticed that pg_basebackup exits with
> 0, even if it had errors while writing the backup to disk when the
> backup file is to be sent to stdout. The attached patch should fix this
> problem (and some special cases when the last write fails).

This part looks like a typo:

+ if (fflush (tarfile) != 0)
+ {
+ fprintf(stderr, _("%s:
error flushing stdout: %s\n"),
+
strerror (errno));
+ disconnect_and_exit(1);
+ }

The error is in flushing the tarfile, not stdout, right?

--
Robert Haas
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company


From: Fujii Masao <masao(dot)fujii(at)gmail(dot)com>
To: Robert Haas <robertmhaas(at)gmail(dot)com>
Cc: Thomas Ogrisegg <tom-nic(at)patches(dot)fnord(dot)at>, pgsql-hackers(at)postgresql(dot)org
Subject: Re: PATCH: pg_basebackup (missing exit on error)
Date: 2012-03-27 11:13:34
Message-ID: CAHGQGwHXzLFg9KBC=MWaGfVQwh9H_oo9NPnh6VLpy4Js0-MEuw@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers

On Thu, Jan 26, 2012 at 11:48 PM, Robert Haas <robertmhaas(at)gmail(dot)com> wrote:
> On Tue, Jan 24, 2012 at 4:39 AM, Thomas Ogrisegg
> <tom-nic(at)patches(dot)fnord(dot)at> wrote:
>> While testing a backup script, I noticed that pg_basebackup exits with
>> 0, even if it had errors while writing the backup to disk when the
>> backup file is to be sent to stdout. The attached patch should fix this
>> problem (and some special cases when the last write fails).
>
> This part looks like a typo:
>
> +                                       if (fflush (tarfile) != 0)
> +                                       {
> +                                               fprintf(stderr, _("%s:
> error flushing stdout: %s\n"),
> +
> strerror (errno));
> +                                               disconnect_and_exit(1);
> +                                       }
>
> The error is in flushing the tarfile, not stdout, right?

No, in this case tarfile is set to stdout as follows.

-------------
if (strcmp(basedir, "-") == 0)
{
#ifdef HAVE_LIBZ
if (compresslevel != 0)
{
ztarfile = gzdopen(dup(fileno(stdout)), "wb");
if (gzsetparams(ztarfile, compresslevel, Z_DEFAULT_STRATEGY) != Z_OK)
{
fprintf(stderr, _("%s: could not set compression level %d: %s\n"),
progname, compresslevel, get_gz_error(ztarfile));
disconnect_and_exit(1);
}
}
else
#endif
tarfile = stdout;
}
-------------

I don't think that pg_basebackup really needs to fflush() stdout for
each file. Right?

-------------
#endif
if (tarfile != NULL)
- fclose(tarfile);
+ {
+ if (fclose(tarfile) != 0)
+ {
+ fprintf(stderr, _("%s: error closing file \"%s\": %s\n"),
+ progname, filename, strerror (errno));
+ disconnect_and_exit(1);
+ }
+ }
-------------

This message doesn't obey the PostgreSQL message style.

It's guaranteed that the tarfile must not be NULL here, so the above check of
tarfile is not required. The remaining code of pg_basebackup relies on this
assumption.

Attached patch removes the fflush() part, changes the log message and removes
the check of tarfile, as above.

Regards,

--
Fujii Masao
NIPPON TELEGRAPH AND TELEPHONE CORPORATION
NTT Open Source Software Center

Attachment Content-Type Size
missing_exit_on_error_in_pg_basebackup_v1.patch text/x-diff 1.6 KB

From: Robert Haas <robertmhaas(at)gmail(dot)com>
To: Fujii Masao <masao(dot)fujii(at)gmail(dot)com>
Cc: Thomas Ogrisegg <tom-nic(at)patches(dot)fnord(dot)at>, pgsql-hackers(at)postgresql(dot)org
Subject: Re: PATCH: pg_basebackup (missing exit on error)
Date: 2012-03-28 12:40:15
Message-ID: CA+TgmoZTVdHQVS3HksoOVmAY44C49mxv+K166vWgZrJ0Gavyjg@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers

On Tue, Mar 27, 2012 at 7:13 AM, Fujii Masao <masao(dot)fujii(at)gmail(dot)com> wrote:
> Attached patch removes the fflush() part, changes the log message and removes
> the check of tarfile, as above.

With this patch applied, we end up with:

if (strcmp(basedir, "-") == 0)
{
#ifdef HAVE_LIBZ
if (ztarfile != NULL)
gzclose(ztarfile);
#endif
}
else
{
#ifdef HAVE_LIBZ
if (ztarfile != NULL)
gzclose(ztarfile);
else
#endif
{
if (fclose(tarfile) != 0)
{
fprintf(stderr, _("%s: could not close file
\"%s\": %s\n"),
progname, filename, strerror (errno));
disconnect_and_exit(1);
}
}
}

I think it would make sense to rearrange that so that we don't have
two tests for ztarfile != NULL; do that test first, and then if it
fails, do the strcmp after that.

Also, if we're going to test the return value of fclose(), shouldn't
we also be checking the return value of gzclose()?

--
Robert Haas
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company


From: Fujii Masao <masao(dot)fujii(at)gmail(dot)com>
To: Robert Haas <robertmhaas(at)gmail(dot)com>
Cc: Thomas Ogrisegg <tom-nic(at)patches(dot)fnord(dot)at>, pgsql-hackers(at)postgresql(dot)org
Subject: Re: PATCH: pg_basebackup (missing exit on error)
Date: 2012-03-28 15:12:26
Message-ID: CAHGQGwFrnPMhpJZT31J4JtCfSrMJfvgtESQVkjXxHhROd0A3Eg@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers

On Wed, Mar 28, 2012 at 9:40 PM, Robert Haas <robertmhaas(at)gmail(dot)com> wrote:
> I think it would make sense to rearrange that so that we don't have
> two tests for ztarfile != NULL; do that test first, and then if it
> fails, do the strcmp after that.

Makes sense.

> Also, if we're going to test the return value of fclose(), shouldn't
> we also be checking the return value of gzclose()?

Yes, we should.

Attached patch does the above two changes.

Regards,

--
Fujii Masao
NIPPON TELEGRAPH AND TELEPHONE CORPORATION
NTT Open Source Software Center

Attachment Content-Type Size
missing_exit_on_error_in_pgbasebackup_v2.patch application/octet-stream 1.7 KB