firebase-tools
firebase-tools copied to clipboard
Firestore security rule emulator - get and getAfter throwing an exception on non existant doc
[REQUIRED] Environment info
**firebase-tools:**7.16.1
**Platform:**Windows
[REQUIRED] Test case
Just write a rule using a get or getAfter on a non existant doc. For instance: allow update: if get(/databases/$(database)/documents/doc/doesnot/exist) == null;
[REQUIRED] Steps to reproduce
See above
[REQUIRED] Expected behavior
As per the doc get and getAfter should return null. this is what the online simulator does.
[REQUIRED] Actual behavior
An exception is thrown Service call error. Function: [get], Argument: [path_value { ...}
@olivierkrener thanks for reporting, @scottcrossen is looking into this.
@olivierkrener Thanks for reporting it! The fix for this is actually quite simple, but there's a lot of organizational complexity surrounding it which will delay the release of the fix by around 1-2 months.
Ok, thanks for the update, I am doing without for the time being
Okay! That's great to hear. I'm sorry you're experiencing this. Because the emulator mirrors the production experience, you may also encounter this in production. One workaround is to write a global function like this:
rules_version='2';
// Overload firestore-provided function at global scope.
function get(path) {
// You'll have to wait for the ternary operator to be released in the emulators
return exists(path) ? get(path) : null;
}
service cloud.firestore {
// Your code here.
}
It's not ideal because in production this may count as two data lookups instead of one, but it works. Also keep in mind that rules logic is 'short-circuiting' and that includes error handling. For example, `allow read: if get(/bad/path).boolean_field || true' would return true even though the first branch is an error.
Edit: It probably doesn't count as two rules lookups
And that's why I raised an issue for the ternary operator ;)
You say that
this will count as two data lookups instead of one
Can you elaborate? I thought that data lookup are counted by document reference. So doing 10x get(pathdoc) only counts as 1 data lookup in the end. I got this confirmed by one of your colleague on stackoverflow https://stackoverflow.com/questions/60676202/firestore-security-rules-how-are-reads-counted-for-exists-get-getafter
Apparently this is no working in prod either, as you mention
Confirmed, through i could not use ternary operator with the emulator.
Can you elaborate?
Doug would know better than me about the billing and limitations that are customer facing. What he says is generally canon.
Update: The first PR was merged on March 26th that will begin to fix this. It will take a few more months for it to be fully fixed because of deploy schedules.
@scottcrossen can you close this issue when the fix is rolled out? Also is there an internal bug I could follow?
@scottcrossen can you close this issue when the fix is rolled out? Also is there an internal bug I could follow?
In what release is this planned to be rolled out?
Not sure if I'm supposed to link internal bugs here, but YOLO for posterity: b/152525307
@samtstern
Unfortunately I haven't followed up with the current assignee for a while. I'm sorry about that. I'll start annoying him to work on it. This is pretty egregious and needs to be fixed.
clever way to bring down the max allowed get calls if i do say so myself
Any progress here?
An issue with the current workaround with the ternary is that it consumes more expressions compared to a direct get call and Firestore has a 1000 limit on expressions.
Is there any update on this issue? Using the workaround in frequent actions will cose double the amount of reads.
How can a bug like this one be open for over two years? :'( BUMP
...bump, still broken
this is still not working. also, the workaround gives me the following on the emulator output: i firestore: Change detected, updating rules... ⚠ firestore.rules:3:10 - ERROR Recursive call is not allowed. ⚠ firestore.rules:5:10 - WARNING Call to service function 'exists' occurs outside of defining scope. ✔ firestore: Rules updated.
I don't understand the error since the document exists as far as I can see.
Thanks for reporting your experience VGerris, we're aware of this issue (exists in production too) but we have no expected fix timeline.
Bump, this is still an issue. Any chance there's been progress on this?
Just bumped into this. I'm trying to perform a transactional write, where two documents are created as a result and one of them is validated against another. Is there any other way to achieve this without bumping into this bug?
Not with rules, you need to write server side logic because apparently Google doesn't care about fixing the bug.
On Thu, May 4, 2023, 20:47 jellynoone @.***> wrote:
Just bumped into this. I'm trying to perform a transactional write, where two documents are created as a result and one of them is validated against another. Is there any other way to achieve this without bumping into this bug?
— Reply to this email directly, view it on GitHub https://github.com/firebase/firebase-tools/issues/2067#issuecomment-1535244382, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAGB3CMT2CULOEJQRQDITLLXEP2SRANCNFSM4LTYGNAQ . You are receiving this because you commented.Message ID: @.***>
Still an issue, please fix
Any update on this issue?
Started experiencing this on a very specific existsAfter call on only 2 of our 10+ dev environments. It throws an exception instead of returning as expected.
Anything we could do to debug this further? E.g. What could be affecting the affected envs, compared to the others?