BUG #4116: Cannot create tablespace: could not set permissions on directory - Mailing list pgsql-bugs

From Graham Leggett
Subject BUG #4116: Cannot create tablespace: could not set permissions on directory
Date
Msg-id 200804191238.m3JCcfcJ076060@wwwmaster.postgresql.org
Whole thread Raw
Responses Re: BUG #4116: Cannot create tablespace: could not set permissions on directory  (Alvaro Herrera <alvherre@commandprompt.com>)
List pgsql-bugs
The following bug has been logged online:

Bug reference:      4116
Logged by:          Graham Leggett
Email address:      minfrin@sharp.fm
PostgreSQL version: 8.1.11
Operating system:   Redhat Enterprise 5
Description:        Cannot create tablespace: could not set permissions on
directory
Details:

While making an attempt to create a tablespace, where the tablespace
directory has already been created, has the correct ownership, and has the
correct permissions (0700), the attempt will fail regardless:

postgres=# CREATE TABLESPACE fma LOCATION '/home/fma/db/pgsql';
ERROR:  could not set permissions on directory "/home/fma/db/pgsql":
Permission denied

Looking in the source, the error message "could not set permissions on
directory" appears here:

01283         /*
01284          * Attempt to coerce target directory to safe permissions.  If
this
01285          * fails, it doesn't exist or has the wrong owner.
01286          */
01287         if (chmod(location, 0700) != 0)
01288             ereport(ERROR,
01289                     (errcode_for_file_access(),
01290                   errmsg("could not set permissions on directory
\"%s\": %m",
01291                          location)));

This code makes the incorrect assumption that the platform will allow the
postgres user to set the permissions using chmod.

What this code should be doing is checking that the permissions on the
directory are 0700, and failing if they are not, leaving it up to the user
to fix the problem.

Redhat Enterprise Linux 5 refuses to allow a user to chmod a directory, even
though that user owns that directory. In addition, if SELinux is enabled,
this gives a further reason why the code will fail.

To fix this, check that the mode is 0700, don't try to set it.

pgsql-bugs by date:

Previous
From: "Daniel Ruoso"
Date:
Subject: BUG #4115: PostgreSQL ISO format is not really ISO
Next
From: "Jaime Casanova"
Date:
Subject: Re: BUG #4115: PostgreSQL ISO format is not really ISO