From: | Magnus Hagander <magnus(at)hagander(dot)net> |
---|---|
To: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
Cc: | Andrew Dunstan <andrew(at)dunslane(dot)net>, Bruce Momjian <bruce(at)momjian(dot)us>, PostgreSQL-documentation <pgsql-docs(at)postgresql(dot)org>, PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Re: [HACKERS] Moving tablespaces |
Date: | 2011-12-07 09:38:59 |
Message-ID: | CABUevEwM9x1LWkS7XhTTDqP=OAgoApuik+4js9FK3RuwdbuDfA@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-docs pgsql-hackers |
On Wed, Dec 7, 2011 at 10:05, Magnus Hagander <magnus(at)hagander(dot)net> wrote:
> On Tue, Dec 6, 2011 at 17:07, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> wrote:
>> Magnus Hagander <magnus(at)hagander(dot)net> writes:
>>> There is some nice precedent in the CREATE TABLESPACE command (though
>>> dependent on HAVE_SYMLINK and not HAVE_READLINK), so I'm just going to
>>> copy the error message from there.
>>
>> Fair enough.
>>
>> Looking at the existing readlink use in port/exec.c, it strikes me that
>> another thing you'd better do is include a check for buffer overrun,
>> ie the test needs to be more like
>>
>> rllen = readlink(fname, link_buf, sizeof(link_buf));
>> if (rllen < 0 || rllen >= sizeof(link_buf))
>> ... fail ...
>
> Seems reasonable, yeah. I'll go put a similar check in the
> basebackup.c file as well when I'm done here.
To close this thread (hopefully): Fixed and applied.
--
Magnus Hagander
Me: http://www.hagander.net/
Work: http://www.redpill-linpro.com/
From | Date | Subject | |
---|---|---|---|
Next Message | Jaime Casanova | 2011-12-09 21:09:25 | CREATE USER |
Previous Message | Magnus Hagander | 2011-12-07 09:05:19 | Re: [HACKERS] Moving tablespaces |
From | Date | Subject | |
---|---|---|---|
Next Message | Teodor Sigaev | 2011-12-07 10:09:44 | Re: WIP: SP-GiST, Space-Partitioned GiST |
Previous Message | Magnus Hagander | 2011-12-07 09:05:19 | Re: [HACKERS] Moving tablespaces |