Selaa lähdekoodia

Fixing file handle leak for "docker logs"

If "docker logs" was used on an offline container, the logger is leaked, leaving it up to the finalizer to close the file handle, which could block removal of the container.  Further, the json file logger could leak an open handle if the logs are read without follow due to an early return without a close.  This change addresses both cases.

Signed-off-by: Stefan J. Wernli <swernli@microsoft.com>
(cherry picked from commit 54f11b84d218c1a7ff4ab4e2148819265da213bc)
Stefan J. Wernli 9 vuotta sitten
vanhempi
commit
8691607ade
2 muutettua tiedostoa jossa 10 lisäystä ja 0 poistoa
  1. 3 0
      daemon/logger/jsonfilelog/read.go
  2. 7 0
      daemon/logs.go

+ 3 - 0
daemon/logger/jsonfilelog/read.go

@@ -77,6 +77,9 @@ func (l *JSONFileLogger) readLogs(logWatcher *logger.LogWatcher, config logger.R
 	}
 	}
 
 
 	if !config.Follow {
 	if !config.Follow {
+		if err := latestFile.Close(); err != nil {
+			logrus.Errorf("Error closing file: %v", err)
+		}
 		return
 		return
 	}
 	}
 
 

+ 7 - 0
daemon/logs.go

@@ -87,6 +87,13 @@ func (daemon *Daemon) ContainerLogs(ctx context.Context, containerName string, c
 			if !ok {
 			if !ok {
 				logrus.Debug("logs: end stream")
 				logrus.Debug("logs: end stream")
 				logs.Close()
 				logs.Close()
+				if cLog != container.LogDriver {
+					// Since the logger isn't cached in the container, which occurs if it is running, it
+					// must get explicitly closed here to avoid leaking it and any file handles it has.
+					if err := cLog.Close(); err != nil {
+						logrus.Errorf("Error closing logger: %v", err)
+					}
+				}
 				return nil
 				return nil
 			}
 			}
 			logLine := msg.Line
 			logLine := msg.Line