Short Summaries
Early Detection of Configuration Errors to Reduce Failure Damage - Xu et al., OSDI' 16
This paper is about detecting latent configuration(LC) errors. Some configuration parameters are neither used nor checked during normal operations, errors in their settings go undetected until their late manifestation(e.g., under circumstances like error handling and fail-over).
The authors proposes PCheck, which is a tool for enabling early detection of configuration errors. It can automatically generate configuration checking code based on the original program(i.e., the intermediate representation of the programs), and invoke them at the system initialization phase. To prevent side effects, PCheck validates the arguments of the call, but does not actually execute the call. (e.g., replace open with access/stat).
Last updated