How does one deal with backdoor code changes? - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T23:29:05Zhttp://stackoverflow.com/feeds/question/337386http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/337386/how-does-one-deal-with-backdoor-code-changes5How does one deal with backdoor code changes?Jeff Yates2008-12-03T14:54:09Z2008-12-03T18:55:53Z
<h2>Scenario</h2>
<p>I admit (somewhat shamefully) that I have not only witnessed this particular practise, but I have also committed it myself. My name is Jeff and I have gamed a quality process to get my way. The scenario I am referring to is this.</p>
<p>Engineer A wants to do something a certain way but Engineer B has already implemented it. Rather than work within the framework defined by Engineer B's implementation, Engineer A rewrites it to match their own way and then finds a suitably weak reviewer (or some other kink the process) to ensure their changes get through.</p>
<p>This of course has a knock on effect where Engineer B discovers the subterfuge and proceeds to find a way of getting their original approach re-instated by similarly nefarious means, and thus the conflict begins.</p>
<h2>Solutions</h2>
<p>There are many potential solutions to this scenario, such as having a single person responsible for assigning reviewers or pair programming, but I'm not sure these can really stop the determined engineer. I also don't think that not hiring engineers likely to do this is the best plan because quite often it is those engineers with the best abilities that tend toward this dismissive behaviour of "my solution is clearly better than theirs".</p>
<p>This is generally a side-effect in agile processes where the detailed design phase is blurred with implementation such that the review is also the design sign-off. This is obviously a major area where the problem could be also addressed.</p>
<h2>Question</h2>
<p>What approaches to a quality process mitigate this? Do you have any experiences to recount that shed light on what to do or what not to do? What were the consequences (good, bad, nonexistent)?</p>
<p>I should add that I am asking as we are trying to combat this issue in our own project - hence asking here.</p>
http://stackoverflow.com/questions/337386/how-does-one-deal-with-backdoor-code-changes/337404#3374043Answer by JeeBee for How does one deal with backdoor code changes?JeeBee2008-12-03T14:58:49Z2008-12-03T14:58:49Z<p>1) A strong coding standards document that also includes code patterns.</p>
<p>2) A team that discusses things together to agree on a common way forward instead of implementing passive aggression against their coworkers.</p>
<p>3) A team that is willing to listen to other people, instead of each member thinking their own way is best.</p>
<p>4) Deferring to seniority within a team once a decision is made. This is hard if the senior member doesn't personally implement (3).</p>
http://stackoverflow.com/questions/337386/how-does-one-deal-with-backdoor-code-changes/337481#3374812Answer by Mendelt for How does one deal with backdoor code changes?Mendelt2008-12-03T15:24:03Z2008-12-03T18:37:54Z<p>I haven't seen any positive correlation between good engineers and antisocial behaviour like that. Most really good programmers and architects I've met were good communicators who got their skills by learning from other people. Programming is a team effort. Someone like that needs to be very productive to compensate for the negative impact they have on the other programmers</p>
<p>I don't think that this is a side effect of agile. I can see this happen in failed agile implementations but in my experience agile teams are better at working together and are more aware of what everyone is doing. Short iterations and fast feedback on team performance usually makes counter productive behaviour like this very visible.</p>
<p>The key to solving problems like this is communication. People in a team need to be aware of what other people in the team are doing to be able to function as a team. </p>
<p>Keep to a reasonable team size. Large teams cause communication difficulties. Split up teams that are too large into smaller teams that have their own responsibilities.</p>
<p>Have daily stand up meetings where people share what they did yesterday, what they plan on doing today and what problems they have. This can prevent people from implementing design changes in secret.</p>
<p>Make sure people are colocated. Having people sit together and work together makes them more inclined to seek solutions together.</p>
<p>Of course problems like this can occur but if this happens often it can be an indicator of other problems within a team.</p>
http://stackoverflow.com/questions/337386/how-does-one-deal-with-backdoor-code-changes/337927#3379273Answer by Corbin March for How does one deal with backdoor code changes?Corbin March2008-12-03T17:11:26Z2008-12-03T17:11:26Z<p>I've seen this behavior in a few scenarios:</p>
<ol>
<li><p>Engineer B left a mess and Engineer A is cleaning it up.</p></li>
<li><p>Engineer A <em>thinks</em> Engineer B left a mess and she is cleaning it up.</p></li>
<li><p>Engineer A isn't strong enough to read and understand the existing solution so he rewrites it in a way that makes sense to him. Reading code and understanding it is harder than writing code.</p></li>
<li><p>The team isn't focused on a "leave no trace" approach to development - touch as few classes, methods, and control structures as possible to fix a bug or tweak a feature, because every change has a potential side effect. Engineers are allowed too much room to noodle.</p></li>
</ol>
<p>You solve each scenario differently:</p>
<ol>
<li><p>Are all engineers constantly rewriting one person's code? Watch closely and determine if Engineer A is struggling. Maybe she's not keeping up. Maybe she's creating problems. If so, work with her to get up to speed. If that fails, she has to leave for the benefit of the team.</p></li>
<li><p>This is the ego issue you mentioned in <a href="http://stackoverflow.com/questions/337386/how-does-one-deal-with-backdoor-code-changes#337404">JeeBee's comments</a>. The other answers here give good suggestions for reducing the problem. If ego problems persist, I'd say the team has the wrong focus. The point should be to get as much done in the least amount of time with the fewest bugs as possible. Constantly rewriting another engineer's code isn't contributing to that effort.</p>
<p>Encourage the team to answer these questions before they make a change: Is my solution really that much better? Do I really understand what the other engineer was trying to do or am I just being lazy and rewriting it in a way that makes sense to me? If it's objectively better, why do I know that Engineer B is going to come right back in here and change it?</p></li>
<li><p>Is one engineer constantly rewriting everyone's code? Watch closely and determine if he's struggling. If so, work with him to get up to speed. If that fails, he has to leave for the benefit of the team.</p></li>
<li><p>I've been blessed to work with great teams, so in my experience, this is the most common problem. We solved it by first admitting we had a problem (maybe I'll develop a twelve step program for noodlers). Great engineers/developers are noodlers. They tear things apart and put them back together. Their first instinct, even when revisiting their own code, is to tear it apart and make it better. This is great during the design and discovery phase but is dangerous later in the dev cycle. So, admit that you're a noodler. Each time you pull the latest from source control, resist your noodling instinct. Ask yourself what's the least you can do to solve a problem. Get everyone on the team to commit to a "leave no trace" dev approach.</p>
<p>Don't shut down your inner noodler for good, though. If you find it increasingly hard to resist your noodle-urge in a particular part of the app, it might be time for major refactoring. Come up with a plan and present it to the group. If it's a truly good idea, they'll likely agree.</p></li>
</ol>
http://stackoverflow.com/questions/337386/how-does-one-deal-with-backdoor-code-changes/338332#3383322Answer by Dan Vinton for How does one deal with backdoor code changes?Dan Vinton2008-12-03T18:55:53Z2008-12-03T18:55:53Z<p>One approach I've seen is to appoint 'Guardians' - fairly senior developers, each of whom is responsible for the ultimate state of one particular module of functionality.</p>
<p>In case of an implementation dispute, the final word goes to the module Guardian.</p>
<p>Often the Guardian role extends to more involved work like architecture, quality control and so on.</p>