aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core
Commit message (Collapse)AuthorAge
* Fix struct namesGravatar Vijay Pai2018-01-01
|
* Merge branch v1.8.x into masterGravatar Mehrdad Afshari2017-12-31
|\ | | | | | | Upmerge v1.8.3 into master
| * Relax log-level when polling engines are undefinedGravatar Mehrdad Afshari2017-12-29
| |
* | Merge pull request #13844 from danzh2010/startcbGravatar Yang Gao2017-12-22
|\ \ | | | | | | Change grpc_udp_server interface
* | | Separate client and server keepalive_permit_without_callsGravatar Yuchen Zeng2017-12-21
| | |
| * | Merge branch 'master' into startcbGravatar Dan Zhang2017-12-20
| |\ \ | |/ / |/| |
* | | Merge pull request #13834 from dgquintas/debug_location_namespaceGravatar David G. Quintas2017-12-20
|\ \ \ | | | | | | | | Add namespace to macro expansion
| | * | Add a start_cb to grpc_udp_listener to be called when listener isGravatar Dan Zhang2017-12-20
| |/ / |/| | | | | | | | created.
| * | Add namespace to macro expansionGravatar David Garcia Quintas2017-12-20
| | |
* | | Merge pull request #13811 from ita9naiwa/masterGravatar Noah Eisen2017-12-19
|\ \ \ | | | | | | | | Typo fix
* \ \ \ Merge pull request #13831 from dgquintas/fix_wrong_slice_unrefGravatar David G. Quintas2017-12-19
|\ \ \ \ | | | | | | | | | | Fix wrong unreffing of slice
* \ \ \ \ Merge pull request #13833 from ncteisen/commentsGravatar Noah Eisen2017-12-19
|\ \ \ \ \ | |_|_|/ / |/| | | | Add ownership semantic comments to error.h
| | | | * Merge pull request #13665 from kpayson64/poll_spin_bugGravatar kpayson642017-12-19
| | | | |\ | | | | | | | | | | | | Fix a Python spinlock bug
| * | | | | Add ownership semantic comments to error.hGravatar ncteisen2017-12-19
| | | | | |
| | * | | | Fix wrong unreffing of sliceGravatar David Garcia Quintas2017-12-19
| |/ / / / |/| | | |
| | | | * Fix a Python spinlock bugGravatar Ken Payson2017-12-19
| | | | |
* | | | | Merge pull request #13494 from dgquintas/backoff_cppGravatar David G. Quintas2017-12-19
|\ \ \ \ \ | | | | | | | | | | | | C++-ize backoff
| * | | | | Create copy of "ac" data instead of stretching the locked sectionGravatar David Garcia Quintas2017-12-19
| | | | | |
| * | | | | Fix use-after-free caused by unsync'd access in tcp_client_posix.Gravatar David Garcia Quintas2017-12-19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | tc_on_alarm() and on_writable() race, resulting in the following: ``` D1219 08:59:33.425951347 86323 tcp_client_posix.cc:143] CLIENT_CONNECT: ipv4:127.0.0.1:27465: on_writable: error="No Error" D1219 08:59:33.426032150 86342 tcp_client_posix.cc:104] CLIENT_CONNECT: ipv4:127.0.0.1:27465: on_alarm: error="No Error" // At this point, note that the callbacks are running on different threads. D1219 08:59:33.426063521 86323 tcp_client_posix.cc:218] XXX on_writable ac->addr_str 0x603000008dd0 before unlock. # refs 2->1. Done 0 // on_writable() unrefs while still holding the lock. Because refs > 0, it marks its "done" as false and unlocks. D1219 08:59:33.426125130 86342 tcp_client_posix.cc:113] XXX tc_on_alarm ac->addr_str 0x603000008dd0 before unlock. # refs 1->0. Done 1 // right after on_writable() unlocks, tc_on_alarm() acquires the lock and unrefs, this time getting to zero and marking its "done" as true. // It then proceeds to destroy "ac", and, in particular for this failure, "ac->addr_str". D1219 08:59:33.426139370 86323 tcp_client_posix.cc:234] XXX on_writable about to read from ac->addr_str 0x603000008dd0. Done 0, error=OS Error // When on_writable() tries to read ac->addr_str to assemble its error details, it causes a use-after-free. ``` The problem is the lock isn't held long enough by on_writable(). Alternatively, a copy of ac->addr_str could be made in on_writable() while still holding the lock, but that seems more fragile. It doesn't seem that holding the lock longer would be a performance issue, given we are in a failure scenario.
* | | | | | Fix internal TSAN bugGravatar Noah Eisen2017-12-19
| |/ / / / |/| | | |
* | | | | Merge pull request #13798 from apolcyn/min_max_rpc_version_constantsGravatar apolcyn2017-12-18
|\ \ \ \ \ | | | | | | | | | | | | Define RPC protocol version constants
| * | | | | Define RPC protocol version constantsGravatar Alexander Polcyn2017-12-18
| | | | | |
| | | * | | minor typo : becuase -> becauseGravatar ita9naiwa2017-12-19
| |_|/ / / |/| | | |
* | | | | Merge pull request #13776 from ncteisen/executor-tsanGravatar Noah Eisen2017-12-15
|\ \ \ \ \ | | | | | | | | | | | | Fix shutdown executor tsan bug
* \ \ \ \ \ Merge pull request #13771 from yang-g/deleteGravatar Yang Gao2017-12-15
|\ \ \ \ \ \ | | | | | | | | | | | | | | Mark tcp errors as UNAVAILABLE
| | | | * \ \ Merge branch 'master' of github.com:grpc/grpc into backoff_cppGravatar David Garcia Quintas2017-12-15
| | | | |\ \ \ | |_|_|_|/ / / |/| | | | | |
| | * | | | | Fix executor tsan bugGravatar ncteisen2017-12-14
| |/ / / / / |/| | | | |
* | | | | | Fix tsan in bad_client testsGravatar Noah Eisen2017-12-13
| |/ / / / |/| | | |
| * | | | Mark tcp errors as UNAVAILABLEGravatar yang-g2017-12-13
| | | | |
* | | | | Merge pull request #13754 from muxi/fix-stream-compression-gzipGravatar Muxi Yan2017-12-13
|\ \ \ \ \ | | | | | | | | | | | | Fix stream_compression_payload flake
| | | * \ \ Merge branch 'master' of github.com:grpc/grpc into backoff_cppGravatar David Garcia Quintas2017-12-13
| | | |\ \ \ | |_|_|/ / / |/| | | | |
| | | * | | Fixed wrong conversion factorGravatar David Garcia Quintas2017-12-13
| | | | | |
| * | | | | Fix inline/refcounted slice problem in gzipGravatar Muxi Yan2017-12-13
| |/ / / /
* | | | | Merge pull request #13450 from daniel-j-born/tcp_clientGravatar Mark D. Roth2017-12-13
|\ \ \ \ \ | | | | | | | | | | | | Refactor POSIX TCP client connect.
| | | | * | fix or slow down windows socket leakGravatar Junsung Ko2017-12-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | related issue https://github.com/grpc/grpc/issues/13519 https://github.com/grpc/grpc/issues/13102
* | | | | | Merge pull request #13604 from yayaboring/masterGravatar Jan Tattermusch2017-12-12
|\ \ \ \ \ \ | | | | | | | | | | | | | | fix or slow down windows socket leak
| | | | | * | v1.8.0-pre2 is now v1.8.0Gravatar Mehrdad Afshari2017-12-12
| | | | | |/
* | | | | | Merge pull request #13631 from sreecha/cv-wait-monotonicGravatar Sree Kuchibhotla2017-12-12
|\ \ \ \ \ \ | |_|_|/ / / |/| | | | | Use monotonic clock type for gpr_cv_wait
| | | * | | Refactor POSIX TCP client connect.Gravatar Dan Born2017-12-12
| | | | | |
* | | | | | Use the correct env var nameGravatar yang-g2017-12-11
| |_|/ / / |/| | | |
| * | | | Merge branch 'master' into cv-wait-monotonicGravatar Sree Kuchibhotla2017-12-08
| |\ \ \ \ | |/ / / / |/| | | |
* | | | | Merge pull request #13659 from grpc/revert-13658-revert-13058-execctxGravatar Yash Tibrewal2017-12-08
|\ \ \ \ \ | | | | | | | | | | | | Revert "Revert "All instances of exec_ctx being passed around in src/core removed""
| * | | | | Disallow delete on ExecCtxGravatar Yash Tibrewal2017-12-08
| | | | | |
| * | | | | virtual destructor in exec_ctx, remove unneeded flush in grpc_shutdown and ↵Gravatar Yash Tibrewal2017-12-07
| | | | | | | | | | | | | | | | | | | | | | | | remove grpc_exec_ctx from .pxi files in python
| * | | | | Merge masterGravatar Yash Tibrewal2017-12-07
| |\ \ \ \ \
* | \ \ \ \ \ Merge pull request #12488 from dgquintas/removed_expiration_intervalGravatar David G. Quintas2017-12-07
|\ \ \ \ \ \ \ | |_|/ / / / / |/| | | | | | Removed expiration_interval from LB proto
* | | | | | | Merge pull request #13647 from y-zeng/send_pingGravatar Yuchen Zeng2017-12-07
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Add on_initiate callback for the send_ping tranport op
* \ \ \ \ \ \ \ Merge pull request #13670 from apolcyn/fix_backup_poller_raceGravatar apolcyn2017-12-07
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Unref global backup poller while under its lock
| | | | | | | * | Do the Step() in the right placeGravatar David Garcia Quintas2017-12-07
| | | | | | | | |
| * | | | | | | | Unref global backup poller under its lockGravatar Alexander Polcyn2017-12-07
| | | | | | | | |