After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 753049 - gom: should guard against special characters in identifiers
gom: should guard against special characters in identifiers
Status: RESOLVED FIXED
Product: gom
Classification: Other
Component: general
unspecified
Other Linux
: Normal normal
: ---
Assigned To: Gom Maintainers
Gom Maintainers
Depends on:
Blocks:
 
 
Reported: 2015-07-30 09:40 UTC by Florian Weimer
Modified: 2015-08-07 12:01 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
sorting: Use a GParamSpec internally (2.92 KB, patch)
2015-08-06 06:39 UTC, Mathieu Bridon
none Details | Review

Description Florian Weimer 2015-07-30 09:40:03 UTC
Currently, gom does not protect its SQL generation logic against special characters in identifiers.  Characters such as '![] should be rejected to prevent any risk of SQL injection.  There are some places which do not seem to be able to cope with spaces in identifiers because the identifiers are not quoted at all.
Comment 1 Bastien Nocera 2015-08-05 09:31:34 UTC
(In reply to Florian Weimer from comment #0)
> Currently, gom does not protect its SQL generation logic against special
> characters in identifiers. 

What identifiers, specifically?

> Characters such as '![] should be rejected to
> prevent any risk of SQL injection.  There are some places which do not seem
> to be able to cope with spaces in identifiers because the identifiers are
> not quoted at all.

Identifiers for tables are set by the object classes, so they could potentially be problematic. But those would be set in code, not coming from user input.

Similarly, all the object properties names that will correspond to column names in SQL, must follow a separate scheme (from g_param_spec_internal()'s docs):
 * A property name consists of segments consisting of ASCII letters and
 * digits, separated by either the '-' or '_' character. The first
 * character of a property name must be a letter.

So all valid property names will be valid SQL column names, and you won't be able to have invalid column names running in code.

So, in short, which identifiers exactly are the problem? And what entry points did you find for those identifiers that could be passed from users but invalid?
Comment 2 Mathieu Bridon 2015-08-06 06:07:20 UTC
(In reply to Bastien Nocera from comment #1)
> (In reply to Florian Weimer from comment #0)
> > Characters such as '![] should be rejected to
> > prevent any risk of SQL injection.  There are some places which do not seem
> > to be able to cope with spaces in identifiers because the identifiers are
> > not quoted at all.
> 
> Identifiers for tables are set by the object classes, so they could
> potentially be problematic. But those would be set in code, not coming from
> user input.

Indeed, I tried setting the table name to "episodes;" and I got:

assertion failed (error == NULL): sqlite3_prepare_v2 failed: near ";": syntax error: INSERT INTO episodes; ('series-id', 'imdb-id', 'season-number', 'episode-number', 'episode-name') VALUES (?, ?, ?, ?, ?); ("gom-error-quark", 2)

> Similarly, all the object properties names that will correspond to column
> names in SQL, must follow a separate scheme (from g_param_spec_internal()'s
> docs):
>  * A property name consists of segments consisting of ASCII letters and
>  * digits, separated by either the '-' or '_' character. The first
>  * character of a property name must be a letter.
> 
> So all valid property names will be valid SQL column names, and you won't be
> able to have invalid column names running in code.

This is not really how it works.

I tried it, and it works just fine to use property names with ";", "?", spaces, etc...

What happens though is that when passing them through GParamSpec, they names get mangled and all those special characters get replaced by "-" characters.

As a result, if you have a resource object with a "season-number;" property, it will point to a "season-number-" column, and everything works just fine.

Except for GomSorting object, these don't work at all, because when I created it, I didn't use GParamSpec at all for it. I have a patch ready to fix that. :)
Comment 3 Mathieu Bridon 2015-08-06 06:39:04 UTC
Created attachment 308837 [details] [review]
sorting: Use a GParamSpec internally

Other Gom objects already do this, for example GomFilter.

One of the good things with this is that when getting a GParamSpec, the
property id is sanitized, so that it won't contain any special
characters like ";", "?", or other things which could cause SQL
injections.
Comment 4 Mathieu Bridon 2015-08-06 08:48:43 UTC
The last thing I can see which could be problematic is the values passed to SQL statements.

But AFAICS, we always use the sqlite3_bind_* functions to pass values to SQL statements, so we should be ok there.
Comment 5 Mathieu Bridon 2015-08-07 11:56:27 UTC
Comment on attachment 308837 [details] [review]
sorting: Use a GParamSpec internally

Bastien is sitting next to me, reviewed this patch and told me to just push it.