Using type definitions (typedef
) can often improve code readability. However, type definitions to pointer types can make it more difficult to write const
-correct code because the const
qualifier will be applied to the pointer type, not to the underlying declared type.
...
The following type definition improves readability at the expense of introducing a const
-correctness issue. In this example, the const
qualifier applies to the typedef
itself instead of applying to the underlying object type. So Consequently, func
does not take a pointer to a const struct obj
, but is instead taking takes a const
pointer to a struct obj
.
Code Block | ||||
---|---|---|---|---|
| ||||
struct obj { int i; float f; }; typedef struct obj *ObjectPtr; void func(const ObjectPtr o) { /* Can actually modify o's contents, against expectations. */ } |
...
This compliant solution makes use of type definitions , but does not declare a pointer type and so cannot be used in a const
-incorrect manner.:
Code Block | ||||
---|---|---|---|---|
| ||||
struct obj { int i; float f; }; typedef struct obj Object; void func(const Object *o) { /* Cannot modify o's contents. */ } |
...
The Win32 SDK headers make use of type definitions for most of the types involved in Win32 APIs, but the following noncompliant solution demonstrates a const
-correctness bug.:
Code Block | ||||
---|---|---|---|---|
| ||||
#include <Windows.h> /* typedef char *LPSTR; */ void func(const LPSTR str) { /* Can mutate str's contents, against expectations. */ } |
Compliant Solution (Windows)
The This compliant solution demonstrates a common naming convention found in the Win32 APIs, using the proper const
type.:
Code Block | ||||
---|---|---|---|---|
| ||||
#include <Windows.h> /* typedef const char *LPCSTR; */ void func(LPCSTR str) { /* Cannot modify str's contents. */ } |
...
Note that many structures in the Win32 API are declared with pointer type definitions , but not pointer-to const type -const
type definitions (LPPOINT
, LPSIZE
, et al.). In these cases, it is suggested to that you create your own type definition from the base structure type.
...
The following declaration of the signal()
function is difficult to read and comprehend.:
Code Block | ||||
---|---|---|---|---|
| ||||
void (*signal(int, void (*)(int)))(int); |
...
This compliant solution makes use of type definitions to specify the same type as in the noncompliant code example.:
Code Block | ||||
---|---|---|---|---|
| ||||
typedef void SighandlerType(int signum); extern SighandlerType *signal( int signum, SighandlerType *handler ); |
...
Tool | Version | Checker | Description | ||||||
---|---|---|---|---|---|---|---|---|---|
Compass/ROSE |
|
|
| ||||||
| 299 S | Fully implemented | |||||||
PRQA QA-C |
| Secondary Analysisanalysis | Fully implemented |
Related Vulnerabilities
...
CERT C++ Secure Coding Standard | DCL05-CPP. Use typedefs to improve code readability |
CERT C Secure Coding Standard | DCL12-C. Implement abstract data types using opaque types |
...