Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

We've been working hard to modernize our home-grown in-house application, using PostgreSQL instead of MySQL. We've generally tried to only change architectural things that truly needed to change. One of the things we've left alone is our database versioning technique.

Rolling code out to production is pretty simple: run a backup, svn up, some rsync magic, then call the database update script. (This is all automated.) In the land of MySQL, we log in as a user with the SUPER priv so that we can perform whatever maintenance tasks are needed, from DDL to one-time database manipulation.

Well, we finally got to roll out our new application for the first time this past week. We'd followed the same pattern as we had in the past. Each person that can perform a rollout is a PG superuser, but the application runs as a user with less obscene permissions.

You probably already know what's coming here.

Everything created by the superuser that ran the database maintenance script was created with that user's identity, and the normal application user couldn't even see the schema and tables. We're using 8.4 right now, and in a complete brainfart, I had forgotten that there's no way in 8.4 to define default grants (and ownership?) for new objects.

Now, this has been covered here before. Lots of times, in fact. This question from a while ago details both the commands needed to add appropriate grants, and was recently updated with information on 9.0's new default permission goodies. As a short-term solution, we altered our database versioning script to simply force ownership back to the normal application user on every table once it's done running. Depesz's blog post from 2007 was a great help.

I'm not satisfied with this solution. Automatically resetting ownership just to avoid having to run a grant every single time we create a table feels hackish.

Beyond 9.0's new features for setting default grants, is there anything I'm missing here that could be of help make rollout grants not suck? (Upgrading isn't an issue, we just haven't done so yet. Our sysadmin really prefers using vendor-provided packages, and we're a RHEL shop.)

Our goal is to have the normal application user be unable to perform DDL operations, just in case the worst happens. We'd also prefer not to share the same (superuser) account among all the people that are able to perform rollouts. It seems to me that maybe there might be some magic with roles that could be helpful, as this blog post about replicating MSSQL's dbo role suggests, but that also seems like an enormous hack.

How do you handle roles/grants in your database versioning scheme?

share|improve this question

3 Answers

I run the DDL as the system user and leave it as the owner. Probably not the answer you're looking for, but it would pretty much obviate your problem. I also typically avoid using super-user accounts on production systems as much as possible, and sudo to postgres when it's unavoidable. I leave postgres configured for local, ident auth only in the pg_hba.conf so I don't have to think about permissions aside from system level ones.

I've also written a lot of specific grants. I'm not sure what's wrong with that. If you want specific (limited) permissions for the application user, why not include them in the DDL that gets executed by the superuser? It seems like that would be the best way to ensure that the rights delegated to the application are correct and no more open than necessary.

share|improve this answer
There's nothing wrong with a lot of specific grants, it's simply a perceived inconvenience because it's something we didn't have to before. This is why I'm searching for some other way to handle the grants in some way that is either automatic (setting a default) or will feel like less work for me and my team. – Charles Mar 20 '11 at 14:23

Resetting ownership just to avoid having to run a grant every single time we create a table feels hackish.

This is called access control and it's pretty handy feature. If you don't need it, you can create the DB -- and run the upgrades -- as the user using the data. If you want access control, you'll have to get used to managing permissions.

If you want to use access control, you must grant rights or alter the table owner. You can change the owner of a relation with:

ALTER TABLE tablename OWNER TO "newowner";
ALTER TABLE sequencename OWNER TO "newowner";

You can add privileges for a single role by issuing:

GRANT ALL ON TABLE tablename TO "someone";

Here's a simple procedure to do a mass grant:

BEGIN;
CREATE OR REPLACE FUNCTION grant_rights(VARCHAR) RETURNS INTEGER AS $$
DECLARE
    to_user ALIAS FOR $1;
    n VARCHAR;
    c INTEGER;
BEGIN
    c:= 0;
    FOR n IN SELECT table_name FROM information_schema.tables WHERE table_schema = 'public' LOOP
            EXECUTE 'GRANT ALL ON TABLE ' || n || ' TO "' || to_user || '"';
            c := c + 1;
    END LOOP;
    RETURN c;
END;
$$ LANGUAGE PLPGSQL;
COMMIT;

I haven't tested this procedure in real-world situations, you may need to tweak it to handle sequences and views.

And regarding your last question about how I do it; I'll just set the owner to www-data for every table and everything. If a project needs more strict access control (for web-based users), I'll manage the access control list manually. We don't have issues with our developers having full access to the db.

share|improve this answer
up vote 0 down vote accepted

Thanks for your feedback, folks.

We've now moved to PG9, and have set up a few mechanisms that lets the system as a whole automatically ensure that the right roles have the right grants.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.