code optimization after review

Signed-off-by: Lifubang <lifubang@acmcoder.com>
This commit is contained in:
Lifubang 2018-09-03 23:27:31 +08:00
parent d2d226e8f9
commit 4fae8fcce2
1 changed files with 1 additions and 17 deletions

View File

@ -359,23 +359,7 @@ func (l *LinuxFactory) loadState(root, id string) (*State, error) {
}
func (l *LinuxFactory) validateID(id string) error {
if !idRegex.MatchString(id) || id == ".." || id == "." {
return newGenericError(fmt.Errorf("invalid id format: %v", id), InvalidIdFormat)
}
//For unforeseen invalid id situations, can checked by is SubDir?
rootPath, err := filepath.Abs(l.Root)
if err != nil {
return err
}
containerRoot := filepath.Join(l.Root, id)
rootCheckPath, err := filepath.Abs(filepath.Join(containerRoot, ".."))
if err != nil {
return err
}
if rootPath != rootCheckPath {
if id == "." || !idRegex.MatchString(id) || utils.CleanPath(id) != id {
return newGenericError(fmt.Errorf("invalid id format: %v", id), InvalidIdFormat)
}