aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/security
Commit message (Collapse)AuthorAge
* clang-formatGravatar Craig Tiller2017-03-31
|
* Reinstate one check, fix fall outGravatar Craig Tiller2017-03-30
|
* Update include pathsGravatar Craig Tiller2017-03-28
|
* review feedback and one bugfixGravatar Makarand Dharmapurikar2017-03-24
| | | | | | | added a needed unref_internal changed k_query_separator to a char from string review feedback addressed. added todo for changing flags to bool from int
* Merge branch 'master' of https://github.com/grpc/grpc into caching_with_uriGravatar Makarand Dharmapurikar2017-03-24
|\
| * Merge branch 'master' of https://github.com/grpc/grpc into ↵Gravatar Noah Eisen2017-03-22
| |\ | | | | | | | | | error-slice-optimization
| | * Removing credentials assert in server_auth_filter.Gravatar Julien Boeuf2017-03-22
| | | | | | | | | | | | | | | This will allow other transports with built-in security to use this filter.
* | | removed multiple allocs, refactored b64 encoderGravatar Makarand Dharmapurikar2017-03-20
| | | | | | | | | | | | | | | | | | Added new api to b64.h for directly encoding to memory. Using slice_sub instead of string operations for separating path from query.
| * | Only use static on string literalsGravatar Noah Eisen2017-03-14
| | |
| * | Change error_create API to sliceGravatar ncteisen2017-03-13
| | |
| | * Use an arena for call & subchannel_call allocationGravatar Craig Tiller2017-03-13
| |/ |/|
| * Change error get/set API to grpc_sliceGravatar ncteisen2017-03-10
|/
* Merge github.com:grpc/grpc into zallocGravatar Craig Tiller2017-02-23
|\
* | clang-formatGravatar Craig Tiller2017-02-17
| |
* | Merge github.com:grpc/grpc into zallocGravatar Craig Tiller2017-02-17
|\ \
| | * Merge github.com:grpc/grpc into bm_call_createGravatar Craig Tiller2017-02-17
| | |\ | | |/ | |/|
* | | Add zalloc, convert a bunch of files to use itGravatar Craig Tiller2017-02-16
| | |
| | * Hoist constant setting out of loop - and shave some ns from call creationGravatar Craig Tiller2017-02-15
| |/ |/|
| * Fix broken shutdown, and cascading exec_ctx usage bugsGravatar Craig Tiller2017-02-14
|/
* Secure naming support for gRPCLBGravatar David Garcia Quintas2017-02-07
|
* Add an error to fd_shutdown (and recursively)Gravatar Craig Tiller2017-01-27
| | | | Allows diagnosing WHY a file descriptor was shutdown prematurely.
* Revert "Revert "Metadata handling rewrite""Gravatar Craig Tiller2017-01-23
| | | | This reverts commit 5e01e2ac977655aa074faf7fde0a74298f5e4c55.
* Revert "Metadata handling rewrite"Gravatar Craig Tiller2017-01-20
|
* Add a mechanism for tagging threads that might be owned byGravatar Craig Tiller2017-01-12
| | | | | | | calls/channels Use it to ensure we don't delete the call from that thread: doing so would create a cycle that's kind of bad.
* Uncover the badnessGravatar Craig Tiller2017-01-12
|
* Fix sanity: core_banned_functionsGravatar Craig Tiller2017-01-11
|
* Fix sanity: core_banned_functionsGravatar Craig Tiller2017-01-11
|
* Merge github.com:grpc/grpc into fix_errorsGravatar Craig Tiller2017-01-09
|\
* | clang-formatGravatar Craig Tiller2017-01-06
| |
* | Fixes, remove grpc_error_free_stringGravatar Craig Tiller2017-01-06
| |
* | Start fixing http error --> grpc status conversionGravatar Craig Tiller2017-01-06
| |
* | Update to new error handling disciplineGravatar Craig Tiller2017-01-06
| |
| * Handshaker plugin mechanism.Gravatar Mark D. Roth2017-01-06
| |
* | Merge branch 'slice_with_exec_ctx_and_new_closures' into ↵Gravatar Craig Tiller2017-01-04
|\| | | | | | | metadata_filter_and_new_closures
| * Merge branch 'cleanup_closures' into slice_with_exec_ctx_and_new_closuresGravatar Craig Tiller2017-01-03
| |\
| * \ Merge github.com:grpc/grpc into slice_with_exec_ctxGravatar Craig Tiller2017-01-03
| |\ \
| | | * Changes to exec_ctx/closure/combiner/workqueue interfacesGravatar Craig Tiller2016-12-28
| | |/ | | | | | | | | | | | | | | | | | | | | | - make closures know where they should be executed (eg, on a workqueue, or a combiner, or on an exec_ctx) - this allows removal of a large number of trampoline functions that were appearing whenever we used combiners, and should allow for a much easier interface to combiner locks
* | | Merge branch 'slice_with_exec_ctx' into metadata_filterGravatar Craig Tiller2016-12-27
|\| |
| * | Merge github.com:grpc/grpc into slice_with_exec_ctxGravatar Craig Tiller2016-12-27
| |\ \
| | | * Fixing JWT verifier.Gravatar Julien Boeuf2016-12-21
| | |/ | | | | | | | | | | | | | | | | | | | | | - Initializes grpc correctly in the JWT utils. - Make the email mapping work with the new service accounts produced by Google IAM. - Adding check for email issuers where the issuer has to be the subject as well. - Implementing portable version of memrchr.
| | * Get wrapped endpoint's fd in secure_endpoint's endpoint_get_fdGravatar Yuchen Zeng2016-12-19
| | |
* | | Merge branch 'slice_with_exec_ctx' into metadata_filterGravatar Craig Tiller2016-12-12
|\| |
| * | Fix merge errorGravatar Craig Tiller2016-12-12
| | |
| * | Merge github.com:grpc/grpc into slice_with_exec_ctxGravatar Craig Tiller2016-12-12
| |\ \
| | | * Merge remote-tracking branch 'upstream/master' into client_channel_init_cleanupGravatar Mark D. Roth2016-12-09
| | | |\ | | | |/ | | |/|
* | | | Offer grpc_slice_to_c_string to simplify some codeGravatar Craig Tiller2016-12-09
| | | |
| | * | clang-formatGravatar Mark D. Roth2016-12-08
| | | |
| | * | Fix race condition on shutdown.Gravatar Mark D. Roth2016-12-08
| | | |
* | | | Fix memory leakGravatar Craig Tiller2016-12-07
| | | |
| | * | Redo change accidentally reverted in previous commit.Gravatar Mark D. Roth2016-12-07
| | | |