Error Handling James Walden Northern Kentucky University Topics

  • Slides: 41
Download presentation
Error Handling James Walden Northern Kentucky University

Error Handling James Walden Northern Kentucky University

Topics 1. 2. 3. 4. 5. Error Handling Return Codes Exceptions Logging Survivability

Topics 1. 2. 3. 4. 5. Error Handling Return Codes Exceptions Logging Survivability

Security Impact of Error Handling Information leakage Stack traces Database errors Resource leakage Return

Security Impact of Error Handling Information leakage Stack traces Database errors Resource leakage Return on error without de-allocation Exceptions bypass de-allocation CSC 666: Secure Software Engineering

Error Handling Techniques Return a neutral value: return a value that’s known to be

Error Handling Techniques Return a neutral value: return a value that’s known to be harmless, i. e. 0 or “”. Substitute the next piece of data: continue reading from hardware or file until a valid record is found. Return same answer as last time: don’t keep reading; instead return the last valid answer. Substitute closest legal value: if velocity has a range of 0. . 100, show a 0 when backing up. Log a warning message: Write a warning to a log, then continue on, perhaps using one of the other techniques. Terminate program: Terminate program execution. Return an error code: Report error by Setting the value of a status variable (errno) Return status as the function’s return value Throw an exception CSC 666: Secure Software Engineering

Return Codes Use function return code to indicate error. Easy to ignore. Simply ignore

Return Codes Use function return code to indicate error. Easy to ignore. Simply ignore return code. Error handling logic is mixed with logic processing normal return codes. No universal convention for error codes. Common return code patterns. Negative values when nonnegative expected. NULL values for pointer return codes. CSC 666: Secure Software Engineering

Example: character get functions fgetc(), getchar() read char, return int Use int to represent

Example: character get functions fgetc(), getchar() read char, return int Use int to represent EOF error code. Incorrect example: return value is declared as a char buf[BUFSIZ]; char c; int i = 0; while ( (c = getchar()) != 'n' && c != EOF ) { if (i < BUFSIZ-1) { buf[i++] = c; } } buf[i] = ''; /* terminate NTBS */ Correct example char buf[BUFSIZ]; int c; int i = 0; while ( ((c = getchar()) != 'n') && !feof(stdin) && !ferror(stdin)) { if (i < BUFSIZ-1) { buf[i++] = c; } } buf[i] = ''; /* terminate NTBS */ CSC 666: Secure Software Engineering

Example: sprintf() Incorrect example: sprintf returns -1 on error, count can be out of

Example: sprintf() Incorrect example: sprintf returns -1 on error, count can be out of bounds int i; ssize_t count = 0; for (i = 0; i < 9; ++i) { count += sprintf( buf + count, "%02 x ", ((u 8 *)&slreg_num)[i] ); } count += sprintf(buf + count, "n"); Correct example uses sprintf_m function f/ CERT managed string library int i; rsize_t count = 0; errno_t err; for (i = 0; i < 9; ++i) { err = sprintf_m( buf + count, "%02 x ", &count, ((u 8 *)&slreg_num)[i] ); if (err != 0) { /* Handle print error */ } } err = sprintf_m( buf + count, "%02 x ", &count, ((u 8 *)&slreg_num)[i] ); if (err != 0) { /* Handle print error */ } CSC 666: Secure Software Engineering

Resource Leaks Resources leak due to early returns Memory Filehandles Example char *getblock(int fd)

Resource Leaks Resources leak due to early returns Memory Filehandles Example char *getblock(int fd) { char *buf = (char *)malloc(1024); if (!buf) { return NULL; } if (read(fd, buf, 1024) != 1024) { return NULL; } return buf } CSC 666: Secure Software Engineering

Using goto for error handling Problem: de-allocate resources on return Each return is different

Using goto for error handling Problem: de-allocate resources on return Each return is different since Different resources allocated at each point. Solution: single de-allocation point Check if resource is allocated, then De-allocate if it is, and Return with appropriate error code. Why goto? Avoids deep nesting. Improves code readability. Commonly used technique in kernel. CSC 666: Secure Software Engineering

Fixed version with goto char *getblock(int fd) { char *buf = (char *)malloc(1024); if

Fixed version with goto char *getblock(int fd) { char *buf = (char *)malloc(1024); if (!buf) { goto ERROR; } if (read(fd, buf, 1024) != 1024) { goto ERROR; } return buf; ERROR: if (buf) { free(buf); } return NULL; } CSC 666: Secure Software Engineering

Exceptions Advantages of exceptions Cannot be ignored by not checking for errors. Separate main

Exceptions Advantages of exceptions Cannot be ignored by not checking for errors. Separate main code from error code. Disadvantages of exceptions Difficult to avoid resource leaks, as exceptions create many implicit control flow paths. Can still ignore exceptions try { // code that can throw an exception } catch (An. Exception e) { // empty catch block } CSC 666: Secure Software Engineering

Checked Exceptions Checked exceptions: Exceptions that the language requires client code to handle. C++,

Checked Exceptions Checked exceptions: Exceptions that the language requires client code to handle. C++, C#: no checked exceptions Java: exceptions that inherit from Exception Unchecked exceptions: Exceptions that can be ignored by client code. C++, C#: all exceptions are unchecked Java: exceptions that inherit from Runtime. Exception. CSC 666: Secure Software Engineering

Exception Guarantees Levels of exception safety for a class. Basic Guarantee No resources are

Exception Guarantees Levels of exception safety for a class. Basic Guarantee No resources are leaked. Strong Guarantee Exceptions leave state exactly as it was before the operation started. No Throw Guarantee Component will handle all exceptions itself. No Exception Safety Component may leak resources and leave object in an inconsistent unusable state. CSC 666: Secure Software Engineering

Exception Safety Example void stack: : push(int element) { top++; if( top == size-1

Exception Safety Example void stack: : push(int element) { top++; if( top == size-1 ) { int* buf = new int[size+=32]; if( buf == 0 ) throw “Out of memory”; for(int i = 0; i < top; i++) buf[i] = data[i]; delete [] data; data = buf; } data[top] = element; } CSC 666: Secure Software Engineering

Catch-all Exception Handlers Ensure no information leakage at top level functions. do. Get(), do.

Catch-all Exception Handlers Ensure no information leakage at top level functions. do. Get(), do. Post(), web service entry points protected void do. Post(Http. Servlet. Request req, Http. Servlet Response res) { try { /* function body */ } catch (Throwable t) { logger. error(“Top-level exception caught”, t); } } Do not do this in low level code. Need to deal with individual error types seperately, instead of ignoring them or handling genericly. CSC 666: Secure Software Engineering

Destructor De-Allocation Resource Aquisition Is Initialization design pattern Resources acquired during initialization of object,

Destructor De-Allocation Resource Aquisition Is Initialization design pattern Resources acquired during initialization of object, before it can be used. Resources are de-allocated by the object’s destructor, which occurs even via exceptions. Example file (const char* filename) { file_ = fopen(filename, “w+”); if (!file_) throw std: : runtime_error("file open failure"); } ~file() { if (f) { fclose(file_); } } CSC 666: Secure Software Engineering

Finally block executed regardless of whether an exception is caught or not. Example Statement

Finally block executed regardless of whether an exception is caught or not. Example Statement stmt = conn. create. Statement(); try { stmt. execute(sql. String); } finally { if (stmt != null ) { stmt. close(); } } CSC 666: Secure Software Engineering

Logging Frameworks Use a standard logging framework. Provide single consistent view of system. Facilitate

Logging Frameworks Use a standard logging framework. Provide single consistent view of system. Facilitate changes, such as logging to a new system or to a database. Examples syslog() log 4 j java. util. logging CSC 666: Secure Software Engineering

Survivability Survivability: Capability of a system to fulfill its functions even when under attack.

Survivability Survivability: Capability of a system to fulfill its functions even when under attack. Properties of Survivable Systems: Resistance to attacks Recognition of damage from attacks Recovery of full or essential services Adaptation to reduce effectiveness of future attacks CSC 666: Secure Software Engineering

References 1. 2. 3. 4. 5. 6. 7. David Abrahams, Exception-Safety in Generic Components.

References 1. 2. 3. 4. 5. 6. 7. David Abrahams, Exception-Safety in Generic Components. Lecture Notes In Computer Science: 69 -79, 2000. Tom Cargill, Exception Handling: A False Sense of Security, C++ Report, Volume 6, Number 9, November-December 1994. CERT, Error Handling, https: //www. securecoding. cert. org/confluence/download/attachme nts/3524/error-handling. pdf, 2006. Brian Chess and Jacob West, Secure Programming with Static Analysis, Addison-Wesley, 2007. Robert J. Ellison et. al. , Survivability: Protecting Your Critical Systems, IEEE Computer, 1999. Fred Long, CERT Secure Coding Standards: Error Handling, https: //www. securecoding. cert. org/confluence/display/cplus/1 2. +Error+Handling+(ERR), 2009. Steve Mc. Connell, Code Complete, 2 nd edition, Microsoft Press, 2004.

Privacy Topics 1. 2. 3. 4. 5. Regulations Cryptography Random numbers Passwords Secrets in

Privacy Topics 1. 2. 3. 4. 5. Regulations Cryptography Random numbers Passwords Secrets in memory CSC 666: Secure Software Engineering

Regulations protect private data Children’s Online Protection Act (COPPA) Federal Information Security Management Act

Regulations protect private data Children’s Online Protection Act (COPPA) Federal Information Security Management Act Gramm-Leach-Bliley Act (GLBA) Health Insurance Portability & Accountability Act Payment Card Industry DSS Personally Identifiable Information (PII) Credit cards SSNs and state/driver IDs Names CSC 666: Secure Software Engineering

Inbound Passwords Used to authenticate users to application. Stored in hashed + salted format.

Inbound Passwords Used to authenticate users to application. Stored in hashed + salted format. Hashed: one-way encryption. - MD 5 - SHA-1 - SHA-2: SHA-224, 256, 384, 512 Salted: increases time for dictionary attacks - Old UNIX crypt passwords use 12 -bit salt. - Open. BSD uses 128 -bit salt value. CSC 666: Secure Software Engineering

Outbound Passwords Used by app to auth to db, other systems. Must be accessible

Outbound Passwords Used by app to auth to db, other systems. Must be accessible in cleartext at some point. Solutions Store in source code. - Easy to view in source or binary form. Store cleartext in a configuration file. Store encrypted in a configuration file. - Use a good, known algorithm like AES. - Limit ACLs so only app can access. Require admin enter password on restart. - PCI 3. 6. 6 requires key be split among admins. CSC 666: Secure Software Engineering

Key Generation Choose key from set of K keys at random. Equivalent to selecting

Key Generation Choose key from set of K keys at random. Equivalent to selecting a random number between 0 and K– 1 inclusive. Ensures all keys are equally probable to use. Problem: generating random numbers Computer generated numbers are pseudo-random, that is, generated by an algorithm. Need direct or indirect hardware sources to obtain sufficiently random data for key generation. CSC 666: Secure Software Engineering

PRNGs Computers are deterministic Can’t produce true random numbers. Pseudo-random numbers appear to be

PRNGs Computers are deterministic Can’t produce true random numbers. Pseudo-random numbers appear to be random to certain statistical tests. Tests can be derived from compression. If you can compress sequence, it’s not random. Software generated pseudo-random sequences are periodic and predictable. CSC 666: Secure Software Engineering

Seeds Input used to generate initial PR number. Should be computationally infeasible to predict

Seeds Input used to generate initial PR number. Should be computationally infeasible to predict Generate seed from random, not PR, data. Large seed: 32 bits too small; only 232 combinations. Sequence still repeats, but starts from different point for each different seed. Identical sequences produced for identical seeds. Period needs to be large for security. CSC 666: Secure Software Engineering

Linear Congruential Generator nk = (ank– 1 + b) mod m m Modulus (a

Linear Congruential Generator nk = (ank– 1 + b) mod m m Modulus (a large prime integer) a Multiplier (integer from 2. . m-1) b Increment n 0 Sequence initializer (seed) Functions like rand() in C use LCGs. CSC 666: Secure Software Engineering

Hardware Sources Radioactive Decay Hotbits: 256 bits/s http: //www. fourmilab. ch/hotbits/ Thermal Noise Comscire

Hardware Sources Radioactive Decay Hotbits: 256 bits/s http: //www. fourmilab. ch/hotbits/ Thermal Noise Comscire QNG Model J 1000 KU, 1 Mbit/s Pentium III RNG Lava. Rnd SGI used Lava. Lite; Lava. Rnd uses lenscapped digicam http: //www. lavarnd. org/ up to 200 kbits/s CSC 666: Secure Software Engineering

Software Sources Less Secure, More Convenient Software sufficiently complex to be almost impossible to

Software Sources Less Secure, More Convenient Software sufficiently complex to be almost impossible to predict. User Input: Push, don’t Pull Record time stamp when keystroke or mouse event occurs. Don’t poll most recent user input every. 1 s - Far fewer possible timestamps. CSC 666: Secure Software Engineering

Software Sources: /dev/random Idea: use multiple random software sources. Store randomness in pool for

Software Sources: /dev/random Idea: use multiple random software sources. Store randomness in pool for user requests. Use hash functions (i. e. , strong mixing functions) to distill data from multiple sources. /dev/random can use random sources such as CPU load disk seeks kernel interrupts keystrokes network packet arrival times /dev/audio sans microphone CSC 666: Secure Software Engineering

Software Sources: /dev/random each bit is truly random. blocks unless enough random bits are

Software Sources: /dev/random each bit is truly random. blocks unless enough random bits are available. /dev/urandom supplies requested number of bits immediately. reuses current state of pool—lower quality randomness. CSC 666: Secure Software Engineering

Poor Entropy: Netscape 1. 1 SSL encryption generates random 40 - or 128 -bit

Poor Entropy: Netscape 1. 1 SSL encryption generates random 40 - or 128 -bit session key Netscape 1. 1 seeded PRNG with - time of day - PID and PPID All visible to attacker on same machine. Remote attack broke keys in 30 seconds guessed limited randomness in PID/PPID. packet sniffing can determine time of day. CSC 666: Secure Software Engineering

Cryptographic APIs Cryptlib (free for noncommercial) Crypt++ (public domain) Crypt: : CPAN modules (various)

Cryptographic APIs Cryptlib (free for noncommercial) Crypt++ (public domain) Crypt: : CPAN modules (various) Java Cryptography Architecture Java Cryptography Extension Microsoft Crypto. API Nettle (GPL) Open. SSL (Open. SSL license) CSC 666: Secure Software Engineering

Supported Ciphers Range of MAC algorithms Almost all include MD 5, SHA-1 Range of

Supported Ciphers Range of MAC algorithms Almost all include MD 5, SHA-1 Range of symmetric algorithms Almost all include AES, DES Range of public key algorithms Almost all include RSA, Diffie-Hellman, DSA CSC 666: Secure Software Engineering

Secrets in Memory Attackers can obtain secrets from memory Remote exploit: buffer overflow or

Secrets in Memory Attackers can obtain secrets from memory Remote exploit: buffer overflow or fmt string Physical attack: direct media access Accidental leakage: core dumps or page files CSC 666: Secure Software Engineering

Securing Secrets in Memory Minimize time spent holding secrets. Decrypt data just before use.

Securing Secrets in Memory Minimize time spent holding secrets. Decrypt data just before use. Overwrite data after use. Share secrets sparingly. Do not store secrets on the client. Erase secrets securely. Explicitly overwrite memory. Prevent unnecessary duplication. CSC 666: Secure Software Engineering

Locking Pages in Memory Prevent secrets from paging to disk. Does not prevent suspend

Locking Pages in Memory Prevent secrets from paging to disk. Does not prevent suspend or hibernate saving pages. Linux page locking mlock(const void *addr, size_t len) munlock(const void *addr, size_t len) Windows page locking Virtual. Lock(LPVOID lp. Address, SIZE_T dw. Size); Virtual. Unlock(LPVOID lp. Address, SIZE_T dw. Size); CSC 666: Secure Software Engineering

Erasing Secrets Securely Garbage collecting languages Essentially impossible to ensure secrets are erased immediately.

Erasing Secrets Securely Garbage collecting languages Essentially impossible to ensure secrets are erased immediately. Low level languages Use Secure. Zero. Memory() in Windows. Use volatile pointers to prevent compiler from optimizing away memory overwrites. CSC 666: Secure Software Engineering

Erasing Secrets Securely void auth_function() { char pass[32]; if (getpass(pass)) { // Do something

Erasing Secrets Securely void auth_function() { char pass[32]; if (getpass(pass)) { // Do something with password } memset(pass, 0, sizeof(pass)); // Prevent memset from being optimized // away by using volatile pointers. *(volatile char *)pass = *(volatile char *)pass; } CSC 666: Secure Software Engineering

References 1. 2. 3. 4. 5. 6. 7. 8. 9. Brian Chess and Jacob

References 1. 2. 3. 4. 5. 6. 7. 8. 9. Brian Chess and Jacob West, Secure Programming with Static Analysis, Addison. Wesley, 2007. D. Eastlake, “Randomness Recommendations for Security, ” RFC 1750, http: //www. ietf. org/rfc 1750. txt, 1994. Ian Goldberg and David Wagner, “Randomness and the Netscape Browser, ” Doctor Dobbs’ Journal, 1996. http: //www. cs. berkeley. edu/~daw/papers/ddjnetscape. html Michael Howard and David Le. Blanc, Writing Secure Code, 2 nd edition, Microsoft Press, 2003. Alfred J. Menezes, Paul C. van Oorschot and Scott A. Vanstone, Handbook of Applied Cryptography, http: //www. cacr. math. uwaterloo. ca/hac/, CRC Press, 1996. S. K. Park, K. W. Miller, “Random number generators: good ones are hard to find, ” Communications of the ACM, Volume 31 Issue 10 , October 1988. Bruce Schneier, Applied Cryptography, 2 nd edition, Wiley, 1996. John Viega and Gary Mc. Graw, Building Secure Software, Addison-Wesley, 2002. David Wheeler, Secure Programming for UNIX and Linux HOWTO, http: //www. dwheeler. com/secure-programs/Secure-Programs. HOWTO/index. html, 2003. CSC 666: Secure Software Engineering