vote up 78 vote down star
70

If you had to choose your Favorite (clever) techniques for defensive coding, what would they be? Although my current languages are Java and Objective-C (with a background in C++), feel free to answer in any language. Emphasis here would be on clever defensive techniques other than those that 70%+ of us here already know about. So now it is time to dig deep into your bag of tricks.

In other words try to think of other than this uninteresting example:

  • if(5 == x) instead of if(x == 5): to avoid unintended assignment

Here are some examples of some intriguing best defensive programming practices (language-specific examples are in Java):

- Lock down your variables until you know that you need to change them

That is, you can declare all variables final until you know that you will need to change it, at which point you can remove the final. One commonly unknown fact is that this is also valid for method params:

public void foo(final int arg) { /* Stuff Here */ }

- When something bad happens, leave a trail of evidence behind

There are a number of things you can do when you have an exception: obviously logging it and performing some cleanup would be a few. But you can also leave a trail of evidence (e.g. setting variables to sentinel values like "UNABLE TO LOAD FILE" or 99999 would be useful in the debugger, in case you happen to blow past an exception catch-block).

- When it comes to consistency: the devil is in the details

Be as consistent with the other libraries that you are using. For example, in Java, if you are creating a method that extracts a range of values make the lower bound inclusive and the upper bound exclusive. This will make it consistent with methods like String.substring(start, end) which operates in the same way. You'll find all of these type of methods in the Sun JDK to behave this way as it makes various operations including iteration of elements consistent with arrays, where the indices are from Zero (inclusive) to the length of the array (exclusive).

So what are some favorite defensive practices of yours?

Update: If you haven't already, feel free to chime in. I am giving a chance for more responses to come in before I choose the official answer.

flag
show 4 more comments

66 Answers

1 2 3 next
vote up 81 vote down check

In c++, I once liked redefining new so that it provided some extra memory to catch fence-post errors.

Currently, I prefer avoiding defensive programming in favor of Test Driven Development. If you catch errors quickly and externally, you don't need to muddy-up your code with defensive maneuvers, your code is DRY-er and you wind-up with fewer errors that you have to defend against.

As WikiKnowledge Wrote:

Avoid Defensive Programming, Fail Fast Instead.

By defensive programming I mean the habit of writing code that attempts to compensate for some failure in the data, of writing code that assumes that callers might provide data that doesn't conform to the contract between caller and subroutine and that the subroutine must somehow cope with it.

link|flag
2  
Defensive programming is attempting to deal with illegal conditions introduced by other parts of a program. Handling improper user input is completely different thing. – Joe Soul-bringer Jan 29 at 6:25
1  
Errr... note that this definition of defensive programming isn't even close to the definition implicitly used in the question. – Sol Jan 29 at 14:54
2  
Never avoid Defensive Programming. The thing is not "compensating" for failures in the data but protecting yourself from malicious data designed to make your code do things it isn't supposed to do. See Buffer Overflow, SQL Injection. Nothing fails faster than a web page under XSS but it ain't pretty – Jorge Córdoba Jan 29 at 17:45
1  
@ryan is exactly right, fail fast is a good defensive concept. If the state you are in is not possible, don't try to keep limping along, FAIL FAST AND LOUD! Extra important if you are meta-data driven. Defensive programming isn't just checking your parameters... – Bill K Mar 10 at 21:46
show 9 more comments
vote up 0 vote down

So, who among us hasn't accidentally locked up Visual Studio for a while when writing a recursive method?

  int DoSomething(int value)  // stupid example for illustrative purposes
  {
      if (value < 0)
          return value;
      value++;  // oops
      return DoSomething(value);
  }

To avoid the annoyance of having to wait, and sometimes potentially having to kill off your IDE with task manager, include this in your recursive method while you're debugging it:

  int DoSomething(int value)
  {
>>    if (new StackTrace().FrameCount > 1000)  // some appropriately large number
>>        Debug.Fail("Stack overflow headed your way.");

      if (value < 0)
          // some buggy code that never fires
      return DoSomething(value);
  }

This may seem like it would be slow, but in practice checking the FrameCount is quite fast (less than a second on my PC). You can take this failsafe out (or maybe just comment it out, but leave it for later debugging) after you're sure the method is working properly.

link|flag
vote up 1 vote down

Always compile at the highest warning level, and treat warnings as errors (build breakers).

Even if the code is "right" fix the cause of the warning without disabling the warning if at all possible. For example, your C++ compiler might give you a warning for legal code like this:

while (ch = GetNextChar()) { ... }

It looks like you might have typed = instead of ==. Most compilers that offer this (useful) warning will shut up if you add an explicit check.

while ((ch = GetNextChar()) != 0) { ... }

Being slightly more explicit not only silences the warning but also helps the next programmer who has to understand the code.

If you MUST disable a warning, use a #pragma in the code, so you can (1) limit the span of code for which the warning is disabled and (2) use comments to explain why the warning must be disabled. Warnings disabled in command lines or makefiles are disasters waiting to happen.

link|flag
vote up 0 vote down

Language agnostic : issue : reporting and dealing with portions of a whole. Whenever calculations and percentages are bing displayed, I always keep a running total and for the last entry its value is not calculated like the rest, but by subtracting the running total from 100.00. In this fashion, if some interested party chooses to add up all the componenet percentages they will add exactly to 100.00

link|flag
vote up 0 vote down
  • When executing SQL queries from your code, always use placeholders
  • MySQL has a useful non-standard extension of the DELETE statement: DELETE FROM sometable WHERE name IS LIKE 'foo%' LIMIT 1. This way you won't wipe the whole table in case of mistake.
link|flag
vote up 0 vote down

When doing multi-threaded C/C++ programming, create a series of macros that assert your function is being called on the thread you think its being called on. Then use them liberally.

  • ASSERT_ON_UI_THREAD
  • ASSERT_ON_WORKER_THREAD
  • ASSERT_ON_THREADPOOL_THREAD
  • ASSERT_ON_DOWNLOAD_THREAD
  • etc.

Use GetCurrentThreadId() on Windows or pthread_self() on Posix when the thread is initialized, then store in globals. The asserts compare against the stored value.

Has saved me LOTS of painful debugging, especially when someone else refactors existing multi-threaded code.

link|flag
vote up -1 vote down

Its not stupid code tricks that really matter its design.

link|flag
vote up 1 vote down

Don't pass around naked collections, even generics. They cannot be protected and they cannot have logic attached to them.

A good parallel would be having a public variable instead of setter/getter. the setter/getter allows you to change your underlying implementation without effecting the outside world.

How do you change your data structure without effecting the outside world if you are passing around a collection? All the access for your collection is distributed throughout all your code!!

Instead, wrap it and give yourself a place to put a little business logic. You'll find some nice refactors once you've done so.

Often you'll find it makes sense to add some variables and maybe a second collection--then you'll realize this class has been missing all along!

link|flag
vote up 0 vote down
  • Tiny understandable classes. Many of them.
  • Tiny understandable Methods.
  • Immutable wherever possible.
  • Minimize scope--nothing public that can be package, nothing package that can be private.
  • never any excuse for a public mutable variable.

Also, when your classes are tiny and generally final, being defensive is really cheap--might as well throw it in regardless of if you believe in it or not. Test the values being passed to your constructors and (if you really MUST have them) setters.

link|flag
vote up 0 vote down

Crash-Only software, in short instead of requiring some shutdown procedure along with some seldomly used (and hence probably buggy) recovery code, always stop the program by "crashing it" and thus always run the recovery code when starting.

This is not applicable to everything, but in some cases it's a very neat idea.

link|flag
vote up 0 vote down

If there's a value type that has certain constraints on its value, make a class where those constraints are enforced by code. Some examples:

public class SanitizedHtmlString
{
private string val;

public SanitizedHtmlString(string val)
{
  this.val = Sanitize(val);
}

public string Val
{
  get { return val; }
}

//TODO write Sanitize method...
}


public class CarSpeed
{
private int speedInMilesPerHour; 

public CarSpeed(int speedInMilesPerHour)
{
  if (speedInMilesPerHour > 1000 || speedInMilesPerHour < 0)
  {
    throw new ArgumentException("Invalid speed.");
  }
  this.speedInMilesPerHour = speedInMilesPerHour; 
}

public int SpeedInMilesPerHour
{
  get { return speedInMilesPerHour; }
}
}
link|flag
show 2 more comments
vote up 0 vote down

JavaScript:

We should use "==" and "===" appropriately.

== : type-converting equality comparison

=== : strict equality comparison

For example, '1'==1 is true, but '1'===1 is false.

Many people use "==" instead of "===" unconsciously.

link|flag
vote up 0 vote down

I do a lot of math in my work testing mixed signal semiconductors on Automatic Test Equipment from Teradyne (c, vba), Advantest(c++ .net), and the like.

Two defensive maneuvers I use are:

  • prevent division by zero, if (x!=0) { z=y/x; } else { /* give z a recognizable fake number, continue program */ }

  • don't pass zero or negative numbers to log calculations. This is common for calculations of gain, CMRR, and PSRR. if (x>0) { psrr = 20 * log (x); } else { psrr = -999 ; /*fake number */ }

Some may argue against using fake numbers, but these programs are used in very high volume semiconductor manufacturing. If an error happens while testing a bad part, it is better to continue testing and to keep the integrity of the data format. The fake numbers are easily separated as outliers during post-processing of test data.

-- mike

link|flag
vote up 0 vote down

C++:

Avoid raw pointers, always use the Boost smart pointer package (e.g., shared_ptr).

link|flag
vote up 3 vote down

When you issue an error message, at least attempt to provide the same information the program had when it made the decision to throw an error.

"Permission denied" tells you there was a permission problem, but you have no idea why or where the problem occurred. "Can't write transaction log /my/file: Read-only filesystem" at least lets you know the basis on which the decision was made, even if it's wrong - especially if it's wrong: wrong file name? opened wrong? other unexpected error? - and lets you know where you were when you had the problem.

link|flag
vote up 0 vote down
  • Make your code as readable as possible, especially by using function and variable names that are as obvious as possible. If this means that some names are a bit on the long side, then so be it.

  • Use a static analyser as much as possible. You soon get into the habit of writing code that conforms to its rules.

  • During development, make it easy to turn on diagnostic output - but make it easy to turn them off for production.

link|flag
vote up 8 vote down

When printing out error messages with a string (particularly one which depends on user input), I always use quotes. For example:

FILE *fp = fopen(filename, "r");
if(fp == NULL) {
    fprintf(stderr, "ERROR: Could not open file %s\n", filename);
    return false;
}

This is really bad, because say filename is an empty string or just whitespace or something. The message printed out would of course be:

ERROR: Could not open file

So, always better to do:

fprintf(stderr, "ERROR: Could not open file '%s'\n", filename);

Then at least the user sees this:

ERROR: Could not open file ''

I find that this makes a huge difference in terms of the quality of the bug reports submitted by end users. If there is a funny-looking error message like this instead of something generic sounding, then they're much more likely to copy/paste it instead of just writing "it wouldn't open my files".

link|flag
show 1 more comment
vote up 1 vote down

Hardly clever, but a decent practice, perhaps. In C/C++:

Always return from a function at the bottom, never in the middle. The sole exception to this is a check for null on required arguments; that always comes first and immediately returns (otherwise I'd just be writing a big "if" condition at the top which just looks silly).

int MyIntReturningFuction(char *importantPointer)
{
    int intToReturn = FAILURE;
    if (NULL == importantPointer)
    {
        return FAILURE;
    }
    // Do code that will set intToReturn to SUCCESS (or not).
    return intToReturn;
}

I have seen a lot of arguments for why it doesn't really matter, but the best argument for me is simply experience. Too often I've scratched my head, asking "Why the heck doesn't my break point near the bottom of this function get hit?" only to find that someone other than me had put a return somewhere above (and usually changing some condition that should have been left alone).

I've also found that having very simple rules like this makes me a much more consistent coder. I never violate this rule in particular, so sometimes I have to think of alternative ways of handling things (such as cleaning up memory and such). So far, it has always been for the better.

link|flag
show 2 more comments
vote up 1 vote down

Don't use single-character variables for loop indexes. For example:

for (int ii = 0 ; ii < someValue ; ii++)
    // loop body

This is a simple habit, but it's very helpful if you have to use a standard text editor for find references to the loop variable. Of course, indexed loops typically shouldn't be so long that you need to search for the index references ...

link|flag
show 3 more comments
vote up 1 vote down

Include high-level exception handling, as described in detail here

Top-level Exception Handling in Windows Forms Applications

My Program.cs would then look like this

    static class Program
    {
    [STAThread]
    static void Main()
    {
        Application.ThreadException += 
            new ThreadExceptionEventHandler(new ThreadExceptionHandler().ApplicationThreadException);

        Application.EnableVisualStyles();
        Application.SetCompatibleTextRenderingDefault(false);
        Application.Run(new MainForm());
    }

    public class ThreadExceptionHandler
    {
        public void ApplicationThreadException(object sender, ThreadExceptionEventArgs e)
        {
            MessageBox.Show(e.Exception.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
        }
    }
}
link|flag
vote up 1 vote down

In C#, use 'using' to make sure object is disposed when it goes out of scope. i.e.

        using(IDataReader results = DbManager.ExecuteQuery(dbCommand, transaction))
        {
            while (results.Read())
            {
                //do something
            }
        }

Also, check for null values after casting

        MyObject obj = this.bindingSource.Current as MyObject;
        if (MyObject != null)
        {
           // do something
        }

Also, I use enums whenever possible to avoid hardcoding, typos and to provide easy renaming if required, i.e.

    private enum MyTableColumns
{ 
	UserID,
	UserName
}

private enum StoredProcedures
{
	usp_getMyUser,
	usp_doSomething
}

public static MyUser GetMyUser(int userID)
{
	List<SqlParameter> spParameters = new List<SqlParameter>();

	spParameters.Add(new SqlParameter(MyTableColumns.UserID.ToString(), userID));


	return MyDB.GetEntity(StoredProcedures.usp_getMyUser.ToString(), spParameters, CommandType.StoredProcedure);
}
link|flag
vote up 0 vote down

Try not to build anything you design for a few weeks. Often other scenarios will come to you then before things get locked in.

link|flag
vote up 11 vote down

SQL Safety

Before writing any SQL that will modify the data, I wrap the whole thing in a rolled back transaction:

BEGIN TRANSACTION
-- LOTS OF SCARY SQL HERE LIKE
-- DELETE FROM ORDER INNER JOIN SUBSCRIBER ON ORDER.SUBSCRIBER_ID = SUBSCRIBER.ID
ROLLBACK TRANSACTION

This prevents you from executing a bad delete/update permanently. And, you can execute the whole thing and verify reasonable record counts or add SELECT statements between your SQL and the ROLLBACK TRANSACTION to make sure everything looks right.

When you're completely sure it does what you expected, change the ROLLBACK to COMMIT and run for real.

link|flag
show 2 more comments
vote up 2 vote down

In Python, if I stub out (or change a method) and then don't have time to test it that day, I cram in an "assert False" so that the code will crash if the method is run, creating embarrassing errors I'll notice the next day. An intentional syntax error can be helpful as well.

Example:

def somefunction(*args,**kwargs):
    ''' <description of function and args> '''
    # finish this in the morning
    assert False, "Gregg finish this up"
link|flag
vote up 1 vote down

In C#: Instead of this:

if( str==null )

Do this:

if( String.IsNullOrEmpty(str) )
link|flag
vote up 2 vote down

In C++ assert() is a very handy tool. I do not only provide it with the condition to evaluate but also with a message stating what's wrong:

assert( isConditionValid && "ABC might have failed because XYZ is wrong." );

When there is no actual variable to check or you find yourself in a situation that should never have occured ('default' handler of switch()) this works too:

assert( 0 && "Invalid parameter" );

It not only asserts in debug mode but also tells you what went wrong at the same time.

I got this from the "C++ Coding Standards" if I remember correctly.

link|flag
vote up 1 vote down

Back to those days where RAM was not free, most computers were very limited and "NOT ENOUGH MEMORY !" was a pretty common error message...

Well, most application were then able to crash with 'elegance' : users (almost) never lost their works.

(Almost, I said ! ^^).

How was it done ? Very simple : when you app starts, allocate a balloon of RAM (say, a whopping 20 KB!). Then, when a call to malloc() fails :

  1. Say kindly that there is "NOT ENOUGH MEMORY" (this message was mandatory).
  2. Add "And you better save all your work. Now!"
  3. Release the whopping 20 KB balloon of RAM.
  4. Resume.

Et voilà. Your app is crashing slowly at the user, most of the time, can save it's work.

link|flag
vote up 0 vote down

Use a console, like in games;

Not completely "defensive" but I got this from seeing it in a lot games.

I like to have a full console for all my applications which allow me to:

  1. Define simple commands to be invoked from the console (like swiching to debug mode, setting some runtime variables, check internal configuration parameters and so on).
  2. Access a log everytime I want from the application while application is running.
  3. Save the log to a file if needed
  4. Log every unhandled exception to the console before raising it to the user (if appropiate). That way every exception is caught as some level. If you combine this cleverly with debug information or a map file you can get excelent results.

In C# if you mark the Console methods with the Conditional Attribute then they will be automatically stripped from the release version. In other languages the same can be achieved through preprocessor directives.

I've found it to be specially valuable during testing phase as it allows the developer to see what's happening and the tester to provide better feedback to the developer.

In addition:

  • Never catch an exception just for loggin.
  • Never catch general exceptions (exception E)
  • Never hide exceptions
  • Treat compiler warnings as if they were errors, only accept a warning with a very careful study.
  • Always check every input coming from outside the library.
  • Check the input coming from inside the library in "debug", don't check in release.
  • Never raise a generic exception. If an exception exists that describe the problem use it, if don't, create your own.
link|flag
vote up 2 vote down

In c# usage of TryParse instead of Parse for value types to avoid exceptions like FormatException, OverflowException etc, of course to avoid writing the try block for the same.

Bad code

string numberText = "123"; // or any other invalid value

public int GetNumber(string numberText)
  {
  try
  {
     int myInt = int.Parse(numberText);
     return myInt;
  }
  catch (FormatException)
  {
    //log the error if required
     return 0;
   }
  catch (OverflowException)
  {
     return 0;
  }
}

Good code

string numberText = "123"; // or any other invalid value
public int GetNumber(string numberText)
  {
    int myInt;
    return ( int.TryParse(numberText, out myInt) ) ?  myInt : 0;
}

You can do the same for almost all the value types e.g: Boolean.TryParse, Int16.TryParse, decimal.TryParse etc

link|flag
vote up 1 vote down

In C++

I spread out asserts all over my functions, especially at start and end of functions to catch any unexpected input/output. When I later add more functionality in a function the asserts will help me remember. It also helps other people to see the intention of the function and are only active in debug mode.

I avoid pointers as much as possible and instead use references, that way I don't need to put cluttering "if (NULL!=p)"-statements in my code.

I also use the word 'const' as often as I can both in declarations and as function/method arguments.

I also avoid using PODs and instead use STL/Boost as much as possible to avoid mem leaks and other nasty things. However I do avoid using too much custom defined templates as I find them hard to debug, especially for others who didn't write the code.

link|flag
1 2 3 next

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.