aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/security
Commit message (Collapse)AuthorAge
* Turn off refcount debuggingGravatar Craig Tiller2015-08-24
|
* Refactor Endpoint APIGravatar Craig Tiller2015-08-21
| | | | | | - Allow reads to complete immediately - Unify read/write signatures - Simplify memory management to allow future optimization work
* clang-format all sourceGravatar Craig Tiller2015-08-18
|
* Merge pull request #2847 from jboeuf/client_auth_filter_error_handlingGravatar Jorge Canizales2015-08-12
|\ | | | | C client library auth: produce adequate error codes and messages.
| * Fixing error code as discussed during the review.Gravatar Julien Boeuf2015-08-11
| |
* | :(Gravatar yang-g2015-08-07
| |
* | Fix gce detectionGravatar yang-g2015-08-07
| |
| * Better error codes for client_auth_filter. Fixes #2484.Gravatar Julien Boeuf2015-08-07
|/
* Merge pull request #2829 from ctiller/tell-the-world-about-ALL-the-thingsGravatar Yang Gao2015-08-07
|\ | | | | Provide marginally better debug information for client side auth problems
* \ Merge pull request #2788 from ctiller/kinetic-lopsided-poetryGravatar Nicolas Noble2015-08-07
|\ \ | | | | | | Testing port server
| | * Print error message on client auth errorGravatar Craig Tiller2015-08-06
| |/ |/|
* | Merge branch 'master' of github.com:grpc/grpc into ↵Gravatar Julien Boeuf2015-08-05
|\ \ | | | | | | | | | server_creds_auth_md_processor
* | | Cleanup.Gravatar Julien Boeuf2015-08-05
| | |
* | | Fixing API (thanks Craig for the comments) and associated tests.Gravatar Julien Boeuf2015-08-05
| | |
| | * Merge github.com:grpc/grpc into kinetic-lopsided-poetryGravatar Craig Tiller2015-08-05
| | |\ | | |/ | |/|
| | * Testing port serverGravatar Craig Tiller2015-08-04
| | | | | | | | | | | | | | | | | | | | | | | | run_tests.py will start a server (if it's not running, or if the running port server mismatches the 'current' one) that serves ports to use for tests. The server is left running after run_tests.py finishes, so that in environments such as Mac and Windows where tests run unshielded from each other, we don't start jumping on already used ports.
* | | Merge branch 'auth_md_processor' into server_creds_auth_md_processorGravatar Julien Boeuf2015-08-03
|\ \ \
| * | | Properly send GRPC_STATUS_UNAUTHENTICATED from server auth failuresGravatar Craig Tiller2015-07-31
| | | |
| * | | Merge branch 'auth_md_processor' of github.com:jboeuf/grpc into ↵Gravatar Craig Tiller2015-07-31
| |\ \ \ | | |_|/ | |/| | | | | | complain-with-both-passion-and-meaning
| | | * Allow specific pollers to be wokenGravatar Craig Tiller2015-07-29
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Currently, if two threads call grpc_completion_queue_pluck on the same completion queue for different tags, there is a 50% chance that we deliver the completion wakeup to the wrong poller - forcing the correct poller to wait until its polling times out before it can return an event up to the application. This change tweaks our polling interfaces so that we can indeed wake a specific poller. Nothing has been performance tuned yet. It's definitely sub-optimal in a number of places. Wakeup file-descriptors should be recycled. We should have a path that avoids calling poll() followed by epoll(). We can probably live without it right at the second though. This code will fail on Windows at least (I'll do that port when I'm in the office and have a Windows machine).
| * | Merge github.com:grpc/grpc into ↵Gravatar Craig Tiller2015-07-28
| |\ \ | | | | | | | | | | | | sometimes-its-good-just-to-check-in-with-each-other
| | * \ Merge branch 'master' of github.com:grpc/grpc into ssl_force_client_authGravatar Julien Boeuf2015-07-27
| | |\ \
| | | * \ Merge github.com:grpc/grpc into warbling-wombatGravatar Craig Tiller2015-07-26
| | | |\ \
| * | | \ \ Merge github.com:grpc/grpc into ↵Gravatar Craig Tiller2015-07-26
| |\ \ \ \ \ | | | |_|/ / | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | sometimes-its-good-just-to-check-in-with-each-other Conflicts: src/core/iomgr/tcp_server_windows.c
| | * | | | Merge pull request #2605 from yang-g/fake_transport_security_to_privateGravatar jboeuf2015-07-24
| | |\ \ \ \ | | | | | | | | | | | | | | Fake transport security to private
| | * \ \ \ \ Merge pull request #2617 from jboeuf/jwt_creds_renamingGravatar Yang Gao2015-07-23
| | |\ \ \ \ \ | | | | | | | | | | | | | | | | Renaming jwt_credentials to service_account_jwt_access_credentials.
| * | | | | | | Merge github.com:grpc/grpc into ↵Gravatar Craig Tiller2015-07-23
| |\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | sometimes-its-good-just-to-check-in-with-each-other
| | | | | | * | Merge github.com:grpc/grpc into warbling-wombatGravatar Craig Tiller2015-07-23
| | | | | | |\ \ | | | |_|_|_|/ / | | |/| | | | |
| | | * | | | | Renaming jwt_credentials to service_account_jwt_access_credentials.Gravatar Julien Boeuf2015-07-22
| | | | | | | |
| | | | | | * | Canonicalize metadata keys in coreGravatar Craig Tiller2015-07-22
| | | | |_|/ / | | | |/| | |
| | | | * | | move fake_transport_security_credentials to private APIGravatar yang-g2015-07-21
| | | |/ / /
| | | | * / Adding option to force client auth on the server SSL creds.Gravatar Julien Boeuf2015-07-21
| | | |/ /
* | | | | Putting the auth metadata processor on the server creds.Gravatar Julien Boeuf2015-07-21
| | | | |
| | * | | Add grpc_call_get_peerGravatar Craig Tiller2015-07-20
| | |/ /
* | | / Getting started on metadata processor set on server creds.Gravatar Julien Boeuf2015-07-19
| |_|/ |/| |
| * | Merge github.com:grpc/grpc into ↵Gravatar Craig Tiller2015-07-17
| |\| | | | | | | | | | sometimes-its-good-just-to-check-in-with-each-other
* | | Cannot figure out server filter logic for error in auth md processing.Gravatar Julien Boeuf2015-07-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | - Positive tests pass even if we will have to change the interface to add the processor to the server credentials (will be done in a separate pull request). - ASAN leaks for the error case. - The client should get a GRPC_STATUS_UNAUTHENTICATED as opposed to GPRC_STATUS_INTERNAL.
| | * Merge github.com:grpc/grpc into no-worries-i-can-waitGravatar Craig Tiller2015-07-17
| | |\
* | | | Server auth metadata processor.Gravatar Julien Boeuf2015-07-16
| |_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | - Right now it is a global function: would be better to have this per (secure) port. - Changed the interface of the auth_context slightly to make it more friendly. - Positive tests pass. Still need some work on error case (have a negative case as well). - Fixing cpp auth context tests so that they use the shiny new C API.
| * | Merge github.com:grpc/grpc into ↵Gravatar Craig Tiller2015-07-16
| |\ \ | |/ / |/| | | | | sometimes-its-good-just-to-check-in-with-each-other
| * | Added connectivity tests, fixed bugsGravatar Craig Tiller2015-07-16
| | |
* | | Clean up handshaking server channels properlyGravatar yang-g2015-07-15
|/ /
| * Updating wrapped languages to new time functionsGravatar Craig Tiller2015-07-13
| |
| * Introduce a clock type field onto gpr_timespec.Gravatar Craig Tiller2015-07-13
|/ | | | | Use it to validate that arithmetic on time types makes even some vague kind of sense.
* Merge github.com:grpc/grpc into footprints-on-the-sands-of-timeGravatar Craig Tiller2015-07-10
|\
| * Merge branch 'master' of github.com:grpc/grpc into flexible_default_credsGravatar Julien Boeuf2015-07-10
| |\
| | * Merge remote-tracking branch 'upstream/master' into security_context2Gravatar yang-g2015-07-09
| | |\
| | * | Resolve commentsGravatar yang-g2015-07-09
| | | |
* | | | Merge github.com:grpc/grpc into footprints-on-the-sands-of-timeGravatar Craig Tiller2015-07-09
|\ \ \ \ | | |_|/ | |/| |
| * | | Merge pull request #2271 from jboeuf/oauth2_access_tokenGravatar Yang Gao2015-07-08
| |\ \ \ | | | | | | | | | | Adding support for raw access token credentials.