Apache Thrift netstd
May 11, 2026 ยท View on GitHub
Thrift client library for Microsoft .NET Standard
Build the library
How to build on Windows
- Get Thrift IDL compiler executable, add to some folder and add path to this folder into PATH variable.
- Alternatively, build from source by using the cmake target "copy-thrift-compiler", which places the binary to a suitable place.
- Open the Thrift.slnx project with Visual Studio and build. or
- Build with scripts
How to build on Unix/Linux
- Ensure you have a suitable .NET Core SDK installed, or use the Ubuntu docker image
- Follow common automake build practice:
./ bootstrap && ./ configure && make
Known issues
- In trace logging mode you can see some not important internal exceptions
Migration to netstd
... from netcore
If you are migrating your code from netcore library, you will have to:
- Switch to
thrift -gen netstd - the following compiler flags are no longer needed or supported:
hashcodeis now standard, whilenullableis no longer supported. - the
Thrift.TransportandThrift.Protocolnamespaces now use the singular form - add
using Thrift.Processor;in the server code where appropriate - rename all
T*ClientTransporttoT*Transport - rename all
TBaseServeroccurrences in your code toTServer - the
SingletonTProcessorFactoryis now calledTSingletonProcessorFactory - and the
AsyncBaseServeris now theTSimpleAsyncServer
You may wonder why we changed so many names. The naming scheme has been revised for two reasons: First, we want to get back the established, well-known naming consistency across the Thrift libraries which the netcore library did not fully respect. Second, by achieving that first objective, we get the additional benefit of making migration at least a bit easier for C# projects.
... from csharp
Because of the different environment requirements, migration from C# takes slightly more efforts. While the code changes related to Thrift itself are moderate, you may need to upgrade certain dependencies, components or even modules to more recent versions.
- Client and server applications must use at least framework 4.6.1, any version below will not work.
- Switch to
thrift -gen netstd. The following compiler flags are no longer needed or supported:hashcodeandasyncare now standard, whilenullableis no longer supported. - Familiarize yourself with the
async/awaitmodel, if you have not already done so. As netstd does not supportISyncanymore, async is mandatory. The synchronous model is simply no longer available (that's also the reason why we don't need theasyncflag anymore). - Consider proper use of
cancellationTokenparameters. They are optional but may be quite helpful. - As you probably already guessed, there are a few names that have been changed:
- add
using Thrift.Processor;in the server code where appropriate - the
TServerSocketis now calledTServerSocketTransport - change
IProtocolFactoryintoITProtocolFactory - if you are looking for
TSimpleServer, tryTSimpleAsyncServerinstead - similarly, the
TThreadPoolServeris now aTThreadPoolAsyncServer - the server's
Serve()method does nowServeAsync() - In case you are using Thrift server event handlers: the
SetEventHandlermethod now starts with an uppercase letter - and you will also have to revise the method names of all
TServerEventHandlerdescendants you have in your code
Fuzzing
We use SharpFuzz (and its libfuzzer variant) to fuzz the Thrift protocol parsers. This is not integrated with oss-fuzz, so all fuzzing must be run locally. Supported platform: Linux only.
make check compiles the 12 fuzzer variants without SharpFuzz IL
instrumentation, so changes that break the fuzzer build will fail CI.
Full, instrumented builds suitable for actually running a fuzzer remain
opt-in: run make build-fuzzers (or ./buildfuzzers.sh), which
additionally requires the SharpFuzz.CommandLine global tool and the
libfuzzer-dotnet native driver as described below.
Prerequisites
-
A .NET 10 SDK (same one used for the rest of
lib/netstd). -
The SharpFuzz IL-rewriter CLI, installed as a .NET global tool:
dotnet tool install --global SharpFuzz.CommandLine export PATH="$PATH:$HOME/.dotnet/tools"Add the
PATHexport to your shell rc if you want it to persist. -
The native
libfuzzer-dotnetdriver binary. Grab a prebuilt release from the Metalnem/libfuzzer-dotnet releases page (or build it from source). Place it in a directory of your choice and pointSHARPFUZZ_DIRat that directory:export SHARPFUZZ_DIR=/path/to/libfuzzer-dotnet-dirbuildfuzzers.shandrunfuzzer.shexpect to find$SHARPFUZZ_DIR/libfuzzer-dotnet.
A temporary note on DOTNET_ROLL_FORWARD
As of SharpFuzz.CommandLine 2.2.0, the global tool's runtimeconfig.json pins the
tool to .NET 9, which prevents it from running under a .NET 10-only host. Both
buildfuzzers.sh and runfuzzer.sh therefore export DOTNET_ROLL_FORWARD=Major
at the top of the script as a workaround. Upstream fix:
SharpFuzz PR #72 (merged, pending
release as SharpFuzz 2.3.0). Once that release ships, remove the DOTNET_ROLL_FORWARD
exports from both shell drivers and update the SharpFuzz package pin in
Tests/Thrift.FuzzTests/Thrift.FuzzTests.csproj.
Running the fuzzers
Build all twelve fuzzer assemblies (3 protocols x 2 fuzzer types x 2 engines) and instrument them with SharpFuzz:
./buildfuzzers.sh
Run one fuzzer:
./runfuzzer.sh <fuzzer-name> <engine> [extra-fuzzer-args...]
Where <fuzzer-name> is one of binary, compact, json, binary-roundtrip,
compact-roundtrip, json-roundtrip, and <engine> is libfuzzer or afl.
Any additional arguments are passed through to the underlying fuzzer engine, e.g.:
./runfuzzer.sh binary libfuzzer -runs=10000