Changes between Initial Version and Version 1 of CodingGuidelines


Ignore:
Timestamp:
Nov 29, 2010, 10:22:38 AM (13 years ago)
Author:
aboudreault
Comment:

Added a page about coding guidelines for memory allocations and string manipulations

Legend:

Unmodified
Added
Removed
Modified
  • CodingGuidelines

    v1 v1  
     1= Memory Allocation Guidelines =
     2
     3In MapServer 6.0, 3 new functions have been introduced to handle memory allocations safely:
     4
     5 * msSmallMalloc()
     6 * msSmallRealloc()
     7 * msSmallCalloc()
     8
     9Their purpose is to allocate memory the same way malloc(), realloc() and calloc() do. Hovewer, those functions are considered safe because if the memory allocation fail, they will report the failure to ''stderr'' and terminate the program. The reason of the '''Small''' in their names is because they should be used for '''small''' allocations (ie. strings). We consider that if the system fails to allocate small memory allocations, it is in a very bad state and that we can't terminate the program in a cleaner manner. Big allocations should be handled manually and should return a failure code to let mapserver cleans its things and exit. There are also 2 new macros defined to check a memory allocation, report the error using msSetError() and return accordingly:
     10
     11 * MS_CHECK_ALLOC()
     12 * MS_CHECK_ALLOC_NO_RET()
     13
     14When you add memory allocations in a function, here's how you should determine how to check the allocation:
     15
     16If the function can return a failure code. (Be careful.. sometime the function can return a failure code but it is not necessary always checked everywhere, although normally they are. If the function was already returning failure code.. you can assume it is checked properly.)
     17
     18   a. If there is a cleanup to do: (Previous memory allocations, etc.)
     19      Handle it manually, doing the proper cleanup and return the failure code.
     20{{{
     21geometryList->geometries = (gmlGeometryObj *) malloc(sizeof(gmlGeometryObj)*geometryList->numgeometries);
     22if (geometryList->geometries ==  NULL)
     23{
     24    msSetError(MS_MEMERR, "Out of memory allocating %u bytes.\n", "msGMLGetGeometries()",
     25               sizeof(gmlGeometryObj)*geometryList->numgeometries);
     26    free(geometryList);
     27    return NULL;
     28}
     29}}}
     30   b. If there is no cleanup to do:
     31      Add a MS_CHECK_ALLOC() after the allocation.
     32{{{
     33  namespaceList = (gmlNamespaceListObj *) malloc(sizeof(gmlNamespaceListObj));
     34  MS_CHECK_ALLOC(namespaceList, sizeof(gmlNamespaceListObj), NULL);
     35}}}
     36
     37 The last parameter is the failure code to return. Note that in some cases, you may need MS_CHECK_ALLOC_NO_RET(), which do the same thing than MS_CHECK_ALLOC(), but returns nothing.
     38
     39'''Note that you can always consider the use of  msSmall* functions if the memory allocations are relatively small or that the complexity of the code makes things hard to be done cleanly. In those cases, just replace the malloc/realloc/calloc calls by the appropriate msSmall* functions.'''
     40
     41= String Manipulation Guidelines =
     42
     43This is essentially to avoid buffer overflows.
     44
     45Basic rules:
     46
     47 * Always use snprintf() rather than sprintf().
     48 * Always use strlcpy() and strlcat() rather than strcpy/strncpy and strcat/strncat.
     49   strlcpy and strlcat are different than strncpy/strncat. They are better. Unlike strncpy/strncat functions, strlcpy() and strlcat() take the full size of the buffer (not just the length) and guarantee to NUL-terminate the result. See http://www.openbsd.org/cgi-bin/man.cgi?query=strlcpy&sektion=3 for more details. Here's an example to use them:
     50{{{
     51strlcpy(columns_wanted, geom_column_name, sizeof(columns_wanted)); // the string is always nul-terminated.
     52}}}
     53{{{
     54strlcat(result,geom_table, buffer_size);
     55strlcat(result,box3d, buffer_size); // we always pass the full size of the buffer!
     56strlcat(result,end, buffer_size);
     57}}}
     58 * Always use msStrdup() rather than strdup(). msStrdup is a safe version of strdup. Since almost everything passed to it are small strings, if the memory allocation fails, it will report the error and terminate the program.
     59