Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Use call context to propagare LR costs | David Garcia Quintas | 2017-02-13 |
| | |||
* | Fix read from uninitialized memory bug in GrpcBufferWriter. | Harvey Tuch | 2017-02-07 |
| | | | | | | | | | | | | | | | | | | | | | | | | | This commit fixes an issue in which the following sequence of operations leads to use of uninitialized memory: 1. Caller invokes GrpcBufferWriter::Next(), and then makes use of 8191 bytes in the returned buffer (which is 8192 bytes in size). 2. Caller then returns the unused single byte via GrpcBufferWriter::BackUp(). This method invokes g_core_codegen_interface->grpc_slice_split_tail(), which causes backup_slice_ to be a grpc_slice with one byte. 3. At the next invocation of GrpcBufferWriter::Next(), a reference to the single byte grpc_slice is returned to the caller. The problem here is that the returned reference is to the inlined buffer in the grpc_slice, which is resident in slice_, not the location of the buffer inside slice_buffer_ after g_core_codegen_interface->grpc_slice_buffer_add() in GrpcBufferWriter::Next(). As a result, any data the caller writes to the returned void* data is lost. The solution is to avoid inlined backup slices. | ||
* | Merge github.com:grpc/grpc into rollfwd | Craig Tiller | 2017-01-27 |
|\ | |||
| * | Merge github.com:grpc/grpc into maxmsgsz | Craig Tiller | 2017-01-26 |
| |\ | |||
* | \ | Merge github.com:grpc/grpc into rollfwd | Craig Tiller | 2017-01-26 |
|\ \ \ | | |/ | |/| | |||
| * | | Move parameters for all grpc_op types into their own sub-structs. | Mark D. Roth | 2017-01-25 |
| | | | |||
* | | | Revert "Revert "Metadata handling rewrite"" | Craig Tiller | 2017-01-23 |
|/ / | | | | | | | This reverts commit 5e01e2ac977655aa074faf7fde0a74298f5e4c55. | ||
* | | Revert "Metadata handling rewrite" | Craig Tiller | 2017-01-20 |
| | | |||
| * | Merge github.com:grpc/grpc into maxmsgsz | Craig Tiller | 2017-01-20 |
| |\ | |/ |/| | |||
* | | Merge github.com:grpc/grpc into metadata_filter | Craig Tiller | 2017-01-20 |
|\ \ | |||
| | * | Fix integer overflow | Craig Tiller | 2017-01-19 |
| | | | |||
| * | | Merge branch 'master' into its_compat | Vijay Pai | 2017-01-19 |
| |\ \ | |||
| | | * | Remove double-checking of max-message-size in C++ layers | Craig Tiller | 2017-01-19 |
| | |/ | |||
* | | | Remove bogus assert | Craig Tiller | 2017-01-12 |
| | | | |||
* | | | Merge github.com:grpc/grpc into fix_errors | Craig Tiller | 2017-01-06 |
|\ \ \ | | |/ | |/| | |||
| * | | Small improvements to generated documentation | Craig Tiller | 2017-01-06 |
| | | | |||
| | * | Support compat with old generated PB files | Vijay Pai | 2016-12-13 |
| |/ | |||
* | | Fix stack corruption | Craig Tiller | 2016-12-08 |
| | | |||
* | | Fix include guards | Craig Tiller | 2016-12-08 |
| | | |||
* | | Start resolving memory issues in C++ metadata | Craig Tiller | 2016-12-08 |
| | | |||
* | | Merge branch 'slice_interning' into metadata_filter | Craig Tiller | 2016-12-06 |
|\| | |||
| * | gpr_atm isn't automatically initialized to 0. Thanks Obama. | Vijay Pai | 2016-12-05 |
| | | |||
| * | clang-format | Vijay Pai | 2016-12-05 |
| | | |||
| * | Track requests that could cause other requests to be created, and don't do | Vijay Pai | 2016-12-05 |
| | | | | | | | | a real core shutdown of a CQ until such requests are done | ||
* | | C++ compiles | Craig Tiller | 2016-11-21 |
| | | |||
* | | Start moving C++ to slice interfaces | Craig Tiller | 2016-11-21 |
|/ | |||
* | Merge pull request #8086 from y-zeng/fix_gprc | Yuchen Zeng | 2016-11-11 |
|\ | | | | | Fix misspelled gprc | ||
* \ | Merge github.com:grpc/grpc into grpc_slice | Craig Tiller | 2016-11-04 |
|\ \ | |||
| * | | Deprecate grpc::thread and sync in favor of std::thread,mutex,etc | Vijay Pai | 2016-11-01 |
| | | | |||
| * | | Remove references to NO_CHRONO option | Vijay Pai | 2016-11-01 |
| | | | |||
| * | | Remove separate versions of code based on presence of threading in compiler | Vijay Pai | 2016-11-01 |
| | | | |||
| * | | clang-format | Vijay Pai | 2016-11-01 |
| | | | |||
| * | | Use C++11 final and override | Vijay Pai | 2016-11-01 |
| | | | |||
| * | | Stop supporting non-C++11 conformant compilers | Vijay Pai | 2016-11-01 |
| | | | |||
* | | | Merge github.com:grpc/grpc into grpc_slice | Craig Tiller | 2016-10-31 |
|\| | | |||
* | | | clang-format | Craig Tiller | 2016-10-26 |
| | | | |||
* | | | Fix include guards | Craig Tiller | 2016-10-26 |
| | | | |||
* | | | s/GPR_SLICE/GRPC_SLICE/g | Craig Tiller | 2016-10-26 |
| | | | |||
* | | | s/gpr_slice/grpc_slice, and move around tests, impls | Craig Tiller | 2016-10-26 |
| | | | |||
| * | | Merge branch 'master' into rpc_mgr | Sree Kuchibhotla | 2016-10-21 |
| |\ \ | |/ / |/| | | |||
* | | | Merge pull request #8365 from vjpai/fc_1dstream | Vijay Pai | 2016-10-20 |
|\ \ \ | | | | | | | | | Support request separation of server-side streamed RPC | ||
* | | | | Remove a useless forward declaration | Vijay Pai | 2016-10-20 |
| | | | | |||
| | * | | Merge branch 'master' into rpc_mgr | Sree Kuchibhotla | 2016-10-18 |
| | |\ \ | |_|/ / |/| | | | |||
| * | | | Merge remote-tracking branch 'upstream/master' into fc_1dstream | Vijay Pai | 2016-10-18 |
| |\ \ \ | |/ / / |/| | | | |||
| | | * | Merge remote-tracking branch 'upstream/master' into fix_gprc | Yuchen Zeng | 2016-10-17 |
| | | |\ | |||
* | | | | | Add a test spouse for server context | yang-g | 2016-10-13 |
| |_|_|/ |/| | | | |||
| * | | | clang-format | Vijay Pai | 2016-10-13 |
| | | | | |||
| * | | | Bug fix on failure condition | Vijay Pai | 2016-10-13 |
| | | | | |||
| | * | | Merge branch 'master' into rpc_mgr | Sree Kuchibhotla | 2016-10-13 |
| | |\ \ | |_|/ / |/| | | | |||
| * | | | Making split streaming testable | Vijay Pai | 2016-10-13 |
| | | | |