-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Switch podman stop/kill/wait handlers to use abi #9051
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,11 +31,11 @@ import ( | |
func RemoveContainer(w http.ResponseWriter, r *http.Request) { | ||
decoder := r.Context().Value("decoder").(*schema.Decoder) | ||
query := struct { | ||
All bool `schema:"all"` | ||
Force bool `schema:"force"` | ||
Ignore bool `schema:"ignore"` | ||
Link bool `schema:"link"` | ||
Volumes bool `schema:"v"` | ||
Force bool `schema:"force"` | ||
Ignore bool `schema:"ignore"` | ||
Link bool `schema:"link"` | ||
DockerVolumes bool `schema:"v"` | ||
LibpodVolumes bool `schema:"volumes"` | ||
}{ | ||
// override any golang type defaults | ||
} | ||
|
@@ -46,23 +46,26 @@ func RemoveContainer(w http.ResponseWriter, r *http.Request) { | |
return | ||
} | ||
|
||
if query.Link && !utils.IsLibpodRequest(r) { | ||
utils.Error(w, http.StatusText(http.StatusBadRequest), http.StatusBadRequest, | ||
utils.ErrLinkNotSupport) | ||
return | ||
options := entities.RmOptions{ | ||
Force: query.Force, | ||
Ignore: query.Ignore, | ||
} | ||
if utils.IsLibpodRequest(r) { | ||
options.Volumes = query.LibpodVolumes | ||
} else { | ||
if query.Link { | ||
utils.Error(w, http.StatusText(http.StatusBadRequest), http.StatusBadRequest, | ||
utils.ErrLinkNotSupport) | ||
return | ||
} | ||
options.Volumes = query.DockerVolumes | ||
} | ||
|
||
runtime := r.Context().Value("runtime").(*libpod.Runtime) | ||
// Now use the ABI implementation to prevent us from having duplicate | ||
// code. | ||
containerEngine := abi.ContainerEngine{Libpod: runtime} | ||
name := utils.GetName(r) | ||
options := entities.RmOptions{ | ||
All: query.All, | ||
Force: query.Force, | ||
Volumes: query.Volumes, | ||
Ignore: query.Ignore, | ||
} | ||
report, err := containerEngine.ContainerRm(r.Context(), []string{name}, options) | ||
if err != nil { | ||
if errors.Cause(err) == define.ErrNoSuchCtr { | ||
|
@@ -193,45 +196,48 @@ func KillContainer(w http.ResponseWriter, r *http.Request) { | |
return | ||
} | ||
|
||
sig, err := signal.ParseSignalNameOrNumber(query.Signal) | ||
if err != nil { | ||
utils.InternalServerError(w, err) | ||
return | ||
} | ||
// Now use the ABI implementation to prevent us from having duplicate | ||
// code. | ||
containerEngine := abi.ContainerEngine{Libpod: runtime} | ||
name := utils.GetName(r) | ||
con, err := runtime.LookupContainer(name) | ||
if err != nil { | ||
utils.ContainerNotFound(w, name, err) | ||
return | ||
options := entities.KillOptions{ | ||
Signal: query.Signal, | ||
} | ||
|
||
state, err := con.State() | ||
report, err := containerEngine.ContainerKill(r.Context(), []string{name}, options) | ||
if err != nil { | ||
utils.InternalServerError(w, err) | ||
return | ||
} | ||
if errors.Cause(err) == define.ErrCtrStateInvalid || | ||
errors.Cause(err) == define.ErrCtrStopped { | ||
utils.Error(w, fmt.Sprintf("Container %s is not running", name), http.StatusConflict, err) | ||
return | ||
} | ||
if errors.Cause(err) == define.ErrNoSuchCtr { | ||
utils.ContainerNotFound(w, name, err) | ||
return | ||
} | ||
|
||
// If the Container is stopped already, send a 409 | ||
if state == define.ContainerStateStopped || state == define.ContainerStateExited { | ||
utils.Error(w, fmt.Sprintf("Container %s is not running", name), http.StatusConflict, errors.New(fmt.Sprintf("Cannot kill Container %s, it is not running", name))) | ||
utils.InternalServerError(w, err) | ||
return | ||
} | ||
|
||
signal := uint(sig) | ||
|
||
err = con.Kill(signal) | ||
if err != nil { | ||
utils.Error(w, "Something went wrong.", http.StatusInternalServerError, errors.Wrapf(err, "unable to kill Container %s", name)) | ||
if len(report) > 0 && report[0].Err != nil { | ||
utils.InternalServerError(w, report[0].Err) | ||
return | ||
} | ||
|
||
// Docker waits for the container to stop if the signal is 0 or | ||
// SIGKILL. | ||
if !utils.IsLibpodRequest(r) && (signal == 0 || syscall.Signal(signal) == syscall.SIGKILL) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think we need to retain this. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fixed |
||
if _, err = con.Wait(); err != nil { | ||
utils.Error(w, "Something went wrong.", http.StatusInternalServerError, errors.Wrapf(err, "failed to wait for Container %s", con.ID())) | ||
if !utils.IsLibpodRequest(r) { | ||
sig, err := signal.ParseSignalNameOrNumber(query.Signal) | ||
if err != nil { | ||
utils.InternalServerError(w, err) | ||
return | ||
} | ||
if sig == 0 || syscall.Signal(sig) == syscall.SIGKILL { | ||
var opts entities.WaitOptions | ||
if _, err := containerEngine.ContainerWait(r.Context(), []string{name}, opts); err != nil { | ||
utils.Error(w, "Something went wrong.", http.StatusInternalServerError, err) | ||
return | ||
} | ||
} | ||
} | ||
// Success | ||
utils.WriteResponse(w, http.StatusNoContent, nil) | ||
|
@@ -242,6 +248,10 @@ func WaitContainer(w http.ResponseWriter, r *http.Request) { | |
// /{version}/containers/(name)/wait | ||
exitCode, err := utils.WaitContainer(w, r) | ||
if err != nil { | ||
if errors.Cause(err) == define.ErrNoSuchCtr { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this necessary? Waiting on a container that has been removed by There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do you think we should at least log it. Or just ignore it. |
||
logrus.Warnf("container not found %q: %v", utils.GetName(r), err) | ||
return | ||
} | ||
logrus.Warnf("failed to wait on container %q: %v", mux.Vars(r)["name"], err) | ||
return | ||
} | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,42 +4,60 @@ import ( | |
"net/http" | ||
|
||
"github.com/containers/podman/v2/libpod" | ||
"github.com/containers/podman/v2/libpod/define" | ||
"github.com/containers/podman/v2/pkg/api/handlers/utils" | ||
"github.com/containers/podman/v2/pkg/domain/entities" | ||
"github.com/containers/podman/v2/pkg/domain/infra/abi" | ||
"github.com/gorilla/schema" | ||
"github.com/pkg/errors" | ||
) | ||
|
||
func RestartContainer(w http.ResponseWriter, r *http.Request) { | ||
runtime := r.Context().Value("runtime").(*libpod.Runtime) | ||
decoder := r.Context().Value("decoder").(*schema.Decoder) | ||
// Now use the ABI implementation to prevent us from having duplicate | ||
// code. | ||
containerEngine := abi.ContainerEngine{Libpod: runtime} | ||
|
||
// /{version}/containers/(name)/restart | ||
query := struct { | ||
Timeout int `schema:"t"` | ||
All bool `schema:"all"` | ||
DockerTimeout uint `schema:"t"` | ||
LibpodTimeout uint `schema:"timeout"` | ||
}{ | ||
// Override golang default values for types | ||
// override any golang type defaults | ||
} | ||
if err := decoder.Decode(&query, r.URL.Query()); err != nil { | ||
utils.BadRequest(w, "url", r.URL.String(), errors.Wrapf(err, "failed to parse parameters for %s", r.URL.String())) | ||
utils.Error(w, http.StatusText(http.StatusBadRequest), http.StatusBadRequest, | ||
errors.Wrapf(err, "failed to parse parameters for %s", r.URL.String())) | ||
return | ||
} | ||
|
||
name := utils.GetName(r) | ||
con, err := runtime.LookupContainer(name) | ||
if err != nil { | ||
utils.ContainerNotFound(w, name, err) | ||
return | ||
} | ||
|
||
timeout := con.StopTimeout() | ||
if _, found := r.URL.Query()["t"]; found { | ||
timeout = uint(query.Timeout) | ||
options := entities.RestartOptions{ | ||
All: query.All, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. All is still hazardous to use, we're going to lose every error except the first one. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I hope to fix this in the future. But it will be a breaking change in the API. |
||
Timeout: &query.DockerTimeout, | ||
} | ||
if utils.IsLibpodRequest(r) { | ||
options.Timeout = &query.LibpodTimeout | ||
} | ||
report, err := containerEngine.ContainerRestart(r.Context(), []string{name}, options) | ||
if err != nil { | ||
if errors.Cause(err) == define.ErrNoSuchCtr { | ||
utils.ContainerNotFound(w, name, err) | ||
return | ||
} | ||
|
||
if err := con.RestartWithTimeout(r.Context(), timeout); err != nil { | ||
utils.InternalServerError(w, err) | ||
return | ||
} | ||
|
||
if len(report) > 0 && report[0].Err != nil { | ||
utils.InternalServerError(w, report[0].Err) | ||
return | ||
} | ||
|
||
// Success | ||
utils.WriteResponse(w, http.StatusNoContent, nil) | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,17 +6,24 @@ import ( | |
"github.com/containers/podman/v2/libpod" | ||
"github.com/containers/podman/v2/libpod/define" | ||
"github.com/containers/podman/v2/pkg/api/handlers/utils" | ||
"github.com/containers/podman/v2/pkg/domain/entities" | ||
"github.com/containers/podman/v2/pkg/domain/infra/abi" | ||
"github.com/gorilla/schema" | ||
"github.com/pkg/errors" | ||
) | ||
|
||
func StopContainer(w http.ResponseWriter, r *http.Request) { | ||
runtime := r.Context().Value("runtime").(*libpod.Runtime) | ||
decoder := r.Context().Value("decoder").(*schema.Decoder) | ||
// Now use the ABI implementation to prevent us from having duplicate | ||
// code. | ||
containerEngine := abi.ContainerEngine{Libpod: runtime} | ||
|
||
// /{version}/containers/(name)/stop | ||
query := struct { | ||
Timeout int `schema:"t"` | ||
Ignore bool `schema:"ignore"` | ||
DockerTimeout uint `schema:"t"` | ||
LibpodTimeout uint `schema:"timeout"` | ||
}{ | ||
// override any golang type defaults | ||
} | ||
|
@@ -27,31 +34,46 @@ func StopContainer(w http.ResponseWriter, r *http.Request) { | |
} | ||
|
||
name := utils.GetName(r) | ||
|
||
options := entities.StopOptions{ | ||
Ignore: query.Ignore, | ||
} | ||
if utils.IsLibpodRequest(r) { | ||
if query.LibpodTimeout > 0 { | ||
options.Timeout = &query.LibpodTimeout | ||
} | ||
} else { | ||
if query.DockerTimeout > 0 { | ||
options.Timeout = &query.DockerTimeout | ||
} | ||
} | ||
con, err := runtime.LookupContainer(name) | ||
if err != nil { | ||
utils.ContainerNotFound(w, name, err) | ||
return | ||
} | ||
|
||
state, err := con.State() | ||
if err != nil { | ||
utils.InternalServerError(w, errors.Wrapf(err, "unable to get state for Container %s", name)) | ||
utils.InternalServerError(w, err) | ||
return | ||
} | ||
// If the Container is stopped already, send a 304 | ||
if state == define.ContainerStateStopped || state == define.ContainerStateExited { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Need to retain this check so we can return There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yuck, Fixed. |
||
utils.WriteResponse(w, http.StatusNotModified, nil) | ||
return | ||
} | ||
report, err := containerEngine.ContainerStop(r.Context(), []string{name}, options) | ||
if err != nil { | ||
if errors.Cause(err) == define.ErrNoSuchCtr { | ||
utils.ContainerNotFound(w, name, err) | ||
return | ||
} | ||
|
||
var stopError error | ||
if query.Timeout > 0 { | ||
stopError = con.StopWithTimeout(uint(query.Timeout)) | ||
} else { | ||
stopError = con.Stop() | ||
utils.InternalServerError(w, err) | ||
return | ||
} | ||
if stopError != nil { | ||
utils.InternalServerError(w, errors.Wrapf(stopError, "failed to stop %s", name)) | ||
|
||
if len(report) > 0 && report[0].Err != nil { | ||
utils.InternalServerError(w, report[0].Err) | ||
return | ||
} | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We need to retain some form of this check so we can return
StatusConflict
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think you can check if ContainerKill returned either
ErrCtrStateInvalid
orErrCtrStopped
though