in reply to Re^3: Recalcitrant placeholders
in thread Recalcitrant placeholders
It's littered with all sorts of things unrelated to the base problem which, until we know more, would seem to be database-related. There is taint-related code
Those unrelated things have to be there.
The problem goes away if I turn off taint mode...
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Recalcitrant placeholders
by haukex (Archbishop) on Jul 09, 2021 at 19:51 UTC | |
Those unrelated things have to be there. That logically doesn't make sense ;-) The main issue is that your code relies on libraries that we don't have - the most important thing to keep in mind is that we need to be able to run the code and reproduce the issue ourselves. The problem goes away if I turn off taint mode... Well that's certainly interesting and might indicate a bug somewhere. Unfortunately I was unable to reproduce the issue you're seeing as well, which means the issue may be somewhere outside of the code you've shown here. I would consider as a bare minimum that you inline the code of $crm->db, remove the other dependencies, and show the output of Data::Dumper (with $Data::Dumper::Useqq=1;) of %data. Also, GrandFather, afoken, and kcott all commented that both the selectrow_array and fetchrow_array documentation state "If called in a scalar context for a statement handle that has more than one column, it is undefined whether the driver will return the value of the first column or the last. So don't do that." really do mean you shouldn't be doing that*. Stated a little differently, you shouldn't be surprised that this undefined behavior is biting you. It may not even be worth trying to debug this and instead just using the API the way the documentation says you should... * Update: Yes, even if you only have one column. afoken's point that the documentation clearly warns you away from scalar context is important. | [reply] [d/l] [select] |
by Bod (Parson) on Jul 10, 2021 at 13:45 UTC | |
Also, GrandFather, afoken, and kcott all commented that both the selectrow_array and fetchrow_array documentation state "If called in a scalar context for a statement handle that has more than one column, it is undefined whether the driver will return the value of the first column or the last. So don't do that." really do mean you shouldn't be doing that*. Stated a little differently, you shouldn't be surprised that this undefined behavior is biting you. It may not even be worth trying to debug this and instead just using the API the way the documentation says you should... I addressed this in the original question: The problem goes away if I turn off taint mode... I thought it was an isolated incident confined to this piece of code. But it has broken Bod::CRM which we discussed in [RFC] Review of module code and POD. I *think* it is because the value passed to the placeholder originated from STDIN via the POST from a web form (or occasionally from the QUERY_STRING CGI environment variable). I suspect Perl considers this to be tainted but doesn't warn about it in any way. Perhaps this is a bug in DBI. Especially as the documentation for selectrow_array says "This utility method combines "prepare", "execute" and "fetchrow_array" into a single call" But this fails: Yet this, which is supposed to be equivelent, works: As a consequence, I am going through code used under taint mode and changing selectrow_array for the above modification if there is any chance that the placeholder data might be considered tainted. update Some testing has proved that it is about tainted data being passed to the placeholders and only with selectrow_array, not execute and fetchrow_array. With taint mode on, if I pass a value to the placeholder that has come from STDIN then it fails silently. But if I pass the same value assigned to the variable in my script and pass that to the placeholder, it works. This behaviour makes sense but it would also make sense for it to throw an error when I try to do it rather than failing silently. | [reply] [d/l] [select] |
by haukex (Archbishop) on Jul 17, 2021 at 19:40 UTC | |
Sorry for the late reply. I addressed this in the original question: Things I have tried...Forcing array context my ($crid) = $crm->db->selectrow_array - no change I missed that, sorry about that. Some testing has proved that it is about tainted data being passed to the placeholders and only with selectrow_array, not execute and fetchrow_array. With taint mode on, if I pass a value to the placeholder that has come from STDIN then it fails silently. But if I pass the same value assigned to the variable in my script and pass that to the placeholder, it works. Thanks for the further information, that does somewhat make sense. Unfortunately, I still haven't been able to reproduce it. What version of MySQL, DBI, DBD::mysql, etc. are you using? Does the code below produce the incorrect results for you? This behaviour makes sense but it would also make sense for it to throw an error when I try to do it rather than failing silently. The DBI docs say that as of v1.31, you can turn on the TaintIn option, which works for me in that it causes DBI to die with tainted arguments.
I spun up the test database with Docker as I showed in this node. | [reply] [d/l] [select] |
by Bod (Parson) on Jul 25, 2021 at 14:31 UTC | |
by haukex (Archbishop) on Jul 28, 2021 at 09:17 UTC | |
| |
|
Re^5: Recalcitrant placeholders
by hippo (Archbishop) on Jul 09, 2021 at 19:54 UTC | |
Those unrelated things have to be there. For the SSCCE? 🦛 | [reply] |