aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/security/context
Commit message (Collapse)AuthorAge
* Move security credentials, connectors, and auth context to C++Gravatar Soheil Hassas Yeganeh2018-12-13
| | | | | | | This is to use `grpc_core::RefCount` to improve performnace. This commit also replaces explicit C vtables, with C++ vtable with its own compile time assertions and performance benefits. It also makes use of `RefCountedPtr` wherever possible.
* Remeve memset(0) from arena allocated memory.Gravatar Soheil Hassas Yeganeh2018-11-05
| | | | | | | Callers are updated to properly initialize the memory. This behavior can be overridden using GRPC_ARENA_INIT_STRATEGY environment variable.
* Allocate on call arena in client_auth_filterGravatar Hope Casey-Allen2018-07-03
|
* Remove allocation in server_auth filter and allocate on the arena insteadGravatar Hope Casey-Allen2018-06-22
|
* Revert "Add Type Checking On Channel Args"Gravatar Noah Eisen2018-06-14
|
* Reviewer feedbackGravatar ncteisen2018-06-13
|
* Remove all uses of raw GRPC_ARG_POINTERGravatar ncteisen2018-06-13
|
* Add a sanity check for inclusion of port_platform.hGravatar Alexander Polcyn2018-02-23
|
* Run clang fmtGravatar Noah Eisen2018-02-09
|
* Autofix c casts to c++ castsGravatar Noah Eisen2018-02-09
|
* Split lib/support into lib/gpr and lib/gpr++.Gravatar Mark D. Roth2018-01-18
|
* Revert "Revert "All instances of exec_ctx being passed around in src/core ↵Gravatar Yash Tibrewal2017-12-06
| | | | removed""
* Revert "All instances of exec_ctx being passed around in src/core removed"Gravatar Yash Tibrewal2017-12-06
|
* Merge master after no Extern C changesGravatar Yash Tibrewal2017-11-30
|\
* | Remove _ prefixed variable namesGravatar Yash Tibrewal2017-11-29
| |
* | Merge masterGravatar Yash Tibrewal2017-11-21
|\ \
| | * Merge branch 'master' of https://github.com/grpc/grpc into no-more-extern-cGravatar ncteisen2017-11-20
| | |\ | | |/ | |/|
| | * clang fmtGravatar ncteisen2017-11-17
| | |
| | * Remove all extern CGravatar ncteisen2017-11-17
| | |
* | | Merge masterGravatar Yash Tibrewal2017-11-16
|\ \ \ | | |/ | |/|
* | | Move ExecCtx to grpc_core namespace. Make exec_ctx a private static in ↵Gravatar Yash Tibrewal2017-11-14
| | | | | | | | | | | | ExecCtx and some minor changes
| | * clang tidyGravatar Noah Eisen2017-11-14
| | |
* | | Address some PR commentsGravatar Yash Tibrewal2017-11-14
| | |
| | * clang fmtGravatar Noah Eisen2017-11-12
| | |
| | * Make debug flags DebugOnlyGravatar ncteisen2017-11-10
| | |
| | * Merge branch 'master' of https://github.com/grpc/grpc into tracing++Gravatar ncteisen2017-11-10
| | |\ | | | | | | | | | | | | Lot's of manual work to make this merge work
| * | | s/NULL/nullptrGravatar Craig Tiller2017-11-10
| | |/ | |/|
* | | Merge with masterGravatar Yash Tibrewal2017-11-09
|\| |
| * | Update clang-format to 5.0Gravatar Craig Tiller2017-11-03
| | |
* | | Removing instances of exec_ctx being passed around in functions inGravatar Yash Tibrewal2017-10-18
|/ / | | | | | | | | | | | | | | | | | | | | src/core. exec_ctx is now a thread_local pointer of type ExecCtx instead of grpc_exec_ctx which is initialized whenever ExecCtx is instantiated. ExecCtx also keeps track of the previous exec_ctx so that nesting of exec_ctx is allowed. This means that there is only one exec_ctx being used at any time. Also, grpc_exec_ctx_finish is called in the destructor of the object, and the previous exec_ctx is restored to avoid breaking current functionality. The code still explicitly calls grpc_exec_ctx_finish because removing all such instances causes the code to break.
| * Better nameGravatar Craig Tiller2017-10-18
| |
| * clang-formatGravatar Craig Tiller2017-10-16
| |
| * C++ize tracingGravatar Craig Tiller2017-10-16
|/
* Changes for C to C++. Adding extern C to header files for compatibility.Gravatar Yash Tibrewal2017-10-02
| | | | Also converting to .cc
* More pointer conversions, deprecated string to char *, goto crossing ↵Gravatar Yash Tibrewal2017-10-02
| | | | initializations
* more pointer conversions and goto jump warningsGravatar Yash Tibrewal2017-10-02
|
* More pointer conversion required after making build changesGravatar Yash Tibrewal2017-10-02
|
* Tracers know their nameGravatar ncteisen2017-07-13
|
* Merge branch 'master' of https://github.com/grpc/grpc into tracing-overhaulGravatar ncteisen2017-06-12
|\
* | clang fmtGravatar ncteisen2017-06-09
| |
| * Add helpers for creating channel args.Gravatar Mark D. Roth2017-06-09
| |
* | Add metadata, secendp, sec conn tracersGravatar ncteisen2017-06-08
|/
* auto-fix most of licensesGravatar Jan Tattermusch2017-06-08
|
* Add zalloc, convert a bunch of files to use itGravatar Craig Tiller2017-02-16
|
* Convert more users of grpc_slice_unref --> grpc_slice_unref_internalGravatar Craig Tiller2016-10-31
|
* Addressing feedback.Gravatar Julien Boeuf2016-08-25
|
* Adding extension points for security context.Gravatar Julien Boeuf2016-08-23
|
* Make another .h file accessible from C++.Gravatar Mark D. Roth2016-06-20
|
* Refactoring the core security code.Gravatar Julien Boeuf2016-05-04
As opposed to a flat directory, we now have the following structure: - security -context - credentials - composite - fake - google_default - iam - jwt - oauth2 - plugin - ssl - transport - util We have not refactored the test code yet but this PR is already large enough...