Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Re-run routing for implicit middlewares that require endpoints #49732

Merged
merged 3 commits into from
Aug 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions src/Antiforgery/src/AntiforgeryApplicationBuilderExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@

using Microsoft.AspNetCore.Antiforgery;
using Microsoft.AspNetCore.Antiforgery.Internal;
using Microsoft.AspNetCore.Routing;
using Microsoft.Extensions.DependencyInjection;

namespace Microsoft.AspNetCore.Builder;

Expand All @@ -24,6 +26,19 @@ public static IApplicationBuilder UseAntiforgery(this IApplicationBuilder builde
builder.VerifyAntiforgeryServicesAreRegistered();

builder.Properties[AntiforgeryMiddlewareSetKey] = true;

// The anti-forgery middleware adds annotations to HttpContext.Items to indicate that it has run
// that will be validated by the EndpointsRoutingMiddleware later. To do this, we need to ensure
// that routing has run and set the endpoint feature on the HttpContext associated with the request.
if (builder.Properties.TryGetValue(RerouteHelper.GlobalRouteBuilderKey, out var routeBuilder) && routeBuilder is not null)
captainsafia marked this conversation as resolved.
Show resolved Hide resolved
{
return builder.Use(next =>
{
var newNext = RerouteHelper.Reroute(builder, routeBuilder, next);
var antiforgery = builder.ApplicationServices.GetRequiredService<IAntiforgery>();
return new AntiforgeryMiddleware(antiforgery, newNext).Invoke;
});
}
builder.UseMiddleware<AntiforgeryMiddleware>();

return builder;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,6 @@

<ItemGroup>
<Compile Include="$(SharedSourceRoot)HttpMethodExtensions.cs" LinkBase="Shared"/>
<Compile Include="$(SharedSourceRoot)Reroute.cs" LinkBase="Shared"/>
</ItemGroup>
</Project>

Large diffs are not rendered by default.

10 changes: 8 additions & 2 deletions src/Http/Http.Extensions/src/RequestDelegateFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2014,12 +2014,18 @@ private static Expression BindComplexParameterFromFormItem(
FormDataMapperMapMethod.MakeGenericMethod(parameter.ParameterType),
formReader,
Expression.Constant(FormDataMapperOptions));
// ArrayPool<char>.Shared.Return(form_buffer, false);
// if (form_buffer != null)
// {
// ArrayPool<char>.Shared.Return(form_buffer, false);
// }
var returnBufferExpr = Expression.Call(
Expression.Property(null, typeof(ArrayPool<char>).GetProperty(nameof(ArrayPool<char>.Shared))!),
ArrayPoolSharedReturnMethod,
formBuffer,
Expression.Constant(false));
var conditionalReturnBufferExpr = Expression.IfThen(
captainsafia marked this conversation as resolved.
Show resolved Hide resolved
Expression.NotEqual(formBuffer, Expression.Constant(null)),
returnBufferExpr);

return Expression.Block(
new[] { formArgument, formReader, formDict, formBuffer },
Expand All @@ -2028,7 +2034,7 @@ private static Expression BindComplexParameterFromFormItem(
processFormExpr,
initializeReaderExpr,
Expression.Assign(formArgument, invokeMapMethodExpr)),
returnBufferExpr),
conditionalReturnBufferExpr),
formArgument
);
}
Expand Down
16 changes: 16 additions & 0 deletions src/Security/Authentication/Core/src/AuthAppBuilderExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
// The .NET Foundation licenses this file to you under the MIT license.

using Microsoft.AspNetCore.Authentication;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.AspNetCore.Routing;

namespace Microsoft.AspNetCore.Builder;

Expand All @@ -22,6 +24,20 @@ public static IApplicationBuilder UseAuthentication(this IApplicationBuilder app
ArgumentNullException.ThrowIfNull(app);

app.Properties[AuthenticationMiddlewareSetKey] = true;

// The authentication middleware adds annotation to HttpContext.Items to indicate that it has run
// that will be validated by the EndpointsRoutingMiddleware later. To do this, we need to ensure
// that routing has run and set the endpoint feature on the HttpContext associated with the request.
if (app.Properties.TryGetValue(RerouteHelper.GlobalRouteBuilderKey, out var routeBuilder) && routeBuilder is not null)
captainsafia marked this conversation as resolved.
Show resolved Hide resolved
{
return app.Use(next =>
{
var newNext = RerouteHelper.Reroute(app, routeBuilder, next);
var authenticationSchemeProvider = app.ApplicationServices.GetRequiredService<IAuthenticationSchemeProvider>();
return new AuthenticationMiddleware(newNext, authenticationSchemeProvider).Invoke;
});
}

return app.UseMiddleware<AuthenticationMiddleware>();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@

<ItemGroup>
<Compile Include="$(SharedSourceRoot)SecurityHelper\**\*.cs" />
<Compile Include="$(SharedSourceRoot)Reroute.cs" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@

using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Authorization.Policy;
using Microsoft.AspNetCore.Routing;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;

namespace Microsoft.AspNetCore.Builder;

Expand All @@ -30,6 +32,24 @@ public static IApplicationBuilder UseAuthorization(this IApplicationBuilder app)
VerifyServicesRegistered(app);

app.Properties[AuthorizationMiddlewareSetKey] = true;

// The authorization middleware adds annotation to HttpContext.Items to indicate that it has run
// that will be validated by the EndpointsRoutingMiddleware later. To do this, we need to ensure
// that routing has run and set the endpoint feature on the HttpContext associated with the request.
if (app.Properties.TryGetValue(RerouteHelper.GlobalRouteBuilderKey, out var routeBuilder) && routeBuilder is not null)
captainsafia marked this conversation as resolved.
Show resolved Hide resolved
{
return app.Use(next =>
{
var newNext = RerouteHelper.Reroute(app, routeBuilder, next);
var authorizationPolicyProvider = app.ApplicationServices.GetRequiredService<IAuthorizationPolicyProvider>();
var logger = app.ApplicationServices.GetRequiredService<ILogger<AuthorizationMiddleware>>();
return new AuthorizationMiddlewareInternal(newNext,
app.ApplicationServices,
authorizationPolicyProvider,
logger).Invoke;
});
}

return app.UseMiddleware<AuthorizationMiddlewareInternal>();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
<ItemGroup>
<Compile Include="$(SharedSourceRoot)SecurityHelper\**\*.cs" />
<Compile Include="..\..\..\..\Http\Routing\src\DataSourceDependentCache.cs" Link="DataSourceDependentCache.cs" />
<Compile Include="$(SharedSourceRoot)Reroute.cs" />
</ItemGroup>

<ItemGroup>
Expand Down