vote up 78 vote down star
71

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

vote up 2 vote down

In Perl, die() when subroutines aren't passed enough parameters. This prevents you from getting failures that you have to trace back up 10 levels through the stack.

sub foo {
    my $param0 = shift or confess "param0 is a required param";
    my $param1 = shift or confess "param1 is a required param";
    my $param2 = shift or confess "param2 is a required param";
    ...
}
link|flag
show 4 more comments
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 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 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 2 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 1 vote down

Some things I do in PHP (where mistakes are easy and often catastrophic):

  • Turn on all the syntax highlighting cues in Vim. There's a lot turned off by default (do :help php to see them). I'm thinking of adding a few error-highlighting things of my own...
  • Using a pre-commit hook in git to syntax-check (php -l) every changed file. It only prevents basic errors getting in, but it's better than nothing.
  • Writing wrappers around the database classes to make parameterised prepared statements brain-dead easy compared to typing out normal queries - $db->q1($sql, $param1, $param2) to fetch a single column of the first row, and so on.
  • Configuring it (via the Xdebug extension) to spit out gigantic HTML tables of debug info for even trivial warning messages, so it's impossible to ignore them. On the dev server, that is. On production they get silently logged instead.
  • Making things short, simple and obvious. I spend a lot of time just refactoring stuff for the sake of making smaller files.
  • Using the explicit control structure syntax to avoid having several "}"s in close proximity.
  • Proofreading code before it's checked in. I've got into a habit of maximising the window, then setting an absurdly large font size. If I can only make sense of it when I can see 132C x 50R on screen at once in a tiny font, it's too long to begin with.
link|flag
vote up 1 vote down

For C++ : automatically detecting size of arrays

char* mystrings[] = { "abc", "xyz" , "pqr" }

typically then for is written like

for (int i=0; i< 3; i++)
{
    str= mystrings[i]
    // somecode
}

However, Later you may add new more strings to 'mystrings'. In that case, the for loop above may introduce subtle bugs in the code.

solution that i use is

int mystringsize = sizeof(mystrings)/sizeof(char*)
for (int i=0; i< mystringsize; i++)
{
    str= mystrings[i]
    // somecode
}

Now if you add more strings to 'mystrings' array, for loop will be automatically adjusted.

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

My C++ guidelines, but I don't consider this to be clever:

  • Always lint, heck, make it part of your makefile. Better yet, use coverity if possible.
  • Don't use C++ exceptions.
  • Don't put too much stuff on C++ constructor. Use init() method instead. The only ways to signal an error in constructor is exceptions, which is PITA.
  • Don't overload operator unless it's necessary.
  • If your constructor has one argument, always use explicit keyword.
  • Avoid global objects. Their execution order is not guaranteed.
  • Define copy constructor when your class allocates a memory. But if you don't expect the class to be copied, and you're too lazy to define one, guard it from being called.

class NonCopied {
private:
    NonCopied(const NonCopied&);
    NonCopied& operator=(const NonCopied&);
}
  • Stop using sprintf(), strcpy(), strcat(). Use their replacement instead, eg. snprintf, strncpy(), etc.
link|flag
vote up 1 vote down

Rather then var.equals("whatever") in java I do "whatever".equals(var). That way, if var is null I don't have to worry about a nullpointer exception. That works great when dealing with things like URL parameters, 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
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 1 vote down

In C#: Instead of this:

if( str==null )

Do this:

if( String.IsNullOrEmpty(str) )
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 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

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

Use sentinel classes with certain interface based OOP patterns instead of null.

E.g. when using something like

public interface IFileReader {
  List<Record> Read(string file);
}

use a sentinel class like

public class NoReader : IFileReader {
  List<Record> Read(string file) {
    // Depending on you functional requirements in this case
    // you will use one or more of any of the following:
    // - log to your debug window, and/or
    // - throw meaningful exception, and/or
    return new List<Record>(); // - graceful fall back, and/or
    // - whatever makes sense to you here...
  }
}

and use it to initialize any IFileReader variable

IFileReader reader = new NoReader();

instead of just leaving them to null (either implicitly or explicitly)

IFileReader reader; /* or */
IFileReader reader = null;

to make sure you don't get unexpected null pointer exceptions.

Bonus: you don't really have to encase each and every IFileReader variable use with an if (var!=null) ... any more either because they won't be null.

link|flag
show 7 more comments
vote up 0 vote down

If (some really bad condition) Then
Throw New Exception("particular bad thing happened")
End If

Usually this takes the form

Public SUb New (key As Guid)
Dim oReturn As returnpacket = Services.TableBackedObjectServices.GetData(key)
If oReturn.ds.tables(0).Rows.Count = 0 then Throw New Exception("TableBackedObject loaded from key was not found in the database.")
End If

Since that particular constructor is only supposed to be called when loading a particular object after selecting it from the results of a search procedure, not finding it is either a bug or a race condition (which would mean another user deleted the object by key).

link|flag
vote up 0 vote down

Design your logging strategy so that when an error occurs in production, the appropriate support person or developer is emailed automatically. This allows you to proactively find bugs, rather than waiting for users to complain.

Note that this should be done with some caution. One example I had was that a developer had written some logging code inside a loop. After a few months an error in the system triggered this code. Unfortunately the application sat in that loop, logging the same error over and over again. We arrived in the office that morning to be informed that our mail server had crashed after our logging framework sent 40,000 emails between the hours of 4am and 8am!

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 0 vote down

Not needing to contend with the language's limitations is the best defense I can employ in my program's logic. Sometimes it is easier to state when things should stop.

For example you have this kind of loop:

while(1)
{
  // some codes here

  if(keypress == escape_key || keypress == alt_f4_key 
     || keypress == ctrl_w_key || keypress == ctrl_q_key) break;

  // some codes here
}

If you want to put the condition on loop header, instead of battling the language for not having an until construct, just copy the condition verbatim and put an exclamation mark:

while(! (keypress == escape_key || keypress == alt_f4_key 
     || keypress == ctrl_w_key || keypress == ctrl_q_key) )
{ 
    // some codes here
}

There's no until construct on C-derived languages, so just do the above, otherwise do this(possible in C/C++, use #define ;-)

until(keypress == escape_key || keypress == alt_f4_key 
     || keypress == ctrl_w_key || keypress == ctrl_q_key)
{ 
    // some codes here
}
link|flag
show 1 more comment
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 0 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 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 0 vote down

C++:

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

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

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

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
  • 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

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

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

Your Answer

Get an OpenID
or

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