Bug 2586 - Race in TAO transport
Summary: Race in TAO transport
Status: NEW
Alias: None
Product: TAO
Classification: Unclassified
Component: ORB (show other bugs)
Version: 1.5.1
Hardware: All All
: P3 normal
Assignee: DOC Center Support List (internal)
URL:
Depends on:
Blocks:
 
Reported: 2006-07-06 22:19 CDT by Nanbor Wang
Modified: 2007-03-27 02:46 CDT (History)
2 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Nanbor Wang 2006-07-06 22:19:20 CDT
The race comes to wreak havoc only when wchar encodings are used between the
client and the server along with corbalocs. Duane Binder at Symantec has a good
test that reproduces this consistently. I will get his test case and attach to
this bugzilla. Here is the race

-------------------
TAO_InputCDR input_cdr (db,
                          flg,
                          rd_pos,
                          wr_pos,
                          qd->byte_order_,
                          qd->major_version_,
                          qd->minor_version_,
                          this->orb_core_);

  transport->assign_translators(&input_cdr,&output);
-----------------------------------

assign_translators () can be called by two different threads at the same time.
Despite charectar set encoding rules, I can think of cases with corbalocs where
the resets can happen. To cut the long story short, there is a race. But the
problem is a lot complex. I am just not providing a solution for now since it
could be wrong.
Comment 1 Johnny Willemsen 2006-08-04 03:27:36 CDT
Bala, can you add the test case to this entry?
Comment 2 Johnny Willemsen 2007-03-27 02:46:49 CDT
Duane, can you had your test case to this bugzilla entry?