I am trying to emulate row level security on a webapp I am developing using MySQL.

Using this method: Creating a database with the the required tables where the data pertaining to all the users will be stored with proper indexing of columns of the tables.

Creating mysql 'views' to specific users based on the user-id.

To achieve row level security I will also have to create mysql account for every user to and set 'grant' permissions on the views.

For the web interface a PHP based MVC framework will be used.

But, according to my research:

1] Having separate mysql account per user "make the webapp less secure".
2] Having separate mysql account per user "increases the disk I/O".

Questions:
1] How does creating mysql user per webapp user make the webapp less secure?
2] Does the disk I/O increase considerably?
3] Is there a better way to implement row-level-security in MySQL?
4] What are the pros/cons of implementing row-level-security by the above method?

Why am I looking at Row Level Security?
I need row level security because there are rows which will be shared between multiple users & have 1 or 2 owners to it. Only these owners can delete/modify them.

link|improve this question

Wow, what a terrible idea, to create a view for each user based on user_id. This has to be one of the worst things you can ever do, it's so ridiculously useless that I'm actually laughing. Row level security? Security from what? Granting each user the permission? What for? What's the thing you're trying to secure against? – N.B. Nov 28 '11 at 15:06
Instead of mocking me, could you suggest what I can do/read? – ThinkingMonkey Nov 30 '11 at 19:04
It's not mocking you, but I apologize if it looks like that. I'm just wondering why you're even trying to do it this way. Why do you even need "row level security", what's the reasoning for going this way and what are you preventing by doing that? As for disk I/O, creating users, views etc. is not something that will affect disk I/O to the point you need to worry about it (unless you have like thousands of new users per day, that adds up to disk I/O when processing views). – N.B. Dec 1 '11 at 12:47
I need row level security because there are rows which will be shared between multiple users & have 1 or 2 owners to it. Only these owners can delete/modify them. If you have/know where I can learn about better approaches then do suggest them. – ThinkingMonkey Dec 1 '11 at 15:24
What I'll suggest is to scratch row "security" implementation on database level and use your PHP application to determine what user can see or modify. Implementing it on the data storage level is counter productive as databases aren't meant to be used in this way. However, if you still persist doing it via database rather than via PHP - I can't say much except that I wish you good luck and that you're going to be shooting your own foot. Anyone telling you it's a good idea to implement "row level security" has no clue what they're talking about. – N.B. Dec 1 '11 at 15:52
show 3 more comments
feedback

2 Answers

My opinions:

1] How does creating mysql user per webapp user make the webapp less secure?

There are multiple points of entry to your database. It's different from having a users table in which your users' information are stored in, and then using a properly restricted mysql account that they all use (as part of your web app config file)

2] Does the disk I/O increase considerably?

Not sure how to properly answer this one, because the article you might have read was about multiple sql accounts used by developers/database administrators/etc who directly access your database..

3] Is there a better way to implement row-level-security in MySQL?

With both SQL functions and views in your implementation for MySQL, maybe you can just try to control the access not from SQL account levels but on user access via table data?

4] What are the pros/cons of implementing row-level-security by the above method?

One thing that is a consequence of having multiple accounts is maintenance of the accounts.

Using views and functions and stored procedures will be one good way to help control the amount or kind of data you allow your visitors to see, so that's a pro.

Again, these are just my opinions; I may have misunderstood a few parts and I may be wrong with others. :)

link|improve this answer
Thanks for the reply: <b>Not sure how to properly answer this one, because the article you might have read was about multiple sql accounts used by developers/database administrators/etc who directly access your database..</b> Thanks for pointing this out.. <b>The article was for using triggers & automated logging.</b> – ThinkingMonkey Nov 28 '11 at 14:41
link The disk i/o would increase when triggers are used. Your 1st and 3rd point is my original idea for implementation. Are there any reference material that I can refer to? P.S. I accidentally hit enter instead of shift enter previously – ThinkingMonkey Nov 28 '11 at 14:50
feedback

an answer for question 3:

A much simplier aproach might be using separate tables. It might be better in terms of performance as well. Is there a reason why you want to keep data in the same table? As I understood, no rows are shared between users.

link|improve this answer
Rows will be shared between the users. That is the reason why I am looking at row level security. I should have mentioned this earlier. And moreover.. More the tables, 1] More the size of my Database table. 2] More I/O. 3] Higher the size of my database dump. – ThinkingMonkey Nov 29 '11 at 16:44
feedback

Your Answer

 
or
required, but never shown

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