are there are equivalent secure string functions in Mac OSX and Linux just like the ones in Windows (strcpy_s,strncpy_s..etc) ?
What about functions that convert between multi-byte and wide characters?
|
There are two strategies for safe string manipulation. The Linux / glibc maintainers refuse to add safe functions, arguing that you should keep the length of your strings at hand and use On the other hand, Mac OSX includes
You could also consider using the BSD implementation found here. If your code will be compiled on multiple platforms, you can test for the presence of glibc using pre-defined library macros:
Conversion between character encodings is most easily handled using the |
||||
|
|
OSX has |
|||||||||
|
|
You can use gcc's |
|||
|
|
|
The standard C functions to convert between multibyte and wide characters are available: |
|||
|
|
|
If you have to use char buffers (NTBS=Nul terminated byte strings) there are no instrinsically safe string functions. Not even strlen() is safe. Rather, there are intrinsically unsafe string functions such as gets() and most uses of sprintf(). These are unsafe because you cannot reliably predict the buffer size you need. The other class of string functions can be used safely provided you keep track of the maximum buffer sizes used and required correctly. One way to help doing this in C++ is to use a nice class like StringPiece in Google's RE2 package, which is a pointer and length, where the pointer points into an NTBS. By storing the correct length into the StringPiece once, the class can then track the length of various operations. You can write such a class yourself. Doing this will not make your code correct but it will isolate the critical spots (namely, getting the arguments to the constructor right). In this case, encapsulation is your friend. |
|||
|
|
std::stringhas an interface for dealing with C interfaces:str.c_str()will return achar const*that you can pass to C APIs. – Chris Jester-Young Dec 31 '10 at 12:51