Azure / Azure/data-api-builder
[Bug]: DAB in multi tenant db throws error when paging results
Nadie ha tomado este issue todavía.
- Lenguaje dominante
- C#
- Estrellas
- 1.5k
- Forks
- 372
- Merge medio
- 3 d 22 h
- PR fusionados (30 d)
- 9
Descripción
What happened?
Bug Report: AuthorizationCheckFailed (403) on Paginated ($after) Requests When Using Database-Level Item Policies
Submit at
https://github.com/Azure/data-api-builder/issues/new/choose
Summary
When an entity has a database-level authorization policy (policy.database) that references a JWT claim (e.g., @claims.companyId), the first page of a GET request succeeds normally. However, every subsequent paginated request using the $after continuation cursor returned in nextLink fails with:
{
"error": {
"code": "AuthorizationCheckFailed",
"message": "Authorization Failure: Access Not Allowed.",
"status": 403
}
}
This occurs 100% of the time, using the same valid JWT token that succeeded on page 1, across multiple different entities with an identical policy shape.
Environment
- DAB Version:
Microsoft.DataApiBuilder 2.0.12+0b38aa7cbf4118034ad8dee1f2712b1c4bac4c32 - Database: Microsoft SQL Server (
mssql) - Authentication provider: AzureAD (custom JWT issuer,
"provider": "AzureAD"with customissuer/audience) - Host mode:
development - Deployment: Data API builder running as a REST API in front of SQL Server views
Steps to Reproduce
- Configure an entity backed by a SQL view, with a database-level item policy referencing a JWT claim:
"xxxView": {
"source": {
"object": "[dbo].[xxxView]",
"type": "view"
},
"fields": [
{ "name": "AppealId", "primary-key": true }
],
"permissions": [
{
"role": "authenticated",
"actions": [
{
"action": "read",
"policy": {
"database": "@item.CompanyId eq @claims.companyId"
}
}
]
}
]
}
- Authenticate and obtain a valid JWT containing a
companyIdclaim. - Issue a
GETrequest to the entity's REST endpoint, e.g.:
→ ReturnsGET https://<dab-host>/api/AppealSearchView Authorization: Bearer <token>200 OKwith up to 1000 rows and anextLinkin the response body, e.g.:{ "value": [ ... up to 1000 rows ... ], "nextLink": "AppealSearchView?$after=<base64-cursor>" } - Issue a second
GETrequest using the returnednextLink/$aftercursor, with the sameAuthorization: Bearer <token>header:
→ Expected:GET https://<dab-host>/api/AppealSearchView?$after=<base64-cursor> Authorization: Bearer <token>200 OKwith the next page of results.
→ Actual:403 Forbidden:{ "error": { "code": "AuthorizationCheckFailed", "message": "Authorization Failure: Access Not Allowed.", "status": 403 } }
Reproducibility
- 100% reproducible across 3 different entities (
xxxView,xxxView,xxxView), all sharing the identical policy pattern (@item.CompanyId eq @claims.companyId). - Reproduced under both light (single request) and heavy concurrent load (15 concurrent users / 100 requests).
- Reproduced consistently before and after upgrading DAB from an earlier version to
2.0.12— upgrading did not resolve the issue.
Root-Cause Investigation / Things Already Ruled Out
We suspected and tested the following client-side causes, all of which were ruled out:
-
Missing
Authorizationheader on the paginated request
Confirmed via code review and request tracing that the identicalBearertoken is attached to every request, including all paginated continuation requests. -
Missing
X-MS-API-ROLEheader
Added an explicitX-MS-API-ROLE: authenticatedheader to every request (including paginated ones). This had no effect — the same 403 occurred. -
URL encoding / corruption of the
$aftercursor value
ThenextLinkcursor is base64-encoded and can contain+,/,=characters. We explicitly re-parsed and re-percent-encoded the$afterquery parameter before issuing the follow-up request (confirmed via request tracing that$after=was correctly encoded as%24after=with a properly escaped value). This had no effect — the same 403 occurred.
Given that:
- Page 1 always succeeds with the token,
- The identical token, role header, and a cleanly re-encoded cursor are used on page 2,
- The failure is 100% reproducible only when a database-level item policy referencing a JWT claim is present,
this strongly suggests the issue lies in how DAB's query builder composes the item-level policy predicate (@item.CompanyId eq @claims.companyId) together with the keyset pagination predicate (based on the $after cursor and primary key) when building/evaluating the SQL for continuation requests — resulting in the authorization check for the paginated query incorrectly evaluating to "no access" rather than a data or SQL error.
Impact
This makes it impossible to reliably paginate through result sets larger than the page size (1000 rows) for any entity that uses a database-level item policy tied to a JWT claim — a common multi-tenant security pattern. Any client (SPA, load tester, mobile app, etc.) attempting to page through results for such an entity will receive a 403 on the second page onward.
Suggested Fix Areas
- Review the SQL query-building logic for paginated (
$after) requests specifically when apolicy.databasepredicate is present on the entity'sreadaction. - Verify the policy predicate substitution/composition logic is applied identically for both the initial query and the continuation (keyset) query.
- Add integration test coverage for: entity with
policy.database+ pagination beyond page 1.
Attachments / Additional Info Available on Request
- Full dab-config.json entity definitions (redacted connection string) for the 3 affected entities.
- Sample failing request/response pairs (page 1 success + page 2 403) for all 3 entities.
- Decoded JWT claim structure used during testing (contains
companyId,userId,userName, role claim).
Version
2.0.12
What database are you using?
Azure SQL
What hosting model are you using?
Local (including CLI)
Which API approach are you accessing DAB through?
REST
Relevant log output
Code of Conduct
- I agree to follow this project's Code of Conduct
Guía de contribución
Primeros pasos
- Lee el issue completo y luego la guía de contribución del proyecto.
- Comenta en el issue que vas a ocuparte — evita que dos personas hagan lo mismo.
- Haz un fork del repositorio y trabaja en una rama.
- Abre un pull request que haga referencia al número del issue.
Línea de trabajo
Comienza en el manejo de solicitudes REST para la paginación con $after y sigue cómo se componen los predicados de policy.database que usan @claims.companyId para las consultas iniciales y de continuación. Añade cobertura de integración para una entidad con una política de elemento a nivel de base de datos y paginación más allá de la primera página. Se considera terminado cuando las páginas posteriores devuelven resultados 200 en lugar de respuestas 403 AuthorizationCheckFailed con el mismo JWT.
Escrito por el modelo de indexación a partir del texto del issue.
Evaluación
- Stack tecnológico
- azure, csharp, sql
- Área
- api, authorization, backend-api-design, database
- Tipo de issue
- Error
- Dificultad
- 4/5
- Tiempo estimado
- 3-5 días
- Estado de actividad
- Activo
- Claridad
- Bastante claro
- Aptitud para principiantes
- 48/100