[jira] Updated: (ZOOKEEPER-890) C client invokes watcher callbacks multiple times

2010-10-07 Thread Austin Shoemaker (JIRA)

 [ 
https://issues.apache.org/jira/browse/ZOOKEEPER-890?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Austin Shoemaker updated ZOOKEEPER-890:
---

Description: 
Code using the C client assumes that watcher callbacks are called exactly once. 
If the watcher is called more than once, the process will likely overwrite 
freed memory and/or crash.

collect_session_watchers (zk_hashtable.c) gathers watchers from 
active_node_watchers, active_exist_watchers, and active_child_watchers without 
removing them. This results in watchers being invoked more than once.

Test code is attached that reproduces the bug, along with a proposed patch.

  was:
The collect_session_watchers function in zk_hashtable.c gathers watchers from 
active_node_watchers, active_exist_watchers, and active_child_watchers without 
removing the watchers from the table.

Please see attached repro case and patch.


> C client invokes watcher callbacks multiple times
> -
>
> Key: ZOOKEEPER-890
> URL: https://issues.apache.org/jira/browse/ZOOKEEPER-890
> Project: Zookeeper
>  Issue Type: Bug
>  Components: c client
>Affects Versions: 3.3.1
> Environment: Mac OS X 10.6.5
>Reporter: Austin Shoemaker
>Priority: Critical
> Attachments: watcher_twice.c, ZOOKEEPER-890.patch
>
>
> Code using the C client assumes that watcher callbacks are called exactly 
> once. If the watcher is called more than once, the process will likely 
> overwrite freed memory and/or crash.
> collect_session_watchers (zk_hashtable.c) gathers watchers from 
> active_node_watchers, active_exist_watchers, and active_child_watchers 
> without removing them. This results in watchers being invoked more than once.
> Test code is attached that reproduces the bug, along with a proposed patch.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Updated: (ZOOKEEPER-890) C client invokes watcher callbacks multiple times

2010-10-07 Thread Austin Shoemaker (JIRA)

 [ 
https://issues.apache.org/jira/browse/ZOOKEEPER-890?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Austin Shoemaker updated ZOOKEEPER-890:
---

Attachment: ZOOKEEPER-890.patch

Patch that clears active watcher sets when broadcasting a session event to all 
watchers.

> C client invokes watcher callbacks multiple times
> -
>
> Key: ZOOKEEPER-890
> URL: https://issues.apache.org/jira/browse/ZOOKEEPER-890
> Project: Zookeeper
>  Issue Type: Bug
>  Components: c client
>Affects Versions: 3.3.1
> Environment: Mac OS X 10.6.5
>Reporter: Austin Shoemaker
>Priority: Critical
> Attachments: watcher_twice.c, ZOOKEEPER-890.patch
>
>
> The collect_session_watchers function in zk_hashtable.c gathers watchers from 
> active_node_watchers, active_exist_watchers, and active_child_watchers 
> without removing the watchers from the table.
> Please see attached repro case and patch.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Updated: (ZOOKEEPER-890) C client invokes watcher callbacks multiple times

2010-10-07 Thread Austin Shoemaker (JIRA)

 [ 
https://issues.apache.org/jira/browse/ZOOKEEPER-890?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Austin Shoemaker updated ZOOKEEPER-890:
---

Attachment: watcher_twice.c

> C client invokes watcher callbacks multiple times
> -
>
> Key: ZOOKEEPER-890
> URL: https://issues.apache.org/jira/browse/ZOOKEEPER-890
> Project: Zookeeper
>  Issue Type: Bug
>  Components: c client
>Affects Versions: 3.3.1
> Environment: Mac OS X 10.6.5
>Reporter: Austin Shoemaker
>Priority: Critical
> Attachments: watcher_twice.c
>
>
> The collect_session_watchers function in zk_hashtable.c gathers watchers from 
> active_node_watchers, active_exist_watchers, and active_child_watchers 
> without removing the watchers from the table.
> Please see attached repro case and patch.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.